Differences between revisions 21 and 22
Revision 21 as of 2011-01-12 21:36:42
Size: 1059
Editor: GeoffEhrman
Comment:
Revision 22 as of 2011-01-12 21:37:46
Size: 1371
Editor: GeoffEhrman
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:

---- /!\ '''Edit conflict - other version:''' ----
Line 8: Line 10:

---- /!\ '''Edit conflict - your version:''' ----
      * introspection
      * interacts

---- /!\ '''End of edit conflict''' ----
Line 27: Line 35:

---- /!\ '''Edit conflict - other version:''' ----

---- /!\ '''Edit conflict - your version:''' ----
  * user ping


---- /!\ '''End of edit conflict''' ----
Line 37: Line 53:
      -- output: {'status': ---, 'output': ---}

Guiding principle: put as much in the URL as is reasonable.

Things that happen:

Worksheet:

  • evaluate_code(input)


/!\ Edit conflict - other version:


  • introspection
  • interacts


/!\ Edit conflict - your version:


  • introspection
  • interacts


/!\ End of edit conflict


  • get_output(uid)

  • create cells
  • delete cells
  • join cells
  • split cells
  • promote/demote cells in a cell heirarchy
  • publish
  • share
  • delete


/!\ Edit conflict - other version:



/!\ Edit conflict - your version:


  • user ping


/!\ End of edit conflict


Cell:

  • change input
  • evaluate
  • get_output(start=0)

    • -- start - offset telling how much text we've already received

  • 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)