No Description

antifaz beba17e871 Add roadmap and fix some bugs on delte 10 years ago
client beba17e871 Add roadmap and fix some bugs on delte 10 years ago
server beba17e871 Add roadmap and fix some bugs on delte 10 years ago
LICENSE 82fe990b6f Initial commit 10 years ago
README.md beba17e871 Add roadmap and fix some bugs on delte 10 years ago
examplejson.txt f5d9786222 lettura file json lato server, 10 years ago

README.md

==========================================

techrec

==========================================

BUG and roadmap See roadmap for details


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'
    }