]> git.ipfire.org Git - pbs.git/commitdiff
Rename web/handlers_search.py -> web/search.py
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 26 Oct 2017 15:04:58 +0000 (16:04 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 26 Oct 2017 15:04:58 +0000 (16:04 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
po/POTFILES.in
src/web/__init__.py
src/web/handlers.py
src/web/search.py [moved from src/web/handlers_search.py with 100% similarity]

index 6f6429773d6d29f20c019c03b39bc61eb5ac87a4..e2a291164412330fe3c66aaf59a21d95450f5b31 100644 (file)
@@ -135,7 +135,7 @@ web_PYTHON = \
        src/web/keys.py \
        src/web/mirrors.py \
        src/web/packages.py \
-       src/web/handlers_search.py \
+       src/web/search.py \
        src/web/handlers_updates.py \
        src/web/handlers_users.py \
        src/web/ui_modules.py
index 22b3ccf0dfca526863cbf9f9279f499fb67f29f7..2082d9b35e9302f0eb7dcdd7aec945962735684d 100644 (file)
@@ -170,7 +170,7 @@ src/web/jobs.py
 src/web/keys.py
 src/web/mirrors.py
 src/web/packages.py
-src/web/handlers_search.py
+src/web/search.py
 src/web/handlers_updates.py
 src/web/handlers_users.py
 src/web/ui_modules.py
index 4ef915bb9404f347e237f88595ea21a2b430c8d6..fdbe29380ee07aabc5c5d9bf4e17ba46fdf04af9 100644 (file)
@@ -25,6 +25,7 @@ from . import jobs
 from . import keys
 from . import mirrors
 from . import packages
+from . import search
 from . import ui_modules
 
 # Enable logging
@@ -228,7 +229,7 @@ class Application(tornado.web.Application):
                        (r"/documents/what-is-the-pakfire-build-service", DocsWhatsthisHandler),
 
                        # Search
-                       (r"/search", SearchHandler),
+                       (r"/search", search.SearchHandler),
 
                        # Uploads
                        (r"/uploads", UploadsHandler),
index ebae191e8f9c8f11606fbcbd88b354b2105e7e3a..d79f2c84e9e99c99663a65ae695be5664e6505ec 100644 (file)
@@ -5,7 +5,6 @@ import tornado.web
 
 from . import base
 
-from .handlers_search import *
 from .handlers_updates import *
 from .handlers_users import *
 
similarity index 100%
rename from src/web/handlers_search.py
rename to src/web/search.py