diff --git a/common/djangoapps/student/views.py b/common/djangoapps/student/views.py index 6e02a2a29b..5fab7b96fd 100644 --- a/common/djangoapps/student/views.py +++ b/common/djangoapps/student/views.py @@ -2,10 +2,8 @@ Student Views """ import datetime -import json import logging import re -import urllib import uuid import time from collections import defaultdict @@ -17,7 +15,6 @@ from django.contrib.auth.models import User, AnonymousUser from django.contrib.auth.decorators import login_required from django.contrib.auth.views import password_reset_confirm from django.contrib import messages -from django.core.cache import cache from django.core.context_processors import csrf from django.core.mail import send_mail from django.core.urlresolvers import reverse @@ -91,7 +88,6 @@ from third_party_auth import pipeline, provider log = logging.getLogger("edx.student") AUDIT_LOG = logging.getLogger("audit") -Article = namedtuple('Article', 'title url author image deck publication publish_date') ReverifyInfo = namedtuple('ReverifyInfo', 'course_id course_name course_number date status display') # pylint: disable=C0103 def csrf_token(context): @@ -135,19 +131,6 @@ def course_from_id(course_id): course_loc = CourseDescriptor.id_to_location(course_id) return modulestore().get_instance(course_id, course_loc) -day_pattern = re.compile(r'\s\d+,\s') -multimonth_pattern = re.compile(r'\s?\-\s?\S+\s') - - -def _get_date_for_press(publish_date): - # strip off extra months, and just use the first: - date = re.sub(multimonth_pattern, ", ", publish_date) - if re.search(day_pattern, date): - date = datetime.datetime.strptime(date, "%B %d, %Y").replace(tzinfo=UTC) - else: - date = datetime.datetime.strptime(date, "%B, %Y").replace(tzinfo=UTC) - return date - def embargo(_request): """ @@ -165,18 +148,7 @@ def embargo(_request): def press(request): - json_articles = cache.get("student_press_json_articles") - if json_articles is None: - if hasattr(settings, 'RSS_URL'): - content = urllib.urlopen(settings.PRESS_URL).read() - json_articles = json.loads(content) - else: - content = open(settings.PROJECT_ROOT / "templates" / "press.json").read() - json_articles = json.loads(content) - cache.set("student_press_json_articles", json_articles) - articles = [Article(**article) for article in json_articles] - articles.sort(key=lambda item: _get_date_for_press(item.publish_date), reverse=True) - return render_to_response('static_templates/press.html', {'articles': articles}) + return render_to_response('static_templates/press.html') def process_survey_link(survey_link, user): diff --git a/lms/envs/common.py b/lms/envs/common.py index 6287bfb5aa..79f2c0e737 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -354,8 +354,6 @@ LIB_URL = '/static/js/' # Dev machines shouldn't need the book # BOOK_URL = '/static/book/' BOOK_URL = 'https://mitxstatic.s3.amazonaws.com/book_images/' # For AWS deploys -# RSS_URL = r'lms/templates/feed.rss' -# PRESS_URL = r'' RSS_TIMEOUT = 600 # Configuration option for when we want to grab server error pages diff --git a/lms/static/images/press/amradiowrks_press_logo_178x138.jpg b/lms/static/images/press/amradiowrks_press_logo_178x138.jpg deleted file mode 100755 index fb76aefc9c..0000000000 Binary files a/lms/static/images/press/amradiowrks_press_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ap_logo_178x138.jpg b/lms/static/images/press/ap_logo_178x138.jpg deleted file mode 100644 index 48f150021e..0000000000 Binary files a/lms/static/images/press/ap_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/arstechnica_logo_178x138.jpg b/lms/static/images/press/arstechnica_logo_178x138.jpg deleted file mode 100755 index 2e471640ec..0000000000 Binary files a/lms/static/images/press/arstechnica_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/austin_statesman_logo_178x138.jpg b/lms/static/images/press/austin_statesman_logo_178x138.jpg deleted file mode 100644 index 2e760899cd..0000000000 Binary files a/lms/static/images/press/austin_statesman_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/baltsun_logo_178x138.jpg b/lms/static/images/press/baltsun_logo_178x138.jpg deleted file mode 100755 index 3dc619ac7b..0000000000 Binary files a/lms/static/images/press/baltsun_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/bbc_logo_178x138.jpeg b/lms/static/images/press/bbc_logo_178x138.jpeg deleted file mode 100644 index e3395e56a9..0000000000 Binary files a/lms/static/images/press/bbc_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bloomberg_logo_178x138.jpeg b/lms/static/images/press/bloomberg_logo_178x138.jpeg deleted file mode 100644 index d87819b7cd..0000000000 Binary files a/lms/static/images/press/bloomberg_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bostinno_logo_178x138.jpg b/lms/static/images/press/bostinno_logo_178x138.jpg deleted file mode 100644 index dadddecbf9..0000000000 Binary files a/lms/static/images/press/bostinno_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/bostonglobe_logo_178x138.jpeg b/lms/static/images/press/bostonglobe_logo_178x138.jpeg deleted file mode 100644 index 0224476b29..0000000000 Binary files a/lms/static/images/press/bostonglobe_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bostonmag_logo_178x138.jpg b/lms/static/images/press/bostonmag_logo_178x138.jpg deleted file mode 100755 index aa4f8a3577..0000000000 Binary files a/lms/static/images/press/bostonmag_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/busweek_logo_178x138.jpg b/lms/static/images/press/busweek_logo_178x138.jpg deleted file mode 100644 index 5bfd9450c6..0000000000 Binary files a/lms/static/images/press/busweek_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/campdenfb_logo_178x138.jpg b/lms/static/images/press/campdenfb_logo_178x138.jpg deleted file mode 100644 index 1d2c047540..0000000000 Binary files a/lms/static/images/press/campdenfb_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/campustech_logo_178x138.jpg b/lms/static/images/press/campustech_logo_178x138.jpg deleted file mode 100644 index 9026d08dc2..0000000000 Binary files a/lms/static/images/press/campustech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/cbsnews_178x138.jpg b/lms/static/images/press/cbsnews_178x138.jpg deleted file mode 100644 index c9fea9e31f..0000000000 Binary files a/lms/static/images/press/cbsnews_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/center_digeducation_logo_178x138.jpg b/lms/static/images/press/center_digeducation_logo_178x138.jpg deleted file mode 100644 index 8da07ef28f..0000000000 Binary files a/lms/static/images/press/center_digeducation_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/chroniclehighered_logo_178x138.jpeg b/lms/static/images/press/chroniclehighered_logo_178x138.jpeg deleted file mode 100644 index 95dce54e2e..0000000000 Binary files a/lms/static/images/press/chroniclehighered_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/cnn_logo_178x138.jpg b/lms/static/images/press/cnn_logo_178x138.jpg deleted file mode 100644 index f747b4dc0a..0000000000 Binary files a/lms/static/images/press/cnn_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/college_classes_logo_178x138.jpg b/lms/static/images/press/college_classes_logo_178x138.jpg deleted file mode 100644 index aa216623b2..0000000000 Binary files a/lms/static/images/press/college_classes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/concord_consortium_logo.jpg b/lms/static/images/press/concord_consortium_logo.jpg deleted file mode 100644 index ef3552fc9c..0000000000 Binary files a/lms/static/images/press/concord_consortium_logo.jpg and /dev/null differ diff --git a/lms/static/images/press/csmonitor_logo_178x138.jpg b/lms/static/images/press/csmonitor_logo_178x138.jpg deleted file mode 100755 index d389b7a6f1..0000000000 Binary files a/lms/static/images/press/csmonitor_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/dailycollegian_logo_178x138.jpg b/lms/static/images/press/dailycollegian_logo_178x138.jpg deleted file mode 100644 index e704c9e9bb..0000000000 Binary files a/lms/static/images/press/dailycollegian_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/dailynews_india_logo_178x138.jpg b/lms/static/images/press/dailynews_india_logo_178x138.jpg deleted file mode 100644 index 6e2262bf83..0000000000 Binary files a/lms/static/images/press/dailynews_india_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/edtechtimes_logo_178x138.jpg b/lms/static/images/press/edtechtimes_logo_178x138.jpg deleted file mode 100755 index c87355fd7b..0000000000 Binary files a/lms/static/images/press/edtechtimes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/eduinvest_logo_178x138.jpg b/lms/static/images/press/eduinvest_logo_178x138.jpg deleted file mode 100644 index a907c27f42..0000000000 Binary files a/lms/static/images/press/eduinvest_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/edx_logo_108x81.jpeg b/lms/static/images/press/edx_logo_108x81.jpeg deleted file mode 100644 index 0660d9de08..0000000000 Binary files a/lms/static/images/press/edx_logo_108x81.jpeg and /dev/null differ diff --git a/lms/static/images/press/forbes_logo_178x138.jpg b/lms/static/images/press/forbes_logo_178x138.jpg deleted file mode 100755 index 14f3e250a3..0000000000 Binary files a/lms/static/images/press/forbes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ft_logo_178x138.jpg b/lms/static/images/press/ft_logo_178x138.jpg deleted file mode 100644 index 72a89bf5b0..0000000000 Binary files a/lms/static/images/press/ft_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/gigaom_logo_178x138.jpeg b/lms/static/images/press/gigaom_logo_178x138.jpeg deleted file mode 100644 index cdbda2f5d1..0000000000 Binary files a/lms/static/images/press/gigaom_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/govtech_logo_178x138.jpg b/lms/static/images/press/govtech_logo_178x138.jpg deleted file mode 100644 index bd119e95a0..0000000000 Binary files a/lms/static/images/press/govtech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/harvardcrimson_logo_178x138.jpeg b/lms/static/images/press/harvardcrimson_logo_178x138.jpeg deleted file mode 100644 index 7fa3bef5e1..0000000000 Binary files a/lms/static/images/press/harvardcrimson_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvardgazette_logo_178x138.jpeg b/lms/static/images/press/harvardgazette_logo_178x138.jpeg deleted file mode 100644 index 1f0bfac70b..0000000000 Binary files a/lms/static/images/press/harvardgazette_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvardmagazine_logo_178x138.jpeg b/lms/static/images/press/harvardmagazine_logo_178x138.jpeg deleted file mode 100644 index 58b29a5596..0000000000 Binary files a/lms/static/images/press/harvardmagazine_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvarduniv_logo_178x138.jpeg b/lms/static/images/press/harvarduniv_logo_178x138.jpeg deleted file mode 100644 index 66dd05fb88..0000000000 Binary files a/lms/static/images/press/harvarduniv_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/huffpost_logo_178x138.jpeg b/lms/static/images/press/huffpost_logo_178x138.jpeg deleted file mode 100644 index ed30f223f2..0000000000 Binary files a/lms/static/images/press/huffpost_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/ibtimes_logo_178x138.jpg b/lms/static/images/press/ibtimes_logo_178x138.jpg deleted file mode 100644 index 80cde4af9b..0000000000 Binary files a/lms/static/images/press/ibtimes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ieee_logo_178x138.jpeg b/lms/static/images/press/ieee_logo_178x138.jpeg deleted file mode 100644 index 6f2d5f7bfa..0000000000 Binary files a/lms/static/images/press/ieee_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/insidehighered_logo_178x138.jpg b/lms/static/images/press/insidehighered_logo_178x138.jpg deleted file mode 100755 index ad23f11a96..0000000000 Binary files a/lms/static/images/press/insidehighered_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/itbriefing_logo_178x138.jpg b/lms/static/images/press/itbriefing_logo_178x138.jpg deleted file mode 100755 index c8380ada13..0000000000 Binary files a/lms/static/images/press/itbriefing_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/knowledgespeak_logo_178x138.jpg b/lms/static/images/press/knowledgespeak_logo_178x138.jpg deleted file mode 100644 index 20c9d7e095..0000000000 Binary files a/lms/static/images/press/knowledgespeak_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/latimes_logo_178x138.jpeg b/lms/static/images/press/latimes_logo_178x138.jpeg deleted file mode 100644 index fed922f846..0000000000 Binary files a/lms/static/images/press/latimes_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/masshightech_logo_178x138.jpg b/lms/static/images/press/masshightech_logo_178x138.jpg deleted file mode 100644 index ff8272d3ed..0000000000 Binary files a/lms/static/images/press/masshightech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/mercurynews_logo_178x138.jpeg b/lms/static/images/press/mercurynews_logo_178x138.jpeg deleted file mode 100644 index 798749ab22..0000000000 Binary files a/lms/static/images/press/mercurynews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/mit_logo_178x138.jpeg b/lms/static/images/press/mit_logo_178x138.jpeg deleted file mode 100644 index 3fb78ac90c..0000000000 Binary files a/lms/static/images/press/mit_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/npq_logo_178x138.jpg b/lms/static/images/press/npq_logo_178x138.jpg deleted file mode 100644 index 69a8d6593a..0000000000 Binary files a/lms/static/images/press/npq_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/npr_logo_178x138.jpeg b/lms/static/images/press/npr_logo_178x138.jpeg deleted file mode 100644 index 987f57206c..0000000000 Binary files a/lms/static/images/press/npr_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/nyt_logo_178x138.jpeg b/lms/static/images/press/nyt_logo_178x138.jpeg deleted file mode 100644 index b40af3e79f..0000000000 Binary files a/lms/static/images/press/nyt_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/nytimes_240x180.png b/lms/static/images/press/nytimes_240x180.png deleted file mode 100644 index d34376a91f..0000000000 Binary files a/lms/static/images/press/nytimes_240x180.png and /dev/null differ diff --git a/lms/static/images/press/nz_listener_logo_178x138.jpg b/lms/static/images/press/nz_listener_logo_178x138.jpg deleted file mode 100644 index 88e05b81ec..0000000000 Binary files a/lms/static/images/press/nz_listener_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/oef_logo_178x138.jpeg b/lms/static/images/press/oef_logo_178x138.jpeg deleted file mode 100644 index b4469e7bb8..0000000000 Binary files a/lms/static/images/press/oef_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/online_colleges_logo_178x138.jpg b/lms/static/images/press/online_colleges_logo_178x138.jpg deleted file mode 100644 index 703e9c065b..0000000000 Binary files a/lms/static/images/press/online_colleges_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/outsell_logo_178x138.jpg b/lms/static/images/press/outsell_logo_178x138.jpg deleted file mode 100644 index 1e885fba08..0000000000 Binary files a/lms/static/images/press/outsell_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/radioboston_logo_178x138.jpg b/lms/static/images/press/radioboston_logo_178x138.jpg deleted file mode 100755 index e29949a31f..0000000000 Binary files a/lms/static/images/press/radioboston_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/201x_240x180.jpg b/lms/static/images/press/releases/201x_240x180.jpg deleted file mode 100644 index d2cfd8ee45..0000000000 Binary files a/lms/static/images/press/releases/201x_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/cengage-book_327x400.jpg b/lms/static/images/press/releases/cengage-book_327x400.jpg deleted file mode 100644 index e26dc7bf68..0000000000 Binary files a/lms/static/images/press/releases/cengage-book_327x400.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/diploma_240x180.jpg b/lms/static/images/press/releases/diploma_240x180.jpg deleted file mode 100644 index c507e3b77a..0000000000 Binary files a/lms/static/images/press/releases/diploma_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg b/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg deleted file mode 100644 index b4d043bb1c..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-276_240x180.jpg b/lms/static/images/press/releases/dr-lewin-276_240x180.jpg deleted file mode 100644 index d1a5300b1e..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-276_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-316_240x180.jpg b/lms/static/images/press/releases/dr-lewin-316_240x180.jpg deleted file mode 100644 index 6a659a3612..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-316_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/edx-logo_240x180.png b/lms/static/images/press/releases/edx-logo_240x180.png deleted file mode 100644 index 6c5669bc17..0000000000 Binary files a/lms/static/images/press/releases/edx-logo_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/elsevier-page-sample_680x660.png b/lms/static/images/press/releases/elsevier-page-sample_680x660.png deleted file mode 100644 index 4feb3465ff..0000000000 Binary files a/lms/static/images/press/releases/elsevier-page-sample_680x660.png and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander-lab.jpg b/lms/static/images/press/releases/eric-lander-lab.jpg deleted file mode 100644 index 54f027775d..0000000000 Binary files a/lms/static/images/press/releases/eric-lander-lab.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander-lab_x300.jpg b/lms/static/images/press/releases/eric-lander-lab_x300.jpg deleted file mode 100644 index 38c4a208ed..0000000000 Binary files a/lms/static/images/press/releases/eric-lander-lab_x300.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander_240x180.jpg b/lms/static/images/press/releases/eric-lander_240x180.jpg deleted file mode 100644 index ee5b2d875b..0000000000 Binary files a/lms/static/images/press/releases/eric-lander_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/foundations-of-analog_240x180.jpg b/lms/static/images/press/releases/foundations-of-analog_240x180.jpg deleted file mode 100644 index d554c6ce93..0000000000 Binary files a/lms/static/images/press/releases/foundations-of-analog_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/georgetown-seal_240x180.png b/lms/static/images/press/releases/georgetown-seal_240x180.png deleted file mode 100644 index 1652b2805e..0000000000 Binary files a/lms/static/images/press/releases/georgetown-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg b/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg deleted file mode 100644 index 16086cb142..0000000000 Binary files a/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg b/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg deleted file mode 100644 index 6718f0c6e8..0000000000 Binary files a/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/mass-seal_240x180.png b/lms/static/images/press/releases/mass-seal_240x180.png deleted file mode 100644 index 6641d4e42d..0000000000 Binary files a/lms/static/images/press/releases/mass-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university-m.png b/lms/static/images/press/releases/stanford-university-m.png deleted file mode 100644 index bcde63022a..0000000000 Binary files a/lms/static/images/press/releases/stanford-university-m.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_102x57.png b/lms/static/images/press/releases/stanford-university_102x57.png deleted file mode 100644 index 67910ff5d8..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_102x57.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_204x114.png b/lms/static/images/press/releases/stanford-university_204x114.png deleted file mode 100644 index 79dac0732c..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_204x114.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_240x135.png b/lms/static/images/press/releases/stanford-university_240x135.png deleted file mode 100644 index ba9d2a6e95..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_240x135.png and /dev/null differ diff --git a/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg b/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg deleted file mode 100644 index f439a05e44..0000000000 Binary files a/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg b/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg deleted file mode 100644 index 6c20d4cfd9..0000000000 Binary files a/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/utsys-seal_240x180.png b/lms/static/images/press/releases/utsys-seal_240x180.png deleted file mode 100644 index f3938b72eb..0000000000 Binary files a/lms/static/images/press/releases/utsys-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg b/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg deleted file mode 100644 index d07df1da98..0000000000 Binary files a/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/wellesley-seal_240x180.png b/lms/static/images/press/releases/wellesley-seal_240x180.png deleted file mode 100644 index 3c717f4688..0000000000 Binary files a/lms/static/images/press/releases/wellesley-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/reuters_logo_178x138.jpg b/lms/static/images/press/reuters_logo_178x138.jpg deleted file mode 100644 index 4f4ee9ec22..0000000000 Binary files a/lms/static/images/press/reuters_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/smartplanet_logo_178x138.jpg b/lms/static/images/press/smartplanet_logo_178x138.jpg deleted file mode 100755 index 534677017e..0000000000 Binary files a/lms/static/images/press/smartplanet_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/techreview_logo_178x138.jpg b/lms/static/images/press/techreview_logo_178x138.jpg deleted file mode 100644 index 7a2e063d77..0000000000 Binary files a/lms/static/images/press/techreview_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bbc_logo_178x138.jpg b/lms/static/images/press/test/bbc_logo_178x138.jpg deleted file mode 100755 index b047d814fe..0000000000 Binary files a/lms/static/images/press/test/bbc_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bostonglobe_logo_178x138.jpg b/lms/static/images/press/test/bostonglobe_logo_178x138.jpg deleted file mode 100755 index 9d2aa0bb10..0000000000 Binary files a/lms/static/images/press/test/bostonglobe_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bostonmag_logo_178x138.jpg b/lms/static/images/press/test/bostonmag_logo_178x138.jpg deleted file mode 100644 index 5a756ccb24..0000000000 Binary files a/lms/static/images/press/test/bostonmag_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/nyt_logo_178x138.jpg b/lms/static/images/press/test/nyt_logo_178x138.jpg deleted file mode 100755 index 8a9a75b7f1..0000000000 Binary files a/lms/static/images/press/test/nyt_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/usnews_logo_178x138.jpg b/lms/static/images/press/test/usnews_logo_178x138.jpg deleted file mode 100755 index 09d4c07280..0000000000 Binary files a/lms/static/images/press/test/usnews_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/texaspulse_logo_178x138.jpg b/lms/static/images/press/texaspulse_logo_178x138.jpg deleted file mode 100644 index 059fa39d55..0000000000 Binary files a/lms/static/images/press/texaspulse_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/texastribune_logo_178x138.jpg b/lms/static/images/press/texastribune_logo_178x138.jpg deleted file mode 100644 index dc93010d69..0000000000 Binary files a/lms/static/images/press/texastribune_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/theadvocate_logo_178x138.jpg b/lms/static/images/press/theadvocate_logo_178x138.jpg deleted file mode 100644 index 824cfbe9c5..0000000000 Binary files a/lms/static/images/press/theadvocate_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/thehopen_logo_178x138.jpg b/lms/static/images/press/thehopen_logo_178x138.jpg deleted file mode 100644 index 4f6a95d737..0000000000 Binary files a/lms/static/images/press/thehopen_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/thetech_logo_178x138.jpg b/lms/static/images/press/thetech_logo_178x138.jpg deleted file mode 100755 index 024fe11769..0000000000 Binary files a/lms/static/images/press/thetech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/time_logo_178x138.jpg b/lms/static/images/press/time_logo_178x138.jpg deleted file mode 100755 index 5d884fe0fe..0000000000 Binary files a/lms/static/images/press/time_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/timeshighered_logo_178x138.jpg b/lms/static/images/press/timeshighered_logo_178x138.jpg deleted file mode 100644 index 33920d2bdc..0000000000 Binary files a/lms/static/images/press/timeshighered_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/univworldnews_logo_178x138.jpeg b/lms/static/images/press/univworldnews_logo_178x138.jpeg deleted file mode 100644 index 038475c4e0..0000000000 Binary files a/lms/static/images/press/univworldnews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/usa_logo_178x138.jpeg b/lms/static/images/press/usa_logo_178x138.jpeg deleted file mode 100644 index ed3a1c50e6..0000000000 Binary files a/lms/static/images/press/usa_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/usnews_logo_178x138.jpeg b/lms/static/images/press/usnews_logo_178x138.jpeg deleted file mode 100644 index 55c7cb51e3..0000000000 Binary files a/lms/static/images/press/usnews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/wash_post_logo_178x138.jpg b/lms/static/images/press/wash_post_logo_178x138.jpg deleted file mode 100644 index bbc25b18b7..0000000000 Binary files a/lms/static/images/press/wash_post_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/washpost_logo_178x138.jpg b/lms/static/images/press/washpost_logo_178x138.jpg deleted file mode 100644 index 928cf227b7..0000000000 Binary files a/lms/static/images/press/washpost_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/wbur_logo_178x138.jpeg b/lms/static/images/press/wbur_logo_178x138.jpeg deleted file mode 100644 index 2319d82140..0000000000 Binary files a/lms/static/images/press/wbur_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/wsj_logo_178x138.jpg b/lms/static/images/press/wsj_logo_178x138.jpg deleted file mode 100644 index 0920557417..0000000000 Binary files a/lms/static/images/press/wsj_logo_178x138.jpg and /dev/null differ diff --git a/lms/templates/feed.rss b/lms/templates/feed.rss deleted file mode 100644 index ca24d584c5..0000000000 --- a/lms/templates/feed.rss +++ /dev/null @@ -1,169 +0,0 @@ -<%! from django.core.urlresolvers import reverse %>\ - -<%namespace name='static' file='static_content.html'/> - - tag:www.edx.org,2012:/blog - - - EdX Blog - 2013-05-03T14:00:12-07:00 - - tag:www.edx.org,2013:Post/18 - 2013-05-02T14:00:00-07:00 - 2013-05-02T14:00:00-07:00 - - edX project at San Jose State featured in New York Times - <img src="${static.url('images/press/nytimes_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/17 - 2012-12-19T14:00:00-07:00 - 2012-12-19T14:00:00-07:00 - - Stanford University to Collaborate with edX on Development of Non-Profit Open Source edX Platform - <img src="${static.url('images/press/releases/stanford-university-m.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/16 - 2013-03-15T10:00:00-07:00 - 2013-03-15T10:00:00-07:00 - - edX releases XBlock SDK, first step toward open source vision - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/15 - 2013-03-14T10:00:00-07:00 - 2013-03-14T10:00:00-07:00 - - New mechanical engineering course open for enrollment - <img src="${static.url('images/press/releases/201x_240x180.jpg')}" /> - <p></p> - - - - - - - - - - - - tag:www.edx.org,2013:Post/14 - 2013-01-30T10:00:00-07:00 - 2013-01-30T10:00:00-07:00 - - New biology course from human genome pioneer Eric Lander - <img src="${static.url('images/press/releases/eric-lander_240x180.jpg')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/12 - 2013-01-22T10:00:00-07:00 - 2013-01-22T10:00:00-07:00 - - New course from legendary MIT physics professor Walter Lewin - <img src="${static.url('images/press/releases/dr-lewin-316_240x180.jpg')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/11 - 2013-01-29T10:00:00-07:00 - 2013-01-29T10:00:00-07:00 - - City of Boston and edX partner to establish BostonX to improve educational access for residents - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p></p> - - - - - - - - - - - - tag:www.edx.org,2012:Post/9 - 2012-12-10T14:00:00-07:00 - 2012-12-10T14:00:00-07:00 - - Georgetown University joins edX - <img src="${static.url('images/press/releases/georgetown-seal_240x180.png')}" /> - <p>Sixth institution to join global movement in year one</p> - - - tag:www.edx.org,2012:Post/8 - 2012-12-04T14:00:00-07:00 - 2012-12-04T14:00:00-07:00 - - Wellesley College joins edX - <img src="${static.url('images/press/releases/wellesley-seal_240x180.png')}" /> - <p>First liberal arts college to join edX</p> - - - tag:www.edx.org,2012:Post/7 - 2012-11-12T14:00:00-07:00 - 2012-11-12T14:00:00-07:00 - - edX and Massachusetts Community Colleges join in Gates-Funded educational initiative - <img src="${static.url('images/press/releases/mass-seal_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2012:Post/6 - 2012-10-15T14:00:00-07:00 - 2012-10-14T14:00:00-07:00 - - The University of Texas System joins edX - <img src="${static.url('images/press/releases/utsys-seal_240x180.png')}" /> - <p>Nine universities and six health institutions</p> - - - - - - - - - - - - tag:www.edx.org,2012:Post/4 - 2012-09-06T14:00:00-07:00 - 2012-09-06T14:00:00-07:00 - - edX to offer learners option of taking proctored final exam - <img src="${static.url('images/press/releases/diploma_240x180.jpg')}" /> - - - tag:www.edx.org,2012:Post/3 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - UC Berkeley joins edX - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p>edX broadens course offerings</p> - - - tag:www.edx.org,2012:Post/2 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - Opening Doors For Exceptional Students: 6.002x in Mongolia - <img src="${static.url('images/press/releases/tumblr-mongolia_240x180.jpg')}" /> - - - tag:www.edx.org,2012:Post/1 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - Brazilian teen blogs about his 6.002x experience - <img src="${static.url('images/press/releases/tumblr-brazilian-teen_240x180.jpg')}" /> - - diff --git a/lms/templates/press.json b/lms/templates/press.json deleted file mode 100644 index 794a0803f6..0000000000 --- a/lms/templates/press.json +++ /dev/null @@ -1,1184 +0,0 @@ -[ - { - "title": "Adapting to Blended Courses, and Finding Early Benefits", - "url": "http://www.nytimes.com/2013/04/30/education/adapting-to-blended-courses-and-finding-early-benefits.html?ref=education", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "April 29, 2013" - }, - - { - "title": "Colleges Adapt Online Courses to Ease Burden", - "url": "http://www.nytimes.com/2013/04/30/education/colleges-adapt-online-courses-to-ease-burden.html?pagewanted=all", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "April 29, 2013" - }, - - { - "title": "Online Education Lifts Pass Rates at University", - "url": "http://online.wsj.com/article/SB10001424127887323741004578414861572832182.html?mod=googlenews_wsj", - "author": "Geoffrey Fowler", - "image": "wsj_logo_178x138.jpg", - "deck": null, - "publication": "The Wall Street Journal", - "publish_date": "April 10, 2013" - }, - - { - "title": "Software Seen Giving Grades on Essay Tests", - "url": "http://www.nytimes.com/2013/04/05/science/new-test-for-computers-grading-essays-at-college-level.html?pagewanted=all&_r=0", - "author": "John Markoff", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "April 4, 2013" - }, - - { - "title": "Stanford to help build edX MOOC platform", - "url": "http://www.washingtonpost.com/local/education/stanford-to-help-build-edx-mooc-platform/2013/04/02/5b53bb3e-9bbe-11e2-9a79-eb5280c81c63_story.html", - "author": "Nick Anderson", - "image": "wash_post_logo_178x138.jpg", - "deck": null, - "publication": "The Washington Post", - "publish_date": "April 3, 2013" - }, - - { - "title": "Could online ed end college as we know it?", - "url": "http://www.cbsnews.com/video/watch/?id=50143164n", - "author": "CBS This Morning", - "image": "cbsnews_178x138.jpg", - "deck": null, - "publication": "CBS Television Network", - "publish_date": "March 19, 2013" - }, - - { - "title": "The Professors’ Big Stage", - "url": "http://www.nytimes.com/2013/03/06/opinion/friedman-the-professors-big-stage.html?_r=1&#commentsContainer", - "author": "Thomas L. Friedman", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "March 6, 2013" - }, - - - { - "title": "Universities Abroad Join Partnerships On the Web", - "url": "http://www.nytimes.com/2013/02/21/education/universities-abroad-join-mooc-course-projects.html", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "February 20, 2013" - }, - - - { - "title": "Georgetown to offer free online courses", - "url": "http://www.washingtonpost.com/local/education/georgetown-to-offer-free-online-courses/2012/12/09/365c4612-3fd3-11e2-bca3-aadc9b7e29c5_story.html", - "author": "Nick Anderson", - "image": "wash_post_logo_178x138.jpg", - "deck": null, - "publication": "The Washington Post", - "publish_date": "December 9, 2012" - }, - - { - "title": "Wellesley College teams up with online provider edX", - "url": "http://bostonglobe.com/2012/12/04/edx/AqnQ808q4IEcaUa8KuZuBO/story.html", - "author": "Peter Schworm", - "image": "bostonglobe_logo_178x138.jpeg", - "deck": null, - "publication": "The Boston Globe", - "publish_date": "December 4, 2012" - }, - - { - "title": "The Year of the MOOC", - "url": "http://www.nytimes.com/2012/11/04/education/edlife/massive-open-online-courses-are-multiplying-at-a-rapid-pace.html", - "author": "Laura Pappano", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "November 2, 2012" - }, - { - "title": "The Most Important Education Technology in 200 Years", - "url": "http://www.technologyreview.com/news/506351/the-most-important-education-technology-in-200-years/", - "author": "Antonio Regalado", - "image": "techreview_logo_178x138.jpg", - "deck": null, - "publication": "Technology Review", - "publish_date": "November 2, 2012" - }, - { - "title": "Classroom in the Cloud", - "url": "http://harvardmagazine.com/2012/11/classroom-in-the-cloud", - "author": null, - "image": "harvardmagazine_logo_178x138.jpeg", - "deck": null, - "publication": "Harvard Magazine", - "publish_date": "November-December 2012" - }, - { - "title": "How do you stop online students cheating?", - "url": "http://www.bbc.co.uk/news/business-19661899", - "author": "Sean Coughlan", - "image": "bbc_logo_178x138.jpeg", - "deck": null, - "publication": "BBC", - "publish_date": "October 31, 2012" - }, - { - "title": "VMware to provide software for HarvardX CS50x", - "url": "http://tech.mit.edu/V132/N48/edxvmware.html", - "author": "Stan Gill", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "October 26, 2012" - }, - { - "title": "EdX platform integrates into classes", - "url": "http://tech.mit.edu/V132/N48/801edx.html", - "author": "Leon Lin", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "October 26, 2012" - }, - { - "title": "VMware Offers Free Software to edX Learners", - "url": "http://campustechnology.com/articles/2012/10/25/vmware-offers-free-virtualization-software-for-edx-computer-science-students.aspx", - "author": "Joshua Bolkan", - "image": "campustech_logo_178x138.jpg", - "deck": "VMware Offers Free Virtualization Software for EdX Computer Science Students", - "publication": "Campus Technology", - "publish_date": "October 25, 2012" - }, - { - "title": "Lone Star moots charges to make Moocs add up", - "url": "http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&storycode=421577&c=1", - "author": "David Matthews", - "image": "timeshighered_logo_178x138.jpg", - "deck": null, - "publication": "Times Higher Education", - "publish_date": "October 25, 2012" - }, - { - "title": "Free, high-quality and with mass appeal", - "url": "http://www.ft.com/intl/cms/s/2/73030f44-d4dd-11e1-9444-00144feabdc0.html#axzz2A9qvk48A", - "author": "Rebecca Knight", - "image": "ft_logo_178x138.jpg", - "deck": null, - "publication": "Financial Times", - "publish_date": "October 22, 2012" - }, - { - "title": "Getting the most out of an online education", - "url": "http://www.reuters.com/article/2012/10/19/us-education-courses-online-idUSBRE89I17120121019", - "author": "Kathleen Kingsbury", - "image": "reuters_logo_178x138.jpg", - "deck": null, - "publication": "Reuters", - "publish_date": "October 19, 2012" - }, - { - "title": "EdX announces partnership with Cengage", - "url": "http://tech.mit.edu/V132/N46/cengage.html", - "author": "Leon Lin", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "October 19, 2012" - }, - { - "title": "U Texas System Joins EdX", - "url": "http://campustechnology.com/articles/2012/10/18/u-texas-system-joins-edx.aspx", - "author": "Joshua Bolkan", - "image": "campustech_logo_178x138.jpg", - "deck": null, - "publication": "Campus Technology", - "publish_date": "October 18, 2012" - }, - { - "title": "San Jose State University Runs Blended Learning Course Using edX ", - "url": "http://chronicle.com/blogs/wiredcampus/san-jose-state-u-says-replacing-live-lectures-with-videos-increased-test-scores/40470", - "author": "Alisha Azevedo", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": "San Jose State U. Says Replacing Live Lectures With Videos Increased Test Scores", - "publication": "Chronicle of Higher Education", - "publish_date": "October 17, 2012" - }, - { - "title": "Online university to charge tuition fees", - "url": "http://www.bbc.co.uk/news/education-19964787", - "author": "Sean Coughlan", - "image": "bbc_logo_178x138.jpeg", - "deck": null, - "publication": "BBC", - "publish_date": "October 17, 2012" - }, - { - "title": "HarvardX marks the spot", - "url": "http://news.harvard.edu/gazette/story/2012/10/harvardx-marks-the-spot/", - "author": "Tania delLuzuriaga", - "image": "harvardgazette_logo_178x138.jpeg", - "deck": null, - "publication": "Harvard Gazette", - "publish_date": "October 17, 2012" - }, - { - "title": "Harvard EdX Enrolls Near 100000 Students for Free Online Classes", - "url": "http://www.collegeclasses.com/harvard-edx-enrolls-near-100000-students-for-free-online-classes/", - "author": "Keith Koong", - "image": "college_classes_logo_178x138.jpg", - "deck": null, - "publication": "CollegeClasses.com", - "publish_date": "October 17, 2012" - }, - { - "title": "Cengage Learning to Provide Book Content and Pedagogy through edX's Not-for-Profit Interactive Study Via the Web", - "url": "http://www.outsellinc.com/our_industry/headlines/1087978", - "author": null, - "image": "outsell_logo_178x138.jpg", - "deck": null, - "publication": "Outsell.com", - "publish_date": "October 17, 2012" - }, - { - "title": "University of Texas System Embraces MOOCs", - "url": "http://www.usnewsuniversitydirectory.com/articles/university-of-texas-system-embraces-moocs_12713.aspx#.UIBLVq7bNzo", - "author": "Chris Hassan", - "image": "usnews_logo_178x138.jpeg", - "deck": null, - "publication": "US News", - "publish_date": "October 17, 2012" - }, - { - "title": "Texas MOOCs for Credit?", - "url": "http://www.insidehighered.com/news/2012/10/16/u-texas-aims-use-moocs-reduce-costs-increase-completion", - "author": "Steve Kolowich", - "image": "insidehighered_logo_178x138.jpg", - "deck": null, - "publication": "Insider Higher Ed", - "publish_date": "October 16, 2012" - }, - { - "title": "University of Texas Joins Harvard-Founded edX", - "url": "http://www.thecrimson.com/article/2012/10/16/University-of-Texas-edX/", - "author": "Kevin J. Wu", - "image": "harvardcrimson_logo_178x138.jpeg", - "deck": null, - "publication": "The Crimson", - "publish_date": "October 16, 2012" - }, - { - "title": "Entire UT System to join edX", - "url": "http://tech.mit.edu/V132/N45/edx.html", - "author": "Ethan A. Solomon", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "October 16, 2012" - }, - { - "title": "First University System Joins edX Platform", - "url": "http://www.govtech.com/education/First-University-System-Joins-edX-platform.html", - "author": "Tanya Roscoria", - "image": "govtech_logo_178x138.jpg", - "deck": null, - "publication": "GovTech.com", - "publish_date": "October 16, 2012" - }, - { - "title": "University of Texas Joining Harvard, MIT Online Venture", - "url": "http://www.bloomberg.com/news/2012-10-15/university-of-texas-joining-harvard-mit-online-venture.html", - "author": "David Mildenberg", - "image": "bloomberg_logo_178x138.jpeg", - "deck": null, - "publication": "Bloomberg", - "publish_date": "October 15, 2012" - }, - { - "title": "University of Texas Joining Harvard, MIT Online Venture", - "url": "http://www.businessweek.com/news/2012-10-15/university-of-texas-joining-harvard-mit-online-venture", - "author": "David Mildenberg", - "image": "busweek_logo_178x138.jpg", - "deck": null, - "publication": "Business Week", - "publish_date": "October 15, 2012" - }, - { - "title": "Univ. of Texas joins online course program edX", - "url": "http://news.yahoo.com/univ-texas-joins-online-course-program-edx-172202035--finance.html", - "author": "Chris Tomlinson", - "image": "ap_logo_178x138.jpg", - "deck": null, - "publication": "Associated Press", - "publish_date": "October 15, 2012" - }, - { - "title": "U. of Texas Plans to Join edX", - "url": "http://www.insidehighered.com/quicktakes/2012/10/15/u-texas-plans-join-edx", - "author": null, - "image": "insidehighered_logo_178x138.jpg", - "deck": null, - "publication": "Inside Higher Ed", - "publish_date": "October 15, 2012" - }, - { - "title": "U. of Texas System Is Latest to Sign Up With edX for Online Courses", - "url": "http://chronicle.com/blogs/wiredcampus/u-of-texas-system-is-latest-to-sign-up-with-edx-for-online-courses/40440", - "author": "Alisha Azevedo", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": null, - "publication": "Chronicle of Higher Education", - "publish_date": "October 15, 2012" - }, - { - "title": "First University System Joins edX", - "url": "http://www.centerdigitaled.com/news/First-University-System-Joins-edX.html", - "author": "Tanya Roscoria", - "image": "center_digeducation_logo_178x138.jpg", - "deck": null, - "publication": "Center for Digital Education", - "publish_date": "October 15, 2012" - }, - { - "title": "University of Texas Joins Harvard, MIT in edX Online Learning Venture", - "url": "http://harvardmagazine.com/2012/10/university-of-texas-joins-harvard-mit-edx", - "author": null, - "image": "harvardmagazine_logo_178x138.jpeg", - "deck": null, - "publication": "Harvard Magazine", - "publish_date": "October 15, 2012" - }, - { - "title": "University of Texas joins edX", - "url": "http://www.masshightech.com/stories/2012/10/15/daily13-University-of-Texas-joins-edX.html", - "author": "Don Seiffert", - "image": "masshightech_logo_178x138.jpg", - "deck": null, - "publication": "MassHighTech", - "publish_date": "October 15, 2012" - }, - { - "title": "UT System to Forge Partnership with EdX", - "url": "http://www.texastribune.org/texas-education/higher-education/ut-system-announce-partnership-edx/", - "author": "Reeve Hamilton", - "image": "texastribune_logo_178x138.jpg", - "deck": null, - "publication": "Texas Tribune", - "publish_date": "October 15, 2012" - }, - { - "title": "UT System puts $5 million into online learning initiative", - "url": "http://www.statesman.com/news/news/local/ut-system-puts-5-million-into-online-learning-init/nSdd5/", - "author": "Ralph K.M. Haurwitz", - "image": "austin_statesman_logo_178x138.jpg", - "deck": null, - "publication": "The Austin Statesman", - "publish_date": "October 15, 2012" - }, - { - "title": "Harvard’s Online Classes Sound Pretty Popular", - "url": "http://blogs.bostonmagazine.com/boston_daily/2012/10/15/harvards-online-classes-sound-pretty-popular/", - "author": "Eric Randall", - "image": "bostonmag_logo_178x138.jpg", - "deck": null, - "publication": "Boston Magazine", - "publish_date": "October 15, 2012" - }, - { - "title": "Harvard Debuts Free Online Courses", - "url": "http://www.ibtimes.com/harvard-debuts-free-online-courses-846629", - "author": "Eli Epstein", - "image": "ibtimes_logo_178x138.jpg", - "deck": null, - "publication": "International Business Times", - "publish_date": "October 15, 2012" - }, - { - "title": "UT System Joins Online Learning Effort", - "url": "http://www.texastechpulse.com/ut_system_joins_online_learning_effort/s-0045632.html", - "author": null, - "image": "texaspulse_logo_178x138.jpg", - "deck": null, - "publication": "Texas Tech Pulse", - "publish_date": "October 15, 2012" - }, - { - "title": "University of Texas Joins edX", - "url": "http://www.onlinecolleges.net/2012/10/15/university-of-texas-joins-edx/", - "author": "Alex Wukman", - "image": "online_colleges_logo_178x138.jpg", - "deck": null, - "publication": "Online Colleges.net", - "publish_date": "October 15, 2012" - }, - { - "title": "100,000 sign up for first Harvard online courses", - "url": "http://www.masslive.com/news/index.ssf/2012/10/100000_sign_up_for_first_harva.html", - "author": null, - "image": "ap_logo_178x138.jpg", - "deck": null, - "publication": "Associated Press", - "publish_date": "October 15, 2012" - }, - { - "title": "In the new Listener, on sale from 14.10.12", - "url": "http://www.listener.co.nz/commentary/the-internaut/in-the-new-listener-on-sale-from-14-10-12/", - "author": null, - "image": "nz_listener_logo_178x138.jpg", - "deck": null, - "publication": "The Listener", - "publish_date": "October 14, 2012" - }, - { - "title": "HarvardX Classes to Begin Tomorrow", - "url": "http://www.thecrimson.com/article/2012/10/14/harvardx-classes-start-tomorrow/", - "author": "Hana N. Rouse", - "image": "harvardcrimson_logo_178x138.jpeg", - "deck": null, - "publication": "The Crimson", - "publish_date": "October 14, 2012" - }, - { - "title": "Online Harvard University courses draw well", - "url": "http://bostonglobe.com/metro/2012/10/14/harvard-launching-free-online-courses-sign-for-first-two-classes/zBDuHY0zqD4OESrXWfEgML/story.html", - "author": "Brock Parker", - "image": "bostonglobe_logo_178x138.jpeg", - "deck": null, - "publication": "Boston Globe", - "publish_date": "October 14, 2012" - }, - { - "title": "Harvard ready to launch its first free online courses Monday", - "url": "http://www.boston.com/yourtown/news/cambridge/2012/10/harvard_ready_to_launch_its_fi.html", - "author": "Brock Parker", - "image": "bostonglobe_logo_178x138.jpeg", - "deck": null, - "publication": "Boston Globe", - "publish_date": "October 12, 2012" - }, - { - "title": "edX: Harvard's New Domain", - "url": "http://www.thecrimson.com/article/2012/10/4/edx-scrutiny-online-learning/ ", - "author": "Delphine Rodrik and Kevin Su", - "image": "harvardcrimson_logo_178x138.jpeg", - "deck": null, - "publication": "The Crimson", - "publish_date": "October 4, 2012" - }, - { - "title": "New Experiments in the edX Higher Ed Petri Dish", - "url": "http://www.nonprofitquarterly.org/policysocial-context/21116-new-experiments-in-the-edx-higher-ed-petri-dish.html", - "author": "Michelle Shumate", - "image": "npq_logo_178x138.jpg", - "deck": null, - "publication": "Non-Profit Quarterly", - "publish_date": "October 4, 2012" - }, - { - "title": "What Campuses Can Learn From Online Teaching", - "url": "http://online.wsj.com/article/SB10000872396390444620104578012262106378182.html?mod=googlenews_wsj", - "author": "Rafael Reif", - "image": "wsj_logo_178x138.jpg", - "deck": null, - "publication": "Wall Street Journal", - "publish_date": "October 2, 2012" - }, - { - "title": "MongoDB courses to be offered via edX", - "url": "http://tech.mit.edu/V132/N42/edxmongodb.html", - "author": "Jake H. Gunter", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "October 2, 2012" - }, - { - "title": "5 Ways That edX Could Change Education", - "url": "http://chronicle.com/article/5-Ways-That-edX-Could-Change/134672/", - "author": "Marc Parry", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": null, - "publication": "Chronicle of Higher Education", - "publish_date": "October 1, 2012" - }, - { - "title": "MIT profs wait to teach you, for free", - "url": "http://www.dnaindia.com/mumbai/report_mit-profs-wait-to-teach-you-for-free_1747273", - "author": "Kanchan Srivastava", - "image": "dailynews_india_logo_178x138.jpg", - "deck": null, - "publication": "Daily News and Analysis India", - "publish_date": "October 1, 2012" - }, - { - "title": "EdX offers free higher education online", - "url": "http://www.youtube.com/watch?v=yr5Ep7RN4Bs", - "author": "via YouTube", - "image": "cnn_logo_178x138.jpg", - "deck": null, - "publication": "CNN", - "publish_date": "October, 2012" - }, - { - "title": "Students weigh in on value of massive open online classes", - "url": "http://dailycollegian.com/2012/09/27/students-weigh-in-on-value-of-massive-open-online-classes/", - "author": "Sam Hayes", - "image": "dailycollegian_logo_178x138.jpg", - "deck": null, - "publication": "The Daily Collegian", - "publish_date": "September 27, 2012" - }, - { - "title": "The Crisis in Higher Education", - "url": "http://www.technologyreview.com/featured-story/429376/the-crisis-in-higher-education ", - "author": "Nicholas Carr", - "image": "techreview_logo_178x138.jpg", - "deck": null, - "publication": "Technology Review", - "publish_date": "September 27, 2012" - }, - { - "title": "10gen Offering Free MongoDB Training through EdX Platform", - "url": "http://campustechnology.com/articles/2012/09/27/10gen-offering-free-mongodb-training-through-edx-platform.aspx", - "author": "Dian Schaffhauser", - "image": "campustech_logo_178x138.jpg", - "deck": null, - "publication": "Campus Technology", - "publish_date": "September 27, 2012" - }, - { - "title": "edX Students To Use Free Elsevier Online Textbook", - "url": "http://campustechnology.com/articles/2012/09/27/edx-students-to-use-free-elsevier-online-textbook.aspx", - "author": "Tim Sohn", - "image": "campustech_logo_178x138.jpg", - "deck": null, - "publication": "Campus Technology", - "publish_date": "September 27, 2012" - }, - { - "title": "Students weigh in on value of massive open online classes", - "url": "http://dailycollegian.com/2012/09/27/students-weigh-in-on-value-of-massive-open-online-classes/", - "author": "Sam Hayes", - "image": "dailycollegian_logo_178x138.jpg", - "deck": null, - "publication": "The Daily Collegian", - "publish_date": "September 27, 2012" - }, - { - "title": "Elsevier partners with edX offering interactive study via the web", - "url": "http://www.knowledgespeak.com/newsArchieveviewdtl.asp?pickUpBatch=2046", - "author": null, - "image": "cnn_logo_178x138.jpg", - "deck": null, - "publication": "Knowledge Speak", - "publish_date": "September 26, 2012" - }, - { - "title": "Coming back, looking forward", - "url": "http://news.harvard.edu/gazette/story/2012/09/governing_board_reunion/", - "author": "Alvin Powell", - "image": "harvardgazette_logo_178x138.jpeg", - "deck": "Governing boards’ reunion mixes nostalgia, innovation", - "publication": "Harvard Gazette", - "publish_date": "September 26, 2012" - }, - { - "title": "MongoDB developers team with EdX open learning collaboration", - "url": "http://arstechnica.com/information-technology/2012/09/mongodb-developers-team-with-edx-open-learning-collaboration/", - "author": "Sean Gallagher", - "image": "arstechnica_logo_178x138.jpg", - "deck": " To offer free MongoDB developer and DBA training, help open-source EdX platform.", - "publication": "Ars Technica", - "publish_date": "September 26, 2012" - }, - { - "title": "Marketing to the MOOC Masses", - "url": "http://www.insidehighered.com/news/2012/09/26/elsevier-partners-edx-provide-free-versions-textbooks-mooc-students", - "author": "Steve Kolowich", - "image": "insidehighered_logo_178x138.jpg", - "deck": null, - "publication": "Inside Higher Ed", - "publish_date": "September 26, 2012" - }, - { - "title": "Five buzzwords you’re likely to hear in education this school year", - "url": "http://schoolsofthought.blogs.cnn.com/2012/09/26/five-buzzwords-youre-likely-to-hear-in-education-this-school-year/", - "author": "Donna Krache", - "image": "cnn_logo_178x138.jpg", - "deck": null, - "publication": "CNN", - "publish_date": "September 26, 2012" - }, - { - "title": "10gen will provide online MongoDB training", - "url": "http://www.h-online.com/open/news/item/10gen-will-provide-online-MongoDB-training-1716936.html", - "author": null, - "image": "thehopen_logo_178x138.jpg", - "deck": null, - "publication": "The H Open", - "publish_date": "September 25, 2012" - }, - { - "title": "Opinion: MIT should create an education degree", - "url": "http://tech.mit.edu/V132/N40/normandin.html", - "author": "Ryan Normandin", - "image": "thetech_logo_178x138.jpg", - "deck": "For MIT to lead the way in education, it should use its graduates", - "publication": "The Tech", - "publish_date": "September 25, 2012" - }, - { - "title": "Want free MongoDB classes? edX and 10gen are happy to oblige", - "url": "http://gigaom.com/2012/09/25/want-free-mongodb-classes-edx-and-10gen-are-happy-to-oblige/", - "author": "Ki Mae Heussner", - "image": "gigaom_logo_178x138.jpeg", - "deck": null, - "publication": "GIGAOM", - "publish_date": "September 25, 2012" - }, - { - "title": "MOOCs Shift From Curiousity to Employability", - "url": "http://www.huffingtonpost.com/tom-vander-ark/moocs-shift-from-curiousi_b_1912059.html", - "author": "Tom Vander Ark", - "image": "huffpost_logo_178x138.jpeg", - "deck": null, - "publication": "HUFF POST", - "publish_date": "September 25, 2012" - }, - { - "title": "A president next door", - "url": "http://news.harvard.edu/gazette/story/2012/09/a-president-next-door/", - "author": "Katie Koch", - "image": "harvardgazette_logo_178x138.jpeg", - "deck": "Faust lauds Reif at his inauguration as MIT’s leader ", - "publication": "Harvard Gazette", - "publish_date": "September 21, 2012" - }, - { - "title": "Is Everybody Right When it Comes to the Future of Education?", - "url": "http://bostinno.com/2012/09/23/is-everybody-right-when-it-comes-to-the-future-of-education/", - "author": "Lauren Landry", - "image": "bostinno_logo_178x138.jpg", - "deck": null, - "publication": "BostInno", - "publish_date": "September 23, 2012" - }, - { - "title": "Keyboard College: How Technology is Revolutionizing Higher Education", - "url": "http://americanradioworks.publicradio.org/features/tomorrows-college/keyboard-college/", - "author": "Stephen Smith", - "image": "amradiowrks_press_logo_178x138.jpg", - "deck": null, - "publication": "American RadioWorks", - "publish_date": "September, 2012" - }, - { - "title": "Google Releases Open-Source Online-Education Software", - "url": "http://chronicle.com/blogs/wiredcampus/google-releases-open-source-online-education-software/39882", - "author": "Azevedo", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": null, - "publication": "The Chronicle of Higher Education", - "publish_date": "September 13, 2012" - }, - { - "title": "President Faust’s Beginning-of-2012-2013 Message", - "url": "http://harvardmagazine.com/2012/09/harvards-faust-beginning-of-year-message", - "author": null, - "image": "harvardmagazine_logo_178x138.jpeg", - "deck": null, - "publication": "Harvard Magazine", - "publish_date": "September 13, 2012" - }, - { - "title": "The MOOC Survivors", - "url": "http://www.insidehighered.com/news/2012/09/12/edx-explores-demographics-most-persistent-mooc-students", - "author": "Steve Kolowich", - "image": "insidehighered_logo_178x138.jpg", - "deck": null, - "publication": "Inside Higher Education", - "publish_date": "September 12, 2012" - }, - { - "title": "College may never be the same", - "url": "http://www.usatoday.com/news/nation/story/2012/09/12/college-may-never-be-the-same/57752972/1", - "author": "Mary Beth Marklein", - "image": "usa_logo_178x138.jpeg", - "deck": "", - "publication": "USA Today", - "publish_date": "September 12, 2012" - }, - { - "title": "The first 71 days of office", - "url": "http://tech.mit.edu/V132/N36/reif.html", - "author": "Bruno B.F. Faviero", - "image": "thetech_logo_178x138.jpg", - "deck": null, - "publication": "The Tech", - "publish_date": "September 11, 2012" - }, - { - "title": "Is MIT Giving Away the Farm?", - "url": "http://www.technologyreview.com/mitnews/428698/is-mit-giving-away-the-farm/", - "author": "Larry Hardesty", - "image": "techreview_logo_178x138.jpg", - "deck": "The surprising logic of MIT's free online education program.", - "publication": "Technology Review", - "publish_date": "September-October 2012" - }, - { - "title": "School’s Out, Forever", - "url": "http://www.bostonmagazine.com/articles/2012/08/edx-online-classes-schools-out-forever/", - "author": "Chris Vogel", - "image": "bostonmag_logo_178x138.jpg", - "deck": "A new online education program from Harvard and MIT is poised to transform what it means to go to college.", - "publication": "Boston Magazine", - "publish_date": "September, 2012" - }, - { - "title": "Pearson partners with online learning provider", - "url": "http://www.educationinvestor.co.uk/%28A%28sJl5vujFzQEkAAAAMWZkZTlhNjktODE0Mi00NjliLThlN2MtZTNhNDYxZDU4NGU3x4PawVukQHrQR1HU1YmDjMvTJNs1%29S%28rfj4z455jgfjljudyovhsyzb%29%29/ShowArticle.aspx?ID=2949", - "author": null, - "image": "eduinvest_logo_178x138.jpg", - "deck": null, - "publication": "EducationInvestor", - "publish_date": "September 10, 2012" - }, - { - "title": "Pearson to provide test centers for edX courses", - "url": "http://edtechtimes.com/2012/09/10/pearson-to-provide-test-centers-for-edx-courses/", - "author": null, - "image": "edtechtimes_logo_178x138.jpg", - "deck": null, - "publication": "The EdTech Times", - "publish_date": "September 10, 2012" - }, - { - "title": "Online education - the future of learning", - "url": "http://www.campdenfb.com/article/sponsored-feature-online-education-future-learning", - "author": null, - "image": "campdenfb_logo_178x138.jpg", - "deck": null, - "publication": "Campden FB", - "publish_date": "September 9, 2012" - }, - { - "title": "Step Forward For New Higher Education Model", - "url": "http://www.forbes.com/sites/susanadams/2012/09/07/step-forward-for-new-higher-education-model/", - "author": "Susan Adams", - "image": "forbes_logo_178x138.jpg", - "deck": null, - "publication": "Forbes", - "publish_date": "September 7, 2012" - }, - { - "title": "EdX To Offer Proctored Final Exam For One Course", - "url": "http://www.thecrimson.com/article/2012/9/7/edx-offer-proctored-exams/", - "author": "Samuel Y. Weinstock", - "image": "harvardcrimson_logo_178x138.jpeg", - "deck": "", - "publication": "Harvard Crimson", - "publish_date": "September 7, 2012" - }, - { - "title": "MOOCing On Site", - "url": "http://www.insidehighered.com/news/2012/09/07/site-based-testing-deals-strengthen-case-granting-credit-mooc-students", - "author": "Steve Kolowich ", - "image": "insidehighered_logo_178x138.jpg", - "deck": "", - "publication": "Inside Higher Education", - "publish_date": "September 7, 2012" - }, - { - "title": "edX Curbs the Downfalls of Online Education By Announcing Supervised Final Exams", - "url": "http://bostinno.com/2012/09/07/edx-pearson-proctored-exams/", - "author": "Lauren Landry", - "image": "bostinno_logo_178x138.jpg", - "deck": "", - "publication": "Bostinno", - "publish_date": "September 7, 2012" - }, - { - "title": "Harvard and MIT online courses get 'real world' exams", - "url": "http://www.bbc.co.uk/news/education-19505776", - "author": "Sean Coughlan", - "image": "bbc_logo_178x138.jpeg", - "deck": "", - "publication": "BBC", - "publish_date": "September 6, 2012" - }, - { - "title": "Harvard-MIT Online School EdX to Offer Supervised Final Exams", - "url": "http://www.businessweek.com/news/2012-09-06/harvard-mit-online-school-edx-to-offer-supervised-final-exams", - "author": "Oliver Staley", - "image": "busweek_logo_178x138.jpg", - "deck": "", - "publication": "Business Week", - "publish_date": "September 6, 2012" - }, - { - "title": "Colorado State to Offer Credits for Online Class", - "url": "http://www.nytimes.com/2012/09/07/education/colorado-state-to-offer-credits-for-online-class.html?_r=3", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": "", - "publication": "New York Times", - "publish_date": "September 6, 2012" - }, - { - "title": "edX Offers Proctored Exams for Open Online Course", - "url": "http://chronicle.com/blogs/wiredcampus/edx-offers-proctored-exams-for-open-online-course/39656", - "author": " Marc Parry", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": "", - "publication": "Chronicle of Higher Education", - "publish_date": "September 6, 2012" - }, - { - "title": "edX Offers Proctored Exams for Open Online Course", - "url": "http://itbriefing.net/modules.php?op=modload&name=News&file=article&sid=323229&newlang=eng&topic=15&catid=37", - "author": "", - "image": "itbriefing_logo_178x138.jpg", - "deck": "", - "publication": "ITBriefing.net", - "publish_date": "September 6, 2012" - }, - { - "title": "Student Loans: Debt for Life", - "url": "http://www.businessweek.com/articles/2012-09-06/student-loans-debt-for-life#p3", - "author": "Peter Coy", - "image": "busweek_logo_178x138.jpg", - "deck": "", - "publication": "Business Week", - "publish_date": "September 6, 2012" - }, - { - "title": "Straighterline wants to help professors expand reach, while students save", - "url": "http://www.baltimoresun.com/business/technology/blog/bs-bz-straighterline-college-professors-20120904,0,6114022.story", - "author": "Gus G. Sentementes", - "image": "baltsun_logo_178x138.jpg", - "deck": "", - "publication": "The Baltimore Sun", - "publish_date": "September 4, 2012" - }, - { - "title": "Want to be a reporter? Learn to code", - "url": "http://gigaom.com/cloud/want-to-be-a-reporter-learn-to-code/", - "author": "Barb Darrow", - "image": "gigaom_logo_178x138.jpeg", - "deck": "", - "publication": "GigaOM", - "publish_date": "September 4, 2012" - }, - { - "title": "MOOC Brigade: Will Massive, Open Online Courses Revolutionize Higher Education?", - "url": "http://nation.time.com/2012/09/04/mooc-brigade-will-massive-open-online-courses-revolutionize-higher-education/", - "author": "Kayla Webley", - "image": "time_logo_178x138.jpg", - "deck": "", - "publication": "Time", - "publish_date": "September 4, 2012" - }, - { - "title": "Summer recap. RLADs, new edX partner, Institute files amicus brief", - "url": "http://tech.mit.edu/V132/N34/summer.html", - "author": "", - "image": "thetech_logo_178x138.jpg", - "deck": "", - "publication": "The Tech", - "publish_date": "September 4, 2012" - }, - { - "title": "Ivy walls lower with free online classes from Coursera and edX ", - "url": "http://www.csmonitor.com/Innovation/Pioneers/2012/0903/Ivy-walls-lower-with-free-online-classes-from-Coursera-and-edX", - "author": "Chris Gaylord", - "image": "csmonitor_logo_178x138.jpg", - "deck": "", - "publication": "Christian Science Monitor", - "publish_date": "September 3, 2012" - }, - { - "title": "Into the Future With MOOC's", - "url": "http://chronicle.com/article/Into-the-Future-With-MOOCs/134080/", - "author": "Kevin Carey", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": "", - "publication": "The Chronicle of Higher Education", - "publish_date": "September 3, 2012" - }, - { - "title": "The Future Of Higher Education", - "url": "http://radioboston.wbur.org/2012/08/20/higher-education-online", - "author": "", - "image": "radioboston_logo_178x138.jpg", - "deck": "", - "publication": "NPR/Radio Boston", - "publish_date": "August 20, 2012" - }, - { - "title": "LSU urged to adapt to changes in higher ed", - "url": "http://theadvocate.com/csp/mediapool/sites/Advocate/assets/templates/FullStoryPrint.csp?cid=3462091&preview=y", - "author": "Koran Addo", - "image": "theadvocate_logo_178x138.jpg", - "deck": null, - "publication": "The Advocate", - "publish_date": "August 3, 2012" - }, - { - "title": "Berkeley Joins edX", - "url": "http://www.insidehighered.com/quicktakes/2012/07/24/berkeley-joins-edx", - "author": "Tamar Lewin", - "image": "insidehighered_logo_178x138.jpg", - "deck": "", - "publication": "Inside Higher Ed", - "publish_date": "July 24, 2012" - }, - { - "title": "Berkeley to Join the Free Online Learning Partnership EdX", - "url": "http://www.nytimes.com/2012/07/24/education/berkeley-to-offer-free-online-classes-on-edx.html?_r=1", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": "", - "publication": "The New York Times", - "publish_date": "July 24, 2012" - }, - { - "title": "UC Berkeley to join Harvard and MIT in online course offerings", - "url": "http://bostonglobe.com/metro/2012/07/23/university-california-berkeley-join-edx-joint-harvard-mit-venture-offer-online-courses/mKl47LI5BdBX0MMO2RHHwI/story.html", - "author": "Melissa M. Werthmann", - "image": "bostonglobe_logo_178x138.jpeg", - "deck": "", - "publication": "The Boston Globe", - "publish_date": "July 24, 2012" - }, - { - "title": "UC Berkeley to offer free online classes through edX", - "url": "http://www.latimes.com/news/local/la-me-0725-berkeley-online-20120725,0,519697.story", - "author": "Larry Gordon", - "image": "latimes_logo_178x138.jpeg", - "deck": "EdX, founded by Harvard and MIT, will host two not-for-credit UC Berkeley courses this fall.", - "publication": "Los Angeles Times", - "publish_date": "July, 2012" - }, - { - "title": "Berkeley Joins 'EdX' Effort to Offer Free Open Courses", - "url": "http://chronicle.com/blogs/wiredcampus/uc-berkeley-joins-edx-effort-to-offer-free-open-courses/37969", - "author": "Jeffrey R. Young", - "image": "chroniclehighered_logo_178x138.jpeg", - "deck": "", - "publication": "The Chronicle of Higher Education", - "publish_date": "July 24, 2012" - }, - { - "title": "Berkeley Joins Harvard, MIT Offering Free Online Classes", - "url": "http://www.bloomberg.com/news/2012-07-24/berkeley-joins-harvard-mit-offering-free-online-classes.html", - "author": "Jeanna Smialek", - "image": "bloomberg_logo_178x138.jpeg", - "deck": "", - "publication": "Bloomberg", - "publish_date": "July 24, 2012" - }, - { - "title": "UC Berkeley joins edX", - "url": "http://news.harvard.edu/gazette/story/2012/07/uc-berkeley-joins-edx/", - "author": "", - "image": "harvardgazette_logo_178x138.jpeg", - "deck": "UC Berkeley joins Harvard and MIT in not-for-profit online learning collaborative", - "publication": "Harvard Gazette", - "publish_date": "July 24, 2012" - }, - { - "title": "Harvard, Extended", - "url": "http://harvardmagazine.com/2012/07/harvard-extended", - "author": "John Harvard's Journal", - "image": "harvardmagazine_logo_178x138.jpeg", - "deck": "", - "publication": "The Harvard Crimson", - "publish_date": "July-August 2012" - }, - { - "title": "Review: MITx's Online Circuit Design and Analysis Course", - "url": "http://spectrum.ieee.org/at-work/education/review-mitxs-online-circuit-design-and-analysis-course", - "author": "Steven J. Frank", - "image": "ieee_logo_178x138.jpeg", - "deck": "This latest experiment in remote learning is not for a casual audience.", - "publication": "IEEE Spectrum", - "publish_date": "July, 2012" - }, - { - "title": "More universities sign on to free online course initiative", - "url": "http://www.universityworldnews.com/article.php?story=20120719082235228", - "author": "Alison Moodie", - "image": "univworldnews_logo_178x138.jpeg", - "deck": null, - "publication": "University World News", - "publish_date": "July 19, 2012" - }, - { - "title": "One Course, 150,000 Students", - "url": "http://nyti.ms/LtlQ5k", - "author": "Tamar Lewin", - "image": "nyt_logo_178x138.jpeg", - "deck": null, - "publication": "The New York Times", - "publish_date": "July 18, 2012" - }, - { - "title": "Lessons learned from MITx's prototype course", - "url": "http://mitne.ws/Mdabcp", - "author": "Larry Hardesty, MIT News Office", - "image": "mit_logo_178x138.jpeg", - "deck": "As the team behind MIT's ambitious online learning program gears up to introduce new courses in the fall, it takes stock of its initial experiences.", - "publication": "MIT News", - "publish_date": "July 16, 2012" - }, - { - "title": "Software \"coding\": not just for programmers anymore", - "url": "http://gigaom.com/cloud/everybody-codes/", - "author": "Barb Darrow", - "image": "gigaom_logo_178x138.jpeg", - "deck": null, - "publication": "GigaOM", - "publish_date": "July 16, 2012" - }, - { - "title": "Anant Agarwal believes an online education from MIT and Harvard should be available to all", - "url": "http://b.globe.com/P6XKlB", - "author": "Jon Marcus", - "image": "bostonglobe_logo_178x138.jpeg", - "deck": null, - "publication": "The Boston Globe", - "publish_date": "July 15, 2012" - }, - { - "title": "Online Classes Cut Costs, But Do They Dilute Brands?", - "url": "http://n.pr/Lt5ydM", - "author": "Tovia Smith", - "image": "npr_logo_178x138.jpeg", - "deck": null, - "publication": "NPR", - "publish_date": "July 02, 2012" - }, - { - "title": "Coming Your Way: Free Virtual Courses From Top U.S. Universities", - "url": "http://www.openequalfree.org/coming-your-way-free-virtual-courses-from-top-u-s-universities/13993", - "author": null, - "image": "oef_logo_178x138.jpeg", - "deck": null, - "publication": "Open Equal Free", - "publish_date": "June 29, 2012" - }, - { - "title": "Open Online Courses Are No Substitute for Classroom Learning", - "url": "http://bit.ly/MMEdEX", - "author": "Joshua Kim", - "image": "usnews_logo_178x138.jpeg", - "deck": null, - "publication": "US News", - "publish_date": "June 29, 2012" - }, - { - "title": "Harvard and MIT create edX to offer free video online courses to the world", - "url": "http://huff.to/LBucd3", - "author": "Lucy Sheriff", - "image": "huffpost_logo_178x138.jpeg", - "deck": null, - "publication": "The Huffington Post", - "publish_date": "June 20, 2012" - }, - { - "title": "Top universities put their reputations online", - "url": "http://bbc.in/M5avea", - "author": "Irina Khokhlova", - "image": "bbc_logo_178x138.jpeg", - "deck": null, - "publication": "BBC News", - "publish_date": "June 20, 2012" - }, - { - "title": "MIT receives $1 million to support edX partnership", - "url": "http://mitne.ws/Md5Aaa", - "author": null, - "image": "mit_logo_178x138.jpeg", - "deck": "Institute receives award as part of Gates Foundation efforts to boost postsecondary graduation rates.", - "publication": "MIT News", - "publish_date": "June 19, 2012" - }, - { - "title": "Column: Ivy League education? Online is the new option", - "url": "http://usat.ly/J73NW7", - "author": "Katrina Trinko", - "image": "usa_logo_178x138.jpeg", - "deck": null, - "publication": "USA Today", - "publish_date": "May 15, 2012" - }, - { - "title": "Harvard and MIT Launch Virtual Learning Initiative EdX", - "url": "http://www.thecrimson.com/article/2012/5/2/mit-edx-virtual-online/", - "author": "Hana N. Rouse and Justin C. Worland", - "image": "harvardcrimson_logo_178x138.jpeg", - "deck": "", - "publication": "The Harvard Crimson", - "publish_date": "May 4, 2012" - }, - { - "title": "Educating Harvard, MIT - and the world", - "url": "http://news.harvard.edu/gazette/story/2012/05/edx_press_conference/", - "author": "", - "image": "harvardgazette_logo_178x138.jpeg", - "deck": "EdX platform will enhance classroom experience, build on distance learning initiatives, leaders say", - "publication": "Harvard Gazette", - "publish_date": "May 2, 2012" - }, - { - "title": "Remarks by Drew Gilpin Faust at announcement of edX", - "url": "http://www.harvard.edu/president/remarks-by-drew-gilpin-faust-announcement-edx", - "author": "", - "image": "harvarduniv_logo_178x138.jpeg", - "deck": "", - "publication": "Harvard University", - "publish_date": "May 2, 2012" - }, - { - "title": "What is edX?", - "url": "http://mitne.ws/PgYhya", - "author": null, - "image": "mit_logo_178x138.jpeg", - "deck": "Answering common questions about MIT and Harvard's new partnership in online education.", - "publication": "MIT News", - "publish_date": "May 2, 2012" - }, - { - "title": "MIT and Harvard announce edX", - "url": "http://mitne.ws/Md5yit", - "author": null, - "image": "mit_logo_178x138.jpeg", - "deck": "Joint partnership builds on MITx and Harvard distance learning; aims to benefit campus-based education and beyond.", - "publication": "MIT News", - "publish_date": "May 2, 2012" - }, - { - "title": "MIT and Harvard launch a 'revolution in education'", - "url": "http://mitne.ws/PgZQvY", - "author": null, - "image": "mit_logo_178x138.jpeg", - "deck": "Online edX courses will open both universities' classrooms to the world while enhancing on-campus learning.", - "publication": "MIT News", - "publish_date": "May 2, 2012" - } -]