508. Updates copyright/license information
[mediagoblin.git] / mediagoblin / routing.py
index b47bec8d4fe45c42080bd408783927f6f1b8a4d6..ae56f8cb54a69083636f01183136c19821014326 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,9 @@ 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
 
 
 def get_mapper():
@@ -30,5 +33,8 @@ 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')
 
     return mapping