Žiadny popis

antifaz 83f0c79564 Create, Update, Delete e Search Function seem work correctly. 10 rokov pred
client 83f0c79564 Create, Update, Delete e Search Function seem work correctly. 10 rokov pred
server 83f0c79564 Create, Update, Delete e Search Function seem work correctly. 10 rokov pred
LICENSE 82fe990b6f Initial commit 10 rokov pred
README.md 83f0c79564 Create, Update, Delete e Search Function seem work correctly. 10 rokov pred
examplejson.txt f5d9786222 lettura file json lato server, 10 rokov pred

README.md

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

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.