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
2bb8bed2
Commit
2bb8bed2
authored
Oct 21, 2013
by
David Baumgold
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1435 from edx/rc/2013-10-23-fixes
release candidate improvements
parents
379af19e
6b896a69
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
6 deletions
+29
-6
CHANGELOG.rst
+19
-0
cms/djangoapps/auth/authz.py
+6
-1
lms/templates/registration/password_reset_complete.html
+1
-1
lms/templates/registration/password_reset_confirm.html
+1
-1
scripts/release-email-list.sh
+2
-3
No files found.
CHANGELOG.rst
View file @
2bb8bed2
...
@@ -53,6 +53,9 @@ editing capability for a course's list of tabs.
...
@@ -53,6 +53,9 @@ editing capability for a course's list of tabs.
Studio and LMS: add ability to lock assets (cannot be viewed unless registered
Studio and LMS: add ability to lock assets (cannot be viewed unless registered
for class).
for class).
Studio: add restful interface for paging assets (no UX yet, but just add /start/45/max/50 to end of url to get
items 45-95, e.g.)
LMS: First round of improvements to New (beta) Instructor Dash:
LMS: First round of improvements to New (beta) Instructor Dash:
improvements, fixes, and internationalization to the Student Info section.
improvements, fixes, and internationalization to the Student Info section.
...
@@ -358,6 +361,22 @@ Studio: Add feedback to end user if there is a problem exporting a course
...
@@ -358,6 +361,22 @@ Studio: Add feedback to end user if there is a problem exporting a course
Studio: Improve link re-writing on imports into a different course-id
Studio: Improve link re-writing on imports into a different course-id
---------- split mongo backend refactoring changelog section ------------
Studio: course catalog and course outline pages new use course id syntax w/ restful api style
Common:
separate the non-sql db connection configuration from the modulestore (xblock modeling) configuration.
in split, separate the the db connection and atomic crud ops into a distinct module & class from modulestore
Common: location mapper: % encode periods and dollar signs when used as key in the mapping dict
Common: location mapper: added a bunch of new helper functions for generating old location style info from a CourseLocator
Common: locators: allow - ~ and . in course, branch, and block ids.
---------- end split mongo backend section ---------
XQueue: Fixed (hopefully) worker crash when the connection to RabbitMQ is
XQueue: Fixed (hopefully) worker crash when the connection to RabbitMQ is
dropped suddenly.
dropped suddenly.
...
...
cms/djangoapps/auth/authz.py
View file @
2bb8bed2
...
@@ -10,6 +10,7 @@ from django.conf import settings
...
@@ -10,6 +10,7 @@ from django.conf import settings
from
xmodule.modulestore
import
Location
from
xmodule.modulestore
import
Location
from
xmodule.modulestore.locator
import
CourseLocator
,
Locator
from
xmodule.modulestore.locator
import
CourseLocator
,
Locator
from
xmodule.modulestore.django
import
loc_mapper
# define a couple of simple roles, we just need ADMIN and EDITOR now for our purposes
# define a couple of simple roles, we just need ADMIN and EDITOR now for our purposes
...
@@ -35,7 +36,11 @@ def get_course_groupname_for_role(location, role):
...
@@ -35,7 +36,11 @@ def get_course_groupname_for_role(location, role):
if
isinstance
(
location
,
Location
):
if
isinstance
(
location
,
Location
):
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
course
))
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
course
))
elif
isinstance
(
location
,
CourseLocator
):
elif
isinstance
(
location
,
CourseLocator
):
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
as_old_location_course_id
))
old_location
=
loc_mapper
()
.
translate_locator_to_location
(
location
)
if
old_location
is
None
:
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
location
.
as_old_location_course_id
))
else
:
groupnames
.
append
(
'{0}_{1}'
.
format
(
role
,
old_location
.
course_id
))
for
groupname
in
groupnames
:
for
groupname
in
groupnames
:
if
Group
.
objects
.
filter
(
name
=
groupname
)
.
exists
():
if
Group
.
objects
.
filter
(
name
=
groupname
)
.
exists
():
...
...
lms/templates/registration/password_reset_complete.html
View file @
2bb8bed2
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
<header
class=
"global"
>
<header
class=
"global"
>
<nav>
<nav>
<h1
class=
"logo"
>
<h1
class=
"logo"
>
<a
href=
"{{MKTG_URL_ROOT}}"
><img
src=
"
${static.url('images/header-logo.png')
}"
></a>
<a
href=
"{{MKTG_URL_ROOT}}"
><img
src=
"
{% static 'images/header-logo.png' %
}"
></a>
</h1>
</h1>
</nav>
</nav>
</header>
</header>
...
...
lms/templates/registration/password_reset_confirm.html
View file @
2bb8bed2
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
<header
class=
"global"
>
<header
class=
"global"
>
<nav>
<nav>
<h1
class=
"logo"
>
<h1
class=
"logo"
>
<a
href=
"{{MKTG_URL_ROOT}}"
><img
src=
"
${static.url('images/header-logo.png')
}"
></a>
<a
href=
"{{MKTG_URL_ROOT}}"
><img
src=
"
{% static 'images/header-logo.png' %
}"
></a>
</h1>
</h1>
</nav>
</nav>
</header>
</header>
...
...
scripts/release-email-list.sh
View file @
2bb8bed2
...
@@ -42,7 +42,7 @@ for EMAIL in $RESPONSIBLE; do
...
@@ -42,7 +42,7 @@ for EMAIL in $RESPONSIBLE; do
EMAIL_COL
=
"
$EMAIL
"
EMAIL_COL
=
"
$EMAIL
"
for
HASH
in
$ALL_COMMITS
;
do
for
HASH
in
$ALL_COMMITS
;
do
git log
--format
=
"tformat:|
$EMAIL_COL
|%s|[commit|https://github.com/edx/edx-platform/commit/%h]| |"
-n
1
$HASH
git
--no-pager
log
--format
=
"tformat:|
$EMAIL_COL
|%s|[commit|https://github.com/edx/edx-platform/commit/%h]| |"
-n
1
$HASH
EMAIL_COL
=
" "
EMAIL_COL
=
" "
done
done
done
done
\ No newline at end of file
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