diff options
author | Leif Johansson <leifj@sunet.se> | 2011-11-08 10:19:25 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-11-08 10:19:25 +0100 |
commit | 66556015d222cbe28e0cb6b0f7aa703c5ad8e1b5 (patch) | |
tree | c09c2752e609596e592f6acd25b37b694abebeaa /coip/urls.py | |
parent | 4e22d7a32e3e68f27f2e26b14e22d88c4e68cd25 (diff) |
a simple activity stream for names
Diffstat (limited to 'coip/urls.py')
-rw-r--r-- | coip/urls.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/coip/urls.py b/coip/urls.py index 49df4d4..e41a47a 100644 --- a/coip/urls.py +++ b/coip/urls.py @@ -71,9 +71,11 @@ urlpatterns = patterns('', (r'^rtree.json$', 'coip.apps.name.views.rtree'), (r'^rtree/(?P<id>[0-9]+).json$', 'coip.apps.name.views.rtree'), # APIs + (r'^api/activitystreams', include('coip.apps.activitystreams.urls')), + (r'^api/opensocial/1.0/rpc', 'coip.apps.opensocial.common.system'), + #(r'^opensocial/2.0/activitystreams', include(opensocial_v2_as.urls)), + (r'^api/opensocial/', include(opensocial_v1.urls)), + (r'^api/hello/?', 'coip.apps.name.views.hello'), (r'^api/', include(v1_api.urls)), - (r'^opensocial/1.0/rpc', 'coip.apps.opensocial.common.system'), - (r'^opensocial/', include(opensocial_v1.urls)), - (r'^hello/?', 'coip.apps.name.views.hello'), (r'^oauth2/', include('django_oauth2_lite.urls')) ) |