summaryrefslogtreecommitdiff
path: root/gstudio/urls
diff options
context:
space:
mode:
authoranujag <anujag@inspiration.(none)>2012-07-02 18:48:14 +0530
committeranujag <anujag@inspiration.(none)>2012-07-02 18:48:14 +0530
commit04aaba1f8a52c5eb2820102abd90626c74f68017 (patch)
treece4730f92968a361e53618c441e7916abe96edb1 /gstudio/urls
parent71829c19e5b711503d010e594563a0a14bbf8d54 (diff)
downloadgnowsys-04aaba1f8a52c5eb2820102abd90626c74f68017.tar.gz
Merged graph code
Diffstat (limited to 'gstudio/urls')
-rw-r--r--gstudio/urls/graphs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gstudio/urls/graphs.py b/gstudio/urls/graphs.py
index 4aa8c4b5..2f8d6f23 100644
--- a/gstudio/urls/graphs.py
+++ b/gstudio/urls/graphs.py
@@ -28,5 +28,6 @@ urlpatterns = patterns(
'gstudio.views.graphs',
url(r'^graph_json/(?P<node_id>\d+)$','graph_json', name='graph_json_d3'),
url(r'^version_graph_json/(?P<ssid>\d+)$','version_graph_json', name='version_graph_d3'),
- url(r'^graph/(?P<node_id>\d+)$','force_graph', name='force_graph_d3'),
+ url(r'^graph/(?P<node_id>\d+)$','force_graph', name='force_graph_d3'),
+ url(r'^graph_label/(?P<node_id>\d+)/(?P<key>[-\w]+)/$','graph_label', name='graph_label'),
)