1. 54d551c Ignore doc dir for now by Alexander Klauer · 12 years ago
  2. b1d61d1 Library is now called libjson-c by Alexander Klauer · 12 years ago
  3. a3a0f5b Need to explicitly remove include/json-c directory by Alexander Klauer · 12 years ago
  4. b670f6f -d test is useless as symlinks are dereferenced by Alexander Klauer · 12 years ago
  5. e176965 Ignore valgrind output files by Alexander Klauer · 12 years ago
  6. 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 · 12 years ago
  7. 7a4506d Remove configure as part of maintainer-clean instead of distclean. Addresses issue #48. by Eric Haszlakiewicz · 12 years ago
  8. 7653d49 Add PACKAGE_URL to config.h.in by Eric Haszlakiewicz · 12 years ago
  9. aec8763 Add a missing json_object_get() so we don't try to use a freed object in test1. by Eric Haszlakiewicz · 12 years ago
  10. 447b88a Fix a memory leak in the test_printbuf test. by Eric Haszlakiewicz · 12 years ago
  11. 23461c7 Include json_object_iterator.c in the list of sources. by Eric Haszlakiewicz · 12 years ago
  12. f6b27cb Make it safe to delete keys while iterating with the json_object_object_foreach macro. by Eric Haszlakiewicz · 12 years ago
  13. 5abc0ea Reformat the json_object_object_foreach macro so it is readable, and document what is allowed to be done with the object while iterating. by Eric Haszlakiewicz · 12 years ago
  14. e36e562 Reformat json_object_object_get() and json_object_object_get_ex(). by Eric Haszlakiewicz · 12 years ago
  15. 5450bed Fix json_object_object_get() so it returns NULL if the incoming json_object is NULL. by Eric Haszlakiewicz · 12 years ago
  16. 5f4739e Change json_object_put to return 1 if the object passed was actually freed. (or 0 if only the reference count was decremented) by Eric Haszlakiewicz · 12 years ago
  17. c3d1d59 Fix a memory leak in test1 with respect to how json_object_object_del was used. by Eric Haszlakiewicz · 12 years ago
  18. c3068bf Reformat the test sources. No functional change. by Eric Haszlakiewicz · 12 years ago
  19. d1f237e Fix the home page in the README, and add a list of prerequisites. by Eric Haszlakiewicz · 12 years ago
  20. 059e8f4 Merge pull request #44 from lastquestion/fix_gnu_macosx by Eric Haszlakiewicz · 12 years ago
  21. e7e0600 Add an autoconf test to test whether the .section .gnu<warning> by Lin Xu · 12 years ago
  22. 4b1a066 Update the set_serializer test to match the actual output. by Eric Haszlakiewicz · 12 years ago
  23. 38f421a Add a json_set_serializer() function to allow the string output of a json_object to be customized. by Eric Haszlakiewicz · 12 years ago
  24. f74e8f8 Add my copyright. by Eric Haszlakiewicz · 12 years ago
  25. d305cae Ignore the tests/testReplaceExisting binary. by Eric Haszlakiewicz · 12 years ago
  26. 8ce53f9 Note the rename in the ChangeLog, and update the instructions in the README file. by Eric Haszlakiewicz · 12 years ago
  27. 2f2180b Take a guess as to the rename changes changes needed to the Android part of the build. by Eric Haszlakiewicz · 12 years ago
  28. 1f9d199 Re-add the "json" pkg-config file as a compatibility shim. by Eric Haszlakiewicz · 12 years ago
  29. 9f16e25 Bump the version of the new library since programs will need to be re-linked to use it. by Eric Haszlakiewicz · 12 years ago
  30. 943b7a4 Add a compatibility symlink json->json-c in the include directory. by Eric Haszlakiewicz · 12 years ago
  31. 075b783 Add a --disable-oldname-compat option to configure to turn off the creation of the libjson.so library, and only include libjson-c.so by Eric Haszlakiewicz · 12 years ago
  32. c7a2120 Ignore a couple more generated files. by Eric Haszlakiewicz · 12 years ago
  33. 082419e Fix the Libs line in json-uninstalled.pc to use -ljson-c by Eric Haszlakiewicz · 12 years ago
  34. b98aa6e Create an additional libjson.so library that simply links against libjson-c, but emits a warning encouraging the use of the new library. by Eric Haszlakiewicz · 12 years ago
  35. eb37094 Check for the sys/cdefs.h header which on some systems defines the __warn_references macro. by Eric Haszlakiewicz · 12 years ago
  36. ba1c381 Remove test_parse from the top level directory. (accidentally re-introduced with the last merge) by Eric Haszlakiewicz · 12 years ago
  37. c2d3ccf Merge branch 'rename_library' of https://github.com/kdopen/json-c into kdopen-rename_library by Eric Haszlakiewicz · 12 years ago
  38. 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
  39. 8fcfeb6 Default autogen.sh to not running configure, unless some command line options are specified. by Eric Haszlakiewicz · 12 years ago
  40. 77c6239 Initialize errno before calling sscanf in json_parse_int64() so parsing valid numbers after parsing an out of range number works. by Eric Haszlakiewicz · 12 years ago
  41. 2da148d Merge pull request #37 from cgwalters/master by Eric Haszlakiewicz · 12 years ago
  42. 6988f53 Rewrite json_object_object_add to replace just the value if the key already exists so keys remain valid. by Eric Haszlakiewicz · 12 years ago
  43. 6d94377 autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1 by Colin Walters · 12 years ago
  44. 381f77c Merge pull request #26 from ford-prefect/master by Eric Haszlakiewicz · 12 years ago
  45. 4154c55 Add json_object_iterator.h to installed headers. by Eric Haszlakiewicz · 12 years ago
  46. 9791c38 Fix git commands for tagging a release. by Eric Haszlakiewicz · 12 years ago
  47. eead1a7 Remove unnecessary comment from json_util.c by Eric Haszlakiewicz · 12 years ago
  48. 7bd49df Merge pull request #33 from mloskot/master by Eric Haszlakiewicz · 12 years ago
  49. 984303d Added a bunch of missing HAVE_* defines tested with ./configure script to fix compilation on Linux with GCC 4.7.1. The issue likely caused by my previous commits related to Visual C++ port of the code. by Mateusz Loskot · 12 years ago
  50. a789601 Merge pull request #27 from OBI-1/master by Eric Haszlakiewicz · 12 years ago
  51. c58386f Merge pull request #29 from mloskot/msvc-port by Eric Haszlakiewicz · 12 years ago
  52. 837d685 Use "nodoc", not "doc", for the name of the tarball w/o docs. by Eric Haszlakiewicz · 12 years ago
  53. 271c53e Missing explicit casts from void* to specific pointers required. Added #define strcasecmp for Visual C++. by Mateusz Loskot · 12 years ago
  54. 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
  55. b6ff1c2 array_list_expand_internal needs length, not index. by OBI-1 · 12 years ago
  56. 1abaaee Update the ChangeLog with the rest of the changes that will be included in the 0.10 release. by Eric Haszlakiewicz · 12 years ago
  57. e7bd2e9 Fill in the missing pieces of the release checklist. by Eric Haszlakiewicz · 12 years ago
  58. 0cc1db6 Change the format used for sprintbuf (but not scanf) to use %f instead of %lf because the "l" is unnecessary and some compilers behave differently with it present (e.g. MinGW). by Eric Haszlakiewicz · 12 years ago
  59. 31faa49 Ignore the new test1Formatted and test2Formatted executables. by Eric Haszlakiewicz · 12 years ago
  60. 4c7f38e Extend test1 and test2 to run using json_object_to_json_string_ext() based on an additional command line parameter. by Eric Haszlakiewicz · 12 years ago
  61. 3fcffe1 Add a json_object_to_json_string_ext() function to allow the formatting of output to be selected. by Eric Haszlakiewicz · 12 years ago
  62. a1221eb Add an Android-friendly build system by Arun Raghavan · 13 years ago
  63. 17caddc Run configure in the autogen.sh script by Arun Raghavan · 13 years ago
  64. cb29a77 Add a pkgconfig file for uninstalled builds by Arun Raghavan · 13 years ago
  65. f931f61 Fixed parsing numbers in E notation. ` by Eric Haszlakiewicz · 12 years ago
  66. 4e000a6 Since we already use a local json_bool type, replace any stdbool.h usage with by Eric Haszlakiewicz · 12 years ago
  67. 0f8c534 Merge pull request #25 from kdopen/doc_cleanup by Eric Haszlakiewicz · 12 years ago
  68. ded667a Clean up documentation and correct sample code by Keith Derrick · 12 years ago
  69. ec7ce26 Merge pull request #23 from mloskot/mloskot-msvc-fixes by Eric Haszlakiewicz · 12 years ago
  70. 8409dc0 Fix missing inttypes.h definitions for Visual Studio 2010 and earliers. Related to issue #22. by Mateusz Loskot · 12 years ago
  71. 178a4b0 Merge pull request #21 from kdopen/add_iterator by Eric Haszlakiewicz · 12 years ago
  72. 7502b37 Merge branch 'master' of https://github.com/json-c/json-c by Eric Haszlakiewicz · 12 years ago
  73. 3d88179 Actually save the expected output for the test_printbuf test so it passes. by Eric Haszlakiewicz · 12 years ago
  74. 37cfe6b Update the list of files to ignore. by Eric Haszlakiewicz · 12 years ago
  75. e5c1e87 Add a test for the printbuf functions. by Eric Haszlakiewicz · 12 years ago
  76. b80772a Use a different variable when referring to the json.la file, since the original lib_LTLIBRARIES means something special to automake. by Eric Haszlakiewicz · 12 years ago
  77. c1b8891 Move the rest of the tests into the tests subdirectory. by Eric Haszlakiewicz · 12 years ago
  78. 1e89ba6 Create a tests subdirectory and move one of the test to there. by Eric Haszlakiewicz · 12 years ago
  79. 020ed64 Merge pull request #20 from kdopen/master by Eric Haszlakiewicz · 12 years ago
  80. bcfd1f5 Add alternative iterator implementation by Keith Derrick · 12 years ago
  81. 6917586 Add NULL-safe get object method by Keith Derrick · 12 years ago
  82. 4a2cd96 Add NULL-safe lookup function by Keith Derrick · 12 years ago
  83. 74d830d Add JASSERT macro to guarantee aborts by Keith Derrick · 12 years ago
  84. ca519fb Added explanatory notes to documentation. by Keith Derrick · 12 years ago
  85. 65f649b Ignoring additional build products by Keith Derrick · 13 years ago
  86. 30dd367 Modify install names for library and include files by Keith Derrick · 13 years ago
  87. 21d3706 Added explanatory notes to documentation. by Keith Derrick · 12 years ago
  88. e0fa94b Fix some bugs with how buffer sizes were being calcuated in printbuf_memset and an off-by-one error in printbuf_memappend. by Eric Haszlakiewicz · 12 years ago
  89. 7f3298d Remove the "#undef PRINTBUF_DEBUG" from printbuf.h so it can be more easily turned on in the Makefile. by Eric Haszlakiewicz · 12 years ago
  90. 8310d36 Add a printbuf_memset() function to provide an effecient way to set and append things like whitespace indentation. by Eric Haszlakiewicz · 12 years ago
  91. 0d79b53 Fix some bugs with how buffer sizes were being calcuated in printbuf_memset and an off-by-one error in printbuf_memappend. by Eric Haszlakiewicz · 12 years ago
  92. 61a154e Remove the "#undef PRINTBUF_DEBUG" from printbuf.h so it can be more easily turned on in the Makefile. by Eric Haszlakiewicz · 12 years ago
  93. 2d48543 Add a printbuf_memset() function to provide an effecient way to set and append things like whitespace indentation. by Eric Haszlakiewicz · 12 years ago
  94. 2b5929b Direct people to send bug reports to the json-c google group. by Eric Haszlakiewicz · 13 years ago
  95. a7bd85c Remove a few more things in the distclean target to get rid of *all* generated files. by Eric Haszlakiewicz · 13 years ago
  96. f30a9ac 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 · 13 years ago
  97. 30c6c4a Split the json_tokener_parse tests off from test1 into their own test and add several more cases to check various incremental parsing situations. by Eric Haszlakiewicz · 13 years ago
  98. bb7978c For the prototype for json_tokener_error_desc(). by Eric Haszlakiewicz · 13 years ago
  99. 23d0da5 Mention json_type_to_name() in the docs for json_object_get_type(). by Eric Haszlakiewicz · 13 years ago
  100. 7c4a964 Define a LH_LOAD_FACTOR constant and note the range that it can be set to. by Eric Haszlakiewicz · 13 years ago