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
d40ef5e0
Commit
d40ef5e0
authored
Jul 07, 2014
by
Ben McMorran
Committed by
cahrens
Aug 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds warning when editing a container visible to students
styling for editing a live unit
parent
24e58373
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
138 additions
and
1 deletions
+138
-1
cms/djangoapps/contentstore/views/component.py
+2
-1
cms/djangoapps/contentstore/views/tests/test_container_page.py
+55
-0
cms/static/sass/elements/_system-feedback.scss
+64
-0
cms/static/sass/views/_container.scss
+7
-0
cms/templates/container.html
+10
-0
No files found.
cms/djangoapps/contentstore/views/component.py
View file @
d40ef5e0
...
...
@@ -21,7 +21,7 @@ from xblock.fields import Scope
from
xblock.plugin
import
PluginMissingError
from
xblock.runtime
import
Mixologist
from
contentstore.utils
import
get_lms_link_for_item
,
compute_publish_state
from
contentstore.utils
import
get_lms_link_for_item
,
compute_publish_state
,
is_xblock_visible_to_students
from
contentstore.views.helpers
import
get_parent_xblock
,
is_unit
,
xblock_type_display_name
from
contentstore.views.item
import
create_xblock_info
...
...
@@ -202,6 +202,7 @@ def container_handler(request, usage_key_string):
'xblock_locator'
:
xblock
.
location
,
'unit'
:
unit
,
'is_unit_page'
:
is_unit_page
,
'is_visible_to_students'
:
is_xblock_visible_to_students
(
xblock
),
'subsection'
:
subsection
,
'section'
:
section
,
'new_unit_category'
:
'vertical'
,
...
...
cms/djangoapps/contentstore/views/tests/test_container_page.py
View file @
d40ef5e0
...
...
@@ -3,6 +3,8 @@ Unit tests for the container page.
"""
import
re
import
datetime
from
pytz
import
UTC
from
contentstore.views.tests.utils
import
StudioPageTestCase
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.tests.factories
import
ItemFactory
...
...
@@ -25,6 +27,23 @@ class ContainerPageTestCase(StudioPageTestCase):
self
.
video
=
self
.
_create_item
(
self
.
child_vertical
.
location
,
"video"
,
"My Video"
)
self
.
store
=
modulestore
()
past
=
datetime
.
datetime
(
1970
,
1
,
1
,
tzinfo
=
UTC
)
future
=
datetime
.
datetime
.
now
(
UTC
)
+
datetime
.
timedelta
(
days
=
1
)
self
.
released_private_vertical
=
ItemFactory
.
create
(
parent_location
=
self
.
sequential
.
location
,
category
=
'vertical'
,
display_name
=
'Released Private Unit'
,
user_id
=
self
.
user
.
id
,
start
=
past
)
self
.
unreleased_private_vertical
=
ItemFactory
.
create
(
parent_location
=
self
.
sequential
.
location
,
category
=
'vertical'
,
display_name
=
'Unreleased Private Unit'
,
user_id
=
self
.
user
.
id
,
start
=
future
)
self
.
released_public_vertical
=
ItemFactory
.
create
(
parent_location
=
self
.
sequential
.
location
,
category
=
'vertical'
,
display_name
=
'Released Public Unit'
,
user_id
=
self
.
user
.
id
,
start
=
past
)
self
.
unreleased_public_vertical
=
ItemFactory
.
create
(
parent_location
=
self
.
sequential
.
location
,
category
=
'vertical'
,
display_name
=
'Unreleased Public Unit'
,
user_id
=
self
.
user
.
id
,
start
=
future
)
self
.
store
.
publish
(
self
.
unreleased_public_vertical
.
location
,
self
.
user
.
id
)
self
.
store
.
publish
(
self
.
released_public_vertical
.
location
,
self
.
user
.
id
)
def
test_container_html
(
self
):
self
.
_test_html_content
(
self
.
child_container
,
...
...
@@ -119,3 +138,39 @@ class ContainerPageTestCase(StudioPageTestCase):
"""
empty_child_container
=
self
.
_create_item
(
self
.
vertical
.
location
,
'split_test'
,
'Split Test'
)
self
.
validate_preview_html
(
empty_child_container
,
self
.
reorderable_child_view
,
can_add
=
False
)
def
test_unreleased_private_container_messages
(
self
):
"""
Verify that an unreleased private container does not display messages.
"""
self
.
validate_html_for_messages
(
self
.
unreleased_private_vertical
,
False
)
def
test_unreleased_public_container_messages
(
self
):
"""
Verify that an unreleased public container does not display messages.
"""
self
.
validate_html_for_messages
(
self
.
unreleased_public_vertical
,
False
)
def
test_released_private_container_message
(
self
):
"""
Verify that a released private container does not display messages.
"""
self
.
validate_html_for_messages
(
self
.
released_private_vertical
,
False
)
def
test_released_public_container_message
(
self
):
"""
Verify that a released public container does display messages.
"""
self
.
validate_html_for_messages
(
self
.
released_public_vertical
,
True
)
def
validate_html_for_messages
(
self
,
xblock
,
has_messages
):
"""
Validate that the specified HTML has the appropriate messages for the current student visibility state.
"""
# Verify that there are no warning messages for blocks that are not visible to students
html
=
self
.
get_page_html
(
xblock
)
messages_html
=
'<div class="container-message wrapper-message">'
if
has_messages
:
self
.
assertIn
(
messages_html
,
html
)
else
:
self
.
assertNotIn
(
messages_html
,
html
)
cms/static/sass/elements/_system-feedback.scss
View file @
d40ef5e0
...
...
@@ -730,6 +730,70 @@
// ====================
// block-level messages and validation
.wrapper-message
{
.message
{
@extend
%t-copy-sub1
;
background-color
:
$gray-d2
;
padding
:
(
$baseline
/
2
)
(
$baseline
*.
75
);
color
:
$white
;
[
class
^=
"icon-"
]
{
font-style
:
normal
;
}
&
.information
{
@extend
%t-copy-sub1
;
background-color
:
$gray-l5
;
color
:
$gray-d2
;
}
&
.validation
{
background-color
:
$gray-d2
;
color
:
$white
;
a
{
color
:
$blue-l2
;
}
}
&
.has-warnings
{
border-bottom
:
3px
solid
$orange
;
.icon-warning-sign
{
margin-right
:
(
$baseline
/
2
);
color
:
$orange
;
}
}
&
.has-errors
{
border-bottom
:
3px
solid
$red-l2
;
.icon-exclamation-sign
{
margin-right
:
(
$baseline
/
2
);
color
:
$red-l2
;
}
}
}
.message-list
{
margin-bottom
:
0
;
}
.message-actions
{
padding
:
(
$baseline
/
2
)
$baseline
;
background-color
:
$gray-d1
;
.actions-list
{
@extend
%actions-list
;
}
}
}
// ====================
// temporary
body
.uxdesign.alerts
{
...
...
cms/static/sass/views/_container.scss
View file @
d40ef5e0
...
...
@@ -73,6 +73,13 @@
}
}
.container-message
{
.message
{
border-radius
:
3px
3px
0
0
;
}
}
// dragging bits
.ui-sortable-helper
{
...
...
cms/templates/container.html
View file @
d40ef5e0
...
...
@@ -115,6 +115,16 @@ templates = ["basic-modal", "modal-button", "edit-xblock-modal",
<section
class=
"content-area"
>
<article
class=
"content-primary"
>
% if is_visible_to_students:
<div
class=
"container-message wrapper-message"
>
<div
class=
"message has-warnings"
>
<p
class=
"warning"
>
<i
class=
"icon-warning-sign"
></i>
${_("This content is live for students. Edit with caution.")}
</p>
</div>
</div>
% endif
<section
class=
"wrapper-xblock level-page is-hidden studio-xblock-wrapper"
data-locator=
"${xblock_locator}"
data-course-key=
"${xblock_locator.course_key}"
>
</section>
<div
class=
"ui-loading"
>
...
...
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