summaryrefslogtreecommitdiff
path: root/json.h
Commit message (Collapse)AuthorAgeFilesLines
* Cosmetic tweak: t_timestamp -> t_time.Eric S. Raymond2011-04-161-1/+1
|
* Add a 'timestamp' type to the JSON parser to solve a compatibility problem.Eric S. Raymond2011-04-151-0/+1
| | | | | | | Sigh, no other way to get DEVICELIST to recignize both new and old timestamps. All regression tests pass.
* Prevent JSON parsing from becoming confused by client locales other than C.Eric S. Raymond2010-12-171-0/+1
| | | | Fixes Berlios tracker bug #17379: problem with different locale.
* Internals of Qt support.Chris Browet2010-03-311-0/+6
| | | | | | | | | | | | | | | | | All regression tests pass. Note from esr: this feature cannot be announced yert, as it requires documentation in the INSTALL file. 1. What the target environments are (Linux? Windows? Both) 2. All build prerequisites (C++ compiler? Qt library? Other libraries?) 3. What the new files libQgpsmm_global.h and libQgpsmm.pro are for, and how the are used. We also need to know how to regression-test this code under Linux so we can verify that it's not broken as the client library evolves. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Vanish away Id and Rev $ keywords, git won't expand them to anything useful.Eric S. Raymond2010-03-131-2/+0
|
* Copyright stamps everywhere. No code changes.Eric S. Raymond2010-03-111-2/+7
|
* Avoid a collision with typedef boolean.Eric S. Raymond2010-01-041-3/+5
| | | | All regression tests pass.
* Client library debugging can now nbe enabled at runtime.Eric S. Raymond2009-11-201-0/+2
| | | | | That is, if the CLIENTDEBUG_ENABLE feature switch is on. All regression tests pass.
* Splint Cleanup Meets Billy The Kid. All regression tests pass.Eric S. Raymond2009-09-101-2/+2
|
* Bride of the Splint Cleanup. All regression tests pass.Eric S. Raymond2009-09-101-2/+4
|
* Yet more splint cleanup. All regression tests pass.Eric S. Raymond2009-09-091-2/+2
|
* Partial splint cleanup. All regression tests pass.Eric S. Raymond2009-09-091-1/+1
|
* Added more type testing in the JSON parser.Eric S. Raymond2009-09-071-1/+2
|
* Enable JSON parser to recognize a type mismatch.Eric S. Raymond2009-09-071-1/+2
|
* More code generation - up to AIS message 13 now.Eric S. Raymond2009-09-011-1/+1
| | | | All regression tests pass.
* Create a way not to step on defaults.Eric S. Raymond2009-08-301-0/+1
|
* Allow mapping of strings to enumerated values in JSON.Eric S. Raymond2009-08-281-2/+8
|
* RTCM2 JSON parser is feature-complete and ready for test.Eric S. Raymond2009-08-281-2/+3
|
* Use STRUCTARRAY everywhere it's apprpriate. JSON regression tests pass.Eric S. Raymond2009-08-271-4/+3
|
* Create a convenience macro for JSON parser template declarations.Eric S. Raymond2009-08-271-0/+20
|
* Add an unsigned integer field type to the JSON parser (needed for RTCM2).Eric S. Raymond2009-08-271-1/+3
| | | | Also add a unit test for this.
* Add character type to JSON parser.Eric S. Raymond2009-08-251-1/+3
| | | | | Make gpsctl work with new protocol (only the device ID function is tested at this point).
* Change the way JSON parse templates are declared... Eric S. Raymond2009-08-251-4/+3
| | | | so that string lengths won't step on offsets.
* Remove enumerated-flags feature from JSON parser.Eric S. Raymond2009-08-191-10/+1
| | | | Too much complexity for too little gain.
* JSON parser can now unpack JSON lists into structure arrays.Eric S. Raymond2009-08-191-2/+7
|
* Hide an argument that doesn't need to be exposed.Eric S. Raymond2009-08-191-1/+1
|
* Removed unused member.Eric S. Raymond2009-08-191-1/+0
|
* Change enumerated array JSON type to yield a bitmask rather than an array.Eric S. Raymond2009-08-191-6/+5
|
* Give the JSON parser the ability to map strings to enumerated types.Eric S. Raymond2009-08-191-1/+13
|
* Checkpoint before giving the JSON parses a notion of enumerated types.Eric S. Raymond2009-08-191-2/+2
|
* Add check-string attributes to JSON parser.Eric S. Raymond2009-08-181-2/+3
| | | | Add JSON unit test to default test sequence.
* New-style WATCH command is working... Eric S. Raymond2009-07-291-0/+2
| | | | | ...at least for the simplest case ?WATCH={"TPV":true}. More testing will follow.
* More JSON refactoring - prepare the client libary to use it.Eric S. Raymond2009-07-211-1/+1
|
* SVN Id tagsChris Kuethe2009-07-161-0/+1
|
* JSON error-handling cleanup.Eric S. Raymond2009-07-141-15/+15
|
* JSON parser can now handle arrays of strings.Eric S. Raymond2009-07-141-3/+16
|
* Add entry point for dumping JSON parse error condition text messages.Eric S. Raymond2009-07-131-0/+1
|
* Subarray parsing in JSON is working, now to tighten up the validity checks.Eric S. Raymond2009-07-131-2/+4
|
* Set up initializers for JSON satellite data parsing.Eric S. Raymond2009-07-131-4/+3
|
* Much simpler code for filling sub-objects.Eric S. Raymond2009-07-131-4/+4
|
* Make #defines for JSON error codes.Eric S. Raymond2009-07-121-0/+13
|
* Use properly bounded copies for JSON string fields.Eric S. Raymond2009-07-121-2/+5
|
* Encapsulate type information about JSON arrays.Eric S. Raymond2009-07-121-2/+8
|
* Fix a compiler warning and change a prototype... Eric S. Raymond2009-07-121-1/+1
| | | | | ...so a caller of the object parse can contibue processing the input string after it returns. Unit test passes.
* First steps towards parsing JSON arrays.Eric S. Raymond2009-07-111-2/+3
|
* Get JSON parser unit test to the point where it will at least build.Eric S. Raymond2009-07-111-4/+4
|
* Scratch JSON parser. No unit test yet, that gets built next.Eric S. Raymond2009-07-101-0/+28