Commit 8164d49b by David Ormsbee

A little doc pruning to remove empty subsections

parent 9487d7e9
...@@ -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
======= =======
......
.. _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
----------- -----------
......
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
...@@ -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
---------- ----------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment