Introduction of the Microsite feature which allows for limited multi-tenant branding on a subdomain basis, e.g. foo.edx.org and bar.edx.org
fix errorenous logic when running a microsite that could reside in a hosting environment with a marketing site in front of it pep8/pylint fixes address PR feedback, remove underscore from test hostname more pep8/pylint cleanup. Skip test_microsites test, it works on localdev, not on Jenkins. Need to talk with QA team manually add Ned's single-to-double quote fix change aws.py runtimes so that the microsite_dir that is read from configuration is changed to a python path Conflicts: lms/templates/help_modal.html
This commit is contained in:
committed by
Don Mitchell
parent
a86086b771
commit
a3211a7405
15
test_microsites/test_microsite/css/openedx.css
Normal file
15
test_microsites/test_microsite/css/openedx.css
Normal file
@@ -0,0 +1,15 @@
|
||||
.find-courses header.search, .university-profile header.search {
|
||||
background-image: url("../images/background-image.jpg");
|
||||
}
|
||||
|
||||
.course-info header.course-profile {
|
||||
background: url("../images/background-image.jpg") repeat scroll 0 0 / cover #F5F5F5;
|
||||
}
|
||||
|
||||
.view-login .introduction header {
|
||||
background-image: url("../images/login-and-register-banner.png");
|
||||
}
|
||||
|
||||
.view-register .introduction header {
|
||||
background-image: url("../images/login-and-register-banner.png");
|
||||
}
|
||||
BIN
test_microsites/test_microsite/images/background-image.jpg
Normal file
BIN
test_microsites/test_microsite/images/background-image.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 157 KiB |
BIN
test_microsites/test_microsite/images/header-logo.png
Normal file
BIN
test_microsites/test_microsite/images/header-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,16 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Thank you for signing up for Open edX! To activate "
|
||||
"your account, please copy and paste this address into your web "
|
||||
"browser's address bar:")}
|
||||
|
||||
% if is_secure:
|
||||
https://${ site }/activate/${ key }
|
||||
% else:
|
||||
http://${ site }/activate/${ key }
|
||||
% endif
|
||||
|
||||
${_("If you didn't request this, you don't need to do anything; you won't "
|
||||
"receive any more email from us. Please do not reply to this e-mail; "
|
||||
"if you require assistance, check the help section of the "
|
||||
"Open edX web site.")}
|
||||
@@ -0,0 +1,3 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Your account for Open edX")}
|
||||
@@ -0,0 +1,15 @@
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
|
||||
This is to confirm that you changed the e-mail associated with
|
||||
Open edX from ${old_email} to ${new_email}. If you
|
||||
did not make this request, please contact us immediately. Contact
|
||||
information is listed at:
|
||||
|
||||
% if is_secure:
|
||||
https://${ site }${reverse('contact')}
|
||||
% else:
|
||||
http://${ site }${reverse('contact')}
|
||||
% endif
|
||||
|
||||
We keep a log of old e-mails, so if this request was unintentional, we
|
||||
can investigate.
|
||||
@@ -0,0 +1,15 @@
|
||||
We received a request to change the e-mail associated with your
|
||||
Open edX account from ${old_email} to ${new_email}.
|
||||
If this is correct, please confirm your new e-mail address by
|
||||
visiting:
|
||||
|
||||
% if is_secure:
|
||||
https://${ site }/email_confirm/${ key }
|
||||
% else:
|
||||
http://${ site }/email_confirm/${ key }
|
||||
% endif
|
||||
|
||||
If you didn't request this, you don't need to do anything; you won't
|
||||
receive any more email from us. Please do not reply to this e-mail;
|
||||
if you require assistance, check the help section of the
|
||||
Open edX web site.
|
||||
@@ -0,0 +1 @@
|
||||
Request to change Open edX account e-mail
|
||||
@@ -0,0 +1,30 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Dear student,")}
|
||||
|
||||
${_("You have been invited to join {course_name} at {site_name} by a "
|
||||
"member of the course staff.").format(
|
||||
course_name=course.display_name_with_default,
|
||||
site_name=site_name
|
||||
)}
|
||||
|
||||
${_("To finish your registration, please visit {registration_url} and fill "
|
||||
"out the registration form making sure to use {email_address} in the E-mail field.").format(
|
||||
registration_url=registration_url,
|
||||
email_address=email_address
|
||||
)}
|
||||
% if auto_enroll:
|
||||
${_("Once you have registered and activated your account, you will see "
|
||||
"{course_name} listed on your dashboard.").format(
|
||||
course_name=course.display_name_with_default
|
||||
)}
|
||||
% else:
|
||||
${_("Once you have registered and activated your account, visit {course_about_url} "
|
||||
"to join the course.").format(course_about_url=course_about_url)}
|
||||
% endif
|
||||
|
||||
----
|
||||
${_("This email was automatically sent from {site_name} to "
|
||||
"{email_address}").format(
|
||||
site_name=site_name, email_address=email_address
|
||||
)}
|
||||
@@ -0,0 +1,5 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("You have been invited to register for {course_name}").format(
|
||||
course_name=course.display_name_with_default
|
||||
)}
|
||||
@@ -0,0 +1,20 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Dear {full_name}").format(full_name=full_name)}
|
||||
|
||||
${_("You have been enrolled in {course_name} at {site_name} by a member "
|
||||
"of the course staff. The course should now appear on your {site_name} "
|
||||
"dashboard.").format(
|
||||
course_name=course.display_name_with_default,
|
||||
site_name=site_name
|
||||
)}
|
||||
|
||||
${_("To start accessing course materials, please visit {course_url}").format(
|
||||
course_url=course_url
|
||||
)}
|
||||
|
||||
----
|
||||
${_("This email was automatically sent from {site_name} to "
|
||||
"{full_name}").format(
|
||||
site_name=site_name, full_name=full_name
|
||||
)}
|
||||
@@ -0,0 +1,5 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("You have been enrolled in {course_name}").format(
|
||||
course_name=course.display_name_with_default
|
||||
)}
|
||||
@@ -0,0 +1,13 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Dear Student,")}
|
||||
|
||||
${_("You have been un-enrolled from course {course_name} by a member "
|
||||
"of the course staff. Please disregard the invitation "
|
||||
"previously sent.").format(course_name=course.display_name_with_default)}
|
||||
|
||||
----
|
||||
${_("This email was automatically sent from {site_name} "
|
||||
"to {email_address}").format(
|
||||
site_name=site_name, email_address=email_address
|
||||
)}
|
||||
@@ -0,0 +1,17 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("Dear {full_name}").format(full_name=full_name)}
|
||||
|
||||
${_("You have been un-enrolled in {course_name} at {site_name} by a member "
|
||||
"of the course staff. The course will no longer appear on your "
|
||||
"{site_name} dashboard.").format(
|
||||
course_name=course.display_name_with_default, site_name=site_name
|
||||
)}
|
||||
|
||||
${_("Your other courses have not been affected.")}
|
||||
|
||||
----
|
||||
${_("This email was automatically sent from {site_name} to "
|
||||
"{full_name}").format(
|
||||
full_name=full_name, site_name=site_name
|
||||
)}
|
||||
@@ -0,0 +1,5 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
${_("You have been un-enrolled from {course_name}").format(
|
||||
course_name=course.display_name_with_default
|
||||
)}
|
||||
17
test_microsites/test_microsite/templates/footer.html
Normal file
17
test_microsites/test_microsite/templates/footer.html
Normal file
@@ -0,0 +1,17 @@
|
||||
## mako
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from microsite_configuration.middleware import MicrositeConfiguration %>
|
||||
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
|
||||
<div class="wrapper wrapper-footer">
|
||||
<footer>
|
||||
<div class="colophon">
|
||||
<div class="colophon-about">
|
||||
<p>This is a Test Microsite footer</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
18
test_microsites/test_microsite/templates/login-sidebar.html
Normal file
18
test_microsites/test_microsite/templates/login-sidebar.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.core.urlresolvers import reverse
|
||||
%>
|
||||
|
||||
<header>
|
||||
<h2 class="sr">${_("Helpful Information")}</h2>
|
||||
</header>
|
||||
|
||||
<div class="cta cta-help">
|
||||
<h3>${_("Not Enrolled?")}</h3>
|
||||
<p><a href="${reverse('register_user')}">${_("Sign up for {platform_name} today!").format(platform_name=platform_name)}</a></p>
|
||||
|
||||
<h3>${_("Need Help?")}</h3>
|
||||
<p>
|
||||
Custom text
|
||||
</p>
|
||||
</div>
|
||||
@@ -0,0 +1,37 @@
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.core.urlresolvers import reverse
|
||||
%>
|
||||
<%namespace file='../../main.html' import="login_query"/>
|
||||
<%namespace name='static' file='../../static_content.html'/>
|
||||
|
||||
|
||||
<header>
|
||||
<h3 class="sr">${_("Registration Help")}</h3>
|
||||
</header>
|
||||
|
||||
<div class="cta">
|
||||
<h3>${_("Already registered?")}</h3>
|
||||
<p class="instructions">
|
||||
<a href="${reverse('signin_user')}${login_query()}">
|
||||
${_("Click here to log in.")}
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="cta cta-welcome">
|
||||
<h3>${_("Welcome to {platform_name}").format(platform_name=platform_name)}</h3>
|
||||
<p>${_("Registering with {platform_name} gives you access to all of our current and future free courses. Not ready to take a course just yet? Registering puts you on our mailing list - we will update you as courses are added.").format(platform_name=platform_name)}</p>
|
||||
</div>
|
||||
|
||||
<div class="cta cta-nextsteps">
|
||||
<h3>${_("Next Steps")}</h3>
|
||||
<p>${_("As part of joining {platform_name}, you will receive an activation email. You must click on the activation link to complete the process. Don't see the email? Check your spam folder and mark {platform_name} emails as 'not spam'. At {platform_name}, we communicate mostly through email.").format(platform_name=platform_name)}</p>
|
||||
</div>
|
||||
|
||||
<div class="cta cta-help">
|
||||
<h3>${_("Need Help?")}</h3>
|
||||
<p>
|
||||
This is custom area
|
||||
</p>
|
||||
</div>
|
||||
@@ -0,0 +1,64 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%namespace name='static' file='../../../static_content.html'/>
|
||||
|
||||
<%inherit file="../../../main.html" />
|
||||
|
||||
<%block name="title"><title>${_("About {edX}").format(edX="edX")}</title></%block>
|
||||
|
||||
<section class="container about">
|
||||
<nav>
|
||||
<a href="${reverse('about_edx')}" class="active">${_("Vision")}</a>
|
||||
<a href="${reverse('faq_edx')}">${_("Faq")}</a>
|
||||
<a href="${reverse('press')}">${_("Press")}</a>
|
||||
<a href="${reverse('contact')}">${_("Contact")}</a>
|
||||
</nav>
|
||||
|
||||
<section class="vision">
|
||||
## <div class="our-mission">
|
||||
## <div class="logo">
|
||||
## <img src="${static.url('images/edx-logo-large-bw.png')}">
|
||||
## </div>
|
||||
## <h2 class="mission-quote">“${_('The mission of <span class="edx">{edX}</span> is to enhance human fulfillment worldwide through online ## learning, transforming education in quality, efficiency and scale through technology and research, for the benefit of campus-based ## students and the worldwide community of online learners.').format(edX="edX")}”</h2>
|
||||
## </div>
|
||||
|
||||
<section class="message left">
|
||||
<div class="photo">
|
||||
<img src="${static.url('images/about_1.jpg')}">
|
||||
</div>
|
||||
<article>
|
||||
<h2>${_('About {span_start}{edX}{span_end}'.format(span_start='<span class="edx">', span_end='</span>', edX="edX"))}</h2>
|
||||
<p>${_("Open edX is a not-for-profit enterprise of its founding partners {harvard_university} and the {massachusetts_institute_of_technology} that features learning designed specifically for interactive study via the web. Based on a long history of collaboration and their shared educational missions, the founders are creating a new online-learning experience with online courses that reflect their disciplinary breadth. Along with offering online courses, the institutions will use {edX} to research how students learn and how technology can transform learning–both on-campus and worldwide. Anant Agarwal, former Director of {MIT}'s Computer Science and Artificial Intelligence Laboratory, serves as the first president of {edX}. {EdX}'s goals combine the desire to reach out to students of all ages, means, and nations, and to deliver these teachings from a faculty who reflect the diversity of its audience. {EdX} is based in Cambridge, Massachusetts and is governed by {MIT} and {Harvard}.").format(edX="edX", EdX="EdX", harvard_university="Harvard University", Harvard="Harvard", MIT="MIT", massachusetts_institute_of_technology="Massachusetts Institute of Technology")}</p>
|
||||
</article>
|
||||
<hr class="fade-right-hr-divider">
|
||||
</section>
|
||||
|
||||
<section class="message left">
|
||||
<div class="photo">
|
||||
<img src="${static.url('images/university/harvard/about-harvard.jpg')}">
|
||||
</div>
|
||||
<article>
|
||||
<h2>${_("{harvard_university}").format(harvard_university="Harvard University")}</h2>
|
||||
<p>${_("{harvard_university} is devoted to excellence in teaching, learning, and research, and to developing leaders in many disciplines who make a difference globally. {Harvard} faculty are engaged with teaching and research to push the boundaries of human knowledge. The University has twelve degree-granting Schools in addition to the {radcliffe_institute_for_advanced_study}.").format(harvard_university="Harvard University", Harvard="Harvard", radcliffe_institute_for_advanced_study="Radcliffe Institute for Advanced Study")}</p>
|
||||
<p>${_("Established in 1636, {Harvard} is the oldest institution of higher education in the United States. The University, which is based in Cambridge and Boston, Massachusetts, has an enrollment of over 20,000 degree candidates, including undergraduate, graduate, and professional students. {Harvard} has more than 360,000 alumni around the world.").format(Harvard="Harvard")}</p>
|
||||
</article>
|
||||
<hr class="fade-left-hr-divider">
|
||||
</section>
|
||||
|
||||
<section class="message left">
|
||||
<div class="photo">
|
||||
<img src="${static.url('images/university/mit/about-mit.jpg')}">
|
||||
</div>
|
||||
<article>
|
||||
<h2>${_("{massachusetts_institute_of_technology}").format(massachusetts_institute_of_technology="Massachusetts Institute of Technology")}</h2>
|
||||
<p>${_("The {massachusetts_institute_of_technology} — a coeducational, privately endowed research university founded in 1861 — is dedicated to advancing knowledge and educating students in science, technology, and other areas of scholarship that will best serve the nation and the world in the 21st century. The Institute has close to 1,000 faculty and 10,000 undergraduate and graduate students. It is organized into five Schools: Architecture and Urban Planning; Engineering; Humanities, Arts, and Social Sciences; {Sloan} School of Management; and Science.").format(massachusetts_institute_of_technology="Massachusetts Institute of Technology", Sloan="Sloan")}</p>
|
||||
<p>${_("{MIT}'s commitment to innovation has led to a host of scientific breakthroughs and technological advances. Achievements of the Institute's faculty and graduates have included the first chemical synthesis of penicillin and vitamin A, the development of inertial guidance systems, modern technologies for artificial limbs, and the magnetic core memory that made possible the development of digital computers. 78 alumni, faculty, researchers and staff have won Nobel Prizes.").format(MIT="MIT")}</p>
|
||||
<p>${_("Current areas of research and education include neuroscience and the study of the brain and mind, bioengineering, cancer, energy, the environment and sustainable development, information sciences and technology, new media, financial technology, and entrepreneurship.")}</p>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section class="partners">
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%namespace name='static' file='../static_content.html'/>
|
||||
|
||||
<%inherit file="../main.html" />
|
||||
|
||||
<%block name="title"><title>${_("Contact {platform_name}").format(platform_name=settings.PLATFORM_NAME)}</title></%block>
|
||||
|
||||
<section class="container about">
|
||||
<nav>
|
||||
<a href="${reverse('about_edx')}">${_("Vision")}</a>
|
||||
<a href="${reverse('faq_edx')}">${_("Faq")}</a>
|
||||
<a href="${reverse('press')}">${_("Press")}</a>
|
||||
<a href="${reverse('contact')}" class="active">${_("Contact")}</a>
|
||||
</nav>
|
||||
|
||||
<section class="contact">
|
||||
<div class="photo">
|
||||
<img src="${static.url('images/contact-page.jpg')}">
|
||||
</div>
|
||||
<div class="contacts">
|
||||
<h2>${_("Class Feedback")}</h2>
|
||||
<p>${_("We are always seeking feedback to improve our courses. If you are an enrolled student and have any questions, feedback, suggestions, or any other issues specific to a particular class, please post on the discussion forums of that class.")}</p>
|
||||
|
||||
<h2>${_("General Inquiries and Feedback")}</h2>
|
||||
<p>${_('If you have a general question about {platform_name} please email {email}. To see if your question has already been answered, visit our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a chance to respond to every email, we take all feedback into consideration.').format(
|
||||
platform_name=settings.PLATFORM_NAME,
|
||||
email='<a href="mailto:{contact_email}">{contact_email}</a>'.format(contact_email=settings.CONTACT_EMAIL),
|
||||
faq_link_start='<a href="{url}">'.format(url=reverse('faq_edx')),
|
||||
faq_link_end='</a>',
|
||||
fb_link_start='<a href="http://www.facebook.com/EdxOnline">',
|
||||
fb_link_end='</a>'
|
||||
)}</p>
|
||||
|
||||
<h2>${_("Technical Inquiries and Feedback")}</h2>
|
||||
<p>${_('If you have suggestions/feedback about the overall {platform_name} platform, or are facing general technical issues with the platform (e.g., issues with email addresses and passwords), you can reach us at {tech_email}. For technical questions, please make sure you are using a current version of Firefox or Chrome, and include browser and version in your e-mail, as well as screenshots or other pertinent details. If you find a bug or other issues, you can reach us at the following: {bug_email}.').format(
|
||||
platform_name=settings.PLATFORM_NAME,
|
||||
tech_email='<a href="mailto:{tech_support_email}">{tech_support_email}</a>'.format(tech_support_email=settings.TECH_SUPPORT_EMAIL),
|
||||
bug_email='<a href="mailto:{bugs_email}">{bugs_email}</a>'.format(bugs_email=settings.BUGS_EMAIL)
|
||||
)}</p>
|
||||
|
||||
<h2>${_("Media")}</h2>
|
||||
<p>${_('Please visit our {link_start}media/press page{link_end} for more information. For any media or press inquiries, please email {email}.').format(
|
||||
link_start='<a href="{url}">'.format(url=reverse('faq_edx')),
|
||||
link_end='</a>',
|
||||
email='<a href="mailto:{email}">{email}</a>'.format(email="press@edx.org"),
|
||||
)}</p>
|
||||
|
||||
<h2>${_("Universities")}</h2>
|
||||
<p>${_('If you are a university wishing to collaborate or you have questions about {platform_name}, please email {email}.'.format(
|
||||
platform_name="edX",
|
||||
email='<a href="mailto:{email}">{email}</a>'.format(
|
||||
email="university@edx.org"
|
||||
)
|
||||
))}</p>
|
||||
|
||||
<h2>${_("Accessibility")}</h2>
|
||||
<p>${_('{platform_name} strives to create an innovative online-learning platform that promotes accessibility for everyone, including students with disabilities. We are dedicated to improving the accessibility of the platform and welcome your comments or questions at {email}.'.format(platform_name="EdX", email='<a href="mailto:{email}">{email}</a>'.format(email="accessibility@edx.org")))}</p>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -0,0 +1,139 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%namespace name='static' file='../static_content.html'/>
|
||||
|
||||
<%inherit file="../main.html" />
|
||||
|
||||
<%block name="title"><title>${_("FAQ")}</title></%block>
|
||||
|
||||
<section class="container about">
|
||||
<nav>
|
||||
<a href="${reverse('about_edx')}">${_("Vision")}</a>
|
||||
<a href="${reverse('faq_edx')}" class="active">${_("Faq")}</a>
|
||||
<a href="${reverse('press')}">${_("Press")}</a>
|
||||
<a href="${reverse('contact')}">${_("Contact")}</a>
|
||||
</nav>
|
||||
|
||||
|
||||
<section class="faq">
|
||||
<section class="responses">
|
||||
<section id="the-organization" class="category">
|
||||
<h2>${_("Organization")}</h2>
|
||||
<article class="response">
|
||||
<h3>${_("What is {edX}?").format(edX="edX")}</h3>
|
||||
<p>${_('{EdX} is a not-for-profit enterprise of its founding partners, the {MIT_long} ({MIT}) and {harvard_u} that offers online learning to on-campus students and to millions of people around the world. To do so, {edX} is building an open-source online learning platform and hosts an online web portal at <a href=\"http://www.edx.org\">www.edx.org</a> for online education.').format(EdX="EdX", edX="edX", MIT_long="Massachusetts Institute of Technology", MIT="MIT", harvard_u="Harvard University")}</p>
|
||||
<p>${_("{EdX} currently offers {HarvardX}, {MITx} and {BerkeleyX} classes online for free. Beginning in fall 2013, {edX} will offer {WellesleyX} , {GeorgetownX} and the {UTexas} classes online for free. The {UT} System includes nine universities and six health institutions. In 2014, {edX} will further expand its consortium, including several international schools, when it begins offering courses from {EPFL}, {McGill}, {Toronto}, {ANU}, {Delft}, and {Rice}. The {edX} institutions aim to extend their collective reach to build a global community of online students. Along with offering online courses, the three universities undertake research on how students learn and how technology can transform learning both on-campus and online throughout the world.").format(
|
||||
EdX="EdX",
|
||||
edX="edX",
|
||||
HarvardX="HarvardX",
|
||||
MITx="MITx",
|
||||
BerkeleyX="BerkeleyX",
|
||||
WellesleyX="WellesleyX",
|
||||
GeorgetownX="GeorgetownX",
|
||||
UTexas="University of Texas System",
|
||||
UT="UT",
|
||||
EPFL=u"École Polytechnique Fédérale de Lausanne",
|
||||
McGill="McGill University",
|
||||
Toronto="University of Toronto",
|
||||
ANU="Australian National University",
|
||||
Delft="Delft University of Technology",
|
||||
Rice="Rice University",
|
||||
)}
|
||||
</p>
|
||||
</article>
|
||||
|
||||
<article class="response">
|
||||
<h3>${_("Will {edX} be adding additional X Universities?").format(edX="edX")}</h3>
|
||||
<p>${_("More than 200 institutions from around the world have expressed interest in collaborating with {edX} since {Harvard} and {MIT} announced its creation in May. {EdX} is focused above all on quality and developing the best not-for-profit model for online education. In addition to providing online courses on the {edX} platform, the {x_consortium} will be a forum in which members can share experiences around online learning. {Harvard}, {MIT}, {Berkeley}, the {UTexas} and the other {consortium} members will work collaboratively to establish the {x_consortium}, whose membership will expand to include additional \"{X_Universities}.\" As noted above, {edX}'s newest {consortium} members include {Wellesley}, {Georgetown}, {EPFL}, {McGill}, {Toronto}, {ANU}, {Delft}, and {Rice}. Each member of the {consortium} will offer courses on the {edX} platform as an \"{X_University}\". The gathering of many universities' educational content together on one site will enable learners worldwide to access the offered course content of any participating university from a single website, and to use a set of online educational tools shared by all participating universities.").format(
|
||||
EdX="EdX",
|
||||
edX="edX",
|
||||
Harvard="Harvard",
|
||||
MIT="MIT",
|
||||
x_consortium="\"X University\" Consortium",
|
||||
consortium="consortium",
|
||||
X_Universities="X Universities",
|
||||
X_University="X University",
|
||||
Berkeley="UC Berkeley",
|
||||
Wellesley="Wellesley",
|
||||
Georgetown="Georgetown",
|
||||
UTexas="University of Texas System",
|
||||
EPFL=u"École Polytechnique Fédérale de Lausanne",
|
||||
McGill="McGill University",
|
||||
Toronto="University of Toronto",
|
||||
ANU="Australian National University",
|
||||
Delft="Delft University of Technology",
|
||||
Rice="Rice University",
|
||||
)}</p>
|
||||
<p>${_("{EdX} will actively explore the addition of other institutions from around the world to the {edX} platform, and looks forward to adding more \"{X_Universities}\".").format(EdX="EdX", edX="edX", X_Universities="X Universities")}
|
||||
</p>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section id="students" class="category">
|
||||
<h2>${_("Students")}</h2>
|
||||
<article class="response">
|
||||
<h3>${_("Who can take {edX} courses? Will there be an admissions process?").format(edX="edX")}</h3>
|
||||
<p>${_("{EdX} will be available to anyone in the world with an internet connection, and in general, there will not be an admissions process.").format(EdX="EdX")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("Will certificates be awarded?")}</h3>
|
||||
<p>${_("Yes. Online learners who demonstrate mastery of subjects can earn a certificate "
|
||||
"of mastery. Certificates will be issued at the discretion of {edX} and the underlying "
|
||||
"\"{X_University}\" that offered the course under the name of the underlying \"{X_University}\" from where the course originated, i.e. {HarvardX}, {MITx} or {BerkeleyX}. "
|
||||
"For the courses in Fall 2012, those certificates will be free. There is a plan to "
|
||||
"charge a modest fee for certificates in the future. Note: At this time, {edX} is "
|
||||
"holding certificates for learners connected with Cuba, Iran, Syria and Sudan "
|
||||
"pending confirmation that the issuance is in compliance with U.S. embargoes.").format(edX="edX", X_University="X University", HarvardX="HarvardX", MITx="MITx", BerkeleyX="BerkeleyX")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("What will the scope of the online courses be? How many? Which faculty?")}</h3>
|
||||
<p>${_('Our goal is to offer a wide variety of courses across disciplines. There are currently {link_start}fifteen{link_end} offered on the {edX} platform.').format(link_start='<a href="/courses">', link_end='</a>', edX="edX")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("Who is the learner? Domestic or international? Age range?")}</h3>
|
||||
<p>${_("Improving teaching and learning for students on our campuses is one of our primary goals. Beyond that, we don't have a target group of potential learners, as the goal is to make these courses available to anyone in the world - from any demographic - who has interest in advancing their own knowledge. The only requirement is to have a computer with an internet connection. More than 150,000 students from over 160 countries registered for {MITx}'s first course, 6.002x: Circuits and Electronics. The age range of students certified in this course was from 14 to 74 years-old.").format(MITx="MITx")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("Will participating universities' standards apply to all courses offered on the edX platform?")}</h3>
|
||||
<p>${_("Yes: the reach changes exponentially, but the rigor remains the same.")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("How do you intend to test whether this approach is improving learning?")}</h3>
|
||||
<p>${_("{EdX} institutions have assembled faculty members who will collect and analyze data to assess results and the impact {edX} is having on learning.").format(EdX="EdX", edX="edX")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("How may I apply to study with {edX}?").format(edX="edX")}</h3>
|
||||
<p>${_('Simply complete the online {link_start}signup form{link_end}. Enrolling will create your unique student record in the {edX} database, allow you to register for classes, and to receive a certificate on successful completion.').format(link_start='<a href="#signup-modal" rel="leanModal">', link_end='</a>', edX="edX")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("How may another university participate in {edX}? ").format(edX="edX")}</h3>
|
||||
<p>${_('If you are from a university interested in discussing {edX}, please email {email}').format(email='<a href="mailto:university@edx.org">university@edx.org</a>', edX="edX")}</p>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section id="technology-platform" class="category">
|
||||
<h2>${_("Technology Platform")}</h2>
|
||||
<article class="response">
|
||||
<h3>${_("What technology will {edX} use?").format(edX="edX")}</h3>
|
||||
<p>${_("The {edX} open-source online learning platform will feature interactive learning designed specifically for the web. Features will include: self-paced learning, online discussion groups, wiki-based collaborative learning, assessment of learning as a student progresses through a course, and online laboratories and other interactive learning tools. The platform will also serve as a laboratory from which data will be gathered to better understand how students learn. Because it is open source, the platform will be continuously improved by a worldwide community of collaborators, with new features added as needs arise.").format(edX="edX")}</p>
|
||||
<p>${_("The first version of the technology was used in the first <em>{MITx}</em> course, 6.002x Circuits and Electronics, which launched in Spring, 2012.").format(MITx="MITx")}</p>
|
||||
</article>
|
||||
<article class="response">
|
||||
<h3>${_("How is this different from what other universities are doing online?")}</h3>
|
||||
<p>${_("{EdX} is a not-for-profit enterprise built upon the shared educational missions of its founding partners, {Harvard_long} and {MIT}. The {edX} platform will be available as open source. Also, a primary goal of {edX} is to improve teaching and learning on campus by experimenting with blended models of learning and by supporting faculty in conducting significant research on how students learn.").format(edX="edX", EdX="EdX", Harvard_long="Harvard University", MIT="MIT")}</p>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
<nav class="categories">
|
||||
<a href="#organization">${_("Organization")}</a>
|
||||
<a href="${reverse('help_edx')}">${_("Students")}</a>
|
||||
<a href="#technology-platform">${_("Technology Platform")}</a>
|
||||
</nav>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
%if user.is_authenticated():
|
||||
<%include file="../signup_modal.html" />
|
||||
%endif
|
||||
@@ -0,0 +1,122 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%inherit file="../main.html" />
|
||||
|
||||
<%namespace name='static' file='../static_content.html'/>
|
||||
|
||||
<%block name="title"><title>Terms of Service</title></%block>
|
||||
|
||||
<section class="static-container tos">
|
||||
<h1>edX Terms of Service</h1>
|
||||
<hr class="horizontal-divider"/>
|
||||
|
||||
<div class="inner-wrapper">
|
||||
<p><strong>NOTICE: on September 26, 2012 edX adopted amended Terms of Service, providing as follows:</strong></p>
|
||||
|
||||
<p>Welcome to edX. Please read these Terms of Service ("TOS") and edX's <a href="${reverse('privacy_edx')}">Privacy Policy</a> and <a href="${reverse('honor')}">Honor Code</a> prior to registering for edX.org or using any portion of the edX website (the "Site," which consists of all content and pages located within the edX.org web domain), including accessing any course material, chat rooms, or other electronic services. These TOS, the Privacy Policy and the Honor Code are agreements (the "Agreements") between you and edX. By using the Site, you accept and agree to be legally bound by the Agreements, whether or not you are a registered user. If you do not understand or do not wish to be bound by the terms of the Agreements, you should not use the Site.")</p>
|
||||
|
||||
<p>EdX reserves the right to modify these TOS at any time without advance notice. Any changes to these TOS will be effective immediately upon posting on this page, with an updated effective date. By accessing the Site after any changes have been made, you signify your agreement on a prospective basis to the modified TOS and all of the changes. Be sure to return to this page periodically to ensure familiarity with the most current version of these TOS.</p>
|
||||
|
||||
<h2>Description of edX</h2>
|
||||
<p>EdX offers online courses that include opportunities for professor-to-student and student-to-student interactivity, individual assessment of a student's work and for students who demonstrate their mastery of subjects, a certificate of mastery.</p>
|
||||
|
||||
<h2>Rules for Online Conduct</h2>
|
||||
<p>You agree that you are responsible for your own use of the Site and for your User Postings. "User Postings" include all content submitted, posted, published or distributed on the Site by you or other users of the Site, including but not limited to all forum posts, wiki edits, notes, questions, comments, videos and file uploads. You agree that you will use the Site in compliance with these TOS, the Honor Code and all applicable local, state, national and international laws, rules and regulations, including copyright laws, any laws regarding the transmission of technical data exported from your country of residence, and all United States export control laws.</p>
|
||||
|
||||
<p>As a condition of your use of the edX services, you will not use the Site in any manner intended to damage, disable, overburden or impair any edX server or the network(s) connected to any edX server or to interfere with any other party's use and enjoyment of the Site. You may not attempt to gain unauthorized access to the Site, other accounts, computer systems or networks connected to any edX server through hacking, password mining or any other means. You may not obtain or attempt to obtain any materials or information stored on the Site, its servers or associated computers through any means not intentionally made available through the Site.</p>
|
||||
|
||||
<h2>The following list of items is strictly prohibited on the Site:</h2>
|
||||
<ol>
|
||||
<li>Content that defames, harasses or threatens others;</li>
|
||||
<li>Content that discusses illegal activities with the intent to commit them;</li>
|
||||
<li>Content that infringes another's intellectual property, including, but not limited to, copyrights or trademarks;</li>
|
||||
<li>Profane, pornographic, obscene, indecent or unlawful content;</li>
|
||||
<li>Advertising or any form of commercial solicitation;</li>
|
||||
<li>Content related to partisan political activities;</li>
|
||||
<li>Viruses, trojan horses, worms, time bombs, corrupted files, malware, spyware or any other similar software that may damage the operation of another's computer or property; and</li>
|
||||
<li>Content that contains intentionally inaccurate information or that is posted with the intent of misleading others.</li>
|
||||
</ol>
|
||||
|
||||
<p>Furthermore, you agree not to scrape, or otherwise download in bulk, any Site content, including but not limited to a list or directory of users on the system, on-line textbooks, User Postings or user information. You agree not to misrepresent or attempt to misrepresent your identity while using the Sites (although you are welcome and encouraged to use an anonymous username in the forums and to act in a manner that keeps your identity concealed).</p>
|
||||
|
||||
<h2>User Accounts and Authority</h2>
|
||||
<p>In order to participate fully in Site activities, you must provide your name, an email address and a user password in order to create a user account ("User Account"). You agree that you will never divulge or share access or access information to your User Account with any third party for any reason. In setting up your User Account, you may be prompted to enter additional optional information (e.g., your address). You represent that all information provided by you is accurate and current. You agree to maintain and update your information to keep it accurate and current.</p>
|
||||
|
||||
<p>We care about the confidentiality and security of your personal information. Please see our <a href="${reverse('privacy_edx')}">Privacy Policy</a> for more information about what information about you edX collects and how edX uses that information."</p>
|
||||
|
||||
<h2>Your Right to Use Content on the Site</h2>
|
||||
<p>Unless indicated as being in the public domain, the content on the Site is protected by United States and foreign copyright laws. Unless otherwise expressly stated on the Site, the texts, exams, video, images and other instructional materials provided with the courses offered on this Site are for your personal use in connection with those courses only. MIT and Harvard aim to make much of the edX course content available under more open license terms that will help create a vibrant ecosystem of contributors and further edX's goal of making education accessible and affordable to the world.</p>
|
||||
|
||||
<p>Certain reference documents, digital textbooks, articles and other information on the Site are used with the permission of third parties, and use of that information is subject to certain rules and conditions, which will be posted along with the information. By using this Site you agree to abide by all such rules and conditions.</p>
|
||||
|
||||
<p>You agree to retain all copyright and other notices on any content you obtain from the Site. All rights in the Site and its content, if not expressly granted, are reserved.</p>
|
||||
|
||||
<h2>User Postings</h2>
|
||||
|
||||
<p><strong>User Postings Representations and Warranties.</strong> By submitting or distributing your User Postings, you affirm, represent and warrant (1) that you have the necessary rights, licenses, consents and/or permissions to reproduce and publish the User Postings and to authorize edX and its users to reproduce, modify, publish and otherwise use and distribute your User Postings in a manner consistent with the licenses granted by you below, and (2) that neither your submission of your User Postings nor the exercise of the licenses granted below will infringe or violate the rights of any third party. You, and not edX, are solely responsible for your User Postings and the consequences of posting or publishing them.</p>
|
||||
|
||||
<p><strong>License Grant to edX.</strong> By submitting or distributing User Postings to the Site, you hereby grant to edX a worldwide, non-exclusive, transferable, assignable, sublicensable, fully paid-up, royalty-free, perpetual, irrevocable right and license to host, transfer, display, perform, reproduce, modify, distribute, re-distribute, relicense and otherwise use, make available and exploit your User Postings, in whole or in part, in any form and in any media formats and through any media channels (now known or hereafter developed).</p>
|
||||
|
||||
<p><strong>License Grant to edX Users.</strong> By submitting or distributing User Postings to the Site, you hereby grant to each user of the Site a non-exclusive license to access and use your User Postings in connection with their use of the Site for their own personal purposes.</p>
|
||||
|
||||
<h2>Certificates, etc.</h2>
|
||||
|
||||
<p>EdX and/or the colleges and universities providing courses on the Site may offer a certificate of mastery or other acknowledgment (a "Certificate") for students who, in their judgment, have satisfactorily demonstrated mastery of the course material. Certificates will be issued by edX under the name of the underlying "X University" from where the course originated, i.e. HarvardX, MITx. etc. The decision whether a Certificate will be awarded to a given student will be solely within the discretion of the awarding entity, as will the name and form of any such Certificate. EdX and/or the institutions providing courses on the Site may choose not to offer a Certificate for some courses.</p>
|
||||
|
||||
<p>When you take a course through edX, you will not be an applicant for admission to, or enrolled in, any degree program of the institution as a result of registering for or completing a course through edX. You will not be entitled to use any of the resources of the institution beyond the online courses provided on the Site, nor will you be eligible to receive student privileges or benefits provided to students enrolled in degree programs of the institution.</p>
|
||||
|
||||
<h2>Trademarks</h2>
|
||||
|
||||
<p><strong>Use of edX, MIT, Harvard University and X University Names, Trademarks and Service Marks.</strong> The "edX", "MIT", and "Harvard University" names, logos and seals are trademarks ("Trademarks") of the respective entities. Likewise, the names, logos, and seals of the other colleges and universities providing courses on the Site (the "X Universities") are Trademarks owned by the X Universities. You may not use any of these Trademarks, or any variations thereof, without the owner's prior written consent. You may not use any of these Trademarks, or any variations thereof, for promotional purposes, or in any way that deliberately or inadvertently claims, suggests or, in these institutions' sole judgment, gives the appearance or impression of a relationship with or endorsement by these institutions.</p>
|
||||
|
||||
<p>All Trademarks not owned by these institutions that appear on the Site or on or through the services made available on or through the Site, if any, are the property of their respective owners.</p>
|
||||
|
||||
<p>Nothing contained on the Site should be construed as granting, by implication, estoppel or otherwise, any license or right to use any Trademark displayed on the Site without the written permission of the owner of the applicable Trademark.</p>
|
||||
|
||||
<h2>Digital Millennium Copyright Act</h2>
|
||||
|
||||
<p>Copyright owners who believe their material has been infringed on the Site should contact edX's designated copyright agent at <a href="mailto:dcma-agent@mit.edu">dcma-agent@mit.edu</a> or at 77 Massachusetts Avenue, Cambridge, MA 02138-4307 Attention: MIT DCMA Agent, W92-263A.</p>
|
||||
|
||||
<p>Notification must include:</p>
|
||||
<ul>
|
||||
<li>Identification of the copyrighted work, or, in the case of multiple works at the same location, a representative list of such works at that site.</li>
|
||||
<li>Identification of the material that is claimed to be infringing or to be the subject of infringing activity. You must include sufficient information for us to locate the material (e.g., URL, IP address, computer name).</li>
|
||||
<li>Information for us to be able to contact the complaining party (e.g., email address, phone number).</li>
|
||||
<li>A statement that the complaining party believes that the use of the material has not been authorized by the copyright owner or an authorized agent.</li>
|
||||
<li>A statement that the information in the notification is accurate and that the complaining party is authorized to act on behalf of the copyright owner.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Disclaimers of Warranty / Limitations of Liabilities</h2>
|
||||
<p><strong>THE SITE AND ANY INFORMATION, CONTENT OR SERVICES MADE AVAILABLE ON OR THROUGH THE SITE ARE PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW.</strong></p>
|
||||
|
||||
<p><strong>EDX AND THE EDX PARTICIPANTS (AS HERINAFTER DEFINED) DO NOT WARRANT THAT THE SITE WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE SITE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE COURSES OR CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. EDX AND THE EDX PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, COMPLETENESS, TIMELINESS, OR QUALITY OF THE SITE OR ANY COURSES OR CONTENT, OR THAT ANY PARTICULAR COURSES OR CONTENT WILL CONTINUE TO BE MADE AVAILABLE. “EDX PARTICIPANTS” MEANS MIT, HARVARD, X UNIVERSITIES, THE ENTITIES PROVIDING INFORMATION, CONTENT OR SERVICES FOR THE SITE, THE COURSE INSTRUCTORS AND THEIR STAFFS.</strong></p>
|
||||
|
||||
<p><strong>USE OF THE SITE, AND THE CONTENT AND SERVICES OBTAINED FROM OR THROUGH THE SITE, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF INFORMATION, MATERIALS OR DATA THROUGH THE SITE OR ANY REFERENCE SITES IS AT YOUR OWN DISCRETION AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OR USE OF SUCH MATERIAL OR DATA.</strong></p>
|
||||
|
||||
<p><strong>User Postings Disclaimer.</strong> You understand that when using the Site you will be exposed to User Postings from a variety of sources and that neither edX nor the edX Participants are responsible for the accuracy, usefulness, reliability or intellectual property rights of or relating to such User Postings. You further understand and acknowledge that you may be exposed to User Postings that are inaccurate, offensive, defamatory, indecent or objectionable and you agree to waive, and hereby do waive, any legal or equitable rights or remedies you have or may have against edX or any of the edX Participants with respect thereto. Neither edX nor the edX Participants endorse any User Postings or any opinion, recommendation or advice expressed therein. Neither edX nor the edX Participants have any obligation to monitor any User Postings or any other user communications through the Site.</p>
|
||||
|
||||
<p>However, edX reserves the right to review User Postings and to exercise its sole discretion to edit or remove, in whole or in part, any User Posting at any time or for any reason, or to allow the edX Participants to do so. Without limiting the foregoing, upon receiving notice from a user or a content owner that a User Posting allegedly does not conform to these TOS, edX may investigate the allegation and determine in its sole discretion whether to remove the User Posting, which it reserves the right to do at any time and without notice.</p>
|
||||
|
||||
<p><strong>Links to Other Sites.</strong> The Site may include hyperlinks to sites maintained or controlled by others. EdX and the edX Participants are not responsible for and do not routinely screen, approve, review or endorse the contents of or use of any of the products or services that may be offered at these sites. If you decide to access linked third party web sites, you do so at your own risk.</p>
|
||||
|
||||
<p><strong>TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER EDX NOR ANY OF THE EDX PARTICIPANTS WILL BE LIABLE TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT OF OR RELATING TO THESE TERMS OF SERVICE, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR INABILITY TO USE THE SITE, OR YOUR PLACEMENT OF CONTENT ON THE SITE, OR YOUR RELIANCE UPON INFORMATION OBTAINED FROM OR THROUGH THE SITE, WHETHER YOUR CLAIM IS BASED IN CONTRACT, TORT, STATUTORY OR OTHER LAW.</strong></p>
|
||||
|
||||
<p><strong>IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER EDX NOR ANY OF THE EDX PARTICIPANTS WILL HAVE ANY LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT EDX OR ANY OF THE EDX PARTICIPANTS HAS BEEN NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN AVAILABILITY OF DATA).</strong></p>
|
||||
|
||||
<h2>Indemnification</h2>
|
||||
|
||||
<p>You agree to defend, hold harmless and indemnify edX and the edX Participants, and their respective subsidiaries, affiliates, officers, faculty, students, fellows, governing board members, agents and employees from and against any third-party claims, actions or demands arising out of, resulting from or in any way related to your use of the Site, including any liability or expense arising from any and all claims, losses, damages (actual and consequential), suits, judgments, litigation costs and attorneys' fees, of every kind and nature. In such a case, edX or one of the edX Participants will provide you with written notice of such claim, suit or action.</p>
|
||||
|
||||
<h2>Miscellaneous</h2>
|
||||
|
||||
<p><strong>Termination Rights; Discontinuation of Courses and Content.</strong> You agree that edX, in its sole discretion, may terminate your use of the Site or your participation in it, for any reason or no reason, upon notice to you. It is edX's policy to terminate in appropriate circumstances users of the Site who are repeat copyright infringers. EdX and the edX Participants reserve the right at any time in their sole discretion to cancel, delay, reschedule or alter the format of any course offered through edX, or to cease providing any part or all of the Site content or related services, and you agree that neither edX nor any of the edX Participants will have any liability to you for such an action. If you no longer desire to participate in the Site, you may terminate your participation at any time. The rights granted to you hereunder will terminate upon any termination of your right to use the Site, but the other provisions of these TOS will survive any such termination. </p>
|
||||
|
||||
<p><strong>Entire Agreement.</strong> These TOS, the Honor Code, and the Privacy Policy together constitute the entire agreement between you and edX with respect to your use of the Site, superseding any prior agreements between you and edX regarding your use of the Site.</p>
|
||||
|
||||
<p><strong>Waiver and Severability of TOS.</strong> The failure of edX to exercise or enforce any right or provision of these TOS shall not constitute a waiver of such right or provision. If any provision of these TOS is found by a court of competent jurisdiction to be invalid, the parties nevertheless agree that the court should endeavor to give effect to the parties' intentions as reflected in the provision and the other provisions of these TOS shall remain in full force and effect.</p>
|
||||
|
||||
<p><strong>Choice of Law/Forum Selection.</strong> You agree that these TOS and any claim or dispute arising out of or relating to these TOS or any content or service obtained from or through the Site will be governed by the laws of the Commonwealth of Massachusetts, excluding its conflicts of law provisions. You agree that all such claims and disputes will be heard and resolved exclusively in the federal or state courts located in and serving Cambridge, Massachusetts, U.S.A. You consent to the personal jurisdiction of those courts over you for this purpose, and you waive and agree not to assert any objection to such proceedings in those courts (including any defense or objection of lack of proper jurisdiction or venue or inconvenience of forum).</p>
|
||||
|
||||
<p><strong>Effective Date:</strong> September 26, 2012</p>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user