1. d4e81f9 Move the json_min() and json_max() macros to json_util.h and mark everything else in bits.h deprecated. by Eric Haszlakiewicz · 10 years ago
  2. 259c5c0 Remove unused variable 'size' by Petar Koretić · 10 years ago
  3. 64e3690 Patch to address the following issues: by Michael Clark · 10 years ago
  4. f9136f6 Make the json_tokener_errors array local. It has been deprecated for a while, and json_tokener_error_desc() should be used instead. by Eric Haszlakiewicz · 10 years ago
  5. 05da316 Issue #103: allow Infinity and -Infinity to be parsed. by Eric Haszlakiewicz · 10 years ago
  6. a1c8991 nan function requires -lm on some platforms; use of NAN is better, if available. by Markus Stenberg · 10 years ago
  7. 0eedf38 Issue#102 - add support for parsing "NaN". by Eric Haszlakiewicz · 10 years ago
  8. 020fa65 Merge pull request #112 from TazeTSchnitzel/LowercaseLiterals by Eric Haszlakiewicz · 10 years ago
  9. 56df93d Fix Issue #111: Fix off-by-one error when range checking the input to json_tokener_error_desc(). by Eric Haszlakiewicz · 10 years ago
  10. bda0540 Only allow lowercase literals in STRICT mode by Andrea Faulds · 11 years ago
  11. 51993c2 Added a json_object_new_double_s() convenience function to allow an exact string representation of a double to be specified when creating the object and use it in json_tokener_parse_ex() so a re-serialized object more exactly matches the input. by Eric Haszlakiewicz · 11 years ago
  12. ef43fe3 Merge pull request #96 from rouault/remove_strdnup by Eric Haszlakiewicz · 11 years ago
  13. 02aa6f0 Merge pull request #94 from remicollet/issue-strict2 by Eric Haszlakiewicz · 11 years ago
  14. 86dd55a Fix potential out-of-bounds read in json_tokener_error_desc by Even Rouault · 11 years ago
  15. 4039f91 trailing char not allowed in strict mode by Remi Collet · 11 years ago
  16. 87fa32d no comment in strict mode by Remi Collet · 11 years ago
  17. 1a957c2 Remove redefinition of strndup() which is no longer used in the codebase by Even Rouault · 11 years ago
  18. a07ef3d no single-quote string in strict mode by Remi Collet · 11 years ago
  19. d032aad Minor spell check. by Eric Haszlakiewicz · 11 years ago
  20. e9ee4ae in strick mode, number must not start with 0 by Remi Collet · 11 years ago
  21. e8161a1 Issue #15: add a way to set a JSON_TOKENER_STRICT flag to forbid commas at the end of arrays and objects. by Eric Haszlakiewicz · 11 years ago
  22. 32eddd6 Fix broken build by using ADVANCE_CHAR macro return. by William Dignazio · 11 years ago
  23. bb492d4 Rename misnomer POP_CHAR to PEEK_CHAR. by William Dignazio · 11 years ago
  24. 5b36a43 Merge branch 'remicollet-issue-float' by Eric Haszlakiewicz · 11 years ago
  25. ca8b27d Enable -Werror and fix a number of minor warnings that existed. by Eric Haszlakiewicz · 11 years ago
  26. 56166e2 Merge pull request #51 from remicollet/issue-dyndepth by Eric Haszlakiewicz · 11 years ago
  27. a01b659 move locale change to be global for perf by Remi Collet · 11 years ago
  28. 4e4af93 Fix issue #53 - ensure explicit length string are still NUL terminated, and fix json_tokener_parse() to work properly with embedded unicode \u0000 values in strings. by Eric Haszlakiewicz · 11 years ago
  29. 16a4a32 float parsing must be locale independent by Remi Collet · 11 years ago
  30. 197cb1d Make maximum recursion depth a runtime option by Remi Collet · 11 years ago
  31. 92f31bd Handle the \f escape sequence (the two characters: backslash followed by an f, not a literal formfeed) and extend the test_parse test to check all valid escape sequences. by Eric Haszlakiewicz · 12 years ago
  32. a6f39a3 Replaced #if HAVE_X with #ifdef HAVE_X as the former test is troublemaker with #define HAVE_X where #define HAVE_X 1|0 is meant. by Mateusz Loskot · 12 years ago
  33. f931f61 Fixed parsing numbers in E notation. ` by Eric Haszlakiewicz · 12 years ago
  34. d809fa6 Fix a bug in json_tokener_parse_ex when re-using the same tokener to parse multiple objects. Now, json_tokener_reset() does not need to be called after a valid object is parsed. by Eric Haszlakiewicz · 12 years ago
  35. 3620cba Perform better error checking in json_tokener_parse_verbose and rewrite json_tokener_parse to use that instead of json_tokener_parse_ex. by Eric Haszlakiewicz · 12 years ago
  36. 2f9091f Add json_tokener_get_error() and json_tokener_error_desc() to better encapsulate the process of retrieving errors while parsing. by Eric Haszlakiewicz · 12 years ago
  37. db05090 json_tokener_parse(): avoid possible NULL deref by Frederik Deweerdt · 12 years ago
  38. a503ee8 add json_tokener_parse_verbose, and return NULL on parser errors by Jehiah Czebotar · 13 years ago
  39. 252669c Simplify things by storing integer values only as int64_t's internally, and by ehaszla · 13 years ago
  40. c4dceae * Add int64 support. Two new functions json_object_net_int64 and by Michael Clark · 14 years ago
  41. 126ad95 * Add handling of surrogate pairs by Brent Miller · 15 years ago
  42. 7fb9b03 * Rename min and max so we can never clash with C or C++ std library by Michael Clark · 15 years ago
  43. b1a22ac Add const qualifier to the json_tokener_parse functions by Christopher Watford · 15 years ago
  44. 543bb14 Erik Hovland (3): by Christopher Watford · 15 years ago
  45. 95f55a7 optimizations to json_tokener_parse_ex(), printbuf_memappend() by Michael Clark · 15 years ago
  46. aaec1ef * Don't use this as a variable, so we can compile with a C++ compiler by Michael Clark · 15 years ago
  47. 22dee7c * Null pointer dereference fix. Fix json_object_get_boolean strlen test by Michael Clark · 15 years ago
  48. e8de078 * Fixed warning reported by adding -Wstrict-prototypes by Michael Clark · 15 years ago
  49. c8f4a6e * Fix bug with use of capital E in numbers with exponents by Michael Clark · 16 years ago
  50. dfaf670 * Add macros to enable compiling out debug code by Michael Clark · 17 years ago
  51. a850f8e * Add escaping of backslash to json output by Michael Clark · 17 years ago
  52. 837240f * Fix bug in escaping of control characters by Michael Clark · 17 years ago
  53. f6a6e48 * Make headers C++ compatible by change *this to *obj by Michael Clark · 17 years ago
  54. 0370baa * Fix additional error case in object parsing by Michael Clark · 17 years ago
  55. 7b899b6 * fix pointer arithmetic bug for error pointer check in is_error() macro by Michael Clark · 17 years ago
  56. 4504df7 * printbuf.c - C. Watford (christopher dot watford at gmail dot com) by Michael Clark · 17 years ago
  57. f0d0888 import of version 0.1 by Michael Clark · 17 years ago