Add url mapping for blog-admin, blog-collection-admin, blog edit/create, blog post...
authorAditi <aditi.iitr@gmail.com>
Thu, 27 Jun 2013 05:06:21 +0000 (10:36 +0530)
committerAditi <aditi.iitr@gmail.com>
Thu, 27 Jun 2013 05:06:21 +0000 (10:36 +0530)
mediagoblin/media_types/blog/routing.py

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c9aa61b7aa5c9b002669128322c50408dc5479bd 100644 (file)
@@ -0,0 +1,52 @@
+# GNU MediaGoblin -- federated, autonomous media hosting
+# Copyright (C) 2011, 2012 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
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+from mediagoblin.tools.routing import add_route
+
+#URL mapping for blog-admin, where all the blog posts of a particular blog
+#are listed. providing the facility of edit, delete and view a particular blog post."
+add_route('mediagoblin.media_types.blog.blog-admin', \
+       '/u/<string:user>/b/<string:blog_name>/blog-admin', 'mediagoblin.media_types.blog.views:blog-admin')
+       
+#URL mapping for creating a new blog post.
+add_route('mediagoblin.media_types.blog.blogpost.create', '/u/<string:user>/b/<string:blog_name>/create',
+       'mediagoblin.media_types.blog.views:blog_post_edit')
+
+#URL mapping for editing an existing blog post.
+add_route('mediagoblin.media_types.blog.blogpost.edit', '/u/<string:user>/b/<string:blog_name>/p/blog_post_slug/edit',
+       'mediagoblin.media_types.blog.views:blog_post_edit')
+
+#URL mapping for blog-collection-admin, where all the blogs of the user
+#are listed. providing the facility of edit, delete and view a blog. 
+#view facility redirects to blog-admin page of that particular blog.  
+add_route('mediagoblin.media_types.blog.blog-collection-admin', \
+       '/u/<string:user>/blog-collection-admin', 'mediagoblin.media_types.blog.views:blog-collection-admin')
+
+#URL mapping for creating a new blog.
+add_route('mediagoblin.media_types.blog.create', '/u/<string:user>/b/create',
+       'mediagoblin.media_types.blog.views:blog_edit')
+
+#URL mapping for editing an existing blog.
+add_route('mediagoblin.media_types.blog.create', '/u/<string:user>/b/<string:blog_name>/edit',
+       'mediagoblin.media_types.blog.views:blog_edit')
+       
+#route for gallery view of blog posts and blogs.
+       
+
+
+
+
+