/usr/share/pyshared/voting/urls.py is in python-django-voting 0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | from django.conf.urls.defaults import *
urlpatterns = patterns('',
url(r"^vote/(?P<app_label>[\w\.-]+)/(?P<model_name>\w+)/"\
"(?P<object_id>\d+)/(?P<direction>up|down|clear)/$",
"voting.views.vote_on_object_with_lazy_model", {
"allow_xmlhttprequest": True,
},
name="voting_vote"
),
)
|