From c7b48513fb2cb0cdd0e4ec0050b8dbcbddc698f5 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 22 Oct 2013 17:31:15 +0530 Subject: Adding the project initial commit --- tbc/urls.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tbc/urls.py (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py new file mode 100644 index 0000000..72edc06 --- /dev/null +++ b/tbc/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls import patterns, include, url + + +urlpatterns = patterns('', + # Home page + url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), + url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), + url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), + url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), + url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), + url(r'^upload-chapters/$', 'tbc.views.ChapterUpload', name='ChapterUpload'), + url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), + url(r'^upload-images/$', 'tbc.views.ImageUpload', name='ImageUpload'), + url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), + url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), +) -- cgit From 5c96aba148286bb3989592701dc47d3c46563891 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 8 Nov 2013 12:25:43 +0530 Subject: adding reviewer interface --- tbc/urls.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 72edc06..4e75389 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -9,9 +9,13 @@ urlpatterns = patterns('', url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), - url(r'^upload-chapters/$', 'tbc.views.ChapterUpload', name='ChapterUpload'), + url(r'^upload-content/$', 'tbc.views.ContentUpload', name='ContentUpload'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), - url(r'^upload-images/$', 'tbc.views.ImageUpload', name='ImageUpload'), + #url(r'^upload-images/$', 'tbc.views.ImageUpload', name='ImageUpload'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), + url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), + url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), + url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), + url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), ) -- cgit From acd1e3c64ebaa4b3c08758e40b5e9b8486fbd7a5 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 11 Nov 2013 16:28:10 +0530 Subject: approve and push the repo --- tbc/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 4e75389..6ced6f9 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -11,11 +11,11 @@ urlpatterns = patterns('', url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^upload-content/$', 'tbc.views.ContentUpload', name='ContentUpload'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), - #url(r'^upload-images/$', 'tbc.views.ImageUpload', name='ImageUpload'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), + url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), + url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), - url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), ) -- cgit From cc4922f209ac8fdb5930bdcef91b11e606a75af2 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 22 Nov 2013 17:46:50 +0530 Subject: changes to redirect reviewer to resp. interface & notify user about chages required --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 6ced6f9..5eae31c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -15,7 +15,9 @@ urlpatterns = patterns('', url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), + url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), + url(r'^notify-changes/(?P\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'), ) -- cgit From d0e2d7b820398210dcd507d39a9f1c5480dc06a6 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 29 Nov 2013 16:39:10 +0530 Subject: adding interfacte to update a book & its content --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 5eae31c..16e9b51 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -9,7 +9,9 @@ urlpatterns = patterns('', url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), + url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), url(r'^upload-content/$', 'tbc.views.ContentUpload', name='ContentUpload'), + url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), -- cgit From cefbd01ffd5646d87e3656861ae4e5a2826b2493 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 30 Dec 2013 17:06:52 +0530 Subject: adding static page internship forms --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 16e9b51..0df98c5 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,8 +2,8 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - # Home page url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), -- cgit From acb2cccb7e5979b5015bebff1827aa04a17fc808 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 31 Dec 2013 17:56:18 +0530 Subject: adding about page --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0df98c5..5311e26 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -4,6 +4,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), + url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), -- cgit From 757d5b84d89771257c94fb7ffbe952a08adc1d1c Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 19 Feb 2014 14:36:39 +0530 Subject: Changes to solve malfunctioning of upload content. (chapters going in same book) --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 5311e26..c6eae0b 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -11,7 +11,7 @@ urlpatterns = patterns('', url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), - url(r'^upload-content/$', 'tbc.views.ContentUpload', name='ContentUpload'), + url(r'^upload-content/(?P\d+)$', 'tbc.views.ContentUpload', name='ContentUpload'), url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), -- cgit From 105de20e0b27990fe6cec612e42f2bd145bb0436 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 12 Mar 2014 18:11:18 +0530 Subject: adding url to get the notebook converted --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index c6eae0b..5fa1938 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -16,6 +16,7 @@ urlpatterns = patterns('', url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), + url(r'^convert-notebook/(?P.+)$', 'tbc.views.ConvertNotebook', name='ConvertNotebook'), url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), -- cgit From d1f083f7631894193d57b0dd722608e491fcba63 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 9 Apr 2014 17:26:29 +0530 Subject: adding files for update & forgot password & urls for the same. Changes in various alert messages --- tbc/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 5fa1938..939be37 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -9,6 +9,10 @@ urlpatterns = patterns('', url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), + url(r'^forgot-password/$', 'tbc.views.ForgotPassword', name='ForgotPassword'), + url(r'^update-password/$', 'tbc.views.UpdatePassword', name='UpdatePassword'), + + url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), url(r'^upload-content/(?P\d+)$', 'tbc.views.ContentUpload', name='ContentUpload'), -- cgit From 84a0ef75894b0a5826e945d5cb68cdad713eadfa Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 19 May 2014 18:19:14 +0530 Subject: url to submit a proposal --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 939be37..a04b7bb 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -13,6 +13,7 @@ urlpatterns = patterns('', url(r'^update-password/$', 'tbc.views.UpdatePassword', name='UpdatePassword'), + url(r'^submit-proposal/$', 'tbc.views.SubmitProposal', name='SubmitProposal'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), url(r'^upload-content/(?P\d+)$', 'tbc.views.ContentUpload', name='ContentUpload'), -- cgit From 3c2d793c7c5d26b91e29312b42e1b2869e244d32 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Sun, 15 Jun 2014 12:42:30 +0530 Subject: changes to make the books completed & books under progress links work --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 939be37..0aa0b3c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -22,6 +22,8 @@ urlpatterns = patterns('', url(r'^browse-books/(?P.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'), url(r'^convert-notebook/(?P.+)$', 'tbc.views.ConvertNotebook', name='ConvertNotebook'), url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), + url(r'^completed-books/$', 'tbc.views.CompletedBooks', name='CompletedBooks'), + url(r'^books-under-progress/$', 'tbc.views.BooksUnderProgress', name='BooksUnderProgress'), url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), -- cgit From 6b309d381f399fbde17e04a1163fa90b765c62f0 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Sun, 15 Jun 2014 14:27:01 +0530 Subject: disabling the links for the time being for the problem statement copyright issue --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0aa0b3c..7ee91aa 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From 10d586434c8eb0f78b5d2ebd901d3d435f5fdd25 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 16 Jun 2014 11:36:35 +0530 Subject: enabling site for some time to take scree shot on aakash --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7ee91aa..0aa0b3c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), + url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From e022b894fef6c3d82d7cd8b3f3ee69df606b0e2e Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 17 Jun 2014 10:35:51 +0530 Subject: Disabling the links again for each url --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0aa0b3c..7ee91aa 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From e5e3bc39068e9c6e33080c4e896a6258e6ad4aae Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 17 Jun 2014 13:10:12 +0530 Subject: enabling links --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7ee91aa..0aa0b3c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), + url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From 1db172fff93cc3297ba1158dce48feca438ad0ed Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 17 Jun 2014 14:03:02 +0530 Subject: disabling links --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0aa0b3c..7ee91aa 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From 4510ad083d13be9e6b46126f6aecfb0a7c320344 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 17 Jun 2014 18:25:39 +0530 Subject: enabling links --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7ee91aa..0aa0b3c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), + url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From cbb168abbe60c4a74adb311aceb668d14dd1ee5a Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 18 Jun 2014 18:02:56 +0530 Subject: disabling the links again --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0aa0b3c..7ee91aa 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.Home', name='Home'), + url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From 0238a477e3faf77e0cdaae3c27646951e7e51709 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 20 Jun 2014 19:09:19 +0530 Subject: enabling the links after removing problem statements --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7ee91aa..0aa0b3c 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', - url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'), + url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), -- cgit From f685e5b2b716fa848244e6daa5adad7e6ad581ba Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 24 Jun 2014 15:20:58 +0530 Subject: adding categories to filter books --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 0aa0b3c..c3ca12f 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -23,6 +23,7 @@ urlpatterns = patterns('', url(r'^convert-notebook/(?P.+)$', 'tbc.views.ConvertNotebook', name='ConvertNotebook'), url(r'^book-details/(?P\d+)/$', 'tbc.views.BookDetails', name='BookDetails'), url(r'^completed-books/$', 'tbc.views.CompletedBooks', name='CompletedBooks'), + url(r'^completed-books/(?P.+)$', 'tbc.views.CompletedBooks', name='CompletedBooks'), url(r'^books-under-progress/$', 'tbc.views.BooksUnderProgress', name='BooksUnderProgress'), -- cgit From 37f924bc3f6526f9e229e5b237e7490b7339926a Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 7 Jul 2014 15:24:55 +0530 Subject: changes to add links to fossee ipynb server --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index c3ca12f..bb71951 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -25,6 +25,7 @@ urlpatterns = patterns('', url(r'^completed-books/$', 'tbc.views.CompletedBooks', name='CompletedBooks'), url(r'^completed-books/(?P.+)$', 'tbc.views.CompletedBooks', name='CompletedBooks'), url(r'^books-under-progress/$', 'tbc.views.BooksUnderProgress', name='BooksUnderProgress'), + url(r'^redirect-ipynb/(?P.+)$', 'tbc.views.RedirectToIpynb', name='RedirectToIpynb'), url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), -- cgit From e6d89dbf9b75a3e0f3edda8896e8ce586773a2b7 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 15 Jul 2014 19:12:34 +0530 Subject: changes on reviewer interface to approve a proposal --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index a04b7bb..24115c9 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -26,6 +26,8 @@ urlpatterns = patterns('', url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), + url(r'^proposal-review/$', 'tbc.views.ReviewProposals', name='ReviewProposals'), + url(r'^proposal-review/(?P\d+)/(?P\d+)$', 'tbc.views.ReviewProposals', name='ReviewProposals'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), url(r'^notify-changes/(?P\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'), -- cgit From 4cab0cab4dcb8e5a3fe929444f43049ec3c64db2 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 23 Jul 2014 16:54:34 +0530 Subject: changes for automating proposal --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 24115c9..ad92e54 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -28,6 +28,8 @@ urlpatterns = patterns('', url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), url(r'^proposal-review/$', 'tbc.views.ReviewProposals', name='ReviewProposals'), url(r'^proposal-review/(?P\d+)/(?P\d+)$', 'tbc.views.ReviewProposals', name='ReviewProposals'), + url(r'^disapprove-proposal/(?P\d+)$', 'tbc.views.DisapproveProposal', name='DisapproveProposal'), + url(r'^reject-proposal/(?P\d+)$', 'tbc.views.RejectProposal', name='RejectProposal'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), url(r'^notify-changes/(?P\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'), -- cgit From be4c52df5c1945f3e1c3465568424cad6eef3773 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 24 Jul 2014 18:10:44 +0530 Subject: changes to automate proposal --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index ad92e54..8bbd025 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -15,6 +15,8 @@ urlpatterns = patterns('', url(r'^submit-proposal/$', 'tbc.views.SubmitProposal', name='SubmitProposal'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), + url(r'^submit-sample/$', 'tbc.views.SubmitSample', name='SubmitSample'), + url(r'^submit-sample/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), url(r'^upload-content/(?P\d+)$', 'tbc.views.ContentUpload', name='ContentUpload'), url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), -- cgit From c435fddecde1fc7d13687d23740062151bc52a72 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 25 Jul 2014 18:38:05 +0530 Subject: added changes to submit sample notebook & approve/dispprove sample notebook --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 8bbd025..06f3636 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -30,7 +30,7 @@ urlpatterns = patterns('', url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), url(r'^proposal-review/$', 'tbc.views.ReviewProposals', name='ReviewProposals'), url(r'^proposal-review/(?P\d+)/(?P\d+)$', 'tbc.views.ReviewProposals', name='ReviewProposals'), - url(r'^disapprove-proposal/(?P\d+)$', 'tbc.views.DisapproveProposal', name='DisapproveProposal'), + url(r'^disapprove-sample-notebook/(?P\d+)$', 'tbc.views.DisapproveProposal', name='DisapproveProposal'), url(r'^reject-proposal/(?P\d+)$', 'tbc.views.RejectProposal', name='RejectProposal'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), -- cgit From f71c45f91d582375643de198880b87e994300596 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 30 Jul 2014 11:33:35 +0530 Subject: added changes to reject proposal --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 06f3636..57a2ddd 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -31,6 +31,7 @@ urlpatterns = patterns('', url(r'^proposal-review/$', 'tbc.views.ReviewProposals', name='ReviewProposals'), url(r'^proposal-review/(?P\d+)/(?P\d+)$', 'tbc.views.ReviewProposals', name='ReviewProposals'), url(r'^disapprove-sample-notebook/(?P\d+)$', 'tbc.views.DisapproveProposal', name='DisapproveProposal'), + url(r'^allot-book/(?P\d+)$', 'tbc.views.AllotBook', name='AllotBook'), url(r'^reject-proposal/(?P\d+)$', 'tbc.views.RejectProposal', name='RejectProposal'), url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), -- cgit From 250fc9e92257994e5610892be40ab62939fbcbac Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 30 Jul 2014 17:13:02 +0530 Subject: added changes to check matching books while submitting proposal --- tbc/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 57a2ddd..74c3c2e 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -36,4 +36,8 @@ urlpatterns = patterns('', url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), url(r'^notify-changes/(?P\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'), + + # ajax urls + url(r'^ajax/matching-books/$', 'tbc.views.ajax_matching_books', name='AjaxMatchingBooks'), + ) -- cgit From 60a93ffd5a9aa7abb0a4f09c5de4374b77b2cae8 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 11 Aug 2014 17:57:33 +0530 Subject: added changes to submit codes directly for a book & to overwrite the previous data for sample notebooks --- tbc/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 74c3c2e..f3f9aa4 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -17,8 +17,9 @@ urlpatterns = patterns('', url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^submit-sample/$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^submit-sample/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), + url(r'^submit-sample/(?P\d+)/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), - url(r'^upload-content/(?P\d+)$', 'tbc.views.ContentUpload', name='ContentUpload'), + url(r'^submit-code/$', 'tbc.views.SubmitCode', name='SubmitCode'), url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), -- cgit From 1e8f5598d924591c7e83ba89cc1f48c4dd098e6a Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 25 Aug 2014 15:49:38 +0530 Subject: added changes to put the AICTE books list --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index f3f9aa4..9289155 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -14,6 +14,8 @@ urlpatterns = patterns('', url(r'^submit-proposal/$', 'tbc.views.SubmitProposal', name='SubmitProposal'), + url(r'^submit-aicte-proposal/$', 'tbc.views.ListAICTE', name='ListAICTE'), + url(r'^submit-aicte-proposal/(?P\d+)/$', 'tbc.views.SubmitAICTEProposal', name='SubmitAICTEProposal'), url(r'^submit-book/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^submit-sample/$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^submit-sample/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), -- cgit From 11fd1c8467433465a8bc6ca7a831f97cc0f4edb1 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 9 Oct 2014 16:06:35 +0530 Subject: removed no of chapters while submitting the proposal --- tbc/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7cf07a7..4ee9609 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -20,7 +20,7 @@ urlpatterns = patterns('', url(r'^submit-sample/$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^submit-sample/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^submit-sample/(?P\d+)/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), - url(r'^update-book/$', 'tbc.views.UpdateBook', name='UpdateBook'), + url(r'^confirm-book-details/$', 'tbc.views.ConfirmBookDetails', name='ConfirmBookDetails'), url(r'^submit-code/$', 'tbc.views.SubmitCode', name='SubmitCode'), url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), -- cgit From 0d062fe9bc42eb2a5ae8d3dde79a62e00bb11e3e Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 9 Oct 2014 17:39:22 +0530 Subject: added about tbc back from python.fossee.in --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index bb71951..15e7816 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -5,6 +5,7 @@ urlpatterns = patterns('', url(r'^$', 'tbc.views.Home', name='Home'), url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'), url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'), + url(r'^sample-notebook/$', 'tbc.views.SampleIpynb', name='SampleIpynb'), url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'), url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), -- cgit From ea78b786d62021d8d3501313e826053acc231c25 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 30 Oct 2014 18:23:29 +0530 Subject: adding links to submit book (before automated proposal) --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 7242fd6..b20b4e4 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -22,7 +22,9 @@ urlpatterns = patterns('', url(r'^submit-sample/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^submit-sample/(?P\d+)/(?P\d+)$', 'tbc.views.SubmitSample', name='SubmitSample'), url(r'^confirm-book-details/$', 'tbc.views.ConfirmBookDetails', name='ConfirmBookDetails'), + url(r'^submit-book-old/$', 'tbc.views.SubmitBook', name='SubmitBook'), url(r'^submit-code/$', 'tbc.views.SubmitCode', name='SubmitCode'), + url(r'^submit-code-old/(?P\d+)$', 'tbc.views.SubmitCodeOld', name='SubmitCodeOld'), url(r'^update-content/(?P\d+)$', 'tbc.views.UpdateContent', name='UpdateContent'), url(r'^get-zip/(?P\d+)$', 'tbc.views.GetZip', name='GetZip'), url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'), -- cgit From cc7e3fd4a03efb3795bacdbbb00c93bc746ea545 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 19 Nov 2014 11:47:27 +0530 Subject: added views & templates for certificate generation --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index b20b4e4..413374d 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -35,6 +35,7 @@ urlpatterns = patterns('', url(r'^completed-books/(?P.+)$', 'tbc.views.CompletedBooks', name='CompletedBooks'), url(r'^books-under-progress/$', 'tbc.views.BooksUnderProgress', name='BooksUnderProgress'), url(r'^redirect-ipynb/(?P.+)$', 'tbc.views.RedirectToIpynb', name='RedirectToIpynb'), + url(r'^get-certificate/$', 'tbc.views.GetCertificate', name='GetCertificate'), url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), -- cgit From fc2fc29d9734884345f41ac08c7cc207abd19053 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 19 Nov 2014 16:19:43 +0530 Subject: added template for certifactes --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 413374d..75a9a7d 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -36,6 +36,7 @@ urlpatterns = patterns('', url(r'^books-under-progress/$', 'tbc.views.BooksUnderProgress', name='BooksUnderProgress'), url(r'^redirect-ipynb/(?P.+)$', 'tbc.views.RedirectToIpynb', name='RedirectToIpynb'), url(r'^get-certificate/$', 'tbc.views.GetCertificate', name='GetCertificate'), + url(r'^get-certificate/(?P\d+)/$', 'tbc.views.GetCertificate', name='GetCertificate'), url(r'^book-review/$', 'tbc.views.BookReview', name='BookReview'), -- cgit From 09bd0ebbf3e3f4ce37cd7603ebffe696185ade37 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 23 Feb 2015 15:03:45 +0530 Subject: added upate profile feature --- tbc/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 75a9a7d..c558b6e 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -10,6 +10,7 @@ urlpatterns = patterns('', url(r'^login/$', 'tbc.views.UserLogin', name='UserLogin'), url(r'^logout/$', 'tbc.views.UserLogout', name='UserLogout'), url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), + url(r'^update-profile/$', 'tbc.views.UpdateProfile', name='UpdateProfile'), url(r'^forgot-password/$', 'tbc.views.ForgotPassword', name='ForgotPassword'), url(r'^update-password/$', 'tbc.views.UpdatePassword', name='UpdatePassword'), -- cgit From b13f51268caacf987365c3cda89b812d9d1b2255 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Tue, 11 Aug 2015 17:34:38 +0530 Subject: interface to fix broken books. --- tbc/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index c558b6e..747a77d 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -49,6 +49,8 @@ urlpatterns = patterns('', url(r'^book-review/(?P\d+)$', 'tbc.views.BookReview', name='BookReview'), url(r'^approve-book/(?P\d+)$', 'tbc.views.ApproveBook', name='ApproveBook'), url(r'^notify-changes/(?P\d+)$', 'tbc.views.NotifyChanges', name='NotifyChanges'), + url(r'^brokenbooks/$', 'tbc.views.get_broken_books', name='brokenbooks'), + url(r'^link-image/$', 'tbc.views.link_image', name='link_image'), # ajax urls url(r'^ajax/matching-books/$', 'tbc.views.ajax_matching_books', name='AjaxMatchingBooks'), -- cgit