Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
8164d49b
Commit
8164d49b
authored
Jan 29, 2014
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A little doc pruning to remove empty subsections
parent
9487d7e9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
23 deletions
+24
-23
README.rst
+1
-1
doc/source/api.rst
+0
-14
doc/source/dev/conventions.rst
+14
-7
doc/source/index.rst
+9
-1
No files found.
README.rst
View file @
8164d49b
...
@@ -9,7 +9,7 @@ The intent of this project is to be installed as Django apps that will be
...
@@ -9,7 +9,7 @@ The intent of this project is to be installed as Django apps that will be
included in `edx-platform <https://github.com/edx/edx-platform>`_. To install
included in `edx-platform <https://github.com/edx/edx-platform>`_. To install
for development purposes, run::
for development purposes, run::
pip install -r requirements/
test
.txt
pip install -r requirements/
dev
.txt
License
License
=======
=======
...
...
doc/source/api.rst
View file @
8164d49b
.. _api:
.. _api:
Public Interface
----------------
Every Django application in edx-tim has an `api.py` that is its public
interface. If you are using one of these applications from the outside, you
should only import things from that module. The ground rules for api modules
are:
1. All inputs and outputs must be trivially serializable to JSON. This means
`None`, `int`, `float`, `unicode`, `list`, `tuple`, `dict`, `namedtuple`, and
`datetime`.
2. Returned objects should not have methods or business logic attached to them.
3. ?
Submissions
Submissions
-----------
-----------
...
...
doc/source/dev/conventions.rst
View file @
8164d49b
App Layout
Public Interface
----------
----------------
Every Django application in edx-tim has an `api.py` that is its public
interface. If you are using one of these applications from the outside, you
should only import things from that module. The ground rules for api modules
are:
1. All inputs and outputs must be trivially serializable to JSON. This means
`None`, `int`, `float`, `unicode`, `list`, `tuple`, `dict`, and `datetime`.
2. Returned objects should not have methods or business logic attached to them.
3. Caller should assume that these calls can be moderately expensive, as they
may one day move out of process and become network calls. So calling
something a hundred times in a loop should be avoided.
Hi
Integration with edx-platform
-----------------------------
Something
\ No newline at end of file
doc/source/index.rst
View file @
8164d49b
...
@@ -4,8 +4,16 @@
...
@@ -4,8 +4,16 @@
edx-tim: Open Response Assessment (v2)
edx-tim: Open Response Assessment (v2)
======================================
======================================
Introduction
This is an initial prototype for redesigning Peer Grading and general Open Ended
Submission Evaluation. This project is in the early stages of development and is
not ready for general use.
Setup
-----
pip install -r requirements/dev.txt
python manage.py runserver
User Guide
User Guide
----------
----------
...
...
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