Committing present MediaGoblin translations before pushing extracted messages
[mediagoblin.git] / mediagoblin / routing.py
index 1401b7232b4aff9fdc0dce840e299b214b0319bd..bd727db5c955e686f8a70ad97ccb25e28331e669 100644 (file)
@@ -1,5 +1,5 @@
-# GNU Mediagoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# GNU MediaGoblin -- federated, autonomous media hosting
+# 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
 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():
@@ -26,10 +32,13 @@ def get_mapper():
     mapping.connect(
         "index", "/",
         controller="mediagoblin.views:root_view")
-    mapping.connect(
-        "test_submit", "/test_submit/",
-        controller="mediagoblin.views:submit_test")
 
     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