Differences From Artifact [0cd77e64d3]:
- File src/json_report.c — part of check-in [070b75542c] at 2012-03-21 20:23:55 on branch trunk — Throughout the /json API, renamed the "mtime" property with "timestamp", to consolidate the inconsistent usage. (user: stephan size: 6796) [more...]
To Artifact [27c02ef150]:
- File src/json_report.c — part of check-in [bbcc8fe351] at 2012-06-24 03:47:13 on branch trunk — Re-added the jsonApiVersion field to /json/version output. Not sure why i had removed it. /json/report/create now fails with an NYI error instead of succeeding but doing nothing. (user: stephan size: 6834)
| ︙ | ︙ | |||
76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
nReport = atoi(arg);
}
}
return nReport;
}
static cson_value * json_report_create(){
return NULL;
}
static cson_value * json_report_get(){
int nReport;
Stmt q = empty_Stmt;
cson_value * pay = NULL;
| > | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
nReport = atoi(arg);
}
}
return nReport;
}
static cson_value * json_report_create(){
json_set_err(FSL_JSON_E_NYI, NULL);
return NULL;
}
static cson_value * json_report_get(){
int nReport;
Stmt q = empty_Stmt;
cson_value * pay = NULL;
|
| ︙ | ︙ |