diff -r 654c583fd78e -r 34d0c21e3352 testappproj/urls.py --- a/testappproj/urls.py Mon May 31 19:18:57 2010 +0530 +++ b/testappproj/urls.py Mon Jun 14 01:00:59 2010 +0530 @@ -34,11 +34,10 @@ (r'^new/$', 'testappproj.testapp.views.new_edit'), (r'^problems/$', 'testappproj.testapp.views.problems'), (r'^run/$', 'testappproj.testapp.views.run'), - (r'^upload/$', 'testappproj.testapp.views.upload'), (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': os.path.realpath(os.path.dirname( sys.modules[__name__].__file__) + '/static/')}), - (r'^shell/$', 'testappproj.testapp.views.shell') + (r'^completed/$','testappproj.testapp.views.complete') )