|
Size: 1022
Comment:
|
Size: 1059
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 5: | Line 5: |
| * evaluate_code(''input''') -- introspection -- interacts |
* evaluate_code(''input'') * introspection * interacts |
| Line 23: | Line 21: |
| * publish * share * delete |
|
| Line 31: | Line 35: |
Guiding principle: put as much in the URL as is reasonable.
Things that happen:
Worksheet:
evaluate_code(input)
- introspection
- interacts
get_output(uid)
- create cells
- delete cells
- join cells
- split cells
- promote/demote cells in a cell heirarchy
- publish
- share
- delete
Cell:
- change input
- evaluate
get_output(start=0)
-- start - offset telling how much text we've already received -- output: {'status': ---, 'output': ---}
- update metadata: hide, lock, cell priority...
JSON <---> HTTP
HTTP Requests:
Structure of URL:
/home/ username / worksheet_num / cell_id /..
- ../update
JSON Messages:
'id' : id
'status' : 'success' or 'failure'
Database Calls:
- increase_worksheet_state_number()
update_cell_input(cell_id, input_text)
evaluate_cell(cell_id)
insert_after_cell(cell_id)
