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
b8a8b202
Commit
b8a8b202
authored
Aug 20, 2013
by
Chris Dodge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update comments and some code violation drive by fixes
parent
cf7b744f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
common/lib/xmodule/xmodule/html_module.py
+17
-6
No files found.
common/lib/xmodule/xmodule/html_module.py
View file @
b8a8b202
...
...
@@ -33,7 +33,9 @@ class HtmlFields(object):
class
HtmlModule
(
HtmlFields
,
XModule
):
js
=
{
'coffee'
:
[
resource_string
(
__name__
,
'js/src/javascript_loader.coffee'
),
js
=
{
'coffee'
:
[
resource_string
(
__name__
,
'js/src/javascript_loader.coffee'
),
resource_string
(
__name__
,
'js/src/collapsible.coffee'
),
resource_string
(
__name__
,
'js/src/html/display.coffee'
)
]
...
...
@@ -118,8 +120,10 @@ class HtmlDescriptor(HtmlFields, XmlDescriptor, EditingDescriptor):
# from .html
# 'filename' in html pointers is a relative path
# (not same as 'html/blah.html' when the pointer is in a directory itself)
pointer_path
=
"{category}/{url_path}"
.
format
(
category
=
'html'
,
url_path
=
name_to_pathname
(
location
.
name
))
pointer_path
=
"{category}/{url_path}"
.
format
(
category
=
'html'
,
url_path
=
name_to_pathname
(
location
.
name
)
)
base
=
path
(
pointer_path
)
.
dirname
()
# log.debug("base = {0}, base.dirname={1}, filename={2}".format(base, base.dirname(), filename))
filepath
=
"{base}/{name}.html"
.
format
(
base
=
base
,
name
=
filename
)
...
...
@@ -168,10 +172,12 @@ class HtmlDescriptor(HtmlFields, XmlDescriptor, EditingDescriptor):
string to filename.html.
'''
#
Not proper format.
Write html to file, return an empty tag
# Write html to file, return an empty tag
pathname
=
name_to_pathname
(
self
.
url_name
)
filepath
=
u'{category}/{pathname}.html'
.
format
(
category
=
self
.
category
,
pathname
=
pathname
)
filepath
=
u'{category}/{pathname}.html'
.
format
(
category
=
self
.
category
,
pathname
=
pathname
)
resource_fs
.
makedir
(
os
.
path
.
dirname
(
filepath
),
recursive
=
True
,
allow_recreate
=
True
)
with
resource_fs
.
open
(
filepath
,
'w'
)
as
filestream
:
...
...
@@ -185,6 +191,7 @@ class HtmlDescriptor(HtmlFields, XmlDescriptor, EditingDescriptor):
elt
.
set
(
"filename"
,
relname
)
return
elt
class
AboutFields
(
object
):
display_name
=
String
(
help
=
"Display name for this module"
,
...
...
@@ -197,12 +204,14 @@ class AboutFields(object):
scope
=
Scope
.
content
)
class
AboutModule
(
AboutFields
,
HtmlModule
):
"""
Overriding defaults but otherwise treated as HtmlModule.
"""
pass
class
AboutDescriptor
(
AboutFields
,
HtmlDescriptor
):
"""
These pieces of course content are treated as HtmlModules but we need to overload where the templates are located
...
...
@@ -211,6 +220,7 @@ class AboutDescriptor(AboutFields, HtmlDescriptor):
template_dir_name
=
"about"
module_class
=
AboutModule
class
StaticTabFields
(
object
):
"""
The overrides for Static Tabs
...
...
@@ -236,6 +246,7 @@ class StaticTabModule(StaticTabFields, HtmlModule):
"""
pass
class
StaticTabDescriptor
(
StaticTabFields
,
HtmlDescriptor
):
"""
These pieces of course content are treated as HtmlModules but we need to overload where the templates are located
...
...
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