diff options
author | Leif Johansson <leifj@sunet.se> | 2011-11-08 19:15:22 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-11-08 19:15:22 +0100 |
commit | fcfd994182d18c10199628427484b3da997fbc33 (patch) | |
tree | bcaa7246187b5c8ef317c6ba581c2bcf16a9f871 /coip/apps/opensocial/urls.py | |
parent | 8c9274ab6185ca6e96377f50927712860a2868ab (diff) |
enable new opensocial code
Diffstat (limited to 'coip/apps/opensocial/urls.py')
-rw-r--r-- | coip/apps/opensocial/urls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/coip/apps/opensocial/urls.py b/coip/apps/opensocial/urls.py new file mode 100644 index 0000000..67b1177 --- /dev/null +++ b/coip/apps/opensocial/urls.py @@ -0,0 +1,13 @@ +''' +Created on Nov 7, 2011 + +@author: leifj +''' +from django.conf.urls.defaults import patterns, url, include + +urlpatterns = patterns('coip.apps.opensocial.views', + url(r'^rpc$',view='rpc'), + url(r'^people/(?P<uid>.+)$', view='person'), + url(r'^people/(?P<uid>.+)/(?P<gid>.+)$', view='person'), + url(r'^activitystreams/', include('coip.apps.activitystreams.urls')) +)
\ No newline at end of file |