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
cff8ae46
Commit
cff8ae46
authored
Jul 02, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more documentation to XModule
parent
6686179b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
common/lib/xmodule/x_module.py
+21
-8
No files found.
common/lib/xmodule/x_module.py
View file @
cff8ae46
...
...
@@ -56,13 +56,16 @@ class Plugin(object):
class
XModule
(
object
):
''' Implements a generic learning module.
Initialized on access with __init__, first time with instance_state=None, and
shared_state=None. In later instantiations, instance_state will not be None,
but shared_state may be
''' Implements a generic learning module.
See the HTML module for a simple example
Subclasses must at a minimum provide a definition for get_html in order to be displayed to users.
See the HTML module for a simple example.
'''
# The default implementation of get_icon_class returns the icon_class attribute of the class
# This attribute can be overridden by subclasses, and the function can also be overridden
# if the icon class depends on the data in the module
icon_class
=
'other'
def
__init__
(
self
,
system
,
location
,
definition
,
instance_state
=
None
,
shared_state
=
None
,
**
kwargs
):
...
...
@@ -72,8 +75,18 @@ class XModule(object):
system: An I4xSystem allowing access to external resources
location: Something Location-like that identifies this xmodule
definition: A dictionary containing 'data' and 'children'. Both are optional
'data': is
a json object specifying the behavior of this xmodule
'data': is
JSON-like (string, dictionary, list, bool, or None, optionally nested)
'children': is a list of xmodule urls for child modules that this module depends on
instance_state: A string of serialized json that contains the state of this module for
current student accessing the system, or None if no state has been saved
shared_state: A string of serialized json that contains the state that is shared between
this module and any modules of the same type with the same shared_state_key. This
state is only shared per-student, not across different students
kwargs: Optional arguments. Subclasses should always accept kwargs and pass them
to the parent class constructor.
Current known uses of kwargs:
metadata: A dictionary containing data that specifies information that is particular
to a problem in the context of a course
'''
self
.
system
=
system
self
.
location
=
Location
(
location
)
...
...
@@ -121,7 +134,7 @@ class XModule(object):
def
get_icon_class
(
self
):
'''
Return a class identifying this module in the context of an icon
Return a c
ss c
lass identifying this module in the context of an icon
'''
return
self
.
icon_class
...
...
@@ -155,7 +168,7 @@ class XModule(object):
def
get_html
(
self
):
''' HTML, as shown in the browser. This is the only method that must be implemented
'''
r
eturn
"Unimplemented"
r
aise
NotImplementedError
(
"get_html must be defined for all XModules that appear on the screen. Not defined in
%
s"
%
self
.
__class__
.
__name__
)
def
get_progress
(
self
):
''' Return a progress.Progress object that represents how far the student has gone
...
...
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