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
b6cde36d
Commit
b6cde36d
authored
Sep 18, 2013
by
Chris Dodge
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release'
Conflicts: CHANGELOG.rst
parents
02d8b68a
2cdd005f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
CHANGELOG.rst
+4
-0
common/lib/xmodule/xmodule/lti_module.py
+5
-9
lms/static/sass/views/_verification.scss
+4
-4
lms/templates/discussion/_thread_list_template.html
+2
-2
No files found.
CHANGELOG.rst
View file @
b6cde36d
...
...
@@ -14,6 +14,10 @@ assessors to edit the original submitter's work.
LMS: Fixed a bug that caused links from forum user profile pages to
threads to lead to 404s if the course id contained a '-' character.
Studio/LMS: Added ability to set due date formatting through Studio's Advanced Settings.
The key is due_date_display_format, and the value should be a format supported by Python's
strftime function.
Common: Added configurable backends for tracking events. Tracking events using
the python logging module is the default backend. Support for MongoDB and a
Django database is also available.
...
...
common/lib/xmodule/xmodule/lti_module.py
View file @
b6cde36d
...
...
@@ -227,17 +227,13 @@ class LTIModule(LTIFields, XModule):
body
=
body
,
headers
=
headers
)
except
ValueError
:
# scheme not in url
# Stubbing headers for now:
#https://github.com/idan/oauthlib/blob/master/oauthlib/oauth1/rfc5849/signature.py#L136
#Stubbing headers for now:
headers
=
{
u'Content-Type'
:
u'application/x-www-form-urlencoded'
,
u'Authorization'
:
u'oAuth '
# cont..
u'oauth_nonce="80966668944732164491378916897", '
# cont..
u'oauth_timestamp="1378916897", '
# cont..
u'oauth_version="1.0", '
# cont..
u'oauth_signature_method="HMAC-SHA1", '
# cont..
u'oauth_consumer_key="", '
# cont..
u'oauth_signature="frVp4JuvT1mVXlxktiAUjQ7
%2
F1cw
%3
D"'
,
}
u'Authorization'
:
u'OAuth oauth_nonce="80966668944732164491378916897",
\
oauth_timestamp="1378916897", oauth_version="1.0", oauth_signature_method="HMAC-SHA1",
\
oauth_consumer_key="", oauth_signature="frVp4JuvT1mVXlxktiAUjQ7
%2
F1cw
%3
D"'
}
params
=
headers
[
'Authorization'
]
# parse headers to pass to template as part of context:
...
...
lms/static/sass/views/_verification.scss
View file @
b6cde36d
...
...
@@ -1661,13 +1661,13 @@
margin
:
0
flex-gutter
()
0
0
;
.title
{
@extend
.
hd-lv4
;
@extend
%
hd-lv4
;
margin-bottom
:
(
$baseline
/
4
);
}
.copy
{
@extend
.
t-copy-sub1
;
@extend
.
t-weight3
;
@extend
%
t-copy-sub1
;
@extend
%
t-weight3
;
}
.list-actions
{
...
...
@@ -1675,7 +1675,7 @@
}
.action-verify
label
{
@extend
.
t-copy-sub1
;
@extend
%
t-copy-sub1
;
}
}
...
...
lms/templates/discussion/_thread_list_template.html
View file @
b6cde36d
...
...
@@ -4,13 +4,13 @@
<
div
class
=
"home"
>
<
a
href
=
"#"
class
=
"home-icon"
>
<
i
class
=
"icon icon-home"
><
/i
>
<
span
class
=
"
text-
sr"
>
$
{
_
(
"Discussion Home"
)}
<
/span
>
<
span
class
=
"sr"
>
$
{
_
(
"Discussion Home"
)}
<
/span
>
<
/a
>
<
/div
>
<
div
class
=
"browse is-open"
>
<
a
href
=
"#"
class
=
"browse-topic-drop-icon"
>
<
i
class
=
"icon icon-reorder"
><
/i
>
<
span
class
=
"
text-
sr"
>
$
{
_
(
"Discussion Topics"
)}
<
/span
>
<
span
class
=
"sr"
>
$
{
_
(
"Discussion Topics"
)}
<
/span
>
<
/a
>
<
a
href
=
"#"
class
=
"browse-topic-drop-btn"
><
span
class
=
"current-board"
>
$
{
_
(
"Show All Discussions"
)}
<
/span> <span class="drop-arrow">▾</
span
><
/a
>
<
/div
>
...
...
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