diff restService/restService.py @ 8:733d43b30a82

connection handling changed searcher added
author dwinter
date Fri, 02 Nov 2012 11:34:23 +0100
parents 3ebe37d81071
children 5f5447b3a082
line wrap: on
line diff
--- a/restService/restService.py	Fri Nov 02 09:25:11 2012 +0100
+++ b/restService/restService.py	Fri Nov 02 11:34:23 2012 +0100
@@ -7,10 +7,12 @@
 import manageIndexMetaPURLs
 from redirector import redirector
 import logging
+from searcher import searcher
 
 urls = (
     '/purl/(.+)','purl',
     '/docuviewer/(.+)','redirector',
+    '/search','searcher',
 )
 
 app = web.application(urls, globals())