diff options
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 |