| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add introspection annotations | Emmanuele Bassi | 2010-09-25 | 1 | -7/+7 |
| | | |||||
| * | docs: Fix the GBoxed registration example | Emmanuele Bassi | 2010-01-24 | 1 | -5/+6 |
| | | | | | | | The registration function for serialization and deserialization has been replaced by two separate functions before releasing 0.10, but I forgot to update the example in the documentation. | ||||
| * | boxed: Split (de)serialization registration | Emmanuele Bassi | 2009-11-23 | 1 | -40/+75 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A GBoxed type defined as: struct Boxed { int foo; gboolean bar; int baz; }; Can be represented either by a JSON object: { "foo" : 1, "bar" : true, "baz" : 3 } Or by a JSON array: [ 1, true, 3 ] The current function for registering a serialization and a deserialization pair does not allow registering more than one deserialization function - which means that there can only be one way to deserialize a GBoxed type into a specific JsonNode type. To allow having more than one JsonNodeType associated to a GBoxed type and a deserialization function we need to split out the registration of the serialization and deserialization functions into two distinct functions. | ||||
| * | docs: Add long descriptions | Emmanuele Bassi | 2009-10-28 | 1 | -4/+45 |
| | | | | | | The json-boxed and json-serializable sections are missing the long description for the API reference. | ||||
| * | docs: Documentation fixes for gtk-doc | Emmanuele Bassi | 2009-10-27 | 1 | -3/+5 |
| | | |||||
| * | build: Split out GBoxed and Serializable | Emmanuele Bassi | 2009-10-27 | 1 | -0/+275 |
| The json-gobject.c is getting pretty crowded; we should split out the JsonBoxed API and the JsonSerialized implementation into their separate source files. | |||||
