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
d88e5b0b
Commit
d88e5b0b
authored
May 28, 2015
by
Andrew Dekker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial chromeless template
Initially for LTI embedding, but generic and reusable.
parent
ba4be3cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
160 additions
and
3 deletions
+160
-3
lms/djangoapps/lti_provider/views.py
+1
-3
lms/templates/courseware/courseware-chromeless.html
+159
-0
No files found.
lms/djangoapps/lti_provider/views.py
View file @
d88e5b0b
...
...
@@ -189,13 +189,11 @@ def render_courseware(request, lti_params):
'disable_accordion'
:
True
,
'allow_iframing'
:
True
,
'disable_header'
:
True
,
'disable_footer'
:
True
,
'disable_tabs'
:
True
,
'staff_access'
:
staff
,
'xqa_server'
:
settings
.
FEATURES
.
get
(
'XQA_SERVER'
,
'http://example.com/xqa'
),
}
return
render_to_response
(
'courseware/courseware.html'
,
context
)
return
render_to_response
(
'courseware/courseware
-chromeless
.html'
,
context
)
def
parse_course_and_usage_keys
(
course_id
,
usage_id
):
...
...
lms/templates/courseware/courseware-chromeless.html
0 → 100644
View file @
d88e5b0b
<
%!
from
django
.
utils
.
translation
import
ugettext
as
_
%
>
<
%!
from
django
.
template
.
defaultfilters
import
escapejs
%
>
<
%!
from
microsite_configuration
import
page_title_breadcrumbs
%
>
<
%!
from
edxnotes
.
helpers
import
is_feature_enabled
as
is_edxnotes_enabled
%
>
<
%
inherit
file=
"/main.html"
/>
<
%
namespace
name=
'static'
file=
'/static_content.html'
/>
<
%
def
name=
"course_name()"
>
<
%
return
_
("{
course_number
}
Courseware
").
format
(
course_number=
course.display_number_with_default)
%
>
</
%
def>
<
%
block
name=
"bodyclass"
>
courseware ${course.css_class or ''}
</
%
block>
<
%
block
name=
"title"
><title>
% if section_title:
${page_title_breadcrumbs(section_title, course_name())}
% else:
${page_title_breadcrumbs(course_name())}
%endif
</title></
%
block>
<
%
block
name=
"header_extras"
>
% for template_name in ["image-modal"]:
<script
type=
"text/template"
id=
"${template_name}-tpl"
>
<%
static
:
include
path
=
"js/${template_name}.underscore"
/>
</script>
% endfor
<
%
header_file =
None
%
>
</
%
block>
<
%
block
name=
"headextra"
>
<
%
static:css
group=
'style-course-vendor'
/>
<
%
static:css
group=
'style-course'
/>
## Utility: Notes
% if is_edxnotes_enabled(course):
<
%
static:css
group=
'style-student-notes'
/>
% endif
<
%
block
name=
"nav_skip"
>
${"#seq_content" if section_title else "#course-content"}
</
%
block>
<
%
include
file=
"../discussion/_js_head_dependencies.html"
/>
% if show_chat:
<link
rel=
"stylesheet"
href=
"${static.url('css/vendor/ui-lightness/jquery-ui-1.8.22.custom.css')}"
/>
## It'd be better to have this in a place like lms/css/vendor/candy,
## but the candy_res/ folder contains images and other junk, and it
## all needs to stay together for the Candy.js plugin to work.
<link
rel=
"stylesheet"
href=
"${static.url('candy_res/candy_full.css')}"
/>
% endif
${fragment.head_html()}
</
%
block>
<
%
block
name=
"js_extra"
>
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/jquery.scrollTo-1.4.2-min.js')}"
></script>
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/flot/jquery.flot.js')}"
></script>
## codemirror
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/codemirror-compressed.js')}"
></script>
<
%
static:js
group=
'courseware'
/>
<
%
static:js
group=
'discussion'
/>
<
%
include
file=
"../discussion/_js_body_dependencies.html"
/>
% if staff_access:
<
%
include
file=
"xqa_interface.html"
/>
% endif
<script
type=
"text/javascript"
>
var
$$course_id
=
"${course.id | escapejs}"
;
$
(
function
(){
$
(
".ui-accordion-header a, .ui-accordion-content .subtitle"
).
each
(
function
()
{
var
elemText
=
$
(
this
).
text
().
replace
(
/^
\s
+|
\s
+$/g
,
''
);
// Strip leading and trailing whitespace
var
wordArray
=
elemText
.
split
(
" "
);
var
finalTitle
=
""
;
if
(
wordArray
.
length
>
0
)
{
for
(
i
=
0
;
i
<=
wordArray
.
length
-
1
;
i
++
)
{
finalTitle
+=
wordArray
[
i
];
if
(
i
==
(
wordArray
.
length
-
2
))
{
finalTitle
+=
" "
;
}
else
if
(
i
==
(
wordArray
.
length
-
1
))
{
// Do nothing
}
else
{
finalTitle
+=
" "
;
}
}
}
$
(
this
).
html
(
finalTitle
);
});
});
</script>
% if show_chat:
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/candy_libs/libs.min.js')}"
></script>
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/candy.min.js')}"
></script>
<script
type=
"text/javascript"
>
// initialize the Candy.js plugin
$
(
document
).
ready
(
function
()
{
Candy
.
init
(
"http://${chat['domain']}:5280/http-bind/"
,
{
core
:
{
debug
:
true
,
autojoin
:
[
"${chat['room']}@conference.${chat['domain']}"
]
},
view
:
{
resources
:
"${static.url('candy_res/')}"
}
});
Candy
.
Core
.
connect
(
"${chat['username']}"
,
"${chat['password']}"
);
// show/hide the chat widget
$
(
'#chat-toggle'
).
click
(
function
()
{
var
toggle
=
$
(
this
);
if
(
toggle
.
hasClass
(
'closed'
))
{
$
(
'#chat-block'
).
show
().
animate
({
height
:
'400px'
},
'slow'
,
function
()
{
$
(
'#chat-open'
).
hide
();
$
(
'#chat-close'
).
show
();
});
}
else
{
$
(
'#chat-block'
).
animate
({
height
:
'0px'
},
'slow'
,
function
()
{
$
(
'#chat-open'
).
show
();
$
(
'#chat-close'
).
hide
();
$
(
this
).
hide
();
// do this at the very end
});
}
toggle
.
toggleClass
(
'closed'
);
});
});
</script>
% endif
${fragment.foot_html()}
</
%
block>
<div
class=
"container"
>
<div
class=
"course-wrapper"
>
<section
class=
"course-content"
id=
"course-content"
>
${fragment.body_html()}
</section>
</div>
</div>
<nav
class=
"nav-utilities ${"
has-utility-calculator
"
if
course
.
show_calculator
else
""}"
aria-label=
"${_('Course Utilities')}"
>
## Utility: Chat
% if show_chat:
<
%
include
file=
"/chat/toggle_chat.html"
/>
% endif
## Utility: Notes
% if is_edxnotes_enabled(course):
<
%
include
file=
"/edxnotes/toggle_notes.html"
args=
"course=course"
/>
% endif
## Utility: Calc
% if course.show_calculator:
<
%
include
file=
"/calculator/toggle_calculator.html"
/>
% endif
</nav>
<
%
include
file=
"../modal/accessible_confirm.html"
/>
## No footer in chromeless
<
%
block
name=
"footer"
></
%
block>
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