summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2021-06-08 16:21:39 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2021-06-08 17:13:50 +0100
commited12ef67cf0e1559a40ad8db300a926ddff2de26 (patch)
tree603c7eca8108fe4768268283ac2749c3d62210cc
parent65007e5b3ad2f27967a1e85106a13ba1d313739b (diff)
downloadjson-glib-ed12ef67cf0e1559a40ad8db300a926ddff2de26.tar.gz
Remove gtk-doc files
We don't use them any more.
-rw-r--r--doc/json-glib-docs.xml269
-rw-r--r--doc/json-glib-overrides.txt14
-rw-r--r--doc/json-glib-sections.txt462
-rw-r--r--doc/xml/gtkdocentities.ent.in8
-rw-r--r--doc/xml/meson.build11
5 files changed, 0 insertions, 764 deletions
diff --git a/doc/json-glib-docs.xml b/doc/json-glib-docs.xml
deleted file mode 100644
index 2ea960d..0000000
--- a/doc/json-glib-docs.xml
+++ /dev/null
@@ -1,269 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
- "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
-[
- <!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
- <!ENTITY % gtkdocentities SYSTEM "xml/gtkdocentities.ent">
- %gtkdocentities;
-]>
-
-<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
- <bookinfo>
- <title>&package_name; Reference Manual</title>
- <releaseinfo>
- <para>This document is the API reference for for &package_name; &package_version;.</para>
- <para>
- The latest version of this API reference is also available
- <ulink role="online-location" url="https://developer.gnome.org/json-glib/">online</ulink>.
- </para>
- <para>
- If you find any issues in this API reference, please report it
- using <ulink type="http" url="&package_bugreport;">the online
- bug reporting tool</ulink> at bugzilla.gnome.org.
- </para>
- </releaseinfo>
-
- <copyright>
- <year>2007, 2008</year>
- <holder>OpenedHand LTD</holder>
- </copyright>
-
- <copyright>
- <year>2009, 2010, 2011</year>
- <holder>Intel Corporation</holder>
- </copyright>
-
- <legalnotice>
- <para>
- Permission is granted to copy, distribute and/or modify this
- document under the terms of the <citetitle>GNU Free
- Documentation License</citetitle>, Version 1.1 or any later
- version published by the Free Software Foundation with no
- Invariant Sections, no Front-Cover Texts, and no Back-Cover
- Texts. You may obtain a copy of the <citetitle>GNU Free
- Documentation License</citetitle> from the Free Software
- Foundation by visiting <ulink type="http"
- url="http://www.fsf.org">their Web site</ulink> or by writing
- to:
-
- <address>
- The Free Software Foundation, Inc.,
- <street>59 Temple Place</street> - Suite 330,
- <city>Boston</city>, <state>MA</state> <postcode>02111-1307</postcode>,
- <country>USA</country>
- </address>
- </para>
- </legalnotice>
-
- </bookinfo>
-
- <part id="json-overview">
- <title>JSON-GLib Overview</title>
-
- <partintro>
-
- <para>
- JSON-GLib is a library aimed at providing an API for efficient parsing
- and writing of JSON (JavaScript Object Notation) streams, using GLib's
- data types and API.
- </para>
-
- <para>
- JSON (JavaScript Object Notation) is a lightweight data-interchange
- format. More information on the grammar is <ulink type="http"
- url="http://json.org">available on json.org</ulink>.
- </para>
-
- </partintro>
-
- </part>
-
- <part id="json-base">
- <title>JSON-GLib Reference</title>
-
- <partintro>
-
- <para>
- JSON-GLib provides wrappers around the complex data types defined
- by the JSON specification. The fundamental types are handled using
- the Generic Value container (GValue) provided by GLib.
- </para>
-
- <para>
- JSON complex data types are either arrays (a n-tuple of items)
- or objects (a mapping between a string and a value); arrays and
- objects can contain multiple values, including other arrays and
- objects.
- </para>
-
- </partintro>
-
- <chapter>
- <title>Data Types</title>
- <xi:include href="xml/json-node.xml"/>
- <xi:include href="xml/json-array.xml"/>
- <xi:include href="xml/json-object.xml"/>
- </chapter>
-
- </part>
-
- <part id="json-streams">
- <title>Reading and writing</title>
-
- <partintro>
-
- <para>
- JSON-GLib provides a parser object to read any valid JSON data
- stream and build the data object model in memory.
- </para>
-
- </partintro>
-
- <chapter>
- <title>Parser</title>
- <xi:include href="xml/json-parser.xml"/>
- <xi:include href="xml/json-reader.xml"/>
- <xi:include href="xml/json-path.xml"/>
- </chapter>
-
- <chapter>
- <title>Generator</title>
- <xi:include href="xml/json-generator.xml"/>
- <xi:include href="xml/json-builder.xml"/>
- </chapter>
-
- <chapter>
- <title>General Purpose API</title>
- <xi:include href="xml/json-utils.xml"/>
- </chapter>
-
- </part>
-
- <part id="json-advanced">
- <title>JSON-GLib Advanced API</title>
-
- <xi:include href="xml/json-gobject.xml"/>
- <xi:include href="xml/json-serializable.xml"/>
- <xi:include href="xml/json-gboxed.xml"/>
- <xi:include href="xml/json-gvariant.xml"/>
- <xi:include href="xml/json-version.xml"/>
- </part>
-
- <part id="json-tools">
- <title>JSON-GLib Additional Reference</title>
-
- <chapter id="tools">
- <title>JSON-GLib Tools</title>
- <xi:include href="json-glib-format.xml"/>
- <xi:include href="json-glib-validate.xml"/>
- </chapter>
-
- <chapter>
- <title>Object Hierarchy</title>
- <xi:include href="xml/tree_index.sgml"/>
- </chapter>
-
- </part>
-
- <index>
- <title>Index</title>
- <xi:include href="xml/api-index-full.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="deprecated">
- <title>Index of deprecated symbols</title>
- <xi:include href="xml/api-index-deprecated.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.4">
- <title>Index of new symbols in 0.4</title>
- <xi:include href="xml/api-index-0.4.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.6">
- <title>Index of new symbols in 0.6</title>
- <xi:include href="xml/api-index-0.6.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.8">
- <title>Index of new symbols in 0.8</title>
- <xi:include href="xml/api-index-0.8.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.10">
- <title>Index of new symbols in 0.10</title>
- <xi:include href="xml/api-index-0.10.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.12">
- <title>Index of new symbols in 0.12</title>
- <xi:include href="xml/api-index-0.12.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.14">
- <title>Index of new symbols in 0.14</title>
- <xi:include href="xml/api-index-0.14.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="0.16">
- <title>Index of new symbols in 0.16</title>
- <xi:include href="xml/api-index-0.16.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="1.0">
- <title>Index of new symbols in 1.0</title>
- <xi:include href="xml/api-index-1.0.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="1.2">
- <title>Index of new symbols in 1.2</title>
- <xi:include href="xml/api-index-1.2.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="1.4">
- <title>Index of new symbols in 1.4</title>
- <xi:include href="xml/api-index-1.4.xml"><xi:fallback/></xi:include>
- </index>
-
- <index role="1.6">
- <title>Index of new symbols in 1.6</title>
- <xi:include href="xml/api-index-1.6.xml"><xi:fallback/></xi:include>
- </index>
-
- <xi:include href="xml/annotation-glossary.xml"><xi:fallback/></xi:include>
-
- <appendix id="license">
- <title>License</title>
-
- <para>
- This library is free software; you can redistribute it and/or
- modify it under the terms of the <citetitle>GNU Library General
- Public License</citetitle> as published by the Free Software
- Foundation; either version 2 of the License, or (at your option)
- any later version.
- </para>
-
- <para>
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- <citetitle>GNU Library General Public License</citetitle> for
- more details.
- </para>
-
- <para>
- You may obtain a copy of the <citetitle>GNU Library General
- Public License</citetitle> from the Free Software Foundation by
- visiting <ulink type="http" url="http://www.fsf.org">their Web
- site</ulink> or by writing to:
-
- <address>
- Free Software Foundation, Inc.
- <street>59 Temple Place</street> - Suite 330
- <city>Boston</city>, <state>MA</state> <postcode>02111-1307</postcode>
- <country>USA</country>
- </address>
- </para>
- </appendix>
-
-</book>
diff --git a/doc/json-glib-overrides.txt b/doc/json-glib-overrides.txt
deleted file mode 100644
index 68de4f0..0000000
--- a/doc/json-glib-overrides.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-<MACRO>
-<NAME>JSON_MAJOR_VERSION</NAME>
-#define JSON_MAJOR_VERSION
-</MACRO>
-
-<MACRO>
-<NAME>JSON_MINOR_VERSION</NAME>
-#define JSON_MINOR_VERSION
-</MACRO>
-
-<MACRO>
-<NAME>JSON_MICRO_VERSION</NAME>
-#define JSON_MICRO_VERSION
-</MACRO>
diff --git a/doc/json-glib-sections.txt b/doc/json-glib-sections.txt
deleted file mode 100644
index eaafe9b..0000000
--- a/doc/json-glib-sections.txt
+++ /dev/null
@@ -1,462 +0,0 @@
-<INCLUDE>json-glib/json-glib.h</INCLUDE>
-
-<SECTION>
-<FILE>json-object</FILE>
-<TITLE>JSON Object</TITLE>
-JsonObject
-json_object_new
-json_object_ref
-json_object_unref
-json_object_seal
-json_object_is_immutable
-json_object_hash
-json_object_equal
-
-<SUBSECTION>
-json_object_add_member
-json_object_set_member
-json_object_has_member
-json_object_get_member
-json_object_dup_member
-json_object_get_members
-json_object_get_values
-json_object_get_size
-json_object_remove_member
-JsonObjectForeach
-json_object_foreach_member
-JsonObjectIter
-json_object_iter_init
-json_object_iter_next
-json_object_iter_init_ordered
-json_object_iter_next_ordered
-
-<SUBSECTION>
-json_object_set_array_member
-json_object_get_array_member
-json_object_set_object_member
-json_object_get_object_member
-json_object_set_null_member
-json_object_get_null_member
-json_object_set_boolean_member
-json_object_get_boolean_member
-json_object_get_boolean_member_with_default
-json_object_set_double_member
-json_object_get_double_member
-json_object_get_double_member_with_default
-json_object_set_int_member
-json_object_get_int_member
-json_object_get_int_member_with_default
-json_object_set_string_member
-json_object_get_string_member
-json_object_get_string_member_with_default
-
-<SUBSECTION Private>
-JSON_TYPE_OBJECT
-json_object_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-array</FILE>
-<TITLE>JSON Array</TITLE>
-JsonArray
-json_array_new
-json_array_sized_new
-json_array_ref
-json_array_unref
-json_array_seal
-json_array_is_immutable
-json_array_hash
-json_array_equal
-
-<SUBSECTION>
-json_array_add_element
-json_array_get_element
-json_array_dup_element
-json_array_get_elements
-json_array_get_length
-json_array_remove_element
-JsonArrayForeach
-json_array_foreach_element
-
-<SUBSECTION>
-json_array_add_array_element
-json_array_get_array_element
-json_array_add_boolean_element
-json_array_get_boolean_element
-json_array_add_double_element
-json_array_get_double_element
-json_array_add_int_element
-json_array_get_int_element
-json_array_add_null_element
-json_array_get_null_element
-json_array_add_object_element
-json_array_get_object_element
-json_array_add_string_element
-json_array_get_string_element
-
-<SUBSECTION Private>
-JSON_TYPE_ARRAY
-json_array_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-node</FILE>
-<TITLE>JSON Node</TITLE>
-JsonNodeType
-JsonNode
-JSON_NODE_TYPE
-JSON_NODE_HOLDS
-JSON_NODE_HOLDS_VALUE
-JSON_NODE_HOLDS_OBJECT
-JSON_NODE_HOLDS_ARRAY
-JSON_NODE_HOLDS_NULL
-json_node_alloc
-json_node_init
-json_node_init_int
-json_node_init_double
-json_node_init_boolean
-json_node_init_string
-json_node_init_null
-json_node_init_object
-json_node_init_array
-json_node_new
-json_node_copy
-json_node_free
-json_node_ref
-json_node_unref
-json_node_is_immutable
-json_node_seal
-json_node_hash
-json_node_equal
-
-<SUBSECTION>
-json_node_set_array
-json_node_take_array
-json_node_get_array
-json_node_dup_array
-
-<SUBSECTION>
-json_node_set_object
-json_node_take_object
-json_node_get_object
-json_node_dup_object
-
-<SUBSECTION>
-json_node_set_value
-json_node_get_value
-json_node_set_boolean
-json_node_get_boolean
-json_node_set_double
-json_node_get_double
-json_node_set_int
-json_node_get_int
-json_node_set_string
-json_node_get_string
-json_node_dup_string
-
-<SUBSECTION>
-json_node_set_parent
-json_node_get_parent
-json_node_type_name
-json_node_get_value_type
-json_node_get_node_type
-json_node_is_null
-
-<SUBSECTION>
-json_string_hash
-json_string_equal
-json_string_compare
-
-<SUBSECTION Private>
-JSON_DEPRECATED
-JSON_DEPRECATED_FOR
-JSON_TYPE_NODE
-json_node_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-parser</FILE>
-<TITLE>JsonParser</TITLE>
-JsonParserError
-
-<SUBSECTION>
-JsonParser
-JsonParserClass
-json_parser_new
-json_parser_new_immutable
-json_parser_load_from_file
-json_parser_load_from_mapped_file
-json_parser_load_from_data
-json_parser_load_from_stream
-json_parser_load_from_stream_async
-json_parser_load_from_stream_finish
-
-<SUBSECTION>
-json_parser_get_root
-json_parser_steal_root
-
-<SUBSECTION>
-json_parser_get_current_line
-json_parser_get_current_pos
-json_parser_has_assignment
-
-<SUBSECTION Standard>
-JSON_TYPE_PARSER
-JSON_PARSER
-JSON_IS_PARSER
-JSON_PARSER_CLASS
-JSON_IS_PARSER_CLASS
-JSON_PARSER_ERROR
-JSON_PARSER_GET_CLASS
-
-<SUBSECTION Private>
-JsonParserPrivate
-json_parser_get_type
-json_parser_error_quark
-</SECTION>
-
-<SECTION>
-<FILE>json-generator</FILE>
-<TITLE>JsonGenerator</TITLE>
-<SUBSECTION>
-JsonGenerator
-JsonGeneratorClass
-json_generator_new
-json_generator_set_root
-json_generator_get_root
-json_generator_set_pretty
-json_generator_get_pretty
-json_generator_set_indent
-json_generator_get_indent
-json_generator_set_indent_char
-json_generator_get_indent_char
-
-<SUBSECTION>
-json_generator_to_file
-json_generator_to_data
-json_generator_to_gstring
-json_generator_to_stream
-
-<SUBSECTION Standard>
-JSON_TYPE_GENERATOR
-JSON_GENERATOR
-JSON_IS_GENERATOR
-JSON_GENERATOR_CLASS
-JSON_IS_GENERATOR_CLASS
-JSON_GENERATOR_GET_CLASS
-
-<SUBSECTION Private>
-JsonGeneratorPrivate
-json_generator_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-serializable</FILE>
-<TITLE>Serializable Interface</TITLE>
-JsonSerializableIface
-json_serializable_serialize_property
-json_serializable_deserialize_property
-json_serializable_find_property
-json_serializable_get_property
-json_serializable_list_properties
-json_serializable_set_property
-
-<SUBSECTION>
-json_serializable_default_serialize_property
-json_serializable_default_deserialize_property
-
-<SUBSECTION Standard>
-JSON_TYPE_SERIALIZABLE
-JSON_SERIALIZABLE
-JSON_IS_SERIALIZABLE
-JSON_SERIALIZABLE_GET_IFACE
-
-<SUBSECTION Private>
-JsonSerializable
-json_serializable_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-gboxed</FILE>
-<TITLE>Boxed Types Serialization</TITLE>
-JsonBoxedSerializeFunc
-JsonBoxedDeserializeFunc
-json_boxed_register_serialize_func
-json_boxed_register_deserialize_func
-
-<SUBSECTION>
-json_boxed_can_serialize
-json_boxed_can_deserialize
-json_boxed_serialize
-json_boxed_deserialize
-</SECTION>
-
-<SECTION>
-<FILE>json-gobject</FILE>
-<TITLE>GObject Serialization</TITLE>
-json_gobject_serialize
-json_gobject_deserialize
-json_gobject_to_data
-json_gobject_from_data
-
-<SUBSECTION>
-json_construct_gobject
-json_serialize_gobject
-</SECTION>
-
-<SECTION>
-<FILE>json-gvariant</FILE>
-
-<SUBSECTION>
-json_gvariant_serialize
-json_gvariant_serialize_data
-json_gvariant_deserialize
-json_gvariant_deserialize_data
-</SECTION>
-
-<SECTION>
-<FILE>json-version</FILE>
-<TITLE>Versioning information</TITLE>
-JSON_MAJOR_VERSION
-JSON_MINOR_VERSION
-JSON_MICRO_VERSION
-
-<SUBSECTION>
-JSON_VERSION
-JSON_VERSION_S
-JSON_VERSION_HEX
-
-<SUBSECTION>
-JSON_CHECK_VERSION
-JSON_VERSION_MIN_REQUIRED
-JSON_VERSION_MAX_ALLOWED
-
-<SUBSECTION Standard>
-JSON_VERSION_CUR_STABLE
-JSON_VERSION_PREV_STABLE
-JSON_VERSION_1_0
-JSON_AVAILABLE_IN_1_0
-JSON_DEPRECATED_IN_1_0
-JSON_DEPRECATED_IN_1_0_FOR
-JSON_VERSION_1_2
-JSON_AVAILABLE_IN_1_2
-JSON_DEPRECATED_IN_1_2
-JSON_DEPRECATED_IN_1_2_FOR
-JSON_VERSION_1_4
-JSON_AVAILABLE_IN_1_4
-JSON_DEPRECATED_IN_1_4
-JSON_DEPRECATED_IN_1_4_FOR
-JSON_VERSION_1_6
-JSON_AVAILABLE_IN_1_6
-JSON_DEPRECATED_IN_1_6
-JSON_DEPRECATED_IN_1_6_FOR
-
-<SUBSECTION Private>
-JSON_ENCODE_VERSION
-JSON_DEPRECATED
-JSON_DEPRECATED_FOR
-JSON_UNAVAILABLE
-_JSON_EXTERN
-</SECTION>
-
-<SECTION>
-<FILE>json-builder</FILE>
-JsonBuilder
-JsonBuilderClass
-json_builder_new
-json_builder_new_immutable
-json_builder_get_root
-json_builder_reset
-<SUBSECTION>
-json_builder_begin_array
-json_builder_end_array
-json_builder_begin_object
-json_builder_set_member_name
-json_builder_end_object
-<SUBSECTION>
-json_builder_add_value
-json_builder_add_int_value
-json_builder_add_double_value
-json_builder_add_boolean_value
-json_builder_add_string_value
-json_builder_add_null_value
-<SUBSECTION Standard>
-JSON_TYPE_BUILDER
-JSON_BUILDER
-JSON_BUILDER_CLASS
-JSON_IS_BUILDER
-JSON_IS_BUILDER_CLASS
-JSON_BUILDER_GET_CLASS
-<SUBSECTION Private>
-JsonBuilderPrivate
-json_builder_get_type
-</SECTION>
-
-<SECTION>
-<FILE>json-reader</FILE>
-JsonReader
-JsonReaderClass
-json_reader_new
-json_reader_set_root
-<SUBSECTION>
-json_reader_read_element
-json_reader_end_element
-json_reader_is_array
-json_reader_count_elements
-<SUBSECTION>
-json_reader_read_member
-json_reader_end_member
-json_reader_is_object
-json_reader_count_members
-json_reader_list_members
-json_reader_get_member_name
-<SUBSECTION>
-json_reader_is_value
-json_reader_get_value
-json_reader_get_int_value
-json_reader_get_double_value
-json_reader_get_string_value
-json_reader_get_boolean_value
-json_reader_get_null_value
-<SUBSECTION>
-JsonReaderError
-JSON_READER_ERROR
-json_reader_get_error
-<SUBSECTION Standard>
-JSON_READER
-JSON_READER_CLASS
-JSON_IS_READER
-JSON_IS_READER_CLASS
-JSON_READER_GET_CLASS
-JSON_TYPE_READER
-<SUBSECTION Private>
-JsonReaderPrivate
-json_reader_get_type
-json_reader_error_quark
-</SECTION>
-
-<SECTION>
-<FILE>json-path</FILE>
-JsonPath
-JsonPathClass
-json_path_new
-JSON_PATH_ERROR
-JsonPathError
-json_path_compile
-json_path_match
-<SUBSECTION>
-json_path_query
-<SUBSECTION Standard>
-JSON_TYPE_PATH
-JSON_PATH
-JSON_IS_PATH
-<SUBSECTION Private>
-json_path_get_type
-json_path_error_quark
-</SECTION>
-
-<SECTION>
-<FILE>json-utils</FILE>
-json_from_string
-json_to_string
-</SECTION>
diff --git a/doc/xml/gtkdocentities.ent.in b/doc/xml/gtkdocentities.ent.in
deleted file mode 100644
index f12c9ff..0000000
--- a/doc/xml/gtkdocentities.ent.in
+++ /dev/null
@@ -1,8 +0,0 @@
-<!ENTITY package "@PACKAGE@">
-<!ENTITY package_bugreport "@PACKAGE_BUGREPORT@">
-<!ENTITY package_name "@PACKAGE_NAME@">
-<!ENTITY package_string "@PACKAGE_STRING@">
-<!ENTITY package_tarname "@PACKAGE_TARNAME@">
-<!ENTITY package_url "@PACKAGE_URL@">
-<!ENTITY package_version "@PACKAGE_VERSION@">
-<!ENTITY package_api_version "@PACKAGE_API_VERSION@">
diff --git a/doc/xml/meson.build b/doc/xml/meson.build
deleted file mode 100644
index 587d773..0000000
--- a/doc/xml/meson.build
+++ /dev/null
@@ -1,11 +0,0 @@
-ent_conf = configuration_data()
-ent_conf.set('PACKAGE', 'JSON-GLib')
-ent_conf.set('PACKAGE_BUGREPORT', 'https://bugzilla.gnome.org/enter_bug.cgi?product=json-glib')
-ent_conf.set('PACKAGE_NAME', 'JSON-GLib')
-ent_conf.set('PACKAGE_STRING', meson.project_name())
-ent_conf.set('PACKAGE_TARNAME', '@0@-@1@'.format(meson.project_name(), meson.project_version()))
-ent_conf.set('PACKAGE_URL', 'http://wiki.gnome.org/Project/JsonGlib')
-ent_conf.set('PACKAGE_VERSION', meson.project_version())
-ent_conf.set('PACKAGE_API_VERSION', json_api_version)
-configure_file(input: 'gtkdocentities.ent.in', output: 'gtkdocentities.ent', configuration: ent_conf)
-