summaryrefslogtreecommitdiff
path: root/gstudio/urls/docu.py
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-07-13 03:27:22 -0700
committergnowgi <nagarjun@gnowledge.org>2012-07-13 03:27:22 -0700
commitd4ac04e190a9aa45e8bd0f9a89dd1ebaddd63037 (patch)
treeaade34552216e94820c49aab0f52ad94316b8ec7 /gstudio/urls/docu.py
parent25261ae70442eabc1b26ddfbbd923b04a3ffb9f1 (diff)
parent253a7a23f71fd90e9f70a89b6a0aad6312ef4d40 (diff)
downloadgnowsys-d4ac04e190a9aa45e8bd0f9a89dd1ebaddd63037.tar.gz
Merge pull request #71 from horntail/master
This merge includes BITS Pilani students contributions: ankita, shreya, shruti, prateek, divya, deepthi, harshdeep, sahil, nihar, and akash, who worked on talk pages, groups, syndication, and multi-media resources.
Diffstat (limited to 'gstudio/urls/docu.py')
-rw-r--r--gstudio/urls/docu.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/gstudio/urls/docu.py b/gstudio/urls/docu.py
new file mode 100644
index 0000000..d872bcd
--- /dev/null
+++ b/gstudio/urls/docu.py
@@ -0,0 +1,24 @@
+# Copyright (c) 2011, 2012 Free Software Foundation
+
+# 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 django.conf.urls.defaults import url
+from django.conf.urls.defaults import patterns
+
+urlpatterns = patterns('gstudio.views.docu',
+ url(r'^$', 'docu',
+ name='docu'),
+
+ )