|
Size: 192
Comment:
|
Size: 860
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| Guiding principle: put as much in the URL as is reasonable. == Things that happen: == === Worksheet: === * introspection * create cells * delete cells * join cells * split * hide cells === Cell: === * change input * evaluate * get_output('start'=0) -- 'start' - offset telling how much text we've already received -- output: --'status' --'output' |
|
| Line 3: | Line 32: |
| ==HTTP Requests:== | == HTTP Requests: == Structure of URL: |
| Line 5: | Line 35: |
| ==JSON Messages:== | /home/ ''username'' / ''worksheet_num'' / ''cell_id'' /.. |
| Line 7: | Line 37: |
| * ../update | |
| Line 8: | Line 39: |
| ==Database Calls:== | == JSON Messages: == * 'id' : ''id'' * 'status' : '' 'success' '' or '' 'failure' '' == Database Calls: == |
| Line 11: | Line 47: |
| * update_cell_input(cell_id, input_text) | * update_cell_input(''cell_id'', ''input_text'') |
| Line 13: | Line 49: |
| * evaluate_cell() | * evaluate_cell(''cell_id'') * insert_after_cell(''cell_id'') |
Guiding principle: put as much in the URL as is reasonable.
Things that happen:
Worksheet:
- introspection
- create cells
- delete cells
- join cells
- split
- hide cells
Cell:
- change input
- evaluate
- get_output('start'=0)
- -- 'start' - offset telling how much text we've already received -- output:
- --'status' --'output'
- -- 'start' - offset telling how much text we've already received -- output:
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)
