forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: 11Kil84u0TP --HG-- extra : rebase_source : f5ec701490b52bba8b45a790812025c8ab5cf963
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			646 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			646 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import BaseHTTPServer
 | 
						|
from SimpleHTTPServer import SimpleHTTPRequestHandler
 | 
						|
 | 
						|
 | 
						|
class RequestHandler(SimpleHTTPRequestHandler, object):
 | 
						|
    def translate_path(self, path):
 | 
						|
        # Map autofill paths to their own directory
 | 
						|
        autofillPath = "/formautofill"
 | 
						|
        if (path.startswith(autofillPath)):
 | 
						|
            path = "browser/extensions/formautofill/content" + \
 | 
						|
                path[len(autofillPath):]
 | 
						|
        else:
 | 
						|
            path = "browser/components/payments/res" + path
 | 
						|
 | 
						|
        return super(RequestHandler, self).translate_path(path)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    BaseHTTPServer.test(RequestHandler, BaseHTTPServer.HTTPServer)
 |