Stop using starttag elements

This commit is contained in:
Matthias Clasen 2014-02-05 22:37:54 -05:00
parent 73c23d9143
commit 4569b8ac2d
2 changed files with 16 additions and 18 deletions

View File

@ -1757,7 +1757,7 @@ parser_error (GMarkupParseContext *context,
* Parses @xml_data and returns a #GDBusNodeInfo representing the data. * Parses @xml_data and returns a #GDBusNodeInfo representing the data.
* *
* The introspection XML must contain exactly one top-level * The introspection XML must contain exactly one top-level
* <tag class="starttag">node</tag> element. * &lt;node&gt; element.
* *
* Note that this routine is using a * Note that this routine is using a
* <link linkend="glib-Simple-XML-Subset-Parser.description">GMarkup</link>-based * <link linkend="glib-Simple-XML-Subset-Parser.description">GMarkup</link>-based

View File

@ -86,10 +86,9 @@
* Similar to GConf, the default values in GSettings schemas can be * Similar to GConf, the default values in GSettings schemas can be
* localized, but the localized values are stored in gettext catalogs * localized, but the localized values are stored in gettext catalogs
* and looked up with the domain that is specified in the * and looked up with the domain that is specified in the
* <tag class="attribute">gettext-domain</tag> attribute of the * gettext-domain attribute of the &lt;schemalist&gt; or &lt;schema&gt;
* <tag class="starttag">schemalist</tag> or <tag class="starttag">schema</tag> * elements and the category that is specified in the l10n attribute of
* elements and the category that is specified in the l10n attribute of the * the &lt;key&gt; element.
* <tag class="starttag">key</tag> element.
* *
* GSettings uses schemas in a compact binary form that is created * GSettings uses schemas in a compact binary form that is created
* by the <link linkend="glib-compile-schemas">glib-compile-schemas</link> * by the <link linkend="glib-compile-schemas">glib-compile-schemas</link>
@ -101,19 +100,18 @@
* The <link linkend="glib-compile-schemas">glib-compile-schemas</link> * The <link linkend="glib-compile-schemas">glib-compile-schemas</link>
* tool expects schema files to have the extension `.gschema.xml`. * tool expects schema files to have the extension `.gschema.xml`.
* *
* At runtime, schemas are identified by their id (as specified * At runtime, schemas are identified by their id (as specified in the
* in the <tag class="attribute">id</tag> attribute of the * id attribute of the &lt;schema&gt; element). The convention for schema
* <tag class="starttag">schema</tag> element). The * ids is to use a dotted name, similar in style to a D-Bus bus name,
* convention for schema ids is to use a dotted name, similar in * e.g. "org.gnome.SessionManager". In particular, if the settings are
* style to a D-Bus bus name, e.g. "org.gnome.SessionManager". In particular, * for a specific service that owns a D-Bus bus name, the D-Bus bus name
* if the settings are for a specific service that owns a D-Bus bus name, * and schema id should match. For schemas which deal with settings not
* the D-Bus bus name and schema id should match. For schemas which deal * associated with one named application, the id should not use
* with settings not associated with one named application, the id should * StudlyCaps, e.g. "org.gnome.font-rendering".
* not use StudlyCaps, e.g. "org.gnome.font-rendering".
* *
* In addition to #GVariant types, keys can have types that have enumerated * In addition to #GVariant types, keys can have types that have
* types. These can be described by a <tag class="starttag">choice</tag>, * enumerated types. These can be described by a &lt;choice&gt;,
* <tag class="starttag">enum</tag> or <tag class="starttag">flags</tag> element, see * &lt;enum&gt; or &lt;flags&gt; element, see
* <xref linkend="schema-enumerated"/>. The underlying type of * <xref linkend="schema-enumerated"/>. The underlying type of
* such a key is string, but you can use g_settings_get_enum(), * such a key is string, but you can use g_settings_get_enum(),
* g_settings_set_enum(), g_settings_get_flags(), g_settings_set_flags() * g_settings_set_enum(), g_settings_get_flags(), g_settings_set_flags()
@ -2181,7 +2179,7 @@ g_settings_is_writable (GSettings *settings,
* <replaceable>base-path</replaceable> is the base path of @settings. * <replaceable>base-path</replaceable> is the base path of @settings.
* *
* The schema for the child settings object must have been declared * The schema for the child settings object must have been declared
* in the schema of @settings using a <tag class="starttag">child</tag> element. * in the schema of @settings using a &lt;child&gt; element.
* *
* Returns: (transfer full): a 'child' settings object * Returns: (transfer full): a 'child' settings object
* *