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
29acc3ac
Commit
29acc3ac
authored
9 years ago
by
muhammad-ammar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve merge conflicts
test fixes
parent
8d5f1532
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
30 additions
and
149 deletions
+30
-149
common/djangoapps/util/testing.py
+2
-3
lms/djangoapps/instructor/views/api.py
+1
-45
lms/djangoapps/instructor/views/gradebook_api.py
+2
-0
lms/djangoapps/teams/tests/test_views.py
+1
-5
openedx/core/djangoapps/programs/migrations/0002_auto__add_field_programsapiconfig_cache_ttl.py
+0
-73
openedx/core/djangoapps/programs/migrations/0002_programsapiconfig_cache_ttl.py
+19
-0
openedx/core/djangoapps/programs/models.py
+1
-5
openedx/core/djangoapps/user_api/accounts/tests/test_views.py
+2
-10
requirements/edx/github.txt
+2
-8
No files found.
common/djangoapps/util/testing.py
View file @
29acc3ac
...
...
@@ -100,7 +100,6 @@ class EventTestMixin(object):
self
.
mock_tracker
.
reset_mock
()
<<<<<<<
HEAD
class
PatchMediaTypeMixin
(
object
):
"""
Generic mixin for verifying unsupported media type in PATCH
...
...
@@ -112,7 +111,8 @@ class PatchMediaTypeMixin(object):
content_type
=
self
.
unsupported_media_type
)
self
.
assertEqual
(
response
.
status_code
,
415
)
=======
def
patch_testcase
():
"""
Disable commit_on_success decorators for tests in TestCase subclasses.
...
...
@@ -159,4 +159,3 @@ def patch_testcase():
# pylint: disable=protected-access
TestCase
.
_enter_atomics
=
enter_atomics_wrapper
(
TestCase
.
_enter_atomics
)
TestCase
.
_rollback_atomics
=
rollback_atomics_wrapper
(
TestCase
.
_rollback_atomics
)
>>>>>>>
origin
/
release
This diff is collapsed.
Click to expand it.
lms/djangoapps/instructor/views/api.py
View file @
29acc3ac
...
...
@@ -2643,51 +2643,6 @@ def enable_certificate_generation(request, course_id=None):
return
redirect
(
_instructor_dash_url
(
course_key
,
section
=
'certificates'
))
<<<<<<<
HEAD
=======
#---- Gradebook (shown to small courses only) ----
# Grades can potentially be written - if so, let grading manage the transaction.
@transaction.non_atomic_requests
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@require_level
(
'staff'
)
def
spoc_gradebook
(
request
,
course_id
):
"""
Show the gradebook for this course:
- Only shown for courses with enrollment < settings.FEATURES.get("MAX_ENROLLMENT_INSTR_BUTTONS")
- Only displayed to course staff
"""
course_key
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id
)
course
=
get_course_with_access
(
request
.
user
,
'staff'
,
course_key
,
depth
=
None
)
enrolled_students
=
User
.
objects
.
filter
(
courseenrollment__course_id
=
course_key
,
courseenrollment__is_active
=
1
)
.
order_by
(
'username'
)
.
select_related
(
"profile"
)
# possible extension: implement pagination to show to large courses
student_info
=
[
{
'username'
:
student
.
username
,
'id'
:
student
.
id
,
'email'
:
student
.
email
,
'grade_summary'
:
student_grades
(
student
,
request
,
course
),
'realname'
:
student
.
profile
.
name
,
}
for
student
in
enrolled_students
]
return
render_to_response
(
'courseware/gradebook.html'
,
{
'students'
:
student_info
,
'course'
:
course
,
'course_id'
:
course_key
,
# Checked above
'staff_access'
:
True
,
'ordered_grades'
:
sorted
(
course
.
grade_cutoffs
.
items
(),
key
=
lambda
i
:
i
[
1
],
reverse
=
True
),
})
>>>>>>>
origin
/
release
@ensure_csrf_cookie
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@require_level
(
'staff'
)
...
...
@@ -2770,6 +2725,7 @@ def start_certificate_regeneration(request, course_id):
return
JsonResponse
(
response_payload
)
@transaction.non_atomic_requests
@ensure_csrf_cookie
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@require_global_staff
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/instructor/views/gradebook_api.py
View file @
29acc3ac
...
...
@@ -6,6 +6,7 @@ import math
from
django.contrib.auth.models
import
User
from
django.core.urlresolvers
import
reverse
from
django.db
import
transaction
from
django.views.decorators.cache
import
cache_control
from
opaque_keys.edx.keys
import
CourseKey
...
...
@@ -96,6 +97,7 @@ def get_grade_book_page(request, course, course_key):
return
student_info
,
page
@transaction.non_atomic_requests
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
@require_level
(
'staff'
)
def
spoc_gradebook
(
request
,
course_id
):
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/teams/tests/test_views.py
View file @
29acc3ac
...
...
@@ -129,11 +129,7 @@ class TestDashboard(SharedModuleStoreTestCase):
team
.
add_user
(
self
.
user
)
# Check the query count on the dashboard again
<<<<<<<
HEAD
with
self
.
assertNumQueries
(
19
):
=======
with
self
.
assertNumQueries
(
24
):
>>>>>>>
origin
/
release
with
self
.
assertNumQueries
(
23
):
self
.
client
.
get
(
self
.
teams_url
)
def
test_bad_course_id
(
self
):
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/programs/migrations/0002_auto__add_field_programsapiconfig_cache_ttl.py
deleted
100644 → 0
View file @
8d5f1532
# -*- coding: utf-8 -*-
from
south.utils
import
datetime_utils
as
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Adding field 'ProgramsApiConfig.cache_ttl'
db
.
add_column
(
'programs_programsapiconfig'
,
'cache_ttl'
,
self
.
gf
(
'django.db.models.fields.PositiveIntegerField'
)(
default
=
0
),
keep_default
=
False
)
def
backwards
(
self
,
orm
):
# Deleting field 'ProgramsApiConfig.cache_ttl'
db
.
delete_column
(
'programs_programsapiconfig'
,
'cache_ttl'
)
models
=
{
'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'80'
}),
'permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"('content_type__app_label', 'content_type__model', 'codename')"
,
'unique_together'
:
"(('content_type', 'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['contenttypes.ContentType']"
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
'auth.user'
:
{
'Meta'
:
{
'object_name'
:
'User'
},
'date_joined'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'first_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'groups'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['auth.Group']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'is_active'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'is_staff'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'is_superuser'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'last_login'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'last_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'password'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'user_permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
'contenttypes.contenttype'
:
{
'Meta'
:
{
'ordering'
:
"('name',)"
,
'unique_together'
:
"(('app_label', 'model'),)"
,
'object_name'
:
'ContentType'
,
'db_table'
:
"'django_content_type'"
},
'app_label'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'model'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
'programs.programsapiconfig'
:
{
'Meta'
:
{
'ordering'
:
"('-change_date',)"
,
'object_name'
:
'ProgramsApiConfig'
},
'api_version_number'
:
(
'django.db.models.fields.IntegerField'
,
[],
{}),
'cache_ttl'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'default'
:
'0'
}),
'change_date'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'blank'
:
'True'
}),
'changed_by'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['auth.User']"
,
'null'
:
'True'
,
'on_delete'
:
'models.PROTECT'
}),
'enable_student_dashboard'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'enabled'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'internal_service_url'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
}),
'public_service_url'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
})
}
}
complete_apps
=
[
'programs'
]
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/programs/migrations/0002_programsapiconfig_cache_ttl.py
0 → 100644
View file @
29acc3ac
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'programs'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'programsapiconfig'
,
name
=
'cache_ttl'
,
field
=
models
.
PositiveIntegerField
(
default
=
0
,
help_text
=
'Specified in seconds. Enable caching by setting this to a value greater than 0.'
,
verbose_name
=
'Cache Time To Live'
),
),
]
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/programs/models.py
View file @
29acc3ac
...
...
@@ -20,8 +20,7 @@ class ProgramsApiConfig(ConfigurationModel):
internal_service_url
=
URLField
(
verbose_name
=
_
(
"Internal Service URL"
))
public_service_url
=
URLField
(
verbose_name
=
_
(
"Public Service URL"
))
api_version_number
=
IntegerField
(
verbose_name
=
_
(
"API Version"
))
<<<<<<<
HEAD
enable_student_dashboard
=
BooleanField
(
verbose_name
=
_
(
"Enable Student Dashboard Displays"
))
enable_student_dashboard
=
NullBooleanField
(
verbose_name
=
_
(
"Enable Student Dashboard Displays"
))
cache_ttl
=
models
.
PositiveIntegerField
(
verbose_name
=
_
(
"Cache Time To Live"
),
default
=
0
,
...
...
@@ -31,9 +30,6 @@ class ProgramsApiConfig(ConfigurationModel):
)
PROGRAMS_API_CACHE_KEY
=
"programs.api.data"
=======
enable_student_dashboard
=
NullBooleanField
(
verbose_name
=
_
(
"Enable Student Dashboard Displays"
))
>>>>>>>
origin
/
release
@property
def
internal_api_url
(
self
):
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/user_api/accounts/tests/test_views.py
View file @
29acc3ac
...
...
@@ -306,11 +306,7 @@ class TestAccountAPI(UserAPITestCase):
"""
Internal helper to perform the actual assertions
"""
<<<<<<<
HEAD
with
self
.
assertNumQueries
(
7
):
=======
with
self
.
assertNumQueries
(
10
):
>>>>>>>
origin
/
release
with
self
.
assertNumQueries
(
9
):
response
=
self
.
send_get
(
self
.
client
)
data
=
response
.
data
self
.
assertEqual
(
16
,
len
(
data
))
...
...
@@ -349,11 +345,7 @@ class TestAccountAPI(UserAPITestCase):
legacy_profile
.
save
()
self
.
client
.
login
(
username
=
self
.
user
.
username
,
password
=
self
.
test_password
)
<<<<<<<
HEAD
with
self
.
assertNumQueries
(
7
):
=======
with
self
.
assertNumQueries
(
10
):
>>>>>>>
origin
/
release
with
self
.
assertNumQueries
(
9
):
response
=
self
.
send_get
(
self
.
client
)
for
empty_field
in
(
"level_of_education"
,
"gender"
,
"country"
,
"bio"
):
self
.
assertIsNone
(
response
.
data
[
empty_field
])
...
...
This diff is collapsed.
Click to expand it.
requirements/edx/github.txt
View file @
29acc3ac
...
...
@@ -57,16 +57,9 @@ git+https://github.com/edx/edx-lint.git@v0.3.2#egg=edx_lint==0.3.2
-e git+https://github.com/edx-solutions/xblock-google-drive.git@138e6fa0bf3a2013e904a085b9fed77dab7f3f21#egg=xblock-google-drive
-e git+https://github.com/edx/edx-reverification-block.git@ned/upgrade-django-1.8#egg=edx-reverification-block==0.0.5
-e git+https://github.com/edx/edx-user-state-client.git@30c0ad4b9f57f8d48d6943eb585ec8a9205f4469#egg=edx-user-state-client
<<<<<<< HEAD
git+https://github.com/edx/edx-organizations.git@release-2015-11-17#egg=edx-organizations==0.1.7
git+https://github.com/edx/edx-proctoring.git@0.10.20#egg=edx-proctoring==0.10.20
=======
git+https://github.com/edx/edx-organizations.git@ned/django-18#egg=edx-organizations==0.1.7
git+https://github.com/edx/edx-proctoring.git@django1.8-upgrade#egg=edx-proctoring==0.11.2
>>>>>>> origin/release
# Third Party XBlocks
-e git+https://github.com/mitodl/edx-sga@172a90fd2738f8142c10478356b2d9ed3e55334a#egg=edx-sga
-e git+https://github.com/open-craft/xblock-poll@e7a6c95c300e95c51e42bfd1eba70489c05a6527#egg=xblock-poll
-e git+https://github.com/open-craft/xblock-poll@e7a6c95c300e95c51e42bfd1eba70489c05a6527#egg=xblock-poll
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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