From eee07c91744b4ba978a39be9d2a7bdf20c285283 Mon Sep 17 00:00:00 2001 From: Regis Merlino Date: Thu, 7 Mar 2013 10:40:21 +0100 Subject: [PATCH] Submit version 0.12.0 of GUPnP-AV (66c9ba8) --- Makefile.in | 9 +- NEWS | 12 ++ aclocal.m4 | 40 +++++ configure | 53 ++++-- configure.ac | 3 +- data/Makefile.in | 7 +- doc/Makefile.in | 7 +- doc/html/GUPnPCDSLastChangeParser.html | 18 +- doc/html/GUPnPDIDLLiteContainer.html | 96 +++++----- doc/html/GUPnPDIDLLiteContributor.html | 22 +-- doc/html/GUPnPDIDLLiteDescriptor.html | 34 ++-- doc/html/GUPnPDIDLLiteItem.html | 20 +-- doc/html/GUPnPDIDLLiteObject.html | 224 ++++++++++++------------ doc/html/GUPnPDIDLLiteParser.html | 22 +-- doc/html/GUPnPDIDLLiteResource.html | 106 +++++------ doc/html/GUPnPDIDLLiteWriter.html | 14 +- doc/html/GUPnPFeature.html | 14 +- doc/html/GUPnPFeatureListParser.html | 12 +- doc/html/GUPnPLastChangeParser.html | 26 +-- doc/html/GUPnPMediaCollection.html | 36 ++-- doc/html/GUPnPProtocolInfo.html | 46 ++--- doc/html/GUPnPSearchCriteriaParser.html | 40 ++--- doc/html/ch01.html | 2 +- doc/html/ch02.html | 2 +- doc/html/gupnp-av-Error-codes.html | 6 +- doc/html/gupnp-av-GUPnPDIDLLiteCreateClass.html | 14 +- doc/html/index.html | 4 +- doc/version.xml | 2 +- libgupnp-av/Makefile.in | 7 +- libgupnp-av/fragment-util.c | 116 +++++++----- packaging/GUPnP-AV.changes | 3 + packaging/GUPnP-AV.spec | 4 +- tests/Makefile.in | 7 +- tests/gtest/Makefile.in | 7 +- vala/Makefile.in | 7 +- 35 files changed, 580 insertions(+), 462 deletions(-) diff --git a/Makefile.in b/Makefile.in index 9bfc34f..89a8c00 100644 --- a/Makefile.in +++ b/Makefile.in @@ -227,6 +227,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -320,7 +321,7 @@ all: config.h .SUFFIXES: am--refresh: Makefile @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -347,9 +348,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): @@ -360,7 +361,7 @@ config.h: stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h -$(srcdir)/config.h.in: $(am__configure_deps) +$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ diff --git a/NEWS b/NEWS index 944833b..91eb7dc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +0.12.0 +====== + +Changes since 0.11.6: +- Fix implicit dependency on glib 2.32. +- Explicitly call AM_MAINTAINER_MODE([enable]). + +All contributors to this release: + +Jens Georg +Krzesimir Nowak + 0.11.6 ====== diff --git a/aclocal.m4 b/aclocal.m4 index 314dcfb..3fa6f84 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -760,6 +760,46 @@ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, +# 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_MAINTAINER_MODE([DEFAULT-MODE]) +# ---------------------------------- +# Control maintainer-specific portions of Makefiles. +# Default is to disable them, unless `enable' is passed literally. +# For symmetry, `disable' may be passed as well. Anyway, the user +# can override the default with the --enable/--disable switch. +AC_DEFUN([AM_MAINTAINER_MODE], +[m4_case(m4_default([$1], [disable]), + [enable], [m4_define([am_maintainer_other], [disable])], + [disable], [m4_define([am_maintainer_other], [enable])], + [m4_define([am_maintainer_other], [enable]) + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) +AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode's default is 'disable' unless 'enable' is passed + AC_ARG_ENABLE([maintainer-mode], +[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + [USE_MAINTAINER_MODE=$enableval], + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST([MAINT])dnl +] +) + +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. diff --git a/configure b/configure index 285b99a..41fd034 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gupnp-av 0.11.7. +# Generated by GNU Autoconf 2.69 for gupnp-av 0.12.0. # # Report bugs to . # @@ -651,8 +651,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gupnp-av' PACKAGE_TARNAME='gupnp-av' -PACKAGE_VERSION='0.11.7' -PACKAGE_STRING='gupnp-av 0.11.7' +PACKAGE_VERSION='0.12.0' +PACKAGE_STRING='gupnp-av 0.12.0' PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=GUPnP' PACKAGE_URL='http://www.gupnp.org/' @@ -785,6 +785,9 @@ AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V +MAINT +MAINTAINER_MODE_FALSE +MAINTAINER_MODE_TRUE am__untar am__tar AMTAR @@ -849,6 +852,7 @@ SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking +enable_maintainer_mode enable_silent_rules enable_dependency_tracking enable_shared @@ -1421,7 +1425,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gupnp-av 0.11.7 to adapt to many kinds of systems. +\`configure' configures gupnp-av 0.12.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1491,7 +1495,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gupnp-av 0.11.7:";; + short | recursive ) echo "Configuration of gupnp-av 0.12.0:";; esac cat <<\_ACEOF @@ -1499,6 +1503,8 @@ Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-maintainer-mode disable make rules and dependencies not useful + (and sometimes confusing) to the casual installer --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') --disable-dependency-tracking speeds up one-time build @@ -1615,7 +1621,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gupnp-av configure 0.11.7 +gupnp-av configure 0.12.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1893,7 +1899,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gupnp-av $as_me 0.11.7, which was +It was created by gupnp-av $as_me 0.12.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2717,7 +2723,7 @@ fi # Define the identity of the package. PACKAGE='gupnp-av' - VERSION='0.11.7' + VERSION='0.12.0' cat >>confdefs.h <<_ACEOF @@ -2839,6 +2845,29 @@ $as_echo "$am_cv_prog_tar_ustar" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 +$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } + # Check whether --enable-maintainer-mode was given. +if test "${enable_maintainer_mode+set}" = set; then : + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval +else + USE_MAINTAINER_MODE=yes +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 +$as_echo "$USE_MAINTAINER_MODE" >&6; } + if test $USE_MAINTAINER_MODE = yes; then + MAINTAINER_MODE_TRUE= + MAINTAINER_MODE_FALSE='#' +else + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= +fi + + MAINT=$MAINTAINER_MODE_TRUE + + + # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; @@ -12947,6 +12976,10 @@ else am__EXEEXT_FALSE= fi +if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 @@ -13380,7 +13413,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gupnp-av $as_me 0.11.7, which was +This file was extended by gupnp-av $as_me 0.12.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13447,7 +13480,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gupnp-av config.status 0.11.7 +gupnp-av config.status 0.12.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 0347529..fc1af0c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.63]) AC_INIT([gupnp-av], - [0.11.7], + [0.12.0], [https://bugzilla.gnome.org/enter_bug.cgi?product=GUPnP], [gupnp-av], [http://www.gupnp.org/]) @@ -11,6 +11,7 @@ AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.11 tar-ustar no-dist-gzip dist-xz -Wno-portability]) +AM_MAINTAINER_MODE([enable]) AM_SILENT_RULES([yes]) diff --git a/data/Makefile.in b/data/Makefile.in index f2994ef..8e896f6 100644 --- a/data/Makefile.in +++ b/data/Makefile.in @@ -166,6 +166,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -249,7 +250,7 @@ dist_pkgdata_DATA = didl-lite-v2.xsd upnp.xsd av.xsd xml.xsd simpledc20021212.xs all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -274,9 +275,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): diff --git a/doc/Makefile.in b/doc/Makefile.in index 8cc0f1d..d9cb08e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -142,6 +142,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -349,7 +350,7 @@ CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -375,9 +376,9 @@ $(top_srcdir)/gtk-doc.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): version.xml: $(top_builddir)/config.status $(srcdir)/version.xml.in diff --git a/doc/html/GUPnPCDSLastChangeParser.html b/doc/html/GUPnPCDSLastChangeParser.html index f7459e3..e32f9f0 100644 --- a/doc/html/GUPnPCDSLastChangeParser.html +++ b/doc/html/GUPnPCDSLastChangeParser.html @@ -45,9 +45,9 @@ enum GUPnPCDSLastChangeEntry; GUPnPCDSLastChangeParser * gupnp_cds_last_change_parser_new (void); -GList * gupnp_cds_last_change_parser_parse (GUPnPCDSLastChangeParser *parser, +GList * gupnp_cds_last_change_parser_parse (GUPnPCDSLastChangeParser *parser, const char *last_change, - GError **error); + GError **error); GUPnPCDSLastChangeEntry * gupnp_cds_last_change_entry_ref (GUPnPCDSLastChangeEntry *entry); void gupnp_cds_last_change_entry_unref (GUPnPCDSLastChangeEntry *entry); @@ -59,7 +59,7 @@ const char * GUPnPCDSLastChangeEntry *entry); const char * gupnp_cds_last_change_entry_get_class (GUPnPCDSLastChangeEntry *entry); -gboolean gupnp_cds_last_change_entry_is_subtree_update +gboolean gupnp_cds_last_change_entry_is_subtree_update (GUPnPCDSLastChangeEntry *entry); guint32 gupnp_cds_last_change_entry_get_update_id (GUPnPCDSLastChangeEntry *entry); @@ -68,7 +68,7 @@ const char *

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPCDSLastChangeParser
 
@@ -133,9 +133,9 @@ ContentDirectory:3 specification.
 

gupnp_cds_last_change_parser_parse ()

-
GList *             gupnp_cds_last_change_parser_parse  (GUPnPCDSLastChangeParser *parser,
+
GList *             gupnp_cds_last_change_parser_parse  (GUPnPCDSLastChangeParser *parser,
                                                          const char *last_change,
-                                                         GError **error);
+ GError **error);

Parse a LastChange XML document in the flavor defined by the ContentDirectory:3 specification. @@ -153,7 +153,7 @@ ContentDirectory:3 specification.

error :

-Return value for parser error or NULL to ingore +Return value for parser error or NULL to ingore

Returns :

@@ -308,7 +308,7 @@ valid if

gupnp_cds_last_change_entry_is_subtree_update ()

-
gboolean            gupnp_cds_last_change_entry_is_subtree_update
+
gboolean            gupnp_cds_last_change_entry_is_subtree_update
                                                         (GUPnPCDSLastChangeEntry *entry);

Returns whether this entry is part of a subtree update. @@ -324,7 +324,7 @@ Returns whether this entry is part of a subtree update.

Returns :

-TRUE, if the entry is part of a subtree update, FALSE otherwise. +TRUE, if the entry is part of a subtree update, FALSE otherwise.
diff --git a/doc/html/GUPnPDIDLLiteContainer.html b/doc/html/GUPnPDIDLLiteContainer.html index f44da65..cbdba71 100644 --- a/doc/html/GUPnPDIDLLiteContainer.html +++ b/doc/html/GUPnPDIDLLiteContainer.html @@ -42,22 +42,22 @@

Synopsis

                    GUPnPDIDLLiteContainer;
-gboolean            gupnp_didl_lite_container_get_searchable
+gboolean            gupnp_didl_lite_container_get_searchable
                                                         (GUPnPDIDLLiteContainer *container);
-gint                gupnp_didl_lite_container_get_child_count
+gint                gupnp_didl_lite_container_get_child_count
                                                         (GUPnPDIDLLiteContainer *container);
-GList *             gupnp_didl_lite_container_get_create_classes
+GList *             gupnp_didl_lite_container_get_create_classes
                                                         (GUPnPDIDLLiteContainer *container);
-GList *             gupnp_didl_lite_container_get_search_classes
+GList *             gupnp_didl_lite_container_get_search_classes
                                                         (GUPnPDIDLLiteContainer *container);
 gint64              gupnp_didl_lite_container_get_storage_used
                                                         (GUPnPDIDLLiteContainer *container);
 void                gupnp_didl_lite_container_set_searchable
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         gboolean searchable);
+                                                         gboolean searchable);
 void                gupnp_didl_lite_container_set_child_count
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         gint child_count);
+                                                         gint child_count);
 void                gupnp_didl_lite_container_set_storage_used
                                                         (GUPnPDIDLLiteContainer *container,
                                                          gint64 storage_used);
@@ -67,29 +67,29 @@
 void                gupnp_didl_lite_container_add_create_class_full
                                                         (GUPnPDIDLLiteContainer *container,
                                                          const char *create_class,
-                                                         gboolean include_derived);
+                                                         gboolean include_derived);
 void                gupnp_didl_lite_container_add_search_class
                                                         (GUPnPDIDLLiteContainer *container,
                                                          const char *search_class);
 void                gupnp_didl_lite_container_add_search_class_full
                                                         (GUPnPDIDLLiteContainer *container,
                                                          const char *search_class,
-                                                         gboolean include_derived);
-gboolean            gupnp_didl_lite_container_container_update_id_is_set
+                                                         gboolean include_derived);
+gboolean            gupnp_didl_lite_container_container_update_id_is_set
                                                         (GUPnPDIDLLiteContainer *container);
-guint               gupnp_didl_lite_container_get_container_update_id
+guint               gupnp_didl_lite_container_get_container_update_id
                                                         (GUPnPDIDLLiteContainer *container);
-GList *             gupnp_didl_lite_container_get_create_classes_full
+GList *             gupnp_didl_lite_container_get_create_classes_full
                                                         (GUPnPDIDLLiteContainer *container);
-guint               gupnp_didl_lite_container_get_total_deleted_child_count
+guint               gupnp_didl_lite_container_get_total_deleted_child_count
                                                         (GUPnPDIDLLiteContainer *container);
 void                gupnp_didl_lite_container_set_container_update_id
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         guint update_id);
+                                                         guint update_id);
 void                gupnp_didl_lite_container_set_total_deleted_child_count
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         guint count);
-gboolean            gupnp_didl_lite_container_total_deleted_child_count_is_set
+                                                         guint count);
+gboolean            gupnp_didl_lite_container_total_deleted_child_count_is_set
                                                         (GUPnPDIDLLiteContainer *container);
 void                gupnp_didl_lite_container_unset_container_update_id
                                                         (GUPnPDIDLLiteContainer *container);
@@ -100,7 +100,7 @@
 

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteObject
          +----GUPnPDIDLLiteContainer
 
@@ -108,11 +108,11 @@

Properties

-  "child-count"              gint                  : Read / Write
-  "container-update-id"      guint                 : Read / Write
-  "searchable"               gboolean              : Read / Write
+  "child-count"              gint                  : Read / Write
+  "container-update-id"      guint                 : Read / Write
+  "searchable"               gboolean              : Read / Write
   "storage-used"             gint64                : Read / Write
-  "total-deleted-child-count" guint                 : Read / Write
+  "total-deleted-child-count" guint                 : Read / Write
 
@@ -130,7 +130,7 @@

gupnp_didl_lite_container_get_searchable ()

-
gboolean            gupnp_didl_lite_container_get_searchable
+
gboolean            gupnp_didl_lite_container_get_searchable
                                                         (GUPnPDIDLLiteContainer *container);

Checks whether container is searchable. @@ -145,7 +145,7 @@ Checks whether container is searchable.

Returns :

-TRUE if container is searchable. +TRUE if container is searchable.
@@ -153,7 +153,7 @@ Checks whether container is searchable.

gupnp_didl_lite_container_get_child_count ()

-
gint                gupnp_didl_lite_container_get_child_count
+
gint                gupnp_didl_lite_container_get_child_count
                                                         (GUPnPDIDLLiteContainer *container);

Get the child count of the container. If the child count is unknown, -1 is @@ -176,7 +176,7 @@ returned.


gupnp_didl_lite_container_get_create_classes ()

-
GList *             gupnp_didl_lite_container_get_create_classes
+
GList *             gupnp_didl_lite_container_get_create_classes
                                                         (GUPnPDIDLLiteContainer *container);

Gets the list of create classes of the container. @@ -191,8 +191,8 @@ Gets the list of create classes of the container

Returns :

The list of create classes -belonging to container, or NULL. -g_list_free the returned list after usage and g_free each string in it. [element-type utf8][transfer full] +belonging to container, or NULL. +g_list_free the returned list after usage and g_free each string in it. [element-type utf8][transfer full] @@ -201,7 +201,7 @@ belonging to container, or

gupnp_didl_lite_container_get_search_classes ()

-
GList *             gupnp_didl_lite_container_get_search_classes
+
GList *             gupnp_didl_lite_container_get_search_classes
                                                         (GUPnPDIDLLiteContainer *container);

Gets the list of search classes of the container. @@ -216,8 +216,8 @@ Gets the list of search classes of the container

Returns :

The list of search classes -belonging to container, or NULL. g_list_free the returned list after usage -and g_free each string in it. [element-type utf8][transfer full] +belonging to container, or NULL. g_list_free the returned list after usage +and g_free each string in it. [element-type utf8][transfer full] @@ -252,7 +252,7 @@ or -1 if it is unknown.

gupnp_didl_lite_container_set_searchable ()

void                gupnp_didl_lite_container_set_searchable
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         gboolean searchable);
+ gboolean searchable);

(Un)set the searchibility of container.

@@ -275,7 +275,7 @@ or -1 if it is unknown.

gupnp_didl_lite_container_set_child_count ()

void                gupnp_didl_lite_container_set_child_count
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         gint child_count);
+ gint child_count);

Set the child count of the container.

@@ -350,7 +350,7 @@ Add a new create class to the container.
void                gupnp_didl_lite_container_add_create_class_full
                                                         (GUPnPDIDLLiteContainer *container,
                                                          const char *create_class,
-                                                         gboolean include_derived);
+ gboolean include_derived);

Add a new create class to the container.

@@ -410,7 +410,7 @@ Add a new search class to the container.
void                gupnp_didl_lite_container_add_search_class_full
                                                         (GUPnPDIDLLiteContainer *container,
                                                          const char *search_class,
-                                                         gboolean include_derived);
+ gboolean include_derived);

Add a new search class to the container.

@@ -439,7 +439,7 @@ Add a new search class to the container.

gupnp_didl_lite_container_container_update_id_is_set ()

-
gboolean            gupnp_didl_lite_container_container_update_id_is_set
+
gboolean            gupnp_didl_lite_container_container_update_id_is_set
                                                         (GUPnPDIDLLiteContainer *container);

Get whether the container update ID of the container is set. @@ -454,7 +454,7 @@ Get whether the container update ID of the container

Returns :

-TRUE if update ID is set, otherwise FALSE +TRUE if update ID is set, otherwise FALSE @@ -463,7 +463,7 @@ Get whether the container update ID of the container

gupnp_didl_lite_container_get_container_update_id ()

-
guint               gupnp_didl_lite_container_get_container_update_id
+
guint               gupnp_didl_lite_container_get_container_update_id
                                                         (GUPnPDIDLLiteContainer *container);

Get the container update ID of the container. @@ -485,7 +485,7 @@ Get the container update ID of the container<


gupnp_didl_lite_container_get_create_classes_full ()

-
GList *             gupnp_didl_lite_container_get_create_classes_full
+
GList *             gupnp_didl_lite_container_get_create_classes_full
                                                         (GUPnPDIDLLiteContainer *container);

Gets the list of create classes of the container. @@ -500,8 +500,8 @@ Gets the list of create classes of the container

Returns :

The list -of create classes belonging to container, or NULL. -g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteCreateClass*][transfer full] +of create classes belonging to container, or NULL. +g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteCreateClass*][transfer full] @@ -510,7 +510,7 @@ of create classes belonging to container

gupnp_didl_lite_container_get_total_deleted_child_count ()

-
guint               gupnp_didl_lite_container_get_total_deleted_child_count
+
guint               gupnp_didl_lite_container_get_total_deleted_child_count
                                                         (GUPnPDIDLLiteContainer *container);

Get the total deleted child count of the container. @@ -534,7 +534,7 @@ Get the total deleted child count of the container

gupnp_didl_lite_container_set_container_update_id ()

void                gupnp_didl_lite_container_set_container_update_id
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         guint update_id);
+ guint update_id);

Set the container update ID of the container.

@@ -557,7 +557,7 @@ Set the container update ID of the container<

gupnp_didl_lite_container_set_total_deleted_child_count ()

void                gupnp_didl_lite_container_set_total_deleted_child_count
                                                         (GUPnPDIDLLiteContainer *container,
-                                                         guint count);
+ guint count);

Set the container update ID of the container.

@@ -578,7 +578,7 @@ Set the container update ID of the container<

gupnp_didl_lite_container_total_deleted_child_count_is_set ()

-
gboolean            gupnp_didl_lite_container_total_deleted_child_count_is_set
+
gboolean            gupnp_didl_lite_container_total_deleted_child_count_is_set
                                                         (GUPnPDIDLLiteContainer *container);

Get whether the total deleted child conut of the container is set. @@ -593,7 +593,7 @@ Get whether the total deleted child conut of the con

Returns :

-TRUE if property is set, otherwise FALSE +TRUE if property is set, otherwise FALSE @@ -636,7 +636,7 @@ Unset the total deleted child count property of the

Property Details

The "child-count" property

-
  "child-count"              gint                  : Read / Write
+
  "child-count"              gint                  : Read / Write

The child count of this container.

@@ -646,7 +646,7 @@ The child count of this container.

The "container-update-id" property

-
  "container-update-id"      guint                 : Read / Write
+
  "container-update-id"      guint                 : Read / Write

Update ID of this container.

@@ -655,7 +655,7 @@ Update ID of this container.

The "searchable" property

-
  "searchable"               gboolean              : Read / Write
+
  "searchable"               gboolean              : Read / Write

Whether this container is searchable.

@@ -674,7 +674,7 @@ The number of bytes used by all child items of this container.

The "total-deleted-child-count" property

-
  "total-deleted-child-count" guint                 : Read / Write
+
  "total-deleted-child-count" guint                 : Read / Write

Total deleted child count of this container.

diff --git a/doc/html/GUPnPDIDLLiteContributor.html b/doc/html/GUPnPDIDLLiteContributor.html index 601b868..d7a9ffd 100644 --- a/doc/html/GUPnPDIDLLiteContributor.html +++ b/doc/html/GUPnPDIDLLiteContributor.html @@ -59,17 +59,17 @@ const char *

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteContributor
 

Properties

-  "name"                     gchar*                : Read / Write
-  "role"                     gchar*                : Read / Write
-  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
-  "xml-node"                 gpointer              : Read / Write / Construct Only
+  "name"                     gchar*                : Read / Write
+  "role"                     gchar*                : Read / Write
+  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+  "xml-node"                 gpointer              : Read / Write / Construct Only
 
@@ -126,7 +126,7 @@ Get the role of the contributor.

Returns :

-The role of the contributor, or NULL. +The role of the contributor, or NULL.
@@ -149,7 +149,7 @@ Get the name of the contributor.

Returns :

-The name of the contributor or NULL. +The name of the contributor or NULL.
@@ -215,7 +215,7 @@ Set the name of the contributor to

Property Details

The "name" property

-
  "name"                     gchar*                : Read / Write
+
  "name"                     gchar*                : Read / Write

The name of this contributor.

@@ -224,7 +224,7 @@ The name of this contributor.

The "role" property

-
  "role"                     gchar*                : Read / Write
+
  "role"                     gchar*                : Read / Write

The role of this contributor.

@@ -233,7 +233,7 @@ The role of this contributor.

The "xml-doc" property

-
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only

The reference to XML document containing this object.

@@ -245,7 +245,7 @@ Internal property.

The "xml-node" property

-
  "xml-node"                 gpointer              : Read / Write / Construct Only
+
  "xml-node"                 gpointer              : Read / Write / Construct Only

The pointer to object node in XML document.

diff --git a/doc/html/GUPnPDIDLLiteDescriptor.html b/doc/html/GUPnPDIDLLiteDescriptor.html index 72bad38..589e0fd 100644 --- a/doc/html/GUPnPDIDLLiteDescriptor.html +++ b/doc/html/GUPnPDIDLLiteDescriptor.html @@ -67,19 +67,19 @@ const char *

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteDescriptor
 

Properties

-  "content"                  gchar*                : Read / Write
-  "id"                       gchar*                : Read / Write
-  "metadata-type"            gchar*                : Read / Write
-  "name-space"               gchar*                : Read / Write
-  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
-  "xml-node"                 gpointer              : Read / Write / Construct Only
+  "content"                  gchar*                : Read / Write
+  "id"                       gchar*                : Read / Write
+  "metadata-type"            gchar*                : Read / Write
+  "name-space"               gchar*                : Read / Write
+  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+  "xml-node"                 gpointer              : Read / Write / Construct Only
 
@@ -136,7 +136,7 @@ Get the content of the descriptor.

Returns :

-The content of the descriptor or NULL. +The content of the descriptor or NULL.
@@ -158,7 +158,7 @@ Get the ID of the descriptor.

Returns :

-The ID string or NULL. +The ID string or NULL.
@@ -181,7 +181,7 @@ Get the metadata type of the descriptor.

Returns :

-The type as string or NULL. +The type as string or NULL.
@@ -204,7 +204,7 @@ Get the name space associated with the descriptor

Returns :

-The name space or NULL. +The name space or NULL.
@@ -325,7 +325,7 @@ Set the name space associated with the descriptor

Property Details

The "content" property

-
  "content"                  gchar*                : Read / Write
+
  "content"                  gchar*                : Read / Write

The content of this descriptor.

@@ -334,7 +334,7 @@ The content of this descriptor.

The "id" property

-
  "id"                       gchar*                : Read / Write
+
  "id"                       gchar*                : Read / Write

The ID of this descriptor.

@@ -343,7 +343,7 @@ The ID of this descriptor.

The "metadata-type" property

-
  "metadata-type"            gchar*                : Read / Write
+
  "metadata-type"            gchar*                : Read / Write

The type of this descriptor.

@@ -352,7 +352,7 @@ The type of this descriptor.

The "name-space" property

-
  "name-space"               gchar*                : Read / Write
+
  "name-space"               gchar*                : Read / Write

The name space associated with this descriptor.

@@ -361,7 +361,7 @@ The name space associated with this descriptor.

The "xml-doc" property

-
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only

The reference to XML document containing this object.

@@ -373,7 +373,7 @@ Internal property.

The "xml-node" property

-
  "xml-node"                 gpointer              : Read / Write / Construct Only
+
  "xml-node"                 gpointer              : Read / Write / Construct Only

The pointer to desc node in XML document.

diff --git a/doc/html/GUPnPDIDLLiteItem.html b/doc/html/GUPnPDIDLLiteItem.html index 5119289..93deea5 100644 --- a/doc/html/GUPnPDIDLLiteItem.html +++ b/doc/html/GUPnPDIDLLiteItem.html @@ -45,15 +45,15 @@ const char * gupnp_didl_lite_item_get_ref_id (GUPnPDIDLLiteItem *item); void gupnp_didl_lite_item_set_ref_id (GUPnPDIDLLiteItem *item, const char *ref_id); -glong gupnp_didl_lite_item_get_lifetime (GUPnPDIDLLiteItem *item); +glong gupnp_didl_lite_item_get_lifetime (GUPnPDIDLLiteItem *item); void gupnp_didl_lite_item_set_lifetime (GUPnPDIDLLiteItem *item, - glong lifetime); + glong lifetime);

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteObject
          +----GUPnPDIDLLiteItem
 
@@ -61,8 +61,8 @@ const char *

Properties

-  "lifetime"                 glong                 : Read / Write
-  "ref-id"                   gchar*                : Read / Write
+  "lifetime"                 glong                 : Read / Write
+  "ref-id"                   gchar*                : Read / Write
 
@@ -93,7 +93,7 @@ Get the ref ID of the item.

Returns :

-The ref ID of the item, or NULL. +The ref ID of the item, or NULL.
@@ -123,7 +123,7 @@ Set the ref ID of the item.

gupnp_didl_lite_item_get_lifetime ()

-
glong               gupnp_didl_lite_item_get_lifetime   (GUPnPDIDLLiteItem *item);
+
glong               gupnp_didl_lite_item_get_lifetime   (GUPnPDIDLLiteItem *item);
@@ -142,7 +142,7 @@ Set the ref ID of the item.

gupnp_didl_lite_item_set_lifetime ()

void                gupnp_didl_lite_item_set_lifetime   (GUPnPDIDLLiteItem *item,
-                                                         glong lifetime);
+ glong lifetime);
@@ -162,7 +162,7 @@ Set the ref ID of the item.

Property Details

The "lifetime" property

-
  "lifetime"                 glong                 : Read / Write
+
  "lifetime"                 glong                 : Read / Write

The lifetime in seconds of this DIDLLite item in a media collection.

@@ -172,7 +172,7 @@ The lifetime in seconds of this DIDLLite item in a media collection.

The "ref-id" property

-
  "ref-id"                   gchar*                : Read / Write
+
  "ref-id"                   gchar*                : Read / Write

The ref ID of this item.

diff --git a/doc/html/GUPnPDIDLLiteObject.html b/doc/html/GUPnPDIDLLiteObject.html index 05f2315..544c527 100644 --- a/doc/html/GUPnPDIDLLiteObject.html +++ b/doc/html/GUPnPDIDLLiteObject.html @@ -51,22 +51,22 @@ enum GUPnPDIDLLiteObject *object); xmlNsPtr gupnp_didl_lite_object_get_dlna_namespace (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_properties +GList * gupnp_didl_lite_object_get_properties (GUPnPDIDLLiteObject *object, const char *name); const char * gupnp_didl_lite_object_get_id (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_parent_id (GUPnPDIDLLiteObject *object); -gboolean gupnp_didl_lite_object_get_restricted +gboolean gupnp_didl_lite_object_get_restricted (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_title (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_creator (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_artist (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_author (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_creators (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_artists (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_authors (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_descriptors +GList * gupnp_didl_lite_object_get_creators (GUPnPDIDLLiteObject *object); +GList * gupnp_didl_lite_object_get_artists (GUPnPDIDLLiteObject *object); +GList * gupnp_didl_lite_object_get_authors (GUPnPDIDLLiteObject *object); +GList * gupnp_didl_lite_object_get_descriptors (GUPnPDIDLLiteObject *object); const char * gupnp_didl_lite_object_get_write_status (GUPnPDIDLLiteObject *object); @@ -83,12 +83,12 @@ const char * GUPnPDIDLLiteObject *object); GUPnPOCMFlags gupnp_didl_lite_object_get_dlna_managed (GUPnPDIDLLiteObject *object); -GList * gupnp_didl_lite_object_get_resources +GList * gupnp_didl_lite_object_get_resources (GUPnPDIDLLiteObject *object); GUPnPDIDLLiteResource * gupnp_didl_lite_object_get_compat_resource (GUPnPDIDLLiteObject *object, const char *sink_protocol_info, - gboolean lenient); + gboolean lenient); GUPnPDIDLLiteResource * gupnp_didl_lite_object_add_resource (GUPnPDIDLLiteObject *object); GUPnPDIDLLiteDescriptor * gupnp_didl_lite_object_add_descriptor @@ -103,7 +103,7 @@ const char * const char *parent_id); void gupnp_didl_lite_object_set_restricted (GUPnPDIDLLiteObject *object, - gboolean restricted); + gboolean restricted); void gupnp_didl_lite_object_set_title (GUPnPDIDLLiteObject *object, const char *title); void gupnp_didl_lite_object_set_creator (GUPnPDIDLLiteObject *object, @@ -141,10 +141,10 @@ const char * GUPnPOCMFlags dlna_managed); GUPnPDIDLLiteFragmentResult gupnp_didl_lite_object_apply_fragments (GUPnPDIDLLiteObject *object, - gchar **current_fragments, - gint current_size, - gchar **new_fragments, - gint new_size); + gchar **current_fragments, + gint current_size, + gchar **new_fragments, + gint new_size); char * gupnp_didl_lite_object_get_album_xml_string (GUPnPDIDLLiteObject *object); char * gupnp_didl_lite_object_get_artists_xml_string @@ -155,25 +155,25 @@ const char * GUPnPDIDLLiteObject *object); char * gupnp_didl_lite_object_get_track_number_xml_string (GUPnPDIDLLiteObject *object); -guint gupnp_didl_lite_object_get_update_id +guint gupnp_didl_lite_object_get_update_id (GUPnPDIDLLiteObject *object); char * gupnp_didl_lite_object_get_upnp_class_xml_string (GUPnPDIDLLiteObject *object); void gupnp_didl_lite_object_set_update_id (GUPnPDIDLLiteObject *object, - guint update_id); + guint update_id); void gupnp_didl_lite_object_unset_artists (GUPnPDIDLLiteObject *object); void gupnp_didl_lite_object_unset_update_id (GUPnPDIDLLiteObject *object); -gboolean gupnp_didl_lite_object_update_id_is_set +gboolean gupnp_didl_lite_object_update_id_is_set (GUPnPDIDLLiteObject *object);

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteObject
          +----GUPnPDIDLLiteContainer
          +----GUPnPDIDLLiteItem
@@ -182,28 +182,28 @@ const char *        
 

Properties

-  "album"                    gchar*                : Read / Write
-  "album-art"                gchar*                : Read / Write
-  "artist"                   gchar*                : Read / Write
-  "author"                   gchar*                : Read / Write
-  "creator"                  gchar*                : Read / Write
-  "date"                     gchar*                : Read / Write
-  "dc-namespace"             gpointer              : Read / Write / Construct Only
-  "description"              gchar*                : Read / Write
+  "album"                    gchar*                : Read / Write
+  "album-art"                gchar*                : Read / Write
+  "artist"                   gchar*                : Read / Write
+  "author"                   gchar*                : Read / Write
+  "creator"                  gchar*                : Read / Write
+  "date"                     gchar*                : Read / Write
+  "dc-namespace"             gpointer              : Read / Write / Construct Only
+  "description"              gchar*                : Read / Write
   "dlna-managed"             GUPnPOCMFlags         : Read / Write
-  "dlna-namespace"           gpointer              : Read / Write / Construct Only
-  "genre"                    gchar*                : Read / Write
-  "id"                       gchar*                : Read / Write
-  "parent-id"                gchar*                : Read / Write
-  "restricted"               gboolean              : Read / Write
-  "title"                    gchar*                : Read / Write
-  "track-number"             gint                  : Read / Write
-  "update-id"                guint                 : Read / Write
-  "upnp-class"               gchar*                : Read / Write
-  "upnp-namespace"           gpointer              : Read / Write / Construct Only
-  "write-status"             gchar*                : Read / Write
-  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
-  "xml-node"                 gpointer              : Read / Write / Construct Only
+  "dlna-namespace"           gpointer              : Read / Write / Construct Only
+  "genre"                    gchar*                : Read / Write
+  "id"                       gchar*                : Read / Write
+  "parent-id"                gchar*                : Read / Write
+  "restricted"               gboolean              : Read / Write
+  "title"                    gchar*                : Read / Write
+  "track-number"             gint                  : Read / Write
+  "update-id"                guint                 : Read / Write
+  "upnp-class"               gchar*                : Read / Write
+  "upnp-namespace"           gpointer              : Read / Write / Construct Only
+  "write-status"             gchar*                : Read / Write
+  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+  "xml-node"                 gpointer              : Read / Write / Construct Only
 
@@ -450,7 +450,7 @@ document containing this object.

gupnp_didl_lite_object_get_properties ()

-
GList *             gupnp_didl_lite_object_get_properties
+
GList *             gupnp_didl_lite_object_get_properties
                                                         (GUPnPDIDLLiteObject *object,
                                                          const char *name);

@@ -470,8 +470,8 @@ Use this function to retreive property nodes by name.

@@ -493,7 +493,7 @@ Get the ID of the object. - +

Returns :

The list of -property nodes by the name property_name belonging to object, or NULL. -g_list_free the returned list after usage but do not modify the contents. [element-type xmlNode*][transfer container] +property nodes by the name property_name belonging to object, or NULL. +g_list_free the returned list after usage but do not modify the contents. [element-type xmlNode*][transfer container]

Returns :

The ID of the object, or NULL.The ID of the object, or NULL.
@@ -515,7 +515,7 @@ Get the ID of the parent of the object.

Returns :

-The ID of parent of the object, or NULL. +The ID of parent of the object, or NULL.
@@ -523,7 +523,7 @@ Get the ID of the parent of the object.

gupnp_didl_lite_object_get_restricted ()

-
gboolean            gupnp_didl_lite_object_get_restricted
+
gboolean            gupnp_didl_lite_object_get_restricted
                                                         (GUPnPDIDLLiteObject *object);

Whether the object is restricted or not. @@ -538,7 +538,7 @@ Whether the object is restricted or not.

Returns :

-TRUE if object is restricted. +TRUE if object is restricted.
@@ -559,7 +559,7 @@ Get the title of the object.

Returns :

-The title of the object, or NULL. +The title of the object, or NULL.
@@ -580,7 +580,7 @@ Get the creator of the object.

Returns :

-The creator of the object, or NULL. +The creator of the object, or NULL.
@@ -594,7 +594,7 @@ Get the creator of the object.

gupnp_didl_lite_object_get_artist has been deprecated since version 0.5.3 and should not be used in newly-written code. Use gupnp_didl_lite_object_get_artists instead.

-Get the artist of the object. If role is not NULL, it is set to the role +Get the artist of the object. If role is not NULL, it is set to the role of the artist if available.

@@ -606,7 +606,7 @@ of the artist if available. - +

Returns :

The artist of the object, or NULL.The artist of the object, or NULL.
@@ -631,7 +631,7 @@ Get the author of the object.

Returns :

-The author of the object, or NULL. +The author of the object, or NULL.
@@ -639,7 +639,7 @@ Get the author of the object.

gupnp_didl_lite_object_get_creators ()

-
GList *             gupnp_didl_lite_object_get_creators (GUPnPDIDLLiteObject *object);
+
GList *             gupnp_didl_lite_object_get_creators (GUPnPDIDLLiteObject *object);

Get the creators of the object.

@@ -653,8 +653,8 @@ Get the creators of the object.

Returns :

The list -of creators belonging to object, or NULL. -g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] +of creators belonging to object, or NULL. +g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] @@ -663,7 +663,7 @@ of creators belonging to object, or

gupnp_didl_lite_object_get_artists ()

-
GList *             gupnp_didl_lite_object_get_artists  (GUPnPDIDLLiteObject *object);
+
GList *             gupnp_didl_lite_object_get_artists  (GUPnPDIDLLiteObject *object);

Get the artists of the object.

@@ -677,8 +677,8 @@ Get the artists of the object.

Returns :

The list -of artists belonging to object, or NULL. -g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] +of artists belonging to object, or NULL. +g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] @@ -687,7 +687,7 @@ of artists belonging to object, or

gupnp_didl_lite_object_get_authors ()

-
GList *             gupnp_didl_lite_object_get_authors  (GUPnPDIDLLiteObject *object);
+
GList *             gupnp_didl_lite_object_get_authors  (GUPnPDIDLLiteObject *object);

Get the authors of the object.

@@ -701,8 +701,8 @@ Get the authors of the object.

Returns :

The list -of authors belonging to object, or NULL. -g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] +of authors belonging to object, or NULL. +g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteContributor*][transfer full] @@ -711,7 +711,7 @@ of authors belonging to object, or

gupnp_didl_lite_object_get_descriptors ()

-
GList *             gupnp_didl_lite_object_get_descriptors
+
GList *             gupnp_didl_lite_object_get_descriptors
                                                         (GUPnPDIDLLiteObject *object);

Get the descriptors of the object. @@ -726,8 +726,8 @@ Get the descriptors of the object.

Returns :

The list of -descriptors belonging to object, or NULL. -g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteDescriptor*][transfer full] +descriptors belonging to object, or NULL. +g_list_free the returned list after usage and unref each object in it. [element-type GUPnPDIDLLiteDescriptor*][transfer full] @@ -750,7 +750,7 @@ Get the write status of the object.

Returns :

-The write status of the object, or NULL. +The write status of the object, or NULL.
@@ -771,7 +771,7 @@ Get the genre of the object.

Returns :

-The genre of the object, or NULL. +The genre of the object, or NULL.
@@ -794,7 +794,7 @@ Get the UPnP class of the object.

Returns :

-The class of object, or NULL. +The class of object, or NULL.
@@ -815,7 +815,7 @@ Get the album of the object.

Returns :

-The album of the object, or NULL. +The album of the object, or NULL.
@@ -837,7 +837,7 @@ Get the URI to album art of the object.

Returns :

-The URI to album art of the object, or NULL. +The URI to album art of the object, or NULL. @@ -859,7 +859,7 @@ Get the description of the object.

Returns :

-The description of the object, or NULL. +The description of the object, or NULL. @@ -880,7 +880,7 @@ Get the date of the object.

Returns :

-The date of the object, or NULL. +The date of the object, or NULL. @@ -932,7 +932,7 @@ Get the 'dlna:dlnaManaged' attribute of the object

gupnp_didl_lite_object_get_resources ()

-
GList *             gupnp_didl_lite_object_get_resources
+
GList *             gupnp_didl_lite_object_get_resources
                                                         (GUPnPDIDLLiteObject *object);

Use this function to retreive resources from the object. @@ -947,7 +947,7 @@ Use this function to retreive resources from the obj

Returns :

The list -of resources belonging to object, or NULL. g_list_free the +of resources belonging to object, or NULL. g_list_free the returned list after usage and unref each resource in it. [element-type GUPnPDIDLLiteResource*][transfer full] @@ -960,7 +960,7 @@ returned list after usage and unref each resource in it. GUPnPDIDLLiteResource * gupnp_didl_lite_object_get_compat_resource (GUPnPDIDLLiteObject *object, const char *sink_protocol_info, - gboolean lenient);
+ gboolean lenient);

Use this function to get a resource from the object that is compatible with any of the protocols specified in the sink_protocol_info. The value of @@ -969,8 +969,8 @@ any of the protocols specified in the sink_protocol_ ConnectionManager service.

-If lenient is TRUE, the first resource in the list is returned instead of -NULL if none of resources and protocols are found to be compatible. +If lenient is TRUE, the first resource in the list is returned instead of +NULL if none of resources and protocols are found to be compatible.

@@ -990,7 +990,7 @@ If lenient is TRUE @@ -1119,7 +1119,7 @@ Set the ID of the parent of the object t

gupnp_didl_lite_object_set_restricted ()

void                gupnp_didl_lite_object_set_restricted
                                                         (GUPnPDIDLLiteObject *object,
-                                                         gboolean restricted);
+ gboolean restricted);

Set the restricted status of object to restricted.

@@ -1497,10 +1497,10 @@ Set the 'dlna:dlnaManaged' attribute of the object

gupnp_didl_lite_object_apply_fragments ()

GUPnPDIDLLiteFragmentResult gupnp_didl_lite_object_apply_fragments
                                                         (GUPnPDIDLLiteObject *object,
-                                                         gchar **current_fragments,
-                                                         gint current_size,
-                                                         gchar **new_fragments,
-                                                         gint new_size);
+ gchar **current_fragments, + gint current_size, + gchar **new_fragments, + gint new_size);

Updates object by applying new_fragments in places of current_fragments. For current_size and new_size -1 can be @@ -1561,7 +1561,7 @@ object album.

- +

Returns :

The resource belonging to object that is comaptible with -any of the protocols specified in sink_protocol_info, or NULL. Unref after +any of the protocols specified in sink_protocol_info, or NULL. Unref after usage. [transfer full]

Returns :

A DIDL-Lite XML fragment string, or NULL. g_free after usage.A DIDL-Lite XML fragment string, or NULL. g_free after usage.
@@ -1585,7 +1585,7 @@ object artists.

Returns :

-A DIDL-Lite XML fragment string, or NULL. g_free after usage. +A DIDL-Lite XML fragment string, or NULL. g_free after usage. @@ -1609,7 +1609,7 @@ object date.

Returns :

-A DIDL-Lite XML fragment string, or NULL. g_free after usage. +A DIDL-Lite XML fragment string, or NULL. g_free after usage. @@ -1633,7 +1633,7 @@ object title.

Returns :

-A DIDL-Lite XML fragment string, or NULL. g_free after usage. +A DIDL-Lite XML fragment string, or NULL. g_free after usage. @@ -1657,7 +1657,7 @@ object track number.

Returns :

-A DIDL-Lite XML fragment string, or NULL. g_free after usage. +A DIDL-Lite XML fragment string, or NULL. g_free after usage. @@ -1665,7 +1665,7 @@ object track number.

gupnp_didl_lite_object_get_update_id ()

-
guint               gupnp_didl_lite_object_get_update_id
+
guint               gupnp_didl_lite_object_get_update_id
                                                         (GUPnPDIDLLiteObject *object);

Get the update ID of the object. @@ -1703,7 +1703,7 @@ object UPnP class.

Returns :

-A DIDL-Lite XML fragment string, or NULL. g_free after usage. +A DIDL-Lite XML fragment string, or NULL. g_free after usage.
@@ -1713,7 +1713,7 @@ object UPnP class.

gupnp_didl_lite_object_set_update_id ()

void                gupnp_didl_lite_object_set_update_id
                                                         (GUPnPDIDLLiteObject *object,
-                                                         guint update_id);
+ guint update_id);

Set the update ID of the object.

@@ -1766,7 +1766,7 @@ Unset the update ID property of the object

gupnp_didl_lite_object_update_id_is_set ()

-
gboolean            gupnp_didl_lite_object_update_id_is_set
+
gboolean            gupnp_didl_lite_object_update_id_is_set
                                                         (GUPnPDIDLLiteObject *object);

Get whether the update ID of the object is set. @@ -1781,7 +1781,7 @@ Get whether the update ID of the object

Returns :

-TRUE if update ID is set, otherwise FALSE +TRUE if update ID is set, otherwise FALSE @@ -1792,7 +1792,7 @@ Get whether the update ID of the object

Property Details

The "album" property

-
  "album"                    gchar*                : Read / Write
+
  "album"                    gchar*                : Read / Write

The album of this object.

@@ -1801,7 +1801,7 @@ The album of this object.

The "album-art" property

-
  "album-art"                gchar*                : Read / Write
+
  "album-art"                gchar*                : Read / Write

The URI to album art of this object.

@@ -1810,7 +1810,7 @@ The URI to album art of this object.

The "artist" property

-
  "artist"                   gchar*                : Read / Write
+
  "artist"                   gchar*                : Read / Write

Warning

GUPnPDIDLLiteObject:artist has been deprecated since version 0.5.3 and should not be used in newly-written code. Use gupnp_didl_lite_object_get_artists and @@ -1825,7 +1825,7 @@ The artist of this object.


The "author" property

-
  "author"                   gchar*                : Read / Write
+
  "author"                   gchar*                : Read / Write

Warning

GUPnPDIDLLiteObject:author has been deprecated since version 0.5.3 and should not be used in newly-written code. Use gupnp_didl_lite_object_get_authors and @@ -1840,7 +1840,7 @@ The author of this object.


The "creator" property

-
  "creator"                  gchar*                : Read / Write
+
  "creator"                  gchar*                : Read / Write

The creator of this object.

@@ -1849,7 +1849,7 @@ The creator of this object.

The "date" property

-
  "date"                     gchar*                : Read / Write
+
  "date"                     gchar*                : Read / Write

The date of this object.

@@ -1858,7 +1858,7 @@ The date of this object.

The "dc-namespace" property

-
  "dc-namespace"             gpointer              : Read / Write / Construct Only
+
  "dc-namespace"             gpointer              : Read / Write / Construct Only

Pointer to the DublinCore namespace registered with the XML document containing this object. @@ -1867,7 +1867,7 @@ containing this object.


The "description" property

-
  "description"              gchar*                : Read / Write
+
  "description"              gchar*                : Read / Write

The description of this object.

@@ -1884,7 +1884,7 @@ The 'dlna:dlnaManaged' attribute.

The "dlna-namespace" property

-
  "dlna-namespace"           gpointer              : Read / Write / Construct Only
+
  "dlna-namespace"           gpointer              : Read / Write / Construct Only

Pointer to the DLNA metadata namespace registered with the XML document containing this object. @@ -1893,7 +1893,7 @@ document containing this object.


The "genre" property

-
  "genre"                    gchar*                : Read / Write
+
  "genre"                    gchar*                : Read / Write

The genre of this object.

@@ -1902,7 +1902,7 @@ The genre of this object.

The "id" property

-
  "id"                       gchar*                : Read / Write
+
  "id"                       gchar*                : Read / Write

The ID of this object.

@@ -1911,7 +1911,7 @@ The ID of this object.

The "parent-id" property

-
  "parent-id"                gchar*                : Read / Write
+
  "parent-id"                gchar*                : Read / Write

The ID of the parent container of this object.

@@ -1920,7 +1920,7 @@ The ID of the parent container of this object.

The "restricted" property

-
  "restricted"               gboolean              : Read / Write
+
  "restricted"               gboolean              : Read / Write

Whether this object is restricted.

@@ -1929,7 +1929,7 @@ Whether this object is restricted.

The "title" property

-
  "title"                    gchar*                : Read / Write
+
  "title"                    gchar*                : Read / Write

The title of this object.

@@ -1938,17 +1938,17 @@ The title of this object.

The "track-number" property

-
  "track-number"             gint                  : Read / Write
+
  "track-number"             gint                  : Read / Write

The original track number of this object.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "update-id" property

-
  "update-id"                guint                 : Read / Write
+
  "update-id"                guint                 : Read / Write

Update ID of this object.

@@ -1957,7 +1957,7 @@ Update ID of this object.

The "upnp-class" property

-
  "upnp-class"               gchar*                : Read / Write
+
  "upnp-class"               gchar*                : Read / Write

The UPnP class of this object.

@@ -1966,7 +1966,7 @@ The UPnP class of this object.

The "upnp-namespace" property

-
  "upnp-namespace"           gpointer              : Read / Write / Construct Only
+
  "upnp-namespace"           gpointer              : Read / Write / Construct Only

Pointer to the UPnP namespace registered with the XML document containing this object. @@ -1975,7 +1975,7 @@ containing this object.


The "write-status" property

-
  "write-status"             gchar*                : Read / Write
+
  "write-status"             gchar*                : Read / Write

The write status of this object.

@@ -1984,7 +1984,7 @@ The write status of this object.

The "xml-doc" property

-
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only

The reference to XML document containing this object.

@@ -1996,7 +1996,7 @@ Internal property.

The "xml-node" property

-
  "xml-node"                 gpointer              : Read / Write / Construct Only
+
  "xml-node"                 gpointer              : Read / Write / Construct Only

The pointer to object node in XML document.

diff --git a/doc/html/GUPnPDIDLLiteParser.html b/doc/html/GUPnPDIDLLiteParser.html index 15ef2d3..2c0ea0e 100644 --- a/doc/html/GUPnPDIDLLiteParser.html +++ b/doc/html/GUPnPDIDLLiteParser.html @@ -43,24 +43,24 @@

Synopsis

                    GUPnPDIDLLiteParser;
 GUPnPDIDLLiteParser * gupnp_didl_lite_parser_new        (void);
-gboolean            gupnp_didl_lite_parser_parse_didl   (GUPnPDIDLLiteParser *parser,
+gboolean            gupnp_didl_lite_parser_parse_didl   (GUPnPDIDLLiteParser *parser,
                                                          const char *didl,
-                                                         GError **error);
+                                                         GError **error);
 

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteParser
 
@@ -90,9 +90,9 @@

gupnp_didl_lite_parser_parse_didl ()

-
gboolean            gupnp_didl_lite_parser_parse_didl   (GUPnPDIDLLiteParser *parser,
+
gboolean            gupnp_didl_lite_parser_parse_didl   (GUPnPDIDLLiteParser *parser,
                                                          const char *didl,
-                                                         GError **error);
+ GError **error);

Parses DIDL-Lite XML string didl, emitting the ::object-available, ::item-available and ::container-available signals appropriately during the @@ -128,7 +128,7 @@ process.

The "container-available" signal

void                user_function                      (GUPnPDIDLLiteParser    *parser,
                                                         GUPnPDIDLLiteContainer *container,
-                                                        gpointer                user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::container-available signal is emitted each time a container is found in the DIDL-Lite XML being parsed. @@ -157,7 +157,7 @@ found in the DIDL-Lite XML being parsed.

The "item-available" signal

void                user_function                      (GUPnPDIDLLiteParser *parser,
                                                         GUPnPDIDLLiteItem   *item,
-                                                        gpointer             user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::item-available signal is emitted each time an item is found in the DIDL-Lite XML being parsed. @@ -186,7 +186,7 @@ the DIDL-Lite XML being parsed.

The "object-available" signal

void                user_function                      (GUPnPDIDLLiteParser *parser,
                                                         GUPnPDIDLLiteObject *object,
-                                                        gpointer             user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::object-available signal is emitted each time an object is found in the DIDL-Lite XML being parsed. diff --git a/doc/html/GUPnPDIDLLiteResource.html b/doc/html/GUPnPDIDLLiteResource.html index 2b6fde6..dc29d40 100644 --- a/doc/html/GUPnPDIDLLiteResource.html +++ b/doc/html/GUPnPDIDLLiteResource.html @@ -51,12 +51,12 @@ (GUPnPDIDLLiteResource *resource, GUPnPProtocolInfo *info); void gupnp_didl_lite_resource_set_size (GUPnPDIDLLiteResource *resource, - glong size); + glong size); void gupnp_didl_lite_resource_set_size64 (GUPnPDIDLLiteResource *resource, gint64 size); void gupnp_didl_lite_resource_set_duration (GUPnPDIDLLiteResource *resource, - glong duration); + glong duration); void gupnp_didl_lite_resource_set_bitrate (GUPnPDIDLLiteResource *resource, int bitrate); @@ -104,44 +104,44 @@ const char * GUPnPDIDLLiteResource *resource); xmlNode * gupnp_didl_lite_resource_get_xml_node (GUPnPDIDLLiteResource *resource); -guint gupnp_didl_lite_resource_get_update_count +guint gupnp_didl_lite_resource_get_update_count (GUPnPDIDLLiteResource *resource); void gupnp_didl_lite_resource_set_update_count (GUPnPDIDLLiteResource *resource, - guint update_count); + guint update_count); void gupnp_didl_lite_resource_unset_update_count (GUPnPDIDLLiteResource *resource); -gboolean gupnp_didl_lite_resource_update_count_is_set +gboolean gupnp_didl_lite_resource_update_count_is_set (GUPnPDIDLLiteResource *resource);

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteResource
 

Properties

-  "audio-channels"           gint                  : Read / Write
-  "bitrate"                  gint                  : Read / Write
-  "bits-per-sample"          gint                  : Read / Write
-  "color-depth"              gint                  : Read / Write
-  "duration"                 glong                 : Read / Write
-  "height"                   gint                  : Read / Write
-  "import-uri"               gchar*                : Read / Write
-  "protection"               gchar*                : Read / Write
+  "audio-channels"           gint                  : Read / Write
+  "bitrate"                  gint                  : Read / Write
+  "bits-per-sample"          gint                  : Read / Write
+  "color-depth"              gint                  : Read / Write
+  "duration"                 glong                 : Read / Write
+  "height"                   gint                  : Read / Write
+  "import-uri"               gchar*                : Read / Write
+  "protection"               gchar*                : Read / Write
   "protocol-info"            GUPnPProtocolInfo*    : Read / Write
-  "sample-freq"              gint                  : Read / Write
-  "size"                     glong                 : Read / Write
+  "sample-freq"              gint                  : Read / Write
+  "size"                     glong                 : Read / Write
   "size64"                   gint64                : Read / Write
-  "update-count"             guint                 : Read / Write
-  "uri"                      gchar*                : Read / Write
-  "width"                    gint                  : Read / Write
-  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
-  "xml-node"                 gpointer              : Read / Write / Construct Only
+  "update-count"             guint                 : Read / Write
+  "uri"                      gchar*                : Read / Write
+  "width"                    gint                  : Read / Write
+  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+  "xml-node"                 gpointer              : Read / Write / Construct Only
 
@@ -243,7 +243,7 @@ Set the protocol info associated with the resource

gupnp_didl_lite_resource_set_size ()

void                gupnp_didl_lite_resource_set_size   (GUPnPDIDLLiteResource *resource,
-                                                         glong size);
+ glong size);

Set the size (in bytes) of the resource. Passing a negative number will unset this property. @@ -300,7 +300,7 @@ unset this property.

gupnp_didl_lite_resource_set_duration ()

void                gupnp_didl_lite_resource_set_duration
                                                         (GUPnPDIDLLiteResource *resource,
-                                                         glong duration);
+ glong duration);

Set the duration (in seconds) of the resource. Passing a negative number will unset this property. @@ -571,7 +571,7 @@ Get the URI associated with the resource

Returns :

-The of URI the resource or NULL. +The of URI the resource or NULL.
@@ -594,7 +594,7 @@ Get the import URI associated with the resource

Returns :

-The import URI or NULL. +The import URI or NULL. @@ -617,7 +617,7 @@ Get the protocol info associated with the resource

Returns :

-The protocol info associated with the resource or NULL. The +The protocol info associated with the resource or NULL. The returned object must not be unrefed. [transfer none] @@ -778,7 +778,7 @@ Get the protection system used by the resource

Returns :

-The protection system in use by the resource or NULL. +The protection system in use by the resource or NULL. @@ -900,7 +900,7 @@ Get the pointer to res node in XML document.

gupnp_didl_lite_resource_get_update_count ()

-
guint               gupnp_didl_lite_resource_get_update_count
+
guint               gupnp_didl_lite_resource_get_update_count
                                                         (GUPnPDIDLLiteResource *resource);

Get the update count of this resource. @@ -925,7 +925,7 @@ Get the update count of this resource.

gupnp_didl_lite_resource_set_update_count ()

void                gupnp_didl_lite_resource_set_update_count
                                                         (GUPnPDIDLLiteResource *resource,
-                                                         guint update_count);
+ guint update_count);

Set the update count of this resource.

@@ -974,7 +974,7 @@ Unset the update count of this resource.

gupnp_didl_lite_resource_update_count_is_set ()

-
gboolean            gupnp_didl_lite_resource_update_count_is_set
+
gboolean            gupnp_didl_lite_resource_update_count_is_set
                                                         (GUPnPDIDLLiteResource *resource);

Check whether the update count property of this resource is set. @@ -990,7 +990,7 @@ Check whether the update count property of this resource is set.

Returns :

-TRUE if set, otherwise FALSE. +TRUE if set, otherwise FALSE.
@@ -1000,47 +1000,47 @@ Check whether the update count property of this resource is set.

Property Details

The "audio-channels" property

-
  "audio-channels"           gint                  : Read / Write
+
  "audio-channels"           gint                  : Read / Write

The number of audio channels in this resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "bitrate" property

-
  "bitrate"                  gint                  : Read / Write
+
  "bitrate"                  gint                  : Read / Write

The bitrate of this resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "bits-per-sample" property

-
  "bits-per-sample"          gint                  : Read / Write
+
  "bits-per-sample"          gint                  : Read / Write

The sample size of this resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "color-depth" property

-
  "color-depth"              gint                  : Read / Write
+
  "color-depth"              gint                  : Read / Write

The color-depth of this image/video resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "duration" property

-
  "duration"                 glong                 : Read / Write
+
  "duration"                 glong                 : Read / Write

The duration (in seconds) of this resource.

@@ -1050,17 +1050,17 @@ The duration (in seconds) of this resource.

The "height" property

-
  "height"                   gint                  : Read / Write
+
  "height"                   gint                  : Read / Write

The height of this image/video resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "import-uri" property

-
  "import-uri"               gchar*                : Read / Write
+
  "import-uri"               gchar*                : Read / Write

The Import URI associated with this resource.

@@ -1069,7 +1069,7 @@ The Import URI associated with this resource.

The "protection" property

-
  "protection"               gchar*                : Read / Write
+
  "protection"               gchar*                : Read / Write

The protection system used for this resource.

@@ -1086,17 +1086,17 @@ The protocol info associated with this resource.

The "sample-freq" property

-
  "sample-freq"              gint                  : Read / Write
+
  "sample-freq"              gint                  : Read / Write

The sample frequency of this resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "size" property

-
  "size"                     glong                 : Read / Write
+
  "size"                     glong                 : Read / Write

The size (in bytes) of this resource.

@@ -1116,14 +1116,14 @@ The size (in bytes) of this resource.

The "update-count" property

-
  "update-count"             guint                 : Read / Write
+
  "update-count"             guint                 : Read / Write

The update count of this resource.

Default value: 0


The "uri" property

-
  "uri"                      gchar*                : Read / Write
+
  "uri"                      gchar*                : Read / Write

The URI associated with this resource.

@@ -1132,17 +1132,17 @@ The URI associated with this resource.

The "width" property

-
  "width"                    gint                  : Read / Write
+
  "width"                    gint                  : Read / Write

The width of this image/video resource.

-

Allowed values: >= -1

+

Allowed values: >= G_MAXULONG

Default value: -1


The "xml-doc" property

-
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only
+
  "xml-doc"                  GUPnPXMLDoc*          : Write / Construct Only

The reference to XML document containing this object.

@@ -1154,7 +1154,7 @@ Internal property.

The "xml-node" property

-
  "xml-node"                 gpointer              : Read / Write / Construct Only
+
  "xml-node"                 gpointer              : Read / Write / Construct Only

The pointer to res node in XML document.

diff --git a/doc/html/GUPnPDIDLLiteWriter.html b/doc/html/GUPnPDIDLLiteWriter.html index 68350b3..9ffb196 100644 --- a/doc/html/GUPnPDIDLLiteWriter.html +++ b/doc/html/GUPnPDIDLLiteWriter.html @@ -58,15 +58,15 @@ const char *

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPDIDLLiteWriter
 

Properties

-  "language"                 gchar*                : Read / Write / Construct Only
-  "xml-node"                 gpointer              : Read
+  "language"                 gchar*                : Read / Write / Construct Only
+  "xml-node"                 gpointer              : Read
 
@@ -211,7 +211,7 @@ Creates a string representation of the DIDL-Lite XML document.

Returns :

-The DIDL-Lite XML string, or NULL. g_free after usage. +The DIDL-Lite XML string, or NULL. g_free after usage.
@@ -232,7 +232,7 @@ Get the language the DIDL-Lite fragment is in.

Returns :

-The language of the writer, or NULL. [transfer none] +The language of the writer, or NULL. [transfer none] @@ -274,7 +274,7 @@ specification for details on this string.

Property Details

The "language" property

-
  "language"                 gchar*                : Read / Write / Construct Only
+
  "language"                 gchar*                : Read / Write / Construct Only

The language the DIDL-Lite fragment is in.

@@ -283,7 +283,7 @@ The language the DIDL-Lite fragment is in.

The "xml-node" property

-
  "xml-node"                 gpointer              : Read
+
  "xml-node"                 gpointer              : Read

The pointer to root node in XML document.

diff --git a/doc/html/GUPnPFeature.html b/doc/html/GUPnPFeature.html index 1a6c24c..8b29095 100644 --- a/doc/html/GUPnPFeature.html +++ b/doc/html/GUPnPFeature.html @@ -50,16 +50,16 @@ const char *

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPFeature
 

Properties

-  "name"                     gchar*                : Read / Write / Construct Only
-  "object-ids"               gchar*                : Read / Write / Construct Only
-  "version"                  gchar*                : Read / Write / Construct Only
+  "name"                     gchar*                : Read / Write / Construct Only
+  "object-ids"               gchar*                : Read / Write / Construct Only
+  "version"                  gchar*                : Read / Write / Construct Only
 
@@ -142,7 +142,7 @@ Get the object IDs related to the feature

Property Details

The "name" property

-
  "name"                     gchar*                : Read / Write / Construct Only
+
  "name"                     gchar*                : Read / Write / Construct Only

The name of this feature.

@@ -151,7 +151,7 @@ The name of this feature.

The "object-ids" property

-
  "object-ids"               gchar*                : Read / Write / Construct Only
+
  "object-ids"               gchar*                : Read / Write / Construct Only

The object IDs related to this feature.

@@ -160,7 +160,7 @@ The object IDs related to this feature.

The "version" property

-
  "version"                  gchar*                : Read / Write / Construct Only
+
  "version"                  gchar*                : Read / Write / Construct Only

The version of this feature.

diff --git a/doc/html/GUPnPFeatureListParser.html b/doc/html/GUPnPFeatureListParser.html index 0f30e45..ab070be 100644 --- a/doc/html/GUPnPFeatureListParser.html +++ b/doc/html/GUPnPFeatureListParser.html @@ -41,16 +41,16 @@

Synopsis

                    GUPnPFeatureListParser;
 GUPnPFeatureListParser * gupnp_feature_list_parser_new  (void);
-GList *             gupnp_feature_list_parser_parse_text
+GList *             gupnp_feature_list_parser_parse_text
                                                         (GUPnPFeatureListParser *parser,
                                                          const char *text,
-                                                         GError **error);
+                                                         GError **error);
 

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPFeatureListParser
 
@@ -82,10 +82,10 @@ FeatureList state variable.

gupnp_feature_list_parser_parse_text ()

-
GList *             gupnp_feature_list_parser_parse_text
+
GList *             gupnp_feature_list_parser_parse_text
                                                         (GUPnPFeatureListParser *parser,
                                                          const char *text,
-                                                         GError **error);
+ GError **error);

Parses text and returns the list of available features. If an error occured error will be set. @@ -109,7 +109,7 @@ If an error occured error will be set.

Returns :

The list of -features or NULL if an error occured. [transfer full][element-type GUPnPFeature] +features or NULL if an error occured. [transfer full][element-type GUPnPFeature] diff --git a/doc/html/GUPnPLastChangeParser.html b/doc/html/GUPnPLastChangeParser.html index eac3d3b..51bfd5a 100644 --- a/doc/html/GUPnPLastChangeParser.html +++ b/doc/html/GUPnPLastChangeParser.html @@ -41,24 +41,24 @@

Synopsis

                    GUPnPLastChangeParser;
 GUPnPLastChangeParser * gupnp_last_change_parser_new    (void);
-gboolean            gupnp_last_change_parser_parse_last_change_valist
+gboolean            gupnp_last_change_parser_parse_last_change_valist
                                                         (GUPnPLastChangeParser *parser,
-                                                         guint instance_id,
+                                                         guint instance_id,
                                                          const char *last_change_xml,
-                                                         GError **error,
+                                                         GError **error,
                                                          va_list var_args);
-gboolean            gupnp_last_change_parser_parse_last_change
+gboolean            gupnp_last_change_parser_parse_last_change
                                                         (GUPnPLastChangeParser *parser,
-                                                         guint instance_id,
+                                                         guint instance_id,
                                                          const char *last_change_xml,
-                                                         GError **error,
+                                                         GError **error,
                                                          ...);
 

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPLastChangeParser
 
@@ -91,11 +91,11 @@ generated by AVTransport and RenderingControl services.

gupnp_last_change_parser_parse_last_change_valist ()

-
gboolean            gupnp_last_change_parser_parse_last_change_valist
+
gboolean            gupnp_last_change_parser_parse_last_change_valist
                                                         (GUPnPLastChangeParser *parser,
-                                                         guint instance_id,
+                                                         guint instance_id,
                                                          const char *last_change_xml,
-                                                         GError **error,
+                                                         GError **error,
                                                          va_list var_args);

See gupnp_last_change_parser_parse_last_change(); this version takes a @@ -137,11 +137,11 @@ values should be freed after use


gupnp_last_change_parser_parse_last_change ()

-
gboolean            gupnp_last_change_parser_parse_last_change
+
gboolean            gupnp_last_change_parser_parse_last_change
                                                         (GUPnPLastChangeParser *parser,
-                                                         guint instance_id,
+                                                         guint instance_id,
                                                          const char *last_change_xml,
-                                                         GError **error,
+                                                         GError **error,
                                                          ...);

Parses the xml fragment from a LastChange event. diff --git a/doc/html/GUPnPMediaCollection.html b/doc/html/GUPnPMediaCollection.html index 3f9071e..f45765a 100644 --- a/doc/html/GUPnPMediaCollection.html +++ b/doc/html/GUPnPMediaCollection.html @@ -53,24 +53,24 @@ const char * char * gupnp_media_collection_get_author (GUPnPMediaCollection *collection); GUPnPDIDLLiteItem * gupnp_media_collection_add_item (GUPnPMediaCollection *collection); char * gupnp_media_collection_get_string (GUPnPMediaCollection *collection); -GList * gupnp_media_collection_get_items (GUPnPMediaCollection *collection); -gboolean gupnp_media_collection_get_mutable (GUPnPMediaCollection *collection); +GList * gupnp_media_collection_get_items (GUPnPMediaCollection *collection); +gboolean gupnp_media_collection_get_mutable (GUPnPMediaCollection *collection);

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPMediaCollection
 

Properties

-  "author"                   gchar*                : Read / Write / Construct
-  "data"                     gchar*                : Write / Construct Only
-  "mutable"                  gboolean              : Read
-  "title"                    gchar*                : Read / Write / Construct
+  "author"                   gchar*                : Read / Write / Construct
+  "data"                     gchar*                : Write / Construct Only
+  "mutable"                  gboolean              : Read
+  "title"                    gchar*                : Read / Write / Construct
 
@@ -199,7 +199,7 @@ Set the author of the media collection

Returns :

-The author of this media collection or NULL if not set. +The author of this media collection or NULL if not set.
@@ -238,7 +238,7 @@ use. [Returns :

XML string representing this media -collection. g_free() after use. If the colleciton is not mutable, returns a +collection. g_free() after use. If the colleciton is not mutable, returns a copy of the original string. [transfer full] @@ -248,7 +248,7 @@ copy of the original string. [

gupnp_media_collection_get_items ()

-
GList *             gupnp_media_collection_get_items    (GUPnPMediaCollection *collection);
+
GList *             gupnp_media_collection_get_items    (GUPnPMediaCollection *collection);
@@ -258,7 +258,7 @@ copy of the original string. [Returns :

- @@ -269,7 +269,7 @@ and free the list after use. [

gupnp_media_collection_get_mutable ()

-
gboolean            gupnp_media_collection_get_mutable  (GUPnPMediaCollection *collection);
+
gboolean            gupnp_media_collection_get_mutable  (GUPnPMediaCollection *collection);
A GList +A GList containing the elemens of this collection, in proper order. Unref all items and free the list after use. [transfer full][element-type GUPnPDIDLLiteItem]
@@ -280,7 +280,7 @@ and free the list after use. [Returns :

+TRUE if the collections is modifiable, FALSE otherwise.
-TRUE if the collections is modifiable, FALSE otherwise.
@@ -290,7 +290,7 @@ and free the list after use. [

Property Details

The "author" property

-
  "author"                   gchar*                : Read / Write / Construct
+
  "author"                   gchar*                : Read / Write / Construct

The author of this media collection.

@@ -299,7 +299,7 @@ The author of this media collection.

The "data" property

-
  "data"                     gchar*                : Write / Construct Only
+
  "data"                     gchar*                : Write / Construct Only

Block of data to parse a collection from. If data is set upon construction it will override the other properties and create a @@ -310,7 +310,7 @@ unmutable collection parsed from data.


The "mutable" property

-
  "mutable"                  gboolean              : Read
+
  "mutable"                  gboolean              : Read

Whether this media collation is modifyable or not.

@@ -319,7 +319,7 @@ Whether this media collation is modifyable or not.

The "title" property

-
  "title"                    gchar*                : Read / Write / Construct
+
  "title"                    gchar*                : Read / Write / Construct

The title of this media collection.

diff --git a/doc/html/GUPnPProtocolInfo.html b/doc/html/GUPnPProtocolInfo.html index f852a1d..55286e2 100644 --- a/doc/html/GUPnPProtocolInfo.html +++ b/doc/html/GUPnPProtocolInfo.html @@ -47,9 +47,9 @@ enum GUPnPDLNAOperation; GUPnPProtocolInfo * gupnp_protocol_info_new (void); GUPnPProtocolInfo * gupnp_protocol_info_new_from_string (const char *protocol_info, - GError **error); + GError **error); char * gupnp_protocol_info_to_string (GUPnPProtocolInfo *info); -gboolean gupnp_protocol_info_is_compatible (GUPnPProtocolInfo *info1, +gboolean gupnp_protocol_info_is_compatible (GUPnPProtocolInfo *info1, GUPnPProtocolInfo *info2); void gupnp_protocol_info_set_protocol (GUPnPProtocolInfo *info, const char *protocol); @@ -86,7 +86,7 @@ const char **

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPProtocolInfo
 
@@ -96,11 +96,11 @@ const char ** dlna-conversion" GUPnPDLNAConversion : Read / Write "dlna-flags" GUPnPDLNAFlags : Read / Write "dlna-operation" GUPnPDLNAOperation : Read / Write - "dlna-profile" gchar* : Read / Write - "mime-type" gchar* : Read / Write - "network" gchar* : Read / Write - "play-speeds" GStrv : Read / Write - "protocol" gchar* : Read / Write + "dlna-profile" gchar* : Read / Write + "mime-type" gchar* : Read / Write + "network" gchar* : Read / Write + "play-speeds" GStrv : Read / Write + "protocol" gchar* : Read / Write
@@ -291,7 +291,7 @@ The seek operations supported by a resource.

gupnp_protocol_info_new_from_string ()

GUPnPProtocolInfo * gupnp_protocol_info_new_from_string (const char *protocol_info,
-                                                         GError **error);
+ GError **error);

Parses the protocol_info string and creates a new GUPnPProtocolInfo object as a result. @@ -331,7 +331,7 @@ Provides the string representation of info

Returns :

-String representation of info. g_free after usage. +String representation of info. g_free after usage.
@@ -339,7 +339,7 @@ Provides the string representation of info

gupnp_protocol_info_is_compatible ()

-
gboolean            gupnp_protocol_info_is_compatible   (GUPnPProtocolInfo *info1,
+
gboolean            gupnp_protocol_info_is_compatible   (GUPnPProtocolInfo *info1,
                                                          GUPnPProtocolInfo *info2);

Checks if the given protocolInfo string is compatible with info. @@ -360,8 +360,8 @@ Checks if the given protocolInfo string is compatible with

Returns :

-TRUE if protocol_info is compatible with info, otherwise -FALSE. +TRUE if protocol_info is compatible with info, otherwise +FALSE.
@@ -602,7 +602,7 @@ Get the protocol of this info.

Returns :

-The protocol of this info or NULL. This string should not +The protocol of this info or NULL. This string should not be freed. @@ -625,7 +625,7 @@ Get the network this info is associated with.

Returns :

-The network string or NULL. This string should not be freed. +The network string or NULL. This string should not be freed.
@@ -647,7 +647,7 @@ Get the MIME-type of this info.

Returns :

-The MIME-type of this info or NULL. This string should not +The MIME-type of this info or NULL. This string should not be freed. @@ -671,7 +671,7 @@ Get the DLNA profile of this info.

Returns :

-The DLNA profile of this info or NULL. This string should +The DLNA profile of this info or NULL. This string should not be freed. @@ -694,7 +694,7 @@ Get the allowed play speeds on this info in the form of array of strings.

Returns :

-The allowed play speeds as array of strings or NULL. This +The allowed play speeds as array of strings or NULL. This return array and it's content must not be modified or freed. [transfer none] @@ -798,7 +798,7 @@ The DLNA operation flags.

The "dlna-profile" property

-
  "dlna-profile"             gchar*                : Read / Write
+
  "dlna-profile"             gchar*                : Read / Write

The DLNA profile of this info.

@@ -807,7 +807,7 @@ The DLNA profile of this info.

The "mime-type" property

-
  "mime-type"                gchar*                : Read / Write
+
  "mime-type"                gchar*                : Read / Write

The MIME-type of this info.

@@ -816,7 +816,7 @@ The MIME-type of this info.

The "network" property

-
  "network"                  gchar*                : Read / Write
+
  "network"                  gchar*                : Read / Write

The network this info is associated with.

@@ -825,7 +825,7 @@ The network this info is associated with.

The "play-speeds" property

-
  "play-speeds"              GStrv                 : Read / Write
+
  "play-speeds"              GStrv                 : Read / Write

The allowed play speeds on this info in the form of array of strings. @@ -834,7 +834,7 @@ strings.


The "protocol" property

-
  "protocol"                 gchar*                : Read / Write
+
  "protocol"                 gchar*                : Read / Write

The protocol of this info.

diff --git a/doc/html/GUPnPSearchCriteriaParser.html b/doc/html/GUPnPSearchCriteriaParser.html index 159614d..4d4115f 100644 --- a/doc/html/GUPnPSearchCriteriaParser.html +++ b/doc/html/GUPnPSearchCriteriaParser.html @@ -45,16 +45,16 @@ enum GUPnPSearchCriteriaOp; GUPnPSearchCriteriaParser * gupnp_search_criteria_parser_new (void); -gboolean gupnp_search_criteria_parser_parse_text +gboolean gupnp_search_criteria_parser_parse_text (GUPnPSearchCriteriaParser *parser, const char *text, - GError **error); + GError **error);

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPSearchCriteriaParser
 
@@ -65,11 +65,11 @@ enum                
 

Signals

-  "begin-parens"                                   : Run Last
-  "conjunction"                                    : Run Last
-  "disjunction"                                    : Run Last
-  "end-parens"                                     : Run Last
-  "expression"                                     : Run Last
+  "begin-parens"                                   : Run Last
+  "conjunction"                                    : Run Last
+  "disjunction"                                    : Run Last
+  "end-parens"                                     : Run Last
+  "expression"                                     : Run Last
 
@@ -184,10 +184,10 @@ The possible operators in SearchCriteria strings.

gupnp_search_criteria_parser_parse_text ()

-
gboolean            gupnp_search_criteria_parser_parse_text
+
gboolean            gupnp_search_criteria_parser_parse_text
                                                         (GUPnPSearchCriteriaParser *parser,
                                                          const char *text,
-                                                         GError **error);
+ GError **error);

Parses text, emitting the various defined signals on the way. If an error occured error will be set. @@ -221,7 +221,7 @@ error occured error will be set.

The "begin-parens" signal

void                user_function                      (GUPnPSearchCriteriaParser *parser,
-                                                        gpointer                   user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::begin_parens signal is emitted to mark the beginning of a parenthetical expression. @@ -244,7 +244,7 @@ parenthetical expression.

The "conjunction" signal

void                user_function                      (GUPnPSearchCriteriaParser *parser,
-                                                        gpointer                   user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::conjuction signal is emitted whenever a conjuction marker (and) is parsed. @@ -267,7 +267,7 @@ The ::conjuction signal is emitted whenever a conjuction marker

The "disjunction" signal

void                user_function                      (GUPnPSearchCriteriaParser *parser,
-                                                        gpointer                   user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::disjuction signal is emitted whenever a disjuction marker (or&rpar is parsed. @@ -290,7 +290,7 @@ The ::disjuction signal is emitted whenever a disjuction marker

The "end-parens" signal

void                user_function                      (GUPnPSearchCriteriaParser *parser,
-                                                        gpointer                   user_data)      : Run Last
+ gpointer user_data) : Run Last

The ::end_parens signal is emitted to mark the end of a parenthetical expression. @@ -312,15 +312,15 @@ expression.


The "expression" signal

-
gboolean            user_function                      (GUPnPSearchCriteriaParser *parser,
-                                                        gchar                     *property,
+
gboolean            user_function                      (GUPnPSearchCriteriaParser *parser,
+                                                        gchar                     *property,
                                                         GUPnPSearchCriteriaOp      op,
-                                                        gchar                     *value,
-                                                        gpointer                   error,
-                                                        gpointer                   user_data)      : Run Last
+ gchar *value, + gpointer error, + gpointer user_data) : Run Last

The ::expression signal is emitted whenever an expression is parsed. -Set error and return FALSE if an error occurred. +Set error and return FALSE if an error occurred.

diff --git a/doc/html/ch01.html b/doc/html/ch01.html index 03bb716..6d32cb3 100644 --- a/doc/html/ch01.html +++ b/doc/html/ch01.html @@ -21,7 +21,7 @@

-GUPnP A/V

+GUPnP A/V
GUPnPDIDLLiteParser — A/V DIDL-Lite XML parser diff --git a/doc/html/ch02.html b/doc/html/ch02.html index 5c10bff..5a7d010 100644 --- a/doc/html/ch02.html +++ b/doc/html/ch02.html @@ -21,7 +21,7 @@

-Error Codes

+Error Codes
Error codes — Error domains and codes.
diff --git a/doc/html/gupnp-av-Error-codes.html b/doc/html/gupnp-av-Error-codes.html index 028207f..cad50ce 100644 --- a/doc/html/gupnp-av-Error-codes.html +++ b/doc/html/gupnp-av-Error-codes.html @@ -53,13 +53,13 @@ enum #define GUPNP_PROTOCOL_ERROR (gupnp_protocol_error_quark ())

-The GQuark uniquely used by GUPnP AV protocol related errors. +The GQuark uniquely used by GUPnP AV protocol related errors.

- +

Returns :

a GQuark uniquely used by GUPnP AV protocol related errors.a GQuark uniquely used by GUPnP AV protocol related errors.
@@ -77,7 +77,7 @@ The GQuark uniquely used by GUPnP AV protocol related } GUPnPProtocolError;

-GError codes used for errors in the GUPNP_PROTOCOL_ERROR domain, upon any +GError codes used for errors in the GUPNP_PROTOCOL_ERROR domain, upon any protocol related errors.

diff --git a/doc/html/gupnp-av-GUPnPDIDLLiteCreateClass.html b/doc/html/gupnp-av-GUPnPDIDLLiteCreateClass.html index 448ad52..5c86625 100644 --- a/doc/html/gupnp-av-GUPnPDIDLLiteCreateClass.html +++ b/doc/html/gupnp-av-GUPnPDIDLLiteCreateClass.html @@ -43,11 +43,11 @@ const char * void gupnp_didl_lite_create_class_set_content (GUPnPDIDLLiteCreateClass *create_class, const char *content); -gbooleangupnp_didl_lite_create_class_get_include_derived +gbooleangupnp_didl_lite_create_class_get_include_derived (GUPnPDIDLLiteCreateClass *create_class); voidgupnp_didl_lite_create_class_set_include_derived (GUPnPDIDLLiteCreateClass *create_class, - gboolean include_derived); + gboolean include_derived); const char * gupnp_didl_lite_create_class_get_friendly_name (GUPnPDIDLLiteCreateClass *create_class); voidgupnp_didl_lite_create_class_set_friendly_name @@ -91,7 +91,7 @@ Get the content of the create_class. - +

Returns :

The Content of the create_class, or NULL.The Content of the create_class, or NULL.
@@ -122,7 +122,7 @@ Set the content of the create_class.

gupnp_didl_lite_create_class_get_include_derived ()

-
gboolean            gupnp_didl_lite_create_class_get_include_derived
+
gboolean            gupnp_didl_lite_create_class_get_include_derived
                                                         (GUPnPDIDLLiteCreateClass *create_class);

Checks whether create_class can be derived. @@ -137,7 +137,7 @@ Checks whether create_class can be deriv

Returns :

-TRUE if create_class can be derived. +TRUE if create_class can be derived.
@@ -147,7 +147,7 @@ Checks whether create_class can be deriv

gupnp_didl_lite_create_class_set_include_derived ()

void                gupnp_didl_lite_create_class_set_include_derived
                                                         (GUPnPDIDLLiteCreateClass *create_class,
-                                                         gboolean include_derived);
+ gboolean include_derived);

(Un)set the derivability of create_class.

@@ -182,7 +182,7 @@ Get the friendly name of the create_class

Returns :

-The FriendlyName of the create_class, or NULL. +The FriendlyName of the create_class, or NULL.
diff --git a/doc/html/index.html b/doc/html/index.html index 6425cbb..aef1106 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -14,13 +14,13 @@
-

Version 0.11.7 +

Version 0.12.0

-

+

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later diff --git a/doc/version.xml b/doc/version.xml index b80f98e..ac454c6 100644 --- a/doc/version.xml +++ b/doc/version.xml @@ -1 +1 @@ -0.11.7 +0.12.0 diff --git a/libgupnp-av/Makefile.in b/libgupnp-av/Makefile.in index 6b42481..23ea5b1 100644 --- a/libgupnp-av/Makefile.in +++ b/libgupnp-av/Makefile.in @@ -216,6 +216,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -414,7 +415,7 @@ all: $(BUILT_SOURCES) .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -439,9 +440,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) diff --git a/libgupnp-av/fragment-util.c b/libgupnp-av/fragment-util.c index 32792ec..29deb08 100644 --- a/libgupnp-av/fragment-util.c +++ b/libgupnp-av/fragment-util.c @@ -102,6 +102,29 @@ get_toplevel_changes (xmlNodePtr current_node, return changes; } +#if GLIB_CHECK_VERSION (2, 32, 0) + +#define hash_table_contains g_hash_table_contains +#define hash_table_add g_hash_table_add + +#else + +static gboolean +hash_table_contains (GHashTable *table, + gpointer key) +{ + return g_hash_table_lookup_extended (table, key, NULL, NULL); +} + +static void +hash_table_add (GHashTable *table, + gpointer key) +{ + g_hash_table_replace (table, key, key); +} + +#endif + static gboolean is_read_only (const gchar *changed_element, const gchar *changed_attribute) @@ -113,41 +136,41 @@ is_read_only (const gchar *changed_element, readonly_props = g_hash_table_new (g_str_hash, g_str_equal); - g_hash_table_add (readonly_props, "@id"); - g_hash_table_add (readonly_props, "@parentID"); - g_hash_table_add (readonly_props, "@refID"); - g_hash_table_add (readonly_props, "@restricted"); - g_hash_table_add (readonly_props, "@searchable"); - g_hash_table_add (readonly_props, "@childCount"); - g_hash_table_add (readonly_props, "searchClass"); - g_hash_table_add (readonly_props, "searchClass@name"); - g_hash_table_add (readonly_props, "searchClass@includeDerived"); - g_hash_table_add (readonly_props, "createClass"); - g_hash_table_add (readonly_props, "createClass@name"); - g_hash_table_add (readonly_props, "createClass@includeDerived"); - g_hash_table_add (readonly_props, "writeStatus"); - g_hash_table_add (readonly_props, "res@importUri"); - g_hash_table_add (readonly_props, "storageTotal"); - g_hash_table_add (readonly_props, "storageUsed"); - g_hash_table_add (readonly_props, "storageFree"); - g_hash_table_add (readonly_props, "storageMaxPartition"); - g_hash_table_add (readonly_props, "storageMedium"); - g_hash_table_add (readonly_props, "playbackCount"); - g_hash_table_add (readonly_props, "srsRecordScheduleID"); - g_hash_table_add (readonly_props, "srsRecordTaskID"); - g_hash_table_add (readonly_props, "price"); - g_hash_table_add (readonly_props, "price@currency"); - g_hash_table_add (readonly_props, "payPerView"); - g_hash_table_add (readonly_props, "dateTimeRange"); - g_hash_table_add (readonly_props, - "dateTimeRange@daylightSaving"); - g_hash_table_add (readonly_props, "signalStrength"); - g_hash_table_add (readonly_props, "signalLocked"); - g_hash_table_add (readonly_props, "tuned"); - g_hash_table_add (readonly_props, "containerUpdateID"); - g_hash_table_add (readonly_props, "objectUpdateID"); - g_hash_table_add (readonly_props, "totalDeletedChildCount"); - g_hash_table_add (readonly_props, "res@updateCount"); + hash_table_add (readonly_props, "@id"); + hash_table_add (readonly_props, "@parentID"); + hash_table_add (readonly_props, "@refID"); + hash_table_add (readonly_props, "@restricted"); + hash_table_add (readonly_props, "@searchable"); + hash_table_add (readonly_props, "@childCount"); + hash_table_add (readonly_props, "searchClass"); + hash_table_add (readonly_props, "searchClass@name"); + hash_table_add (readonly_props, "searchClass@includeDerived"); + hash_table_add (readonly_props, "createClass"); + hash_table_add (readonly_props, "createClass@name"); + hash_table_add (readonly_props, "createClass@includeDerived"); + hash_table_add (readonly_props, "writeStatus"); + hash_table_add (readonly_props, "res@importUri"); + hash_table_add (readonly_props, "storageTotal"); + hash_table_add (readonly_props, "storageUsed"); + hash_table_add (readonly_props, "storageFree"); + hash_table_add (readonly_props, "storageMaxPartition"); + hash_table_add (readonly_props, "storageMedium"); + hash_table_add (readonly_props, "playbackCount"); + hash_table_add (readonly_props, "srsRecordScheduleID"); + hash_table_add (readonly_props, "srsRecordTaskID"); + hash_table_add (readonly_props, "price"); + hash_table_add (readonly_props, "price@currency"); + hash_table_add (readonly_props, "payPerView"); + hash_table_add (readonly_props, "dateTimeRange"); + hash_table_add (readonly_props, + "dateTimeRange@daylightSaving"); + hash_table_add (readonly_props, "signalStrength"); + hash_table_add (readonly_props, "signalLocked"); + hash_table_add (readonly_props, "tuned"); + hash_table_add (readonly_props, "containerUpdateID"); + hash_table_add (readonly_props, "objectUpdateID"); + hash_table_add (readonly_props, "totalDeletedChildCount"); + hash_table_add (readonly_props, "res@updateCount"); g_once_init_leave (&readonly_props_loaded, 1); } if (changed_element != NULL) { @@ -155,21 +178,21 @@ is_read_only (const gchar *changed_element, gchar *test_prop = g_strdup_printf ("%s@%s", changed_element, changed_attribute); - gboolean result = g_hash_table_contains (readonly_props, - test_prop); + gboolean result = hash_table_contains (readonly_props, + test_prop); g_free (test_prop); if (result) return TRUE; test_prop = g_strdup_printf ("@%s", changed_attribute); - result = g_hash_table_contains (readonly_props, - test_prop); + result = hash_table_contains (readonly_props, + test_prop); g_free (test_prop); if (result) return TRUE; } - return g_hash_table_contains (readonly_props, changed_element); + return hash_table_contains (readonly_props, changed_element); } return FALSE; @@ -330,7 +353,7 @@ static void add_dep_prop (IndependentProperty *indep, gchar *name) { - g_hash_table_add (indep->required_dep_props, g_strdup (name)); + hash_table_add (indep->required_dep_props, g_strdup (name)); } static IndependentProperty * @@ -494,17 +517,16 @@ is_required (const xmlChar *changed_element, (gpointer) changed_element); if (changed_attribute != NULL) { - if (g_hash_table_contains + if (hash_table_contains (toplevel_prop->required_dep_props, changed_attribute)) return TRUE; - if (g_hash_table_contains - (this_prop->required_dep_props, - changed_attribute)) + if (hash_table_contains (this_prop->required_dep_props, + changed_attribute)) return TRUE; } - if (g_hash_table_contains (toplevel_prop->required_indep_props, - changed_element)) + if (hash_table_contains (toplevel_prop->required_indep_props, + changed_element)) return TRUE; /* TODO: check if changed element is not a required * property of its parent element. That needs some diff --git a/packaging/GUPnP-AV.changes b/packaging/GUPnP-AV.changes index 0f3f142..8b12aa5 100644 --- a/packaging/GUPnP-AV.changes +++ b/packaging/GUPnP-AV.changes @@ -1,3 +1,6 @@ +* Thu Mar 07 2013 Regis Merlino +- Submit version 0.12.0 of GUPnP-AV (66c9ba8) + * Fri Jan 24 2013 Mark Ryan submit/2.0alpha/20130107.124717@4255ee1 - Updated GUPnP-AV to version 11.7 (a48bbd0) diff --git a/packaging/GUPnP-AV.spec b/packaging/GUPnP-AV.spec index 9e490ca..c7d27de 100644 --- a/packaging/GUPnP-AV.spec +++ b/packaging/GUPnP-AV.spec @@ -7,12 +7,12 @@ Name: gupnp-av Summary: GUPnP-AV is a collection of helpers for building UPnP AV applications -Version: 0.11.7 +Version: 0.12.0 Release: 0 Group: System/Libraries License: LGPLv2+ URL: http://www.gupnp.org/ -Source0: http://download.gnome.org/sources/%{name}/0.11/%{name}-%{version}.tar.gz +Source0: http://download.gnome.org/sources/%{name}/0.12/%{name}-%{version}.tar.gz Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig BuildRequires: pkgconfig(gupnp-1.0) diff --git a/tests/Makefile.in b/tests/Makefile.in index 7d5dec7..5fe1c7a 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -240,6 +240,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -345,7 +346,7 @@ all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -370,9 +371,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): diff --git a/tests/gtest/Makefile.in b/tests/gtest/Makefile.in index 48ac8b7..0c58ed8 100644 --- a/tests/gtest/Makefile.in +++ b/tests/gtest/Makefile.in @@ -199,6 +199,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -315,7 +316,7 @@ all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -340,9 +341,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): diff --git a/vala/Makefile.in b/vala/Makefile.in index d326575..a35df69 100644 --- a/vala/Makefile.in +++ b/vala/Makefile.in @@ -165,6 +165,7 @@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ @@ -251,7 +252,7 @@ top_srcdir = @top_srcdir@ all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -276,9 +277,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): -- 2.7.4