-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
227 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
boto==2.40.0 | ||
boto3==1.3.1 | ||
Django==1.8.13 | ||
django-angular==0.7.16 | ||
boto3==1.4.4 | ||
Django==1.9.12 | ||
django-cached-authentication-middleware==0.2.1 | ||
django-redis-cache==1.6.5 | ||
django-redis-cache==1.7.1 | ||
hiredis==0.2.0 | ||
kitchen==1.2.1 | ||
ndg-httpsclient==0.4.0 | ||
kitchen==1.2.4 | ||
ndg-httpsclient==0.4.2 | ||
redis==2.10.5 | ||
psycopg2==2.6.1 | ||
requests==2.9.1 | ||
psycopg2==2.6.2 | ||
requests==2.13.0 | ||
|
||
git+ssh://[email protected]/penzance/[email protected]#egg=canvas-python-sdk==0.8.4 | ||
git+ssh://[email protected]/Harvard-University-iCommons/[email protected]#egg=django-auth-lti==1.2.5 | ||
git+ssh://[email protected]/Harvard-University-iCommons/django-icommons-common.git@v1.15.1#egg=django-icommons-common[async]==1.15.1 | ||
git+ssh://[email protected]/Harvard-University-iCommons/django-icommons-ui.git@v1.2.1#egg=django-icommons-ui==1.2.1 | ||
git+ssh://[email protected]/Harvard-University-iCommons/[email protected]#egg=django-canvas-lti-school-permissions==0.5 | ||
git+ssh://[email protected]/Harvard-University-iCommons/django-icommons-common.git@v1.18.1#egg=django-icommons-common[async]==1.18.1 | ||
git+ssh://[email protected]/Harvard-University-iCommons/django-icommons-ui.git@v1.3.1#egg=django-icommons-ui==1.3.1 | ||
git+ssh://[email protected]/Harvard-University-iCommons/[email protected].1#egg=django-canvas-lti-school-permissions==0.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,14 @@ | |
|
||
# below are requirements specific to the local environment | ||
|
||
ddt==1.0.1 | ||
ddt==1.1.1 | ||
django-debug-toolbar==1.5 | ||
django-sslserver==0.19 | ||
flake8==2.5.4 | ||
mock==2.0.0 | ||
oauthlib==1.1.1 | ||
pep8==1.7.0 | ||
pyvirtualdisplay==0.2 | ||
requests-oauthlib==0.6.1 | ||
pyvirtualdisplay==0.2.1 | ||
requests-oauthlib==0.8.0 | ||
selenium==2.53.2 | ||
xlrd==0.9.4 | ||
|
||
# icommons_common unit tests depend on ccsw, and ccsw depends on icommons_common. | ||
# until ccsw gets its own proper project, and we move the delete command out of | ||
# icommons_common and into ccsw, work around the circular dependency by calling | ||
# out the ccsw dependency here. | ||
git+ssh://[email protected]/Harvard-University-iCommons/[email protected]#egg=django-canvas-course-site-wizard==1.3.8 | ||
xlrd==1.0.0 | ||
|
||
git+ssh://[email protected]/Harvard-University-iCommons/[email protected]#egg=selenium-common==1.4.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 19 additions & 21 deletions
40
canvas_manage_course/templates/canvas_manage_course/base.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
{% extends 'icommons_ui/base_lti.html' %} | ||
|
||
{% load static %} | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Manage Course</title> | ||
{% block head_meta %} | ||
{{ block.super }} | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
{% endblock head_meta %} | ||
|
||
{% block title %}Manage Course{% endblock title %} | ||
|
||
<link href="{% static 'bootstrap-3.3.6/dist/css/bootstrap.min.css' %}" rel="stylesheet"> | ||
<link href="{% static 'font-awesome-4.5.0/css/font-awesome.min.css' %}" rel="stylesheet"> | ||
{% block stylesheets %}{% endblock stylesheets %} | ||
</head> | ||
<body> | ||
<div class="container"> | ||
{% block breadcrumb %}{% endblock breadcrumb %} | ||
{% block content %}{% endblock content %} | ||
</div> | ||
{% block stylesheet %} | ||
{{ block.super }} | ||
<link href="{% static 'font-awesome-4.5.0/css/font-awesome.min.css' %}" rel="stylesheet"> | ||
{% endblock stylesheet %} | ||
|
||
<script src="{% static 'jquery-1.12.0/jquery-1.12.0.min.js' %}"></script> | ||
<script src="{% static 'bootstrap-3.3.6/dist/js/bootstrap.min.js' %}"></script> | ||
{% block javascript %}{% endblock javascript %} | ||
</body> | ||
</html> | ||
{% block content %} | ||
<div class="container"> | ||
{% block dashboard_breadcrumb %}{% endblock dashboard_breadcrumb %} | ||
{% block tool_content %}{% endblock tool_content %} | ||
</div> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from django.conf.urls import patterns, url | ||
from django.conf.urls import url | ||
|
||
from class_roster import views | ||
|
||
urlpatterns = patterns('', | ||
url(r'^index$', 'class_roster.views.index', name='index'), | ||
) | ||
urlpatterns = [ | ||
url(r'^index$', views.index, name='index'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.