Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
b00398f5
Commit
b00398f5
authored
Jun 06, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ORA2 release-2014-06-11T10.43
Install edx-submissions from PyPi instead of from edx-ora2
parent
04c94265
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
11 deletions
+8
-11
lms/djangoapps/courseware/grades.py
+1
-1
lms/djangoapps/instructor/enrollment.py
+1
-3
lms/djangoapps/instructor/views/api.py
+1
-3
lms/djangoapps/instructor/views/legacy.py
+1
-3
requirements/edx/base.txt
+3
-0
requirements/edx/github.txt
+1
-1
No files found.
lms/djangoapps/courseware/grades.py
View file @
b00398f5
...
@@ -15,7 +15,6 @@ from dogapi import dog_stats_api
...
@@ -15,7 +15,6 @@ from dogapi import dog_stats_api
from
courseware
import
courses
from
courseware
import
courses
from
courseware.model_data
import
FieldDataCache
from
courseware.model_data
import
FieldDataCache
from
student.models
import
anonymous_id_for_user
from
student.models
import
anonymous_id_for_user
from
submissions
import
api
as
sub_api
from
xmodule
import
graders
from
xmodule
import
graders
from
xmodule.graders
import
Score
from
xmodule.graders
import
Score
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.django
import
modulestore
...
@@ -23,6 +22,7 @@ from xmodule.modulestore.exceptions import ItemNotFoundError
...
@@ -23,6 +22,7 @@ from xmodule.modulestore.exceptions import ItemNotFoundError
from
xmodule.util.duedate
import
get_extended_due_date
from
xmodule.util.duedate
import
get_extended_due_date
from
.models
import
StudentModule
from
.models
import
StudentModule
from
.module_render
import
get_module_for_descriptor
from
.module_render
import
get_module_for_descriptor
from
submissions
import
api
as
sub_api
# installed from the edx-submissions repository
from
opaque_keys
import
InvalidKeyError
from
opaque_keys
import
InvalidKeyError
log
=
logging
.
getLogger
(
"edx.courseware"
)
log
=
logging
.
getLogger
(
"edx.courseware"
)
...
...
lms/djangoapps/instructor/enrollment.py
View file @
b00398f5
...
@@ -14,9 +14,7 @@ from student.models import CourseEnrollment, CourseEnrollmentAllowed
...
@@ -14,9 +14,7 @@ from student.models import CourseEnrollment, CourseEnrollmentAllowed
from
courseware.models
import
StudentModule
from
courseware.models
import
StudentModule
from
edxmako.shortcuts
import
render_to_string
from
edxmako.shortcuts
import
render_to_string
# Submissions is a Django app that is currently installed
from
submissions
import
api
as
sub_api
# installed from the edx-submissions repository
# from the edx-ora2 repo, although it will likely move in the future.
from
submissions
import
api
as
sub_api
from
student.models
import
anonymous_id_for_user
from
student.models
import
anonymous_id_for_user
from
microsite_configuration
import
microsite
from
microsite_configuration
import
microsite
...
...
lms/djangoapps/instructor/views/api.py
View file @
b00398f5
...
@@ -52,9 +52,7 @@ import analytics.distributions
...
@@ -52,9 +52,7 @@ import analytics.distributions
import
analytics.csvs
import
analytics.csvs
import
csv
import
csv
# Submissions is a Django app that is currently installed
from
submissions
import
api
as
sub_api
# installed from the edx-submissions repository
# from the edx-ora2 repo, although it will likely move in the future.
from
submissions
import
api
as
sub_api
from
bulk_email.models
import
CourseEmail
from
bulk_email.models
import
CourseEmail
...
...
lms/djangoapps/instructor/views/legacy.py
View file @
b00398f5
...
@@ -36,9 +36,7 @@ from xmodule.html_module import HtmlDescriptor
...
@@ -36,9 +36,7 @@ from xmodule.html_module import HtmlDescriptor
from
opaque_keys
import
InvalidKeyError
from
opaque_keys
import
InvalidKeyError
from
lms.lib.xblock.runtime
import
quote_slashes
from
lms.lib.xblock.runtime
import
quote_slashes
# Submissions is a Django app that is currently installed
from
submissions
import
api
as
sub_api
# installed from the edx-submissions repository
# from the edx-ora2 repo, although it will likely move in the future.
from
submissions
import
api
as
sub_api
from
bulk_email.models
import
CourseEmail
,
CourseAuthorization
from
bulk_email.models
import
CourseEmail
,
CourseAuthorization
from
courseware
import
grades
from
courseware
import
grades
...
...
requirements/edx/base.txt
View file @
b00398f5
...
@@ -132,3 +132,6 @@ git+https://github.com/mfogel/django-settings-context-processor.git
...
@@ -132,3 +132,6 @@ git+https://github.com/mfogel/django-settings-context-processor.git
# django-cas version 2.0.3 with patch to be compatible with django 1.4
# django-cas version 2.0.3 with patch to be compatible with django 1.4
git+https://github.com/mitocw/django-cas.git
git+https://github.com/mitocw/django-cas.git
# edX packages
edx-submissions==0.0.2
requirements/edx/github.txt
View file @
b00398f5
...
@@ -26,6 +26,6 @@
...
@@ -26,6 +26,6 @@
-e git+https://github.com/edx/bok-choy.git@82b4e82d79b9d4c6d087ebbfa26ea23235728e62#egg=bok_choy
-e git+https://github.com/edx/bok-choy.git@82b4e82d79b9d4c6d087ebbfa26ea23235728e62#egg=bok_choy
-e git+https://github.com/edx-solutions/django-splash.git@9965a53c269666a30bb4e2b3f6037c138aef2a55#egg=django-splash
-e git+https://github.com/edx-solutions/django-splash.git@9965a53c269666a30bb4e2b3f6037c138aef2a55#egg=django-splash
-e git+https://github.com/edx/acid-block.git@459aff7b63db8f2c5decd1755706c1a64fb4ebb1#egg=acid-xblock
-e git+https://github.com/edx/acid-block.git@459aff7b63db8f2c5decd1755706c1a64fb4ebb1#egg=acid-xblock
-e git+https://github.com/edx/edx-ora2.git@release-2014-06-
02T15.45
#egg=edx-ora2
-e git+https://github.com/edx/edx-ora2.git@release-2014-06-
11T10.43
#egg=edx-ora2
-e git+https://github.com/edx/opaque-keys.git@91b7ec93cfb57c6739332e85805296626b4fb1db#egg=opaque-keys
-e git+https://github.com/edx/opaque-keys.git@91b7ec93cfb57c6739332e85805296626b4fb1db#egg=opaque-keys
git+https://github.com/edx/ease.git@a990b25ed4238acb1b15ee6f027465db3a10960e#egg=ease
git+https://github.com/edx/ease.git@a990b25ed4238acb1b15ee6f027465db3a10960e#egg=ease
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment