No description
Find a file
antifaz 83f0c79564 Create, Update, Delete e Search Function seem work correctly.
In the JS Gui, the workflow stops at the Save Button, but data
area rightly managed.
2013-11-24 23:43:56 +01:00
client Create, Update, Delete e Search Function seem work correctly. 2013-11-24 23:43:56 +01:00
server Create, Update, Delete e Search Function seem work correctly. 2013-11-24 23:43:56 +01:00
examplejson.txt lettura file json lato server, 2013-08-28 00:18:03 +02:00
LICENSE Initial commit 2013-08-23 04:03:28 -07:00
README.md Create, Update, Delete e Search Function seem work correctly. 2013-11-24 23:43:56 +01:00

========================================== techrec


Client

The Client is a JS script that exchange data with server via JSON


Server

The Server is a python software and uses the bottle library to implements a web services

Data Format


Create

JSON = { 'starttime-rec-1385231288390': '2013/11/23 19:32:49', 'endtime-rec-1385231288390': '2013/11/23 19:32:49', 'recid': 'rec-1385231288390', 'name-rec-1385231288390': 'adasd', 'op': 'new' }


Retrieve


Update

JSON = { 'starttime-rec-1385231288390': '2013/11/23 19:32:49', 'endtime-rec-1385231288390': '2013/11/23 19:32:49', 'recid': 'rec-1385231288390', ### VALID REC ID 'name-rec-1385231288390': 'adasd', 'op': 'update' }


Delete

JSON = { 'recid': 'rec-1385231288390', ### VALID REC ID 'op': 'delete' }

BUG Da Salva button lo stato non va. Per il resto sembra funzionare.