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
fd0d6959
Commit
fd0d6959
authored
Nov 22, 2016
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to the latest version of opaque-keys
parent
82a24356
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
49 additions
and
17 deletions
+49
-17
cms/djangoapps/contentstore/views/certificates.py
+30
-5
cms/djangoapps/contentstore/views/preview.py
+2
-2
cms/djangoapps/contentstore/views/tests/test_certificates.py
+0
-0
cms/lib/xblock/tagging/test.py
+6
-3
common/lib/xmodule/setup.py
+1
-1
common/lib/xmodule/xmodule/contentstore/content.py
+4
-1
common/lib/xmodule/xmodule/x_module.py
+3
-3
lms/djangoapps/courseware/model_data.py
+2
-1
requirements/edx/base.txt
+1
-1
No files found.
cms/djangoapps/contentstore/views/certificates.py
View file @
fd0d6959
...
@@ -22,6 +22,7 @@ course.certificates: {
...
@@ -22,6 +22,7 @@ course.certificates: {
}
}
"""
"""
import
json
import
json
import
logging
from
django.conf
import
settings
from
django.conf
import
settings
from
django.contrib.auth.decorators
import
login_required
from
django.contrib.auth.decorators
import
login_required
...
@@ -33,6 +34,7 @@ from django.views.decorators.http import require_http_methods
...
@@ -33,6 +34,7 @@ from django.views.decorators.http import require_http_methods
from
contentstore.utils
import
reverse_course_url
from
contentstore.utils
import
reverse_course_url
from
edxmako.shortcuts
import
render_to_response
from
edxmako.shortcuts
import
render_to_response
from
opaque_keys.edx.keys
import
CourseKey
,
AssetKey
from
opaque_keys.edx.keys
import
CourseKey
,
AssetKey
from
opaque_keys
import
InvalidKeyError
from
eventtracking
import
tracker
from
eventtracking
import
tracker
from
student.auth
import
has_studio_write_access
from
student.auth
import
has_studio_write_access
from
student.roles
import
GlobalStaff
from
student.roles
import
GlobalStaff
...
@@ -49,6 +51,8 @@ from contentstore.utils import get_lms_link_for_certificate_web_view
...
@@ -49,6 +51,8 @@ from contentstore.utils import get_lms_link_for_certificate_web_view
CERTIFICATE_SCHEMA_VERSION
=
1
CERTIFICATE_SCHEMA_VERSION
=
1
CERTIFICATE_MINIMUM_ID
=
100
CERTIFICATE_MINIMUM_ID
=
100
LOGGER
=
logging
.
getLogger
(
__name__
)
def
_get_course_and_check_access
(
course_key
,
user
,
depth
=
0
):
def
_get_course_and_check_access
(
course_key
,
user
,
depth
=
0
):
"""
"""
...
@@ -67,11 +71,32 @@ def _delete_asset(course_key, asset_key_string):
...
@@ -67,11 +71,32 @@ def _delete_asset(course_key, asset_key_string):
remove asset by calling delete_asset method of assets module.
remove asset by calling delete_asset method of assets module.
"""
"""
if
asset_key_string
:
if
asset_key_string
:
# remove first slash in asset path
try
:
# otherwise it generates InvalidKeyError in case of split modulestore
asset_key
=
AssetKey
.
from_string
(
asset_key_string
)
if
'/'
==
asset_key_string
[
0
]:
except
InvalidKeyError
:
asset_key_string
=
asset_key_string
[
1
:]
# remove first slash in asset path
asset_key
=
AssetKey
.
from_string
(
asset_key_string
)
# otherwise it generates InvalidKeyError in case of split modulestore
if
'/'
==
asset_key_string
[
0
]:
asset_key_string
=
asset_key_string
[
1
:]
try
:
asset_key
=
AssetKey
.
from_string
(
asset_key_string
)
except
InvalidKeyError
:
# Unable to parse the asset key, log and return
LOGGER
.
info
(
"In course
%
r, unable to parse asset key
%
r, not attempting to delete signatory."
,
course_key
,
asset_key_string
,
)
return
else
:
# Unable to parse the asset key, log and return
LOGGER
.
info
(
"In course
%
r, unable to parse asset key
%
r, not attempting to delete signatory."
,
course_key
,
asset_key_string
,
)
return
try
:
try
:
delete_asset
(
course_key
,
asset_key
)
delete_asset
(
course_key
,
asset_key
)
# If the asset was not found, it doesn't have to be deleted...
# If the asset was not found, it doesn't have to be deleted...
...
...
cms/djangoapps/contentstore/views/preview.py
View file @
fd0d6959
...
@@ -21,7 +21,7 @@ from xmodule.services import SettingsService
...
@@ -21,7 +21,7 @@ from xmodule.services import SettingsService
from
xmodule.modulestore.django
import
modulestore
,
ModuleI18nService
from
xmodule.modulestore.django
import
modulestore
,
ModuleI18nService
from
xmodule.mixin
import
wrap_with_license
from
xmodule.mixin
import
wrap_with_license
from
opaque_keys.edx.keys
import
UsageKey
from
opaque_keys.edx.keys
import
UsageKey
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
,
AsideUsageKeyV2
from
xmodule.x_module
import
ModuleSystem
from
xmodule.x_module
import
ModuleSystem
from
xblock.runtime
import
KvsFieldData
from
xblock.runtime
import
KvsFieldData
from
xblock.django.request
import
webob_to_django_response
,
django_to_webob_request
from
xblock.django.request
import
webob_to_django_response
,
django_to_webob_request
...
@@ -57,7 +57,7 @@ def preview_handler(request, usage_key_string, handler, suffix=''):
...
@@ -57,7 +57,7 @@ def preview_handler(request, usage_key_string, handler, suffix=''):
"""
"""
usage_key
=
UsageKey
.
from_string
(
usage_key_string
)
usage_key
=
UsageKey
.
from_string
(
usage_key_string
)
if
isinstance
(
usage_key
,
AsideUsageKeyV1
):
if
isinstance
(
usage_key
,
(
AsideUsageKeyV1
,
AsideUsageKeyV2
)
):
descriptor
=
modulestore
()
.
get_item
(
usage_key
.
usage_key
)
descriptor
=
modulestore
()
.
get_item
(
usage_key
.
usage_key
)
for
aside
in
descriptor
.
runtime
.
get_asides
(
descriptor
):
for
aside
in
descriptor
.
runtime
.
get_asides
(
descriptor
):
if
aside
.
scope_ids
.
block_type
==
usage_key
.
aside_type
:
if
aside
.
scope_ids
.
block_type
==
usage_key
.
aside_type
:
...
...
cms/djangoapps/contentstore/views/tests/test_certificates.py
View file @
fd0d6959
This diff is collapsed.
Click to expand it.
cms/lib/xblock/tagging/test.py
View file @
fd0d6959
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
Tests for the Studio Tagging XBlockAside
Tests for the Studio Tagging XBlockAside
"""
"""
import
ddt
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
...
@@ -17,13 +18,14 @@ from contentstore.utils import reverse_usage_url
...
@@ -17,13 +18,14 @@ from contentstore.utils import reverse_usage_url
from
contentstore.tests.utils
import
AjaxEnabledTestClient
from
contentstore.tests.utils
import
AjaxEnabledTestClient
from
django.test.client
import
RequestFactory
from
django.test.client
import
RequestFactory
from
student.tests.factories
import
UserFactory
from
student.tests.factories
import
UserFactory
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
,
AsideUsageKeyV2
from
datetime
import
datetime
from
datetime
import
datetime
from
pytz
import
UTC
from
pytz
import
UTC
from
lxml
import
etree
from
lxml
import
etree
from
StringIO
import
StringIO
from
StringIO
import
StringIO
@ddt.ddt
class
StructuredTagsAsideTestCase
(
ModuleStoreTestCase
):
class
StructuredTagsAsideTestCase
(
ModuleStoreTestCase
):
"""
"""
Base class for tests of StructuredTagsAside (tagging.py)
Base class for tests of StructuredTagsAside (tagging.py)
...
@@ -179,13 +181,14 @@ class StructuredTagsAsideTestCase(ModuleStoreTestCase):
...
@@ -179,13 +181,14 @@ class StructuredTagsAsideTestCase(ModuleStoreTestCase):
video_html
=
get_preview_fragment
(
request
,
self
.
video
,
context
)
.
content
video_html
=
get_preview_fragment
(
request
,
self
.
video
,
context
)
.
content
self
.
assertNotRegexpMatches
(
video_html
,
"<select"
)
self
.
assertNotRegexpMatches
(
video_html
,
"<select"
)
def
test_handle_requests
(
self
):
@ddt.data
(
AsideUsageKeyV1
,
AsideUsageKeyV2
)
def
test_handle_requests
(
self
,
aside_key_class
):
"""
"""
Checks that handler to save tags in StructuredTagsAside works properly
Checks that handler to save tags in StructuredTagsAside works properly
"""
"""
handler_url
=
reverse_usage_url
(
handler_url
=
reverse_usage_url
(
'preview_handler'
,
'preview_handler'
,
'
%
s:
%
s::
%
s'
%
(
AsideUsageKeyV1
.
CANONICAL_NAMESPACE
,
self
.
problem
.
location
,
self
.
aside_name
),
unicode
(
aside_key_class
(
self
.
problem
.
location
,
self
.
aside_name
)
),
kwargs
=
{
'handler'
:
'save_tags'
}
kwargs
=
{
'handler'
:
'save_tags'
}
)
)
...
...
common/lib/xmodule/setup.py
View file @
fd0d6959
...
@@ -55,7 +55,7 @@ setup(
...
@@ -55,7 +55,7 @@ setup(
'capa'
,
'capa'
,
'path.py'
,
'path.py'
,
'webob'
,
'webob'
,
'edx-opaque-keys>=0.
3.4
,<1.0.0'
,
'edx-opaque-keys>=0.
4.0
,<1.0.0'
,
],
],
package_data
=
{
package_data
=
{
'xmodule'
:
[
'js/module/*'
],
'xmodule'
:
[
'js/module/*'
],
...
...
common/lib/xmodule/xmodule/contentstore/content.py
View file @
fd0d6959
...
@@ -200,7 +200,10 @@ class StaticContent(object):
...
@@ -200,7 +200,10 @@ class StaticContent(object):
if
path
.
startswith
(
'/static/'
):
if
path
.
startswith
(
'/static/'
):
path
=
path
[
len
(
'/static/'
):]
path
=
path
[
len
(
'/static/'
):]
path
=
path
.
lstrip
(
'/'
)
# Old-style asset keys start with `/`, so don't try and strip it
# in that case.
if
not
path
.
startswith
(
'/c4x'
):
path
=
path
.
lstrip
(
'/'
)
try
:
try
:
return
AssetKey
.
from_string
(
path
)
return
AssetKey
.
from_string
(
path
)
...
...
common/lib/xmodule/xmodule/x_module.py
View file @
fd0d6959
...
@@ -33,7 +33,7 @@ from xmodule.errortracker import exc_info_to_str
...
@@ -33,7 +33,7 @@ from xmodule.errortracker import exc_info_to_str
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
from
opaque_keys.edx.keys
import
UsageKey
from
opaque_keys.edx.keys
import
UsageKey
from
opaque_keys.edx.asides
import
AsideUsageKeyV
1
,
AsideDefinitionKeyV1
from
opaque_keys.edx.asides
import
AsideUsageKeyV
2
,
AsideDefinitionKeyV2
from
xmodule.exceptions
import
UndefinedContext
from
xmodule.exceptions
import
UndefinedContext
import
dogstats_wrapper
as
dog_stats_api
import
dogstats_wrapper
as
dog_stats_api
...
@@ -155,8 +155,8 @@ class AsideKeyGenerator(IdGenerator):
...
@@ -155,8 +155,8 @@ class AsideKeyGenerator(IdGenerator):
Returns:
Returns:
(aside_definition_id, aside_usage_id)
(aside_definition_id, aside_usage_id)
"""
"""
def_key
=
AsideDefinitionKeyV
1
(
definition_id
,
aside_type
)
def_key
=
AsideDefinitionKeyV
2
(
definition_id
,
aside_type
)
usage_key
=
AsideUsageKeyV
1
(
usage_id
,
aside_type
)
usage_key
=
AsideUsageKeyV
2
(
usage_id
,
aside_type
)
return
(
def_key
,
usage_key
)
return
(
def_key
,
usage_key
)
def
create_usage
(
self
,
def_id
):
def
create_usage
(
self
,
def_id
):
...
...
lms/djangoapps/courseware/model_data.py
View file @
fd0d6959
...
@@ -33,7 +33,7 @@ from .models import (
...
@@ -33,7 +33,7 @@ from .models import (
import
logging
import
logging
from
opaque_keys.edx.keys
import
CourseKey
,
UsageKey
from
opaque_keys.edx.keys
import
CourseKey
,
UsageKey
from
opaque_keys.edx.block_types
import
BlockTypeKeyV1
from
opaque_keys.edx.block_types
import
BlockTypeKeyV1
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
from
opaque_keys.edx.asides
import
AsideUsageKeyV1
,
AsideUsageKeyV2
from
contracts
import
contract
,
new_contract
from
contracts
import
contract
,
new_contract
from
django.db
import
DatabaseError
from
django.db
import
DatabaseError
...
@@ -67,6 +67,7 @@ def _all_usage_keys(descriptors, aside_types):
...
@@ -67,6 +67,7 @@ def _all_usage_keys(descriptors, aside_types):
for
aside_type
in
aside_types
:
for
aside_type
in
aside_types
:
usage_ids
.
add
(
AsideUsageKeyV1
(
descriptor
.
scope_ids
.
usage_id
,
aside_type
))
usage_ids
.
add
(
AsideUsageKeyV1
(
descriptor
.
scope_ids
.
usage_id
,
aside_type
))
usage_ids
.
add
(
AsideUsageKeyV2
(
descriptor
.
scope_ids
.
usage_id
,
aside_type
))
return
usage_ids
return
usage_ids
...
...
requirements/edx/base.txt
View file @
fd0d6959
...
@@ -48,7 +48,7 @@ edx-django-oauth2-provider==1.1.4
...
@@ -48,7 +48,7 @@ edx-django-oauth2-provider==1.1.4
edx-django-sites-extensions==2.1.1
edx-django-sites-extensions==2.1.1
edx-enterprise==0.1.0
edx-enterprise==0.1.0
edx-oauth2-provider==1.2.0
edx-oauth2-provider==1.2.0
edx-opaque-keys==0.
3.4
edx-opaque-keys==0.
4.0
edx-organizations==0.4.1
edx-organizations==0.4.1
edx-rest-api-client==1.2.1
edx-rest-api-client==1.2.1
edx-search==0.1.2
edx-search==0.1.2
...
...
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