|
2 | 2 | \section ms_release Makes JsonCpp ready for release |
3 | 3 | - Build system clean-up: |
4 | 4 | - Fix build on Windows (shared-library build is broken) |
5 | | - - Fix doxygen build issue (discard doxygen dependency check, always rebuild) |
6 | 5 | - Add enable/disable flag for static and shared library build |
7 | 6 | - Enhance help |
8 | | - - Test with recent Scons checkpoint |
9 | | - - Platform portability check: |
| 7 | + - Platform portability check: (Notes: was ok on last check) |
10 | 8 | - linux/gcc, |
11 | 9 | - solaris/cc, |
12 | 10 | - windows/msvc678, |
13 | 11 | - aix/vacpp |
14 | 12 | - Add JsonCpp version to header as numeric for use in preprocessor test |
15 | 13 | - Remove buggy experimental hash stuff |
16 | 14 | - Release on sourceforge download |
17 | | - \section ms_unicode Clean-up unicode handling |
18 | | - - Ensure reader properly convert \u and \U unicode sequence to UTF8 |
19 | | - - Ensure writer emit only UTF8 string. |
20 | | - - Provides hook to convert string to/from utf8/other encoding. |
21 | | - - look into iconv, icu and windows API |
22 | 15 | \section ms_strict Adds a strict mode to reader/parser |
23 | 16 | Strict JSON support as specific in RFC 4627 (http://www.ietf.org/rfc/rfc4627.txt?number=4627). |
24 | 17 | - Enforce only object or array as root element |
25 | 18 | - Disable comment support |
| 19 | + - Get jsonchecker failing tests to pass in strict mode |
26 | 20 | \section ms_separation Expose json reader/writer API that do not impose using Json::Value. |
27 | 21 | Some typical use-case involve an application specific structure to/from a JSON document. |
| 22 | + - Event base parser to allow unserializing a Json document directly in datastructure instead of |
| 23 | + using the intermediate Json::Value. |
| 24 | + - "Stream" based parser to serialized a Json document without using Json::Value as input. |
28 | 25 | - Performance oriented parser/writer: |
29 | 26 | - Provides an event based parser. Should allow pulling & skipping events for ease of use. |
30 | 27 | - Provides a JSON document builder: fast only. |
|
0 commit comments