Committing present MediaGoblin translations before pushing extracted messages
[mediagoblin.git] / mediagoblin / routing.py
index b47bec8d4fe45c42080bd408783927f6f1b8a4d6..bd727db5c955e686f8a70ad97ccb25e28331e669 100644 (file)
@@ -1,5 +1,5 @@
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
@@ -18,6 +18,11 @@ from routes import Mapper
 
 from mediagoblin.auth.routing import auth_routes
 from mediagoblin.submit.routing import submit_routes
+from mediagoblin.user_pages.routing import user_routes
+from mediagoblin.edit.routing import edit_routes
+from mediagoblin.listings.routing import tag_routes
+from mediagoblin.webfinger.routing import webfinger_well_known_routes, \
+    webfinger_routes
 
 
 def get_mapper():
@@ -30,5 +35,10 @@ def get_mapper():
 
     mapping.extend(auth_routes, '/auth')
     mapping.extend(submit_routes, '/submit')
+    mapping.extend(user_routes, '/u')
+    mapping.extend(edit_routes, '/edit')
+    mapping.extend(tag_routes, '/tag')
+    mapping.extend(webfinger_well_known_routes, '/.well-known')
+    mapping.extend(webfinger_routes, '/api/webfinger')
 
     return mapping