summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add test for CDS LastChangewip/last-changeJens Georg2012-11-2910-1/+610
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=689276
* Add LastChange parser for CDS:3Jens Georg2012-11-297-1/+528
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=689276
* Silence deprecation warningJens Georg2012-11-291-0/+2
|
* Fix some gtkdoc warningsJens Georg2012-11-291-1/+2
|
* Silence portability warningJens Georg2012-11-291-1/+1
|
* Set GUPNP_AV_DATADIR on make checkJens Georg2012-11-281-1/+2
|
* Fix LD_LIBRARY_PATH for make checkJens Georg2012-11-281-1/+1
|
* Add a test for GUPnPLastChangeParser.Krzesimir Nowak2012-11-282-1/+263
| | | | | | | Fixes to some issues will follow, but the two-mutes test is going to fail anyways. https://bugzilla.gnome.org/show_bug.cgi?id=689141
* Fix the case when there are more than one InstanceId elements.Krzesimir Nowak2012-11-281-5/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=689141
* Test for DIDL_S parsing failsJens Georg2012-11-281-1/+35
|
* Fix two issues with DIDL_S parsing.Krzesimir Nowak2012-11-272-38/+51
| | | | | | | | | | First was a possibility to unref xml_doc too many times on parse failure, which was ignored. Second that media collection didn't clear container and items on parse failure. https://bugzilla.gnome.org/show_bug.cgi?id=689094
* Fix gupnp_didl_lite_parser_parse_didl.Krzesimir Nowak2012-11-271-2/+5
| | | | | | It should return a value. https://bugzilla.gnome.org/show_bug.cgi?id=689094
* Add function to dump XML of a DIDLObjectJens Georg2012-11-222-0/+30
|
* Fix gupnp_media_collection_new function prototypeRegis Merlino2012-11-212-2/+2
|
* Post-release version bumpJens Georg2012-11-191-1/+1
|
* Prepare 0.11.3gupnp-av-0.11.3Jens Georg2012-11-191-0/+17
|
* Add tests for GUPnPMediaCollectionJens Georg2012-11-192-1/+463
|
* Parse DIDL_S playlistsJens Georg2012-11-196-24/+319
|
* Add media collection classJens Georg2012-11-197-1/+523
|
* Add tag-only filter function to writerJens Georg2012-11-192-26/+64
| | | | | This is used for DIDL-S playlist generation that allows a certain subset of tags but all attributes on those.
* Add dlna:lifetime property to itemsJens Georg2012-11-197-33/+207
|
* Add child item on container in DIDLWriterJens Georg2012-11-193-0/+79
|
* Doc fixupJens Georg2012-11-196-7/+89
|
* Fix node filtering in DIDLLiteWriterJens Georg2012-11-192-2/+33
| | | | | | Completely match node names, avoid matching prefixes. https://bugzilla.gnome.org/show_bug.cgi?id=687462
* Fix typo in commentJens Georg2012-11-191-1/+1
|
* Really silence XSD warningsJens Georg2012-11-191-1/+1
|
* Post-release version bumpJens Georg2012-10-291-1/+1
|
* Prepare 0.11.2gupnp-av-0.11.2Jens Georg2012-10-291-0/+12
|
* Silence XSD errorJens Georg2012-10-252-0/+4
|
* Don't error out if vapigen is not foundJens Georg2012-10-251-1/+1
|
* Add a comment explaining a bit a process of applying fragments.Krzesimir Nowak2012-10-251-0/+40
|
* Add a test checking fragment applying.Krzesimir Nowak2012-10-253-11/+225
|
* Add gupnp_didl_lite_object_apply_fragments.Krzesimir Nowak2012-10-252-0/+108
|
* Add global XSDData holding DIDL-Lite schema.Krzesimir Nowak2012-10-251-0/+6
| | | | It will be needed by fragment utils to validate fragment applies.
* Add fragment utils.Krzesimir Nowak2012-10-253-1/+852
| | | | This code does most of the fragments work.
* Add a header with GUPnP-AV enums.Krzesimir Nowak2012-10-253-1/+46
| | | | | For now it has only fragments related enum, but in future the rest of enums could be moved there.
* Add DIDL-Lite related schema files.Krzesimir Nowak2012-10-258-1/+2258
| | | | | These will be used by fragments code. They are put here to avoid downloading them from network.
* Add missing G_[BEGIN|END]_DECLS.Krzesimir Nowak2012-10-251-0/+4
|
* Add some XML utility functions.Krzesimir Nowak2012-10-252-0/+126
| | | | | Function for copying node, finding node, checking equality and packing attributes to hash map will be used by fragments code.
* Add XSDData structure for document validation.Krzesimir Nowak2012-10-253-0/+192
| | | | Will be used by fragments code.
* Post-release version bumpJens Georg2012-10-241-1/+1
|
* Prepare 0.11.1gupnp-av-0.11.1Jens Georg2012-10-242-2/+25
|
* Un-deprecate single-value creatorJens Georg2012-10-242-9/+2
|
* Enable introspection during distcheckJens Georg2012-10-241-1/+1
|
* Add XML fragments getter methods to GUPnPDIDLLiteObjectChristophe Guiraud2012-10-244-4/+253
| | | | | | | | | | | | | | | | | | | | | | | | CDS UpdateObject action works with property xml element fragments. - Add public functions to GUPnPDIDLLiteObject to get the xml fragments string related to some properties. char * gupnp_didl_lite_object_get_title_xml_string (...); char * gupnp_didl_lite_object_get_date_xml_string (...); char * gupnp_didl_lite_object_get_upnp_class_xml_string (...); char * gupnp_didl_lite_object_get_album_xml_string (...); char * gupnp_didl_lite_object_get_track_number_xml_string (...); char * gupnp_didl_lite_object_get_artists_xml_string (...); - Add a public function to GUPnPDIDLLiteObject to unset all the artists properties. void gupnp_didl_lite_object_unset_artists (...); - Add a helper function XML utils for xml node string extraction. char * xml_util_get_child_string (...) https://bugzilla.gnome.org/show_bug.cgi?id=686464
* Lower G-I requirement againJens Georg2012-10-243-1/+10
|
* Fix GObject annotations for FeaturesJens Georg2012-10-242-4/+5
|
* Update documentation for FeatureList XML parserRegis Merlino2012-10-243-0/+42
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685963
* Add FeatureList XML parser testRegis Merlino2012-10-242-1/+116
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685963
* Add ContentDirectory FeatureList state variable XML parserRegis Merlino2012-10-246-0/+583
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685963