summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <javier.jardon@codethink.co.uk>2011-02-01 13:15:55 +0000
committerJavier Jardón <javier.jardon@codethink.co.uk>2011-02-01 13:20:33 +0000
commitad1f882a1c8b4a20daba877d3504280e512b104e (patch)
tree8c4bd9eecf333161e2493fca007a2db28ca041d0
parent9f8798170dba82b8d46de02ab46105cf61b41f87 (diff)
docs: Remove some unneeded template files
async_queues, atomic_operations and bookmarkfile are already ported to inline comments
-rw-r--r--docs/reference/glib/tmpl/.gitignore3
-rw-r--r--docs/reference/glib/tmpl/async_queues.sgml195
-rw-r--r--docs/reference/glib/tmpl/atomic_operations.sgml116
-rw-r--r--docs/reference/glib/tmpl/bookmarkfile.sgml480
4 files changed, 3 insertions, 791 deletions
diff --git a/docs/reference/glib/tmpl/.gitignore b/docs/reference/glib/tmpl/.gitignore
index 8ad3a7d3e..18d7e4c4c 100644
--- a/docs/reference/glib/tmpl/.gitignore
+++ b/docs/reference/glib/tmpl/.gitignore
@@ -2,7 +2,10 @@ allocators.sgml
arrays.sgml
arrays_byte.sgml
arrays_pointer.sgml
+async_queues.sgml
+atomic_operations.sgml
base64.sgml
+bookmarkfile.sgml
caches.sgml
checksum.sgml
completion.sgml
diff --git a/docs/reference/glib/tmpl/async_queues.sgml b/docs/reference/glib/tmpl/async_queues.sgml
deleted file mode 100644
index 2292472a7..000000000
--- a/docs/reference/glib/tmpl/async_queues.sgml
+++ /dev/null
@@ -1,195 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Asynchronous Queues
-
-<!-- ##### SECTION Short_Description ##### -->
-
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GAsyncQueue ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### FUNCTION g_async_queue_new ##### -->
-
-
-@void:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_new_full ##### -->
-<para>
-
-</para>
-
-@item_free_func:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_ref ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_unref ##### -->
-
-
-@queue:
-
-
-<!-- ##### FUNCTION g_async_queue_push ##### -->
-
-
-@queue:
-@data:
-
-
-<!-- ##### FUNCTION g_async_queue_push_sorted ##### -->
-<para>
-
-</para>
-
-@queue:
-@data:
-@func:
-@user_data:
-
-
-<!-- ##### FUNCTION g_async_queue_pop ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_try_pop ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_timed_pop ##### -->
-
-
-@queue:
-@end_time:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_length ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_sort ##### -->
-<para>
-
-</para>
-
-@queue:
-@func:
-@user_data:
-
-
-<!-- ##### FUNCTION g_async_queue_lock ##### -->
-
-
-@queue:
-
-
-<!-- ##### FUNCTION g_async_queue_unlock ##### -->
-
-
-@queue:
-
-
-<!-- ##### FUNCTION g_async_queue_ref_unlocked ##### -->
-
-
-@queue:
-
-
-<!-- ##### FUNCTION g_async_queue_unref_and_unlock ##### -->
-
-
-@queue:
-
-
-<!-- ##### FUNCTION g_async_queue_push_unlocked ##### -->
-
-
-@queue:
-@data:
-
-
-<!-- ##### FUNCTION g_async_queue_push_sorted_unlocked ##### -->
-<para>
-
-</para>
-
-@queue:
-@data:
-@func:
-@user_data:
-
-
-<!-- ##### FUNCTION g_async_queue_pop_unlocked ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_try_pop_unlocked ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_timed_pop_unlocked ##### -->
-
-
-@queue:
-@end_time:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_length_unlocked ##### -->
-
-
-@queue:
-@Returns:
-
-
-<!-- ##### FUNCTION g_async_queue_sort_unlocked ##### -->
-<para>
-
-</para>
-
-@queue:
-@func:
-@user_data:
-
-
diff --git a/docs/reference/glib/tmpl/atomic_operations.sgml b/docs/reference/glib/tmpl/atomic_operations.sgml
deleted file mode 100644
index ff5454870..000000000
--- a/docs/reference/glib/tmpl/atomic_operations.sgml
+++ /dev/null
@@ -1,116 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Atomic Operations
-
-<!-- ##### SECTION Short_Description ##### -->
-
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION g_atomic_int_get ##### -->
-<para>
-
-</para>
-
-@atomic:
-@Returns:
-
-
-<!-- ##### FUNCTION g_atomic_int_set ##### -->
-<para>
-
-</para>
-
-@atomic:
-@newval:
-
-
-<!-- ##### FUNCTION g_atomic_int_add ##### -->
-<para>
-
-</para>
-
-@atomic:
-@val:
-
-
-<!-- ##### FUNCTION g_atomic_int_exchange_and_add ##### -->
-<para>
-
-</para>
-
-@atomic:
-@val:
-@Returns:
-
-
-<!-- ##### FUNCTION g_atomic_int_compare_and_exchange ##### -->
-<para>
-
-</para>
-
-@atomic:
-@oldval:
-@newval:
-@Returns:
-
-
-<!-- ##### FUNCTION g_atomic_pointer_get ##### -->
-<para>
-
-</para>
-
-@atomic:
-@Returns:
-
-
-<!-- ##### FUNCTION g_atomic_pointer_set ##### -->
-<para>
-
-</para>
-
-@atomic:
-@newval:
-
-
-<!-- ##### FUNCTION g_atomic_pointer_compare_and_exchange ##### -->
-<para>
-
-</para>
-
-@atomic:
-@oldval:
-@newval:
-@Returns:
-
-
-<!-- ##### FUNCTION g_atomic_int_inc ##### -->
-<para>
-
-</para>
-
-@atomic:
-
-
-<!-- ##### FUNCTION g_atomic_int_dec_and_test ##### -->
-<para>
-
-</para>
-
-@atomic:
-@Returns:
-
-
diff --git a/docs/reference/glib/tmpl/bookmarkfile.sgml b/docs/reference/glib/tmpl/bookmarkfile.sgml
deleted file mode 100644
index d6da84b87..000000000
--- a/docs/reference/glib/tmpl/bookmarkfile.sgml
+++ /dev/null
@@ -1,480 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Bookmark file parser
-
-<!-- ##### SECTION Short_Description ##### -->
-
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GBookmarkFile ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### MACRO G_BOOKMARK_FILE_ERROR ##### -->
-<para>
-
-</para>
-
-
-
-<!-- ##### ENUM GBookmarkFileError ##### -->
-<para>
-
-</para>
-
-@G_BOOKMARK_FILE_ERROR_INVALID_URI:
-@G_BOOKMARK_FILE_ERROR_INVALID_VALUE:
-@G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED:
-@G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND:
-@G_BOOKMARK_FILE_ERROR_READ:
-@G_BOOKMARK_FILE_ERROR_UNKNOWN_ENCODING:
-@G_BOOKMARK_FILE_ERROR_WRITE:
-@G_BOOKMARK_FILE_ERROR_FILE_NOT_FOUND:
-
-<!-- ##### FUNCTION g_bookmark_file_new ##### -->
-<para>
-
-</para>
-
-@void:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_free ##### -->
-<para>
-
-</para>
-
-@bookmark:
-
-
-<!-- ##### FUNCTION g_bookmark_file_load_from_file ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@filename:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_load_from_data ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@data:
-@length:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_load_from_data_dirs ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@file:
-@full_path:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_to_data ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@length:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_to_file ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@filename:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_has_item ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_has_group ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@group:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_has_application ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@name:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_size ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_uris ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@length:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_title ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_description ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_mime_type ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_is_private ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_icon ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@href:
-@mime_type:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_added ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_modified ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_visited ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_groups ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@length:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_applications ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@length:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_get_app_info ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@name:
-@exec:
-@count:
-@stamp:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_title ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@title:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_description ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@description:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_mime_type ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@mime_type:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_is_private ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@is_private:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_icon ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@href:
-@mime_type:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_added ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@added:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_groups ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@groups:
-@length:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_modified ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@modified:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_visited ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@visited:
-
-
-<!-- ##### FUNCTION g_bookmark_file_set_app_info ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@name:
-@exec:
-@count:
-@stamp:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_add_group ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@group:
-
-
-<!-- ##### FUNCTION g_bookmark_file_add_application ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@name:
-@exec:
-
-
-<!-- ##### FUNCTION g_bookmark_file_remove_group ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@group:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_remove_application ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@name:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_remove_item ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@uri:
-@error:
-@Returns:
-
-
-<!-- ##### FUNCTION g_bookmark_file_move_item ##### -->
-<para>
-
-</para>
-
-@bookmark:
-@old_uri:
-@new_uri:
-@error:
-@Returns:
-
-