Example #1
0
 def doHandleSVG2(self):
     session = getSession(self.client_address[0])
     request=dict()
     res = self.path.split("/")
     #/svg/1/uses/all/detail/643
     tPath = "?view="+res[3]+"&filter="+res[4]+"&display="+res[5]+"&file_id="+res[6]+"&navigation="+res[2]
     self.handleParameters(tPath, request)
     servicedependancy.handleGetSVG(self.wfile, request, session)
Example #2
0
 def doHandleSVG2(self):
     session = getSession(self.client_address[0])
     request = dict()
     res = self.path.split("/")
     #/svg/1/uses/all/detail/643
     tPath = "?view=" + res[3] + "&filter=" + res[4] + "&display=" + res[
         5] + "&file_id=" + res[6] + "&navigation=" + res[2]
     self.handleParameters(tPath, request)
     servicedependancy.handleGetSVG(self.wfile, request, session)
Example #3
0
    def doHandleSVG2(self):
        session = getSession(self.client_address[0])
        request=dict()
        res = self.path.split("/")
        #/svg/1/uses/all/detail/643
	self.send_response(200)
	self.send_header('Content-type','text/html')
	self.end_headers()
        tPath = "?view="+res[3]+"&filter="+res[4]+"&display="+res[5]+"&file_id="+res[6]+"&navigation="+res[2]
        self.handleParameters(tPath, request)
        servicedependancy.handleGetSVG(self.wfile, request, session)
Example #4
0
 def doHandleSVG(self):
     session = getSession(self.client_address[0])
     request=dict()
     self.handleParameters(self.path,request)
     servicedependancy.handleGetSVG(self.wfile, request, session)
Example #5
0
 def doHandleSVG(self):
     session = getSession(self.client_address[0])
     request = dict()
     self.handleParameters(self.path, request)
     servicedependancy.handleGetSVG(self.wfile, request, session)