diff --git a/cms/djangoapps/contentstore/views/helpers.py b/cms/djangoapps/contentstore/views/helpers.py index 60683b040c..5a0a45ca21 100644 --- a/cms/djangoapps/contentstore/views/helpers.py +++ b/cms/djangoapps/contentstore/views/helpers.py @@ -24,7 +24,7 @@ from contentstore.utils import reverse_course_url, reverse_library_url, reverse_ from models.settings.course_grading import CourseGradingModel from util.milestones_helpers import is_entrance_exams_enabled -__all__ = ['edge', 'event', 'landing'] +__all__ = ['event'] # Note: Grader types are used throughout the platform but most usages are simply in-line # strings. In addition, new grader types can be defined on the fly anytime one is needed @@ -38,16 +38,6 @@ GRADER_TYPES = { } -# points to the temporary course landing page with log in and sign up -def landing(request, org, course, coursename): - return render_to_response('temp-course-landing.html', {}) - - -# points to the temporary edge page -def edge(request): - return redirect('/') - - def event(request): ''' A noop to swallow the analytics call so that cms methods don't spook and poor developers looking at diff --git a/cms/templates/temp-course-landing.html b/cms/templates/temp-course-landing.html deleted file mode 100644 index 5c9ed498fd..0000000000 --- a/cms/templates/temp-course-landing.html +++ /dev/null @@ -1,40 +0,0 @@ -<%inherit file="base.html" /> -<%! from django.core.urlresolvers import reverse %> -<%block name="title">Landing -<%block name="bodyclass">no-header class-landing - -<%block name="content"> -
-
-
-

${_("Circuits and Electronics")}

-

${_("Massachusetts Institute of Technology")}

-
- -
-

${_("Ut laoreet dolore magna aliquam erat volutpat ut wisi enim ad minim veniam quis nostrud. Est usus legentis in iis qui, facit eorum claritatem Investigationes demonstraverunt lectores. Vel illum dolore eu feugiat nulla facilisis at vero eros, et accumsan et iusto? Te feugait nulla facilisi nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming! Et quinta decima eodem modo typi qui nunc nobis, videntur parum clari fiant sollemnes in? Diam nonummy nibh euismod tincidunt exerci tation ullamcorper, suscipit lobortis nisl ut aliquip ex? Nunc putamus parum, claram anteposuerit litterarum formas humanitatis per seacula quarta decima.")}

-

${_("Gothica quam nunc putamus parum claram anteposuerit litterarum formas humanitatis per seacula. Facilisi nam liber tempor cum soluta nobis eleifend.")}

-

-
-
- -
- diff --git a/cms/urls.py b/cms/urls.py index cfd79baea7..f302d15073 100644 --- a/cms/urls.py +++ b/cms/urls.py @@ -35,16 +35,10 @@ urlpatterns = patterns( url(r'^xblock/resource/(?P[^/]*)/(?P.*)$', 'openedx.core.djangoapps.common_views.xblock.xblock_resource', name='xblock_resource_url'), - # temporary landing page for a course - url(r'^edge/(?P[^/]+)/(?P[^/]+)/course/(?P[^/]+)$', - 'contentstore.views.landing', name='landing'), - url(r'^not_found$', 'contentstore.views.not_found', name='not_found'), url(r'^server_error$', 'contentstore.views.server_error', name='server_error'), url(r'^organizations$', OrganizationListView.as_view(), name='organizations'), - # temporary landing page for edge - url(r'^edge$', 'contentstore.views.edge', name='edge'), # noop to squelch ajax errors url(r'^event$', 'contentstore.views.event', name='event'),