From ba9ed5e3ebbb2e2905167eddbc6eab270ef6969c Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 8 Nov 2017 00:13:26 +0000 Subject: [PATCH] Add minor comments about the jar uri scheme. --- volatility/framework/layers/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/volatility/framework/layers/__init__.py b/volatility/framework/layers/__init__.py index d2a1dd392..8c173d4d2 100644 --- a/volatility/framework/layers/__init__.py +++ b/volatility/framework/layers/__init__.py @@ -105,7 +105,14 @@ class ResourceAccessor(object): class JarHandler(request.BaseHandler): - """Handles the jar scheme for URIs""" + """Handles the jar scheme for URIs + + Reference used for the schema syntax: + http://docs.netkernel.org/book/view/book:mod:reference/doc:layer1:schemes:jar + + Actual reference (found from https://www.w3.org/wiki/UriSchemes/jar) seemed not to return: + http://developer.java.sun.com/developer/onlineTraining/protocolhandlers/ + """ def default_open(self, req): """Handles the request if it's the jar scheme"""