Searched refs:parse_result (Results 1 – 1 of 1) sorted by relevance
81 parse_result = urlparse(self.path)82 if parse_result.path == '/application/serverInfo':84 elif parse_result.path.startswith('/application'):85 self.application_handler(parse_result)90 parse_result = urlparse(self.path)91 if parse_result.path.startswith('/logger'):93 elif parse_result.path.startswith('/upload'):96 elif parse_result.path.startswith('/download-file'):182 def application_handler(self, parse_result): argument183 file_path = parse_result.path[12:]