summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2015-05-25 11:04:44 +0200
committerMartin Pitt <martin.pitt@ubuntu.com>2015-05-25 11:04:44 +0200
commite3bff60a6ef3419af32552b54bf19331e59c01c9 (patch)
tree14a42a8e0877e998b27b140fb47e3bac35b6c0ba /docs
parente735f4d4eafc8c8c296cefc8228cf91c3fcfe822 (diff)
downloadsystemd-e3bff60a6ef3419af32552b54bf19331e59c01c9.tar.gz
Imported Upstream version 220
Diffstat (limited to 'docs')
-rw-r--r--docs/gtk-doc.make20
-rw-r--r--docs/gudev/Makefile.in69
-rw-r--r--docs/gudev/html/GUdevClient.html8
-rw-r--r--docs/gudev/html/GUdevDevice.html35
-rw-r--r--docs/gudev/html/GUdevEnumerator.html36
-rw-r--r--docs/gudev/html/annotation-glossary.html7
-rw-r--r--docs/gudev/html/api-index-deprecated.html7
-rw-r--r--docs/gudev/html/api-index-full.html7
-rw-r--r--docs/gudev/html/gudev-hierarchy.html7
-rw-r--r--docs/gudev/html/gudev.devhelp26
-rw-r--r--docs/gudev/html/index.html7
-rw-r--r--docs/gudev/html/index.sgml3
-rw-r--r--docs/gudev/html/ix02.html7
-rw-r--r--docs/gudev/html/ref-API.html7
-rw-r--r--docs/gudev/html/style.css15
-rw-r--r--docs/gudev/version.xml2
-rw-r--r--docs/libudev/Makefile.in69
-rw-r--r--docs/libudev/html/api-index-full.html7
-rw-r--r--docs/libudev/html/ch01.html7
-rw-r--r--docs/libudev/html/index.html7
-rw-r--r--docs/libudev/html/libudev-udev-device.html90
-rw-r--r--docs/libudev/html/libudev-udev-enumerate.html24
-rw-r--r--docs/libudev/html/libudev-udev-hwdb.html15
-rw-r--r--docs/libudev/html/libudev-udev-list.html11
-rw-r--r--docs/libudev/html/libudev-udev-monitor.html19
-rw-r--r--docs/libudev/html/libudev-udev-queue.html18
-rw-r--r--docs/libudev/html/libudev-udev-util.html8
-rw-r--r--docs/libudev/html/libudev-udev.html15
-rw-r--r--docs/libudev/html/libudev.devhelp23
-rw-r--r--docs/libudev/html/style.css15
-rw-r--r--docs/libudev/version.xml2
31 files changed, 246 insertions, 307 deletions
diff --git a/docs/gtk-doc.make b/docs/gtk-doc.make
index e7916563d7..9ccd0b04b5 100644
--- a/docs/gtk-doc.make
+++ b/docs/gtk-doc.make
@@ -25,6 +25,7 @@ TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
SETUP_FILES = \
$(content_files) \
+ $(expand_content_files) \
$(DOC_MAIN_SGML_FILE) \
$(DOC_MODULE)-sections.txt \
$(DOC_MODULE)-overrides.txt
@@ -86,7 +87,7 @@ GTK_DOC_V_SETUP_0=@echo " DOC Preparing build";
setup-build.stamp:
-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
+ files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
if test "x$$files" != "x" ; then \
for file in $$files ; do \
destdir=`dirname $(abs_builddir)/$$file`; \
@@ -118,7 +119,7 @@ scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
scanobj_options=""; \
gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
scanobj_options="--verbose"; \
fi; \
@@ -162,17 +163,17 @@ GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_$(V))
GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY))
GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references";
-html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
mkhtml_options=""; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkhtml_options="$$mkhtml_options --verbose"; \
fi; \
fi; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
fi; \
cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
@@ -194,11 +195,11 @@ GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_$(V))
GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY))
GTK_DOC_V_PDF_0=@echo " DOC Building PDF";
-pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
mkpdf_options=""; \
gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkpdf_options="$$mkpdf_options --verbose"; \
fi; \
@@ -223,12 +224,15 @@ clean-local:
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
rm -f $(DOC_MODULE).types; \
fi
+ @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
+ rm -f $(DOC_MODULE)-sections.txt; \
+ fi
distclean-local:
@rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
+ rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
fi
maintainer-clean-local:
diff --git a/docs/gudev/Makefile.in b/docs/gudev/Makefile.in
index 6a66e00068..8741fae4ff 100644
--- a/docs/gudev/Makefile.in
+++ b/docs/gudev/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.15 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2014 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,17 @@
# Everything below here is generic #
####################################
VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
@@ -83,17 +93,17 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
-DIST_COMMON = $(top_srcdir)/docs/gtk-doc.make $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am $(srcdir)/version.xml.in
subdir = docs/gudev
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/attributes.m4 \
- $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/intltool.m4 \
- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/arch.m4 \
+ $(top_srcdir)/m4/attributes.m4 $(top_srcdir)/m4/gtk-doc.m4 \
+ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
+ $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES = version.xml
@@ -118,6 +128,8 @@ am__can_run_installinfo = \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/version.xml.in \
+ $(top_srcdir)/docs/gtk-doc.make
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ACL_LIBS = @ACL_LIBS@
@@ -143,7 +155,6 @@ CHKCONFIG = @CHKCONFIG@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
-DATADIRNAME = @DATADIRNAME@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEBUGTTY = @DEBUGTTY@
@@ -157,6 +168,12 @@ DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
+EFI_ARCH = @EFI_ARCH@
+EFI_CC = @EFI_CC@
+EFI_INC_DIR = @EFI_INC_DIR@
+EFI_LDS_DIR = @EFI_LDS_DIR@
+EFI_LIB_DIR = @EFI_LIB_DIR@
+EFI_MACHINE_TYPE_NAME = @EFI_MACHINE_TYPE_NAME@
EGREP = @EGREP@
ELFUTILS_LIBS = @ELFUTILS_LIBS@
EXEEXT = @EXEEXT@
@@ -235,11 +252,13 @@ MICROHTTPD_LIBS = @MICROHTTPD_LIBS@
MKDIR_P = @MKDIR_P@
MOUNT_CFLAGS = @MOUNT_CFLAGS@
MOUNT_LIBS = @MOUNT_LIBS@
+MOUNT_PATH = @MOUNT_PATH@
MSGFMT = @MSGFMT@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
NTP_SERVERS = @NTP_SERVERS@
+OBJCOPY = @OBJCOPY@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
@@ -267,6 +286,8 @@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
PYTHON_PLATFORM = @PYTHON_PLATFORM@
PYTHON_PREFIX = @PYTHON_PREFIX@
PYTHON_VERSION = @PYTHON_VERSION@
+QEMU = @QEMU@
+QEMU_BIOS = @QEMU_BIOS@
QRENCODE_CFLAGS = @QRENCODE_CFLAGS@
QRENCODE_LIBS = @QRENCODE_LIBS@
QUOTACHECK = @QUOTACHECK@
@@ -296,6 +317,7 @@ TELINIT = @TELINIT@
TERMINAL_CFLAGS = @TERMINAL_CFLAGS@
TERMINAL_LIBS = @TERMINAL_LIBS@
TTY_GID = @TTY_GID@
+UMOUNT_PATH = @UMOUNT_PATH@
UNIFONT = @UNIFONT@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
@@ -479,6 +501,7 @@ GPATH = $(srcdir)
TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
SETUP_FILES = \
$(content_files) \
+ $(expand_content_files) \
$(DOC_MAIN_SGML_FILE) \
$(DOC_MODULE)-sections.txt \
$(DOC_MODULE)-overrides.txt
@@ -556,7 +579,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/gudev/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign docs/gudev/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -565,7 +587,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/docs/gtk-doc.make:
+$(top_srcdir)/docs/gtk-doc.make $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -742,6 +764,8 @@ uninstall-am: uninstall-local
mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
uninstall-am uninstall-local
+.PRECIOUS: Makefile
+
# Hack, hack. You silly gtk-doc, you must not add CFLAGS multiple
# times when calling gcc; it surely can not work with options that must
@@ -767,7 +791,7 @@ $(REPORT_FILES): sgml-build.stamp
setup-build.stamp:
-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
+ files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
if test "x$$files" != "x" ; then \
for file in $$files ; do \
destdir=`dirname $(abs_builddir)/$$file`; \
@@ -788,7 +812,7 @@ scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
scanobj_options=""; \
gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
scanobj_options="--verbose"; \
fi; \
@@ -816,17 +840,17 @@ sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DO
sgml.stamp: sgml-build.stamp
@true
-html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
mkhtml_options=""; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkhtml_options="$$mkhtml_options --verbose"; \
fi; \
fi; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
fi; \
cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
@@ -842,11 +866,11 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
$(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
$(AM_V_at)touch html-build.stamp
-pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
mkpdf_options=""; \
gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkpdf_options="$$mkpdf_options --verbose"; \
fi; \
@@ -871,12 +895,15 @@ clean-local:
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
rm -f $(DOC_MODULE).types; \
fi
+ @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
+ rm -f $(DOC_MODULE)-sections.txt; \
+ fi
distclean-local:
@rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
+ rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
fi
maintainer-clean-local:
diff --git a/docs/gudev/html/GUdevClient.html b/docs/gudev/html/GUdevClient.html
index 9bb245584e..6179d4b472 100644
--- a/docs/gudev/html/GUdevClient.html
+++ b/docs/gudev/html/GUdevClient.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: GUdevClient</title>
+<title>GUdevClient: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="ref-API.html" title="API Reference">
<link rel="prev" href="ref-API.html" title="API Reference">
<link rel="next" href="GUdevDevice.html" title="GUdevDevice">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -207,7 +207,6 @@ thread-default main loop<p>of the thread that you call this constructor from.</p
<div class="refsect3">
<a name="id-1.2.2.9.2.8"></a><h4>Returns</h4>
<p> A new <a class="link" href="GUdevClient.html" title="GUdevClient"><span class="type">GUdevClient</span></a> object. Free with <code class="function">g_object_unref()</code>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -564,7 +563,6 @@ thread-default main loop<p>of the thread that <em class="parameter"><code>client
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/GUdevDevice.html b/docs/gudev/html/GUdevDevice.html
index 3a531585b7..73c9af87e7 100644
--- a/docs/gudev/html/GUdevDevice.html
+++ b/docs/gudev/html/GUdevDevice.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: GUdevDevice</title>
+<title>GUdevDevice: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="ref-API.html" title="API Reference">
<link rel="prev" href="GUdevClient.html" title="GUdevClient">
<link rel="next" href="GUdevEnumerator.html" title="GUdevEnumerator">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -386,7 +386,6 @@ g_udev_device_get_subsystem (<em class="parameter"><code><a class="link" href="G
<a name="id-1.2.3.7.2.6"></a><h4>Returns</h4>
<p> The subsystem for <em class="parameter"><code>device</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -415,7 +414,6 @@ g_udev_device_get_devtype (<em class="parameter"><code><a class="link" href="GUd
<a name="id-1.2.3.7.3.6"></a><h4>Returns</h4>
<p> The devtype for <em class="parameter"><code>device</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -444,7 +442,6 @@ g_udev_device_get_name (<em class="parameter"><code><a class="link" href="GUdevD
<a name="id-1.2.3.7.4.6"></a><h4>Returns</h4>
<p> The name of <em class="parameter"><code>device</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -473,7 +470,6 @@ g_udev_device_get_number (<em class="parameter"><code><a class="link" href="GUde
<a name="id-1.2.3.7.5.6"></a><h4>Returns</h4>
<p> The number of <em class="parameter"><code>device</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -502,7 +498,6 @@ g_udev_device_get_sysfs_path (<em class="parameter"><code><a class="link" href="
<a name="id-1.2.3.7.6.6"></a><h4>Returns</h4>
<p> The sysfs path for <em class="parameter"><code>device</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -560,7 +555,6 @@ g_udev_device_get_action (<em class="parameter"><code><a class="link" href="GUde
<div class="refsect3">
<a name="id-1.2.3.7.8.6"></a><h4>Returns</h4>
<p> An action string.</p>
-<p></p>
</div>
</div>
<hr>
@@ -588,7 +582,6 @@ g_udev_device_get_seqnum (<em class="parameter"><code><a class="link" href="GUde
<div class="refsect3">
<a name="id-1.2.3.7.9.6"></a><h4>Returns</h4>
<p> A sequence number.</p>
-<p></p>
</div>
</div>
<hr>
@@ -617,7 +610,6 @@ g_udev_device_get_device_type (<em class="parameter"><code><a class="link" href=
<a name="id-1.2.3.7.10.6"></a><h4>Returns</h4>
<p> The device number for <em class="parameter"><code>device</code></em>
or <a class="link" href="GUdevClient.html#G-UDEV-DEVICE-TYPE-NONE:CAPS"><span class="type">G_UDEV_DEVICE_TYPE_NONE</span></a> if the device does not have a device file.</p>
-<p></p>
</div>
</div>
<hr>
@@ -646,7 +638,6 @@ g_udev_device_get_device_number (<em class="parameter"><code><a class="link" hre
<a name="id-1.2.3.7.11.6"></a><h4>Returns</h4>
<p> The device number for <em class="parameter"><code>device</code></em>
or 0 if unknown.</p>
-<p></p>
</div>
</div>
<hr>
@@ -819,7 +810,7 @@ g_udev_device_get_tags (<em class="parameter"><code><a class="link" href="GUdevD
and should not be freed by the caller. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -827,7 +818,7 @@ and should not be freed by the caller. </p>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
g_udev_device_get_is_initialized (<em class="parameter"><code><a class="link" href="GUdevDevice.html" title="GUdevDevice"><span class="type">GUdevDevice</span></a> *device</code></em>);</pre>
<p>Gets whether <em class="parameter"><code>device</code></em>
- has been initalized.</p>
+ has been initialized.</p>
<div class="refsect3">
<a name="id-1.2.3.7.17.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
@@ -847,9 +838,8 @@ g_udev_device_get_is_initialized (<em class="parameter"><code><a class="link" hr
<a name="id-1.2.3.7.17.6"></a><h4>Returns</h4>
<p> Whether <em class="parameter"><code>device</code></em>
has been initialized.</p>
-<p></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -880,9 +870,8 @@ database. All other devices return 0.</p>
<a name="id-1.2.3.7.18.7"></a><h4>Returns</h4>
<p> Number of micro-seconds since <em class="parameter"><code>device</code></em>
was initialized or 0 if unknown.</p>
-<p></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -946,7 +935,6 @@ g_udev_device_has_property (<em class="parameter"><code><a class="link" href="GU
<a name="id-1.2.3.7.20.6"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> only if the value for <em class="parameter"><code>key</code></em>
exist.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1029,7 +1017,6 @@ using <code class="function">strtol()</code>.</p>
or 0 if <em class="parameter"><code>key</code></em>
doesn't exist or
isn't an integer.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1070,7 +1057,6 @@ g_udev_device_get_property_as_uint64 (<em class="parameter"><code><a class="link
or 0 if <em class="parameter"><code>key</code></em>
doesn't exist or isn't a
<span class="type">guint64</span>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1111,7 +1097,6 @@ precision floating point number using <code class="function">strtod()</code>.</p
or 0.0 if <em class="parameter"><code>key</code></em>
doesn't exist or isn't a
<span class="type">gdouble</span>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1153,7 +1138,6 @@ on the string value against "1" and "true".</p>
or <code class="literal">FALSE</code> if <em class="parameter"><code>key</code></em>
doesn't exist or
isn't a <span class="type">gboolean</span>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1291,7 +1275,6 @@ using <code class="function">strtol()</code>.</p>
<a name="id-1.2.3.7.30.6"></a><h4>Returns</h4>
<p> The value of the sysfs attribute or 0 if there is no such
attribute.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1331,7 +1314,6 @@ g_udev_device_get_sysfs_attr_as_uint64
<a name="id-1.2.3.7.31.6"></a><h4>Returns</h4>
<p> The value of the sysfs attribute or 0 if there is no such
attribute.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1371,7 +1353,6 @@ precision floating point number using <code class="function">strtod()</code>.</p
<a name="id-1.2.3.7.32.6"></a><h4>Returns</h4>
<p> The value of the sysfs attribute or 0.0 if there is no such
attribute.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1412,7 +1393,6 @@ on the string value against "1" and "true".</p>
<a name="id-1.2.3.7.33.6"></a><h4>Returns</h4>
<p> The value of the sysfs attribute or <code class="literal">FALSE</code> if there is no such
attribute.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1494,7 +1474,6 @@ should not be freed by the caller. </p>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/GUdevEnumerator.html b/docs/gudev/html/GUdevEnumerator.html
index 818baa09ba..0c5973df48 100644
--- a/docs/gudev/html/GUdevEnumerator.html
+++ b/docs/gudev/html/GUdevEnumerator.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: GUdevEnumerator</title>
+<title>GUdevEnumerator: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="ref-API.html" title="API Reference">
<link rel="prev" href="GUdevDevice.html" title="GUdevDevice">
<link rel="next" href="gudev-hierarchy.html" title="Object Hierarchy">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -205,9 +205,8 @@ and execute the query to get a list of devices with
<div class="refsect3">
<a name="id-1.2.4.8.2.6"></a><h4>Returns</h4>
<p> A new <a class="link" href="GUdevEnumerator.html" title="GUdevEnumerator"><span class="type">GUdevEnumerator</span></a> object. Free with <code class="function">g_object_unref()</code>.</p>
-<p></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -245,7 +244,7 @@ g_udev_enumerator_add_match_subsystem (<em class="parameter"><code><a class="lin
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -284,7 +283,7 @@ g_udev_enumerator_add_nomatch_subsystem
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -330,7 +329,7 @@ g_udev_enumerator_add_match_sysfs_attr
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -376,7 +375,7 @@ g_udev_enumerator_add_nomatch_sysfs_attr
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -421,7 +420,7 @@ g_udev_enumerator_add_match_property (<em class="parameter"><code><a class="link
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -459,7 +458,7 @@ g_udev_enumerator_add_match_name (<em class="parameter"><code><a class="link" hr
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -497,7 +496,7 @@ g_udev_enumerator_add_match_tag (<em class="parameter"><code><a class="link" hre
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -527,7 +526,7 @@ g_udev_enumerator_add_match_is_initialized
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -564,7 +563,7 @@ g_udev_enumerator_add_sysfs_path (<em class="parameter"><code><a class="link" hr
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -593,7 +592,7 @@ g_udev_enumerator_execute (<em class="parameter"><code><a class="link" href="GUd
<p> A list of <a class="link" href="GUdevDevice.html" title="GUdevDevice"><span class="type">GUdevDevice</span></a> objects. The caller should free the result by using <code class="function">g_object_unref()</code> on each element in the list and then <code class="function">g_list_free()</code> on the list. </p>
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GUdevDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
</div>
<div class="refsect1">
@@ -602,7 +601,7 @@ g_udev_enumerator_execute (<em class="parameter"><code><a class="link" href="GUd
<a name="GUdevEnumerator-struct"></a><h3>GUdevEnumerator</h3>
<pre class="programlisting">typedef struct _GUdevEnumerator GUdevEnumerator;</pre>
<p>The <a class="link" href="GUdevEnumerator.html" title="GUdevEnumerator"><span class="type">GUdevEnumerator</span></a> struct is opaque and should not be accessed directly.</p>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
<hr>
<div class="refsect2">
@@ -627,7 +626,7 @@ g_udev_enumerator_execute (<em class="parameter"><code><a class="link" href="GUd
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
</div>
<div class="refsect1">
@@ -637,12 +636,11 @@ g_udev_enumerator_execute (<em class="parameter"><code><a class="link" href="GUd
<pre class="programlisting"> “client” <a class="link" href="GUdevClient.html" title="GUdevClient"><span class="type">GUdevClient</span></a> *</pre>
<p>The <a class="link" href="GUdevClient.html" title="GUdevClient"><span class="type">GUdevClient</span></a> to enumerate devices from.</p>
<p>Flags: Read / Write / Construct Only</p>
-<p class="since">Since 165</p>
+<p class="since">Since: <a class="link" href="ix02.html#api-index-165">165</a></p>
</div>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/annotation-glossary.html b/docs/gudev/html/annotation-glossary.html
index 2998421ef3..000b1dc452 100644
--- a/docs/gudev/html/annotation-glossary.html
+++ b/docs/gudev/html/annotation-glossary.html
@@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: Annotation Glossary</title>
+<title>Annotation Glossary: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="api-index-deprecated.html" title="Index of deprecated API">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -45,7 +45,6 @@
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/api-index-deprecated.html b/docs/gudev/html/api-index-deprecated.html
index 40f076016c..44aab5dd1f 100644
--- a/docs/gudev/html/api-index-deprecated.html
+++ b/docs/gudev/html/api-index-deprecated.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: Index of deprecated API</title>
+<title>Index of deprecated API: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="ix02.html" title="Index of new symbols in 165">
<link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -25,7 +25,6 @@
<a name="idx"></a>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/api-index-full.html b/docs/gudev/html/api-index-full.html
index 0e21653b7f..2c48f53d68 100644
--- a/docs/gudev/html/api-index-full.html
+++ b/docs/gudev/html/api-index-full.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: API Index</title>
+<title>API Index: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="gudev-hierarchy.html" title="Object Hierarchy">
<link rel="next" href="ix02.html" title="Index of new symbols in 165">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -278,7 +278,6 @@
<dd></dd>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/gudev-hierarchy.html b/docs/gudev/html/gudev-hierarchy.html
index c74d63ae58..68651d2f18 100644
--- a/docs/gudev/html/gudev-hierarchy.html
+++ b/docs/gudev/html/gudev-hierarchy.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: Object Hierarchy</title>
+<title>Object Hierarchy: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="GUdevEnumerator.html" title="GUdevEnumerator">
<link rel="next" href="api-index-full.html" title="API Index">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -32,7 +32,6 @@
</pre>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/gudev.devhelp2 b/docs/gudev/html/gudev.devhelp2
index fed8618e2d..4045e7417c 100644
--- a/docs/gudev/html/gudev.devhelp2
+++ b/docs/gudev/html/gudev.devhelp2
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
-<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
-<book xmlns="http://www.devhelp.net/book" title="GUdev Reference Manual" link="index.html" author="" name="gudev" version="2" language="c">
+<book xmlns="" title="GUdev Reference Manual" link="index.html" author="" name="gudev" version="2" language="c">
<chapters>
<sub name="API Reference" link="ref-API.html">
<sub name="GUdevClient" link="GUdevClient.html"/>
@@ -75,5 +74,8 @@
<keyword type="struct" name="GUdevEnumerator" link="GUdevEnumerator.html#GUdevEnumerator-struct"/>
<keyword type="struct" name="struct GUdevEnumeratorClass" link="GUdevEnumerator.html#GUdevEnumeratorClass" since="165"/>
<keyword type="property" name="The “client” property" link="GUdevEnumerator.html#GUdevEnumerator--client"/>
+ <keyword type="constant" name="G_UDEV_DEVICE_TYPE_NONE" link="GUdevClient.html#G-UDEV-DEVICE-TYPE-NONE:CAPS"/>
+ <keyword type="constant" name="G_UDEV_DEVICE_TYPE_BLOCK" link="GUdevClient.html#G-UDEV-DEVICE-TYPE-BLOCK:CAPS"/>
+ <keyword type="constant" name="G_UDEV_DEVICE_TYPE_CHAR" link="GUdevClient.html#G-UDEV-DEVICE-TYPE-CHAR:CAPS"/>
</functions>
</book>
diff --git a/docs/gudev/html/index.html b/docs/gudev/html/index.html
index 2b06c44654..8877288c19 100644
--- a/docs/gudev/html/index.html
+++ b/docs/gudev/html/index.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="next" href="ref-API.html" title="API Reference">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -15,7 +15,7 @@
<div>
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GUdev Reference Manual</p></th></tr></table></div>
<div><p class="releaseinfo">
- For version 219
+ For version 220
— the latest version of this
documentation can be found at
<a class="ulink" href="http://www.freedesktop.org/software/systemd/gudev/" target="_top">
@@ -47,7 +47,6 @@
</dl></div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/index.sgml b/docs/gudev/html/index.sgml
index 578f50a13e..45c6f44c98 100644
--- a/docs/gudev/html/index.sgml
+++ b/docs/gudev/html/index.sgml
@@ -17,6 +17,9 @@
<ANCHOR id="GUdevClient-struct" href="gudev/GUdevClient.html#GUdevClient-struct">
<ANCHOR id="GUdevClientClass" href="gudev/GUdevClient.html#GUdevClientClass">
<ANCHOR id="GUdevDeviceType" href="gudev/GUdevClient.html#GUdevDeviceType">
+<ANCHOR id="G-UDEV-DEVICE-TYPE-NONE:CAPS" href="gudev/GUdevClient.html#G-UDEV-DEVICE-TYPE-NONE:CAPS">
+<ANCHOR id="G-UDEV-DEVICE-TYPE-BLOCK:CAPS" href="gudev/GUdevClient.html#G-UDEV-DEVICE-TYPE-BLOCK:CAPS">
+<ANCHOR id="G-UDEV-DEVICE-TYPE-CHAR:CAPS" href="gudev/GUdevClient.html#G-UDEV-DEVICE-TYPE-CHAR:CAPS">
<ANCHOR id="GUdevDeviceNumber" href="gudev/GUdevClient.html#GUdevDeviceNumber">
<ANCHOR id="GUdevClient.property-details" href="gudev/GUdevClient.html#GUdevClient.property-details">
<ANCHOR id="GUdevClient--subsystems" href="gudev/GUdevClient.html#GUdevClient--subsystems">
diff --git a/docs/gudev/html/ix02.html b/docs/gudev/html/ix02.html
index ea7519413f..ded4d98c0b 100644
--- a/docs/gudev/html/ix02.html
+++ b/docs/gudev/html/ix02.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: Index of new symbols in 165</title>
+<title>Index of new symbols in 165: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="api-index-full.html" title="API Index">
<link rel="next" href="api-index-deprecated.html" title="Index of deprecated API">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -99,7 +99,6 @@
<dd></dd>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/ref-API.html b/docs/gudev/html/ref-API.html
index 693602fc87..457d8b2f2b 100644
--- a/docs/gudev/html/ref-API.html
+++ b/docs/gudev/html/ref-API.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GUdev Reference Manual: API Reference</title>
+<title>API Reference: GUdev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GUdev Reference Manual">
<link rel="up" href="index.html" title="GUdev Reference Manual">
<link rel="prev" href="index.html" title="GUdev Reference Manual">
<link rel="next" href="GUdevClient.html" title="GUdevClient">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -35,7 +35,6 @@
</dl></div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/gudev/html/style.css b/docs/gudev/html/style.css
index c141ddd291..367542097b 100644
--- a/docs/gudev/html/style.css
+++ b/docs/gudev/html/style.css
@@ -60,7 +60,7 @@ a:hover
div.informaltable table
{
border-collapse: separate;
- border-spacing: 1em 0.5em;
+ border-spacing: 1em 0.3em;
border: none;
}
@@ -148,6 +148,8 @@ div.table table th
h4
{
color: #555753;
+ margin-top: 1em;
+ margin-bottom: 1em;
}
hr
@@ -166,17 +168,16 @@ dl.toc dt
padding-bottom: 0.25em;
}
-dl.toc > dd > dl > dt
+dl.toc > dt
{
padding-top: 0.25em;
padding-bottom: 0.25em;
+ font-weight: bold;
}
-dl.toc > dt
+dl.toc > dl
{
- padding-top: 1em;
padding-bottom: 0.5em;
- font-weight: bold;
}
.parameter
@@ -346,7 +347,9 @@ acronym,abbr
}
@media screen {
- sup a.footnote
+ /* these have a <sup> as a first child, but since there are no parent selectors
+ * we can't use that. */
+ a.footnote
{
position: relative;
top: 0em ! important;
diff --git a/docs/gudev/version.xml b/docs/gudev/version.xml
index 037ba97196..3d4c7bfe8e 100644
--- a/docs/gudev/version.xml
+++ b/docs/gudev/version.xml
@@ -1 +1 @@
-219
+220
diff --git a/docs/libudev/Makefile.in b/docs/libudev/Makefile.in
index be286ef99e..8d4700fdbf 100644
--- a/docs/libudev/Makefile.in
+++ b/docs/libudev/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.15 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
+# Copyright (C) 1994-2014 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,17 @@
# Everything below here is generic #
####################################
VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
@@ -83,17 +93,17 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
-DIST_COMMON = $(top_srcdir)/docs/gtk-doc.make $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am $(srcdir)/version.xml.in
subdir = docs/libudev
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/attributes.m4 \
- $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/intltool.m4 \
- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/arch.m4 \
+ $(top_srcdir)/m4/attributes.m4 $(top_srcdir)/m4/gtk-doc.m4 \
+ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
+ $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES = version.xml
@@ -118,6 +128,8 @@ am__can_run_installinfo = \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/version.xml.in \
+ $(top_srcdir)/docs/gtk-doc.make
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ACL_LIBS = @ACL_LIBS@
@@ -143,7 +155,6 @@ CHKCONFIG = @CHKCONFIG@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
-DATADIRNAME = @DATADIRNAME@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEBUGTTY = @DEBUGTTY@
@@ -157,6 +168,12 @@ DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
+EFI_ARCH = @EFI_ARCH@
+EFI_CC = @EFI_CC@
+EFI_INC_DIR = @EFI_INC_DIR@
+EFI_LDS_DIR = @EFI_LDS_DIR@
+EFI_LIB_DIR = @EFI_LIB_DIR@
+EFI_MACHINE_TYPE_NAME = @EFI_MACHINE_TYPE_NAME@
EGREP = @EGREP@
ELFUTILS_LIBS = @ELFUTILS_LIBS@
EXEEXT = @EXEEXT@
@@ -235,11 +252,13 @@ MICROHTTPD_LIBS = @MICROHTTPD_LIBS@
MKDIR_P = @MKDIR_P@
MOUNT_CFLAGS = @MOUNT_CFLAGS@
MOUNT_LIBS = @MOUNT_LIBS@
+MOUNT_PATH = @MOUNT_PATH@
MSGFMT = @MSGFMT@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
NTP_SERVERS = @NTP_SERVERS@
+OBJCOPY = @OBJCOPY@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
@@ -267,6 +286,8 @@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
PYTHON_PLATFORM = @PYTHON_PLATFORM@
PYTHON_PREFIX = @PYTHON_PREFIX@
PYTHON_VERSION = @PYTHON_VERSION@
+QEMU = @QEMU@
+QEMU_BIOS = @QEMU_BIOS@
QRENCODE_CFLAGS = @QRENCODE_CFLAGS@
QRENCODE_LIBS = @QRENCODE_LIBS@
QUOTACHECK = @QUOTACHECK@
@@ -296,6 +317,7 @@ TELINIT = @TELINIT@
TERMINAL_CFLAGS = @TERMINAL_CFLAGS@
TERMINAL_LIBS = @TERMINAL_LIBS@
TTY_GID = @TTY_GID@
+UMOUNT_PATH = @UMOUNT_PATH@
UNIFONT = @UNIFONT@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
@@ -472,6 +494,7 @@ GPATH = $(srcdir)
TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
SETUP_FILES = \
$(content_files) \
+ $(expand_content_files) \
$(DOC_MAIN_SGML_FILE) \
$(DOC_MODULE)-sections.txt \
$(DOC_MODULE)-overrides.txt
@@ -549,7 +572,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/libudev/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign docs/libudev/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -558,7 +580,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/docs/gtk-doc.make:
+$(top_srcdir)/docs/gtk-doc.make $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -735,6 +757,8 @@ uninstall-am: uninstall-local
mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
uninstall-am uninstall-local
+.PRECIOUS: Makefile
+
# Hack, hack. You silly gtk-doc, you must not add CFLAGS multiple
# times when calling gcc; it surely can not work with options that must
@@ -760,7 +784,7 @@ $(REPORT_FILES): sgml-build.stamp
setup-build.stamp:
-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
+ files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
if test "x$$files" != "x" ; then \
for file in $$files ; do \
destdir=`dirname $(abs_builddir)/$$file`; \
@@ -781,7 +805,7 @@ scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
scanobj_options=""; \
gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
scanobj_options="--verbose"; \
fi; \
@@ -809,17 +833,17 @@ sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DO
sgml.stamp: sgml-build.stamp
@true
-html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
mkhtml_options=""; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkhtml_options="$$mkhtml_options --verbose"; \
fi; \
fi; \
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
fi; \
cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
@@ -835,11 +859,11 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
$(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
$(AM_V_at)touch html-build.stamp
-pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
+pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
mkpdf_options=""; \
gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
- if test "$(?)" = "0"; then \
+ if test "$$?" = "0"; then \
if test "x$(V)" = "x1"; then \
mkpdf_options="$$mkpdf_options --verbose"; \
fi; \
@@ -864,12 +888,15 @@ clean-local:
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
rm -f $(DOC_MODULE).types; \
fi
+ @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
+ rm -f $(DOC_MODULE)-sections.txt; \
+ fi
distclean-local:
@rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
- rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
+ rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
fi
maintainer-clean-local:
diff --git a/docs/libudev/html/api-index-full.html b/docs/libudev/html/api-index-full.html
index 64badec8b2..7606a87d73 100644
--- a/docs/libudev/html/api-index-full.html
+++ b/docs/libudev/html/api-index-full.html
@@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: Index</title>
+<title>Index: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="index.html" title="libudev Reference Manual">
<link rel="prev" href="libudev-udev-util.html" title="udev_util">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -449,7 +449,6 @@
<dd></dd>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/ch01.html b/docs/libudev/html/ch01.html
index 4e9bea8967..ff0635613d 100644
--- a/docs/libudev/html/ch01.html
+++ b/docs/libudev/html/ch01.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: API Reference</title>
+<title>API Reference: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="index.html" title="libudev Reference Manual">
<link rel="prev" href="index.html" title="libudev Reference Manual">
<link rel="next" href="libudev-udev.html" title="udev">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -51,7 +51,6 @@
<a name="idx"></a>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/index.html b/docs/libudev/html/index.html
index 29c10c7917..13c62a387a 100644
--- a/docs/libudev/html/index.html
+++ b/docs/libudev/html/index.html
@@ -6,7 +6,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="next" href="ch01.html" title="API Reference">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -15,7 +15,7 @@
<div>
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">libudev Reference Manual</p></th></tr></table></div>
<div><p class="releaseinfo">
- For version 219
+ For version 220
— the latest version of this
documentation can be found at
<a class="ulink" href="http://www.freedesktop.org/software/systemd/libudev/" target="_top">
@@ -58,7 +58,6 @@
</dl></div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-device.html b/docs/libudev/html/libudev-udev-device.html
index cb647b6a0b..b081688fe4 100644
--- a/docs/libudev/html/libudev-udev-device.html
+++ b/docs/libudev/html/libudev-udev-device.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_device</title>
+<title>udev_device: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-list.html" title="udev_list">
<link rel="next" href="libudev-udev-monitor.html" title="udev_monitor">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -308,7 +308,6 @@ udev_device_ref (<em class="parameter"><code><span class="type">struct udev_devi
<div class="refsect3">
<a name="id-1.2.4.6.2.6"></a><h4>Returns</h4>
<p> the passed udev device</p>
-<p></p>
</div>
</div>
<hr>
@@ -336,7 +335,6 @@ the resources of the device will be released.</p>
<div class="refsect3">
<a name="id-1.2.4.6.3.6"></a><h4>Returns</h4>
<p> <span class="type">NULL</span></p>
-<p></p>
</div>
</div>
<hr>
@@ -363,7 +361,6 @@ udev_device_get_udev (<em class="parameter"><code><span class="type">struct udev
<div class="refsect3">
<a name="id-1.2.4.6.4.6"></a><h4>Returns</h4>
<p> the udev library context</p>
-<p></p>
</div>
</div>
<hr>
@@ -402,7 +399,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.4.6.5.7"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it does not exist</p>
-<p></p>
</div>
</div>
<hr>
@@ -448,7 +444,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.4.6.6.7"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it does not exist</p>
-<p></p>
</div>
</div>
<hr>
@@ -494,7 +489,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.4.6.7.7"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it does not exist</p>
-<p></p>
</div>
</div>
<hr>
@@ -537,7 +531,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.4.6.8.7"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it does not exist</p>
-<p></p>
</div>
</div>
<hr>
@@ -569,7 +562,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.4.6.9.7"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it does not exist</p>
-<p></p>
</div>
</div>
<hr>
@@ -603,7 +595,6 @@ references.</p>
<div class="refsect3">
<a name="id-1.2.4.6.10.9"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, if it no parent exist.</p>
-<p></p>
</div>
</div>
<hr>
@@ -653,7 +644,6 @@ references.</p>
<div class="refsect3">
<a name="id-1.2.4.6.11.9"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span> if no matching parent exists.</p>
-<p></p>
</div>
</div>
<hr>
@@ -681,7 +671,6 @@ does not contain the sys mount point, and starts with a '/'.</p>
<div class="refsect3">
<a name="id-1.2.4.6.12.6"></a><h4>Returns</h4>
<p> the devpath of the udev device</p>
-<p></p>
</div>
</div>
<hr>
@@ -709,7 +698,6 @@ contain any "/".</p>
<div class="refsect3">
<a name="id-1.2.4.6.13.6"></a><h4>Returns</h4>
<p> the subsystem name of the udev device, or <span class="type">NULL</span> if it can not be determined</p>
-<p></p>
</div>
</div>
<hr>
@@ -736,7 +724,6 @@ udev_device_get_devtype (<em class="parameter"><code><span class="type">struct u
<div class="refsect3">
<a name="id-1.2.4.6.14.6"></a><h4>Returns</h4>
<p> the devtype name of the udev device, or <span class="type">NULL</span> if it can not be determined</p>
-<p></p>
</div>
</div>
<hr>
@@ -764,7 +751,6 @@ absolute path and starts with the sys mount point.</p>
<div class="refsect3">
<a name="id-1.2.4.6.15.6"></a><h4>Returns</h4>
<p> the sys path of the udev device</p>
-<p></p>
</div>
</div>
<hr>
@@ -791,7 +777,6 @@ udev_device_get_sysname (<em class="parameter"><code><span class="type">struct u
<div class="refsect3">
<a name="id-1.2.4.6.16.6"></a><h4>Returns</h4>
<p> the name string of the device device</p>
-<p></p>
</div>
</div>
<hr>
@@ -818,7 +803,6 @@ udev_device_get_sysnum (<em class="parameter"><code><span class="type">struct ud
<div class="refsect3">
<a name="id-1.2.4.6.17.6"></a><h4>Returns</h4>
<p> the trailing number string of the device name</p>
-<p></p>
</div>
</div>
<hr>
@@ -846,7 +830,6 @@ The path is an absolute path, and starts with the device directory.</p>
<div class="refsect3">
<a name="id-1.2.4.6.18.6"></a><h4>Returns</h4>
<p> the device node file name of the udev device, or <span class="type">NULL</span> if no device node exists</p>
-<p></p>
</div>
</div>
<hr>
@@ -877,7 +860,6 @@ or network interfaces. All other devices return 1 here.</p>
<div class="refsect3">
<a name="id-1.2.4.6.19.7"></a><h4>Returns</h4>
<p> 1 if the device is set up. 0 otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -909,7 +891,6 @@ the device directory.</p>
<div class="refsect3">
<a name="id-1.2.4.6.20.6"></a><h4>Returns</h4>
<p> the first entry of the device node link list</p>
-<p></p>
</div>
</div>
<hr>
@@ -917,31 +898,8 @@ the device directory.</p>
<a name="udev-device-get-properties-list-entry"></a><h3>udev_device_get_properties_list_entry ()</h3>
<pre class="programlisting">struct <a class="link" href="libudev-udev-list.html#udev-list-entry" title="struct udev_list_entry"><span class="returnvalue">udev_list_entry</span></a> *
udev_device_get_properties_list_entry (<em class="parameter"><code><span class="type">struct udev_device</span> *udev_device</code></em>);</pre>
-<p>Retrieve the list of key/value device properties of the udev
-device. The next list entry can be retrieved with <a class="link" href="libudev-udev-list.html#udev-list-entry-get-next" title="udev_list_entry_get_next ()"><code class="function">udev_list_entry_get_next()</code></a>,
-which returns <span class="type">NULL</span> if no more entries exist. The property name
-can be retrieved from the list entry by <a class="link" href="libudev-udev-list.html#udev-list-entry-get-name" title="udev_list_entry_get_name ()"><code class="function">udev_list_entry_get_name()</code></a>,
-the property value by <a class="link" href="libudev-udev-list.html#udev-list-entry-get-value" title="udev_list_entry_get_value ()"><code class="function">udev_list_entry_get_value()</code></a>.</p>
-<div class="refsect3">
-<a name="id-1.2.4.6.21.5"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
-<colgroup>
-<col width="150px" class="parameters_name">
-<col class="parameters_description">
-<col width="200px" class="parameters_annotations">
-</colgroup>
-<tbody><tr>
-<td class="parameter_name"><p>udev_device</p></td>
-<td class="parameter_description"><p>udev device</p></td>
-<td class="parameter_annotations"> </td>
-</tr></tbody>
-</table></div>
-</div>
-<div class="refsect3">
-<a name="id-1.2.4.6.21.6"></a><h4>Returns</h4>
-<p> the first entry of the property list</p>
-<p></p>
-</div>
+<p>
+</p>
</div>
<hr>
<div class="refsect2">
@@ -970,7 +928,6 @@ can be retrieved from the list entry by <a class="link" href="libudev-udev-list.
<div class="refsect3">
<a name="id-1.2.4.6.22.6"></a><h4>Returns</h4>
<p> the first entry of the tag list</p>
-<p></p>
</div>
</div>
<hr>
@@ -1005,7 +962,6 @@ udev_device_get_property_value (<em class="parameter"><code><span class="type">s
<div class="refsect3">
<a name="id-1.2.4.6.23.6"></a><h4>Returns</h4>
<p> the property string, or <span class="type">NULL</span> if there is no such property.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1032,7 +988,6 @@ udev_device_get_driver (<em class="parameter"><code><span class="type">struct ud
<div class="refsect3">
<a name="id-1.2.4.6.24.6"></a><h4>Returns</h4>
<p> the driver name string, or <span class="type">NULL</span> if there is no driver attached.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1059,7 +1014,6 @@ udev_device_get_devnum (<em class="parameter"><code><span class="type">struct ud
<div class="refsect3">
<a name="id-1.2.4.6.25.6"></a><h4>Returns</h4>
<p> the dev_t number.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1088,7 +1042,6 @@ offline.</p>
<div class="refsect3">
<a name="id-1.2.4.6.26.6"></a><h4>Returns</h4>
<p> the kernel action value, or <span class="type">NULL</span> if there is no action value available.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1124,7 +1077,6 @@ value and not open the attribute again.</p>
<div class="refsect3">
<a name="id-1.2.4.6.27.6"></a><h4>Returns</h4>
<p> the content of a sys attribute file, or <span class="type">NULL</span> if there is no sys attribute value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1165,7 +1117,6 @@ udev_device_set_sysattr_value (<em class="parameter"><code><span class="type">st
<div class="refsect3">
<a name="id-1.2.4.6.28.6"></a><h4>Returns</h4>
<p> Negative error code on failure or 0 on success.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1194,7 +1145,6 @@ device without reading their values.</p>
<div class="refsect3">
<a name="id-1.2.4.6.29.6"></a><h4>Returns</h4>
<p> the first entry of the property list</p>
-<p></p>
</div>
</div>
<hr>
@@ -1222,7 +1172,6 @@ sys do not have a sequence number.</p>
<div class="refsect3">
<a name="id-1.2.4.6.30.6"></a><h4>Returns</h4>
<p> the kernel event sequence number, or 0 if there is no sequence number available.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1253,7 +1202,6 @@ in the udev database. All other devices return 0 here.</p>
<div class="refsect3">
<a name="id-1.2.4.6.31.7"></a><h4>Returns</h4>
<p> the number of microseconds since the device was first seen.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1288,7 +1236,6 @@ udev_device_has_tag (<em class="parameter"><code><span class="type">struct udev_
<div class="refsect3">
<a name="id-1.2.4.6.32.6"></a><h4>Returns</h4>
<p> 1 if the tag is found. 0 otherwise.</p>
-<p></p>
</div>
</div>
</div>
@@ -1296,13 +1243,36 @@ udev_device_has_tag (<em class="parameter"><code><span class="type">struct udev_
<a name="libudev-udev-device.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="udev-device"></a><h3>struct udev_device</h3>
-<pre class="programlisting">struct udev_device;</pre>
+<pre class="programlisting">struct udev_device {
+ struct udev *udev;
+
+ /* real device object */
+ sd_device *device;
+
+ /* legacy */
+ int refcount;
+
+ struct udev_device *parent;
+ bool parent_set;
+
+ struct udev_list properties;
+ uint64_t properties_generation;
+ struct udev_list tags;
+ uint64_t tags_generation;
+ struct udev_list devlinks;
+ uint64_t devlinks_generation;
+ bool properties_read:1;
+ bool tags_read:1;
+ bool devlinks_read:1;
+ struct udev_list sysattrs;
+ bool sysattrs_read;
+};
+</pre>
<p>Opaque object representing one kernel sys device.</p>
</div>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-enumerate.html b/docs/libudev/html/libudev-udev-enumerate.html
index 2d7d4b497e..f4fc54e450 100644
--- a/docs/libudev/html/libudev-udev-enumerate.html
+++ b/docs/libudev/html/libudev-udev-enumerate.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_enumerate</title>
+<title>udev_enumerate: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-monitor.html" title="udev_monitor">
<link rel="next" href="libudev-udev-queue.html" title="udev_queue">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -216,7 +216,6 @@ udev_enumerate_ref (<em class="parameter"><code><span class="type">struct udev_e
<div class="refsect3">
<a name="id-1.2.6.6.2.6"></a><h4>Returns</h4>
<p> the passed enumeration context</p>
-<p></p>
</div>
</div>
<hr>
@@ -244,7 +243,6 @@ all resources of the enumeration context will be released.</p>
<div class="refsect3">
<a name="id-1.2.6.6.3.6"></a><h4>Returns</h4>
<p> <span class="type">NULL</span></p>
-<p></p>
</div>
</div>
<hr>
@@ -271,7 +269,6 @@ udev_enumerate_get_udev (<em class="parameter"><code><span class="type">struct u
<div class="refsect3">
<a name="id-1.2.6.6.4.6"></a><h4>Returns</h4>
<p> a pointer to the context.</p>
-<p></p>
</div>
</div>
<hr>
@@ -298,7 +295,6 @@ udev_enumerate_new (<em class="parameter"><code><span class="type">struct udev</
<div class="refsect3">
<a name="id-1.2.6.6.5.6"></a><h4>Returns</h4>
<p> an enumeration context.</p>
-<p></p>
</div>
</div>
<hr>
@@ -333,7 +329,6 @@ udev_enumerate_add_match_subsystem (<em class="parameter"><code><span class="typ
<div class="refsect3">
<a name="id-1.2.6.6.6.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -368,7 +363,6 @@ udev_enumerate_add_nomatch_subsystem (<em class="parameter"><code><span class="t
<div class="refsect3">
<a name="id-1.2.6.6.7.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -409,7 +403,6 @@ udev_enumerate_add_match_sysattr (<em class="parameter"><code><span class="type"
<div class="refsect3">
<a name="id-1.2.6.6.8.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -450,7 +443,6 @@ udev_enumerate_add_nomatch_sysattr (<em class="parameter"><code><span class="typ
<div class="refsect3">
<a name="id-1.2.6.6.9.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -491,7 +483,6 @@ udev_enumerate_add_match_property (<em class="parameter"><code><span class="type
<div class="refsect3">
<a name="id-1.2.6.6.10.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -526,7 +517,6 @@ udev_enumerate_add_match_tag (<em class="parameter"><code><span class="type">str
<div class="refsect3">
<a name="id-1.2.6.6.11.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -564,7 +554,6 @@ is cleaned up.</p>
<div class="refsect3">
<a name="id-1.2.6.6.12.7"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -600,7 +589,6 @@ and are not network interfaces.</p>
<div class="refsect3">
<a name="id-1.2.6.6.13.8"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -635,7 +623,6 @@ udev_enumerate_add_match_sysname (<em class="parameter"><code><span class="type"
<div class="refsect3">
<a name="id-1.2.6.6.14.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -670,7 +657,6 @@ udev_enumerate_add_syspath (<em class="parameter"><code><span class="type">struc
<div class="refsect3">
<a name="id-1.2.6.6.15.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -698,7 +684,6 @@ will return all currently available devices.</p>
<div class="refsect3">
<a name="id-1.2.6.6.16.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -725,7 +710,6 @@ udev_enumerate_scan_subsystems (<em class="parameter"><code><span class="type">s
<div class="refsect3">
<a name="id-1.2.6.6.17.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -752,7 +736,6 @@ udev_enumerate_get_list_entry (<em class="parameter"><code><span class="type">st
<div class="refsect3">
<a name="id-1.2.6.6.18.6"></a><h4>Returns</h4>
<p> a udev_list_entry.</p>
-<p></p>
</div>
</div>
</div>
@@ -766,7 +749,6 @@ udev_enumerate_get_list_entry (<em class="parameter"><code><span class="type">st
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-hwdb.html b/docs/libudev/html/libudev-udev-hwdb.html
index 127fdebc75..1a431ee1f5 100644
--- a/docs/libudev/html/libudev-udev-hwdb.html
+++ b/docs/libudev/html/libudev-udev-hwdb.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_hwdb</title>
+<title>udev_hwdb: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-queue.html" title="udev_queue">
<link rel="next" href="libudev-udev-util.html" title="udev_util">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -112,7 +112,6 @@ udev_hwdb_ref (<em class="parameter"><code><span class="type">struct udev_hwdb</
<div class="refsect3">
<a name="id-1.2.8.6.2.6"></a><h4>Returns</h4>
<p> the passed enumeration context</p>
-<p></p>
</div>
</div>
<hr>
@@ -140,7 +139,6 @@ all resources of the hwdb context will be released.</p>
<div class="refsect3">
<a name="id-1.2.8.6.3.6"></a><h4>Returns</h4>
<p> <span class="type">NULL</span></p>
-<p></p>
</div>
</div>
<hr>
@@ -167,7 +165,6 @@ udev_hwdb_new (<em class="parameter"><code><span class="type">struct udev</span>
<div class="refsect3">
<a name="id-1.2.8.6.4.6"></a><h4>Returns</h4>
<p> a hwdb context.</p>
-<p></p>
</div>
</div>
<hr>
@@ -202,8 +199,8 @@ of a list of retrieved properties is returned.</p>
</tr>
<tr>
<td class="parameter_name"><p>flags</p></td>
-<td class="parameter_description"><p>(unused)</p></td>
-<td class="parameter_annotations"> </td>
+<td class="parameter_description"><p>. </p></td>
+<td class="parameter_annotations"><span class="annotation">[unused]</span></td>
</tr>
</tbody>
</table></div>
@@ -211,7 +208,6 @@ of a list of retrieved properties is returned.</p>
<div class="refsect3">
<a name="id-1.2.8.6.5.6"></a><h4>Returns</h4>
<p> a udev_list_entry.</p>
-<p></p>
</div>
</div>
</div>
@@ -225,7 +221,6 @@ of a list of retrieved properties is returned.</p>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-list.html b/docs/libudev/html/libudev-udev-list.html
index e1c27543d5..e53931d879 100644
--- a/docs/libudev/html/libudev-udev-list.html
+++ b/docs/libudev/html/libudev-udev-list.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_list</title>
+<title>udev_list: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev.html" title="udev">
<link rel="next" href="libudev-udev-device.html" title="udev_device">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -118,7 +118,6 @@ udev_list_entry_get_next (<em class="parameter"><code><span class="type">struct
<div class="refsect3">
<a name="id-1.2.3.6.2.6"></a><h4>Returns</h4>
<p> udev_list_entry, <span class="type">NULL</span> if no more entries are available.</p>
-<p></p>
</div>
</div>
<hr>
@@ -153,7 +152,6 @@ udev_list_entry_get_by_name (<em class="parameter"><code><span class="type">stru
<div class="refsect3">
<a name="id-1.2.3.6.3.6"></a><h4>Returns</h4>
<p> udev_list_entry, <span class="type">NULL</span> if no matching entry is found.</p>
-<p></p>
</div>
</div>
<hr>
@@ -180,7 +178,6 @@ udev_list_entry_get_name (<em class="parameter"><code><span class="type">struct
<div class="refsect3">
<a name="id-1.2.3.6.4.6"></a><h4>Returns</h4>
<p> the name string of this entry.</p>
-<p></p>
</div>
</div>
<hr>
@@ -207,7 +204,6 @@ udev_list_entry_get_value (<em class="parameter"><code><span class="type">struct
<div class="refsect3">
<a name="id-1.2.3.6.5.6"></a><h4>Returns</h4>
<p> the value string of this entry.</p>
-<p></p>
</div>
</div>
<hr>
@@ -250,7 +246,6 @@ contains a name, and optionally a value.</p>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-monitor.html b/docs/libudev/html/libudev-udev-monitor.html
index ab64d24a90..3b932bf2e5 100644
--- a/docs/libudev/html/libudev-udev-monitor.html
+++ b/docs/libudev/html/libudev-udev-monitor.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_monitor</title>
+<title>udev_monitor: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-device.html" title="udev_device">
<link rel="next" href="libudev-udev-enumerate.html" title="udev_enumerate">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -175,7 +175,6 @@ udev_monitor_ref (<em class="parameter"><code><span class="type">struct udev_mon
<div class="refsect3">
<a name="id-1.2.5.6.2.6"></a><h4>Returns</h4>
<p> the passed udev monitor</p>
-<p></p>
</div>
</div>
<hr>
@@ -204,7 +203,6 @@ will be released.</p>
<div class="refsect3">
<a name="id-1.2.5.6.3.6"></a><h4>Returns</h4>
<p> <span class="type">NULL</span></p>
-<p></p>
</div>
</div>
<hr>
@@ -231,7 +229,6 @@ udev_monitor_get_udev (<em class="parameter"><code><span class="type">struct ude
<div class="refsect3">
<a name="id-1.2.5.6.4.6"></a><h4>Returns</h4>
<p> the udev library context</p>
-<p></p>
</div>
</div>
<hr>
@@ -277,7 +274,6 @@ release the resources of the udev monitor.</p>
<div class="refsect3">
<a name="id-1.2.5.6.5.8"></a><h4>Returns</h4>
<p> a new udev monitor, or <span class="type">NULL</span>, in case of an error</p>
-<p></p>
</div>
</div>
<hr>
@@ -305,7 +301,6 @@ udev_monitor_enable_receiving (<em class="parameter"><code><span class="type">st
<div class="refsect3">
<a name="id-1.2.5.6.6.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -341,7 +336,6 @@ appropriate privileges to succeed.</p>
<div class="refsect3">
<a name="id-1.2.5.6.7.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise -1 on error.</p>
-<p></p>
</div>
</div>
<hr>
@@ -368,7 +362,6 @@ udev_monitor_get_fd (<em class="parameter"><code><span class="type">struct udev_
<div class="refsect3">
<a name="id-1.2.5.6.8.6"></a><h4>Returns</h4>
<p> the socket file descriptor</p>
-<p></p>
</div>
</div>
<hr>
@@ -403,7 +396,6 @@ release the resources of the udev device.</p>
<div class="refsect3">
<a name="id-1.2.5.6.9.9"></a><h4>Returns</h4>
<p> a new udev device, or <span class="type">NULL</span>, in case of an error</p>
-<p></p>
</div>
</div>
<hr>
@@ -447,7 +439,6 @@ will usually not be woken up for devices which do not match.</p>
<div class="refsect3">
<a name="id-1.2.5.6.10.7"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -484,7 +475,6 @@ will usually not be woken up for devices which do not match.</p>
<div class="refsect3">
<a name="id-1.2.5.6.11.7"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -512,7 +502,6 @@ if the filter was removed or changed.</p>
<div class="refsect3">
<a name="id-1.2.5.6.12.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
<hr>
@@ -539,7 +528,6 @@ udev_monitor_filter_remove (<em class="parameter"><code><span class="type">struc
<div class="refsect3">
<a name="id-1.2.5.6.13.6"></a><h4>Returns</h4>
<p> 0 on success, otherwise a negative error value.</p>
-<p></p>
</div>
</div>
</div>
@@ -553,7 +541,6 @@ udev_monitor_filter_remove (<em class="parameter"><code><span class="type">struc
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-queue.html b/docs/libudev/html/libudev-udev-queue.html
index 7ae5931632..8b9b0c01e5 100644
--- a/docs/libudev/html/libudev-udev-queue.html
+++ b/docs/libudev/html/libudev-udev-queue.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_queue</title>
+<title>udev_queue: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-enumerate.html" title="udev_enumerate">
<link rel="next" href="libudev-udev-hwdb.html" title="udev_hwdb">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -181,7 +181,6 @@ udev_queue_ref (<em class="parameter"><code><span class="type">struct udev_queue
<div class="refsect3">
<a name="id-1.2.7.6.2.6"></a><h4>Returns</h4>
<p> the same udev queue context.</p>
-<p></p>
</div>
</div>
<hr>
@@ -209,7 +208,6 @@ the resources of the queue context will be released.</p>
<div class="refsect3">
<a name="id-1.2.7.6.3.6"></a><h4>Returns</h4>
<p> <span class="type">NULL</span></p>
-<p></p>
</div>
</div>
<hr>
@@ -236,7 +234,6 @@ udev_queue_get_udev (<em class="parameter"><code><span class="type">struct udev_
<div class="refsect3">
<a name="id-1.2.7.6.4.6"></a><h4>Returns</h4>
<p> the udev library context.</p>
-<p></p>
</div>
</div>
<hr>
@@ -264,7 +261,6 @@ release the resources of the udev queue context.</p>
<div class="refsect3">
<a name="id-1.2.7.6.5.6"></a><h4>Returns</h4>
<p> the udev queue context, or <span class="type">NULL</span> on error.</p>
-<p></p>
</div>
</div>
<hr>
@@ -291,7 +287,6 @@ udev_queue_get_udev_is_active (<em class="parameter"><code><span class="type">st
<div class="refsect3">
<a name="id-1.2.7.6.6.6"></a><h4>Returns</h4>
<p> a flag indicating if udev is active.</p>
-<p></p>
</div>
</div>
<hr>
@@ -318,7 +313,6 @@ udev_queue_get_queue_is_empty (<em class="parameter"><code><span class="type">st
<div class="refsect3">
<a name="id-1.2.7.6.7.6"></a><h4>Returns</h4>
<p> a flag indicating if udev is currently handling events.</p>
-<p></p>
</div>
</div>
<hr>
@@ -354,7 +348,6 @@ udev_queue_get_seqnum_is_finished (<em class="parameter"><code><span class="type
<div class="refsect3">
<a name="id-1.2.7.6.8.6"></a><h4>Returns</h4>
<p> a flag indicating if udev is currently handling events.</p>
-<p></p>
</div>
</div>
<hr>
@@ -397,7 +390,6 @@ udev_queue_get_seqnum_sequence_is_finished
<div class="refsect3">
<a name="id-1.2.7.6.9.6"></a><h4>Returns</h4>
<p> a flag indicating if udev is currently handling events.</p>
-<p></p>
</div>
</div>
<hr>
@@ -424,7 +416,6 @@ udev_queue_get_queued_list_entry (<em class="parameter"><code><span class="type"
<div class="refsect3">
<a name="id-1.2.7.6.10.6"></a><h4>Returns</h4>
<p> NULL.</p>
-<p></p>
</div>
</div>
<hr>
@@ -451,7 +442,6 @@ udev_queue_get_kernel_seqnum (<em class="parameter"><code><span class="type">str
<div class="refsect3">
<a name="id-1.2.7.6.11.6"></a><h4>Returns</h4>
<p> 0.</p>
-<p></p>
</div>
</div>
<hr>
@@ -478,7 +468,6 @@ udev_queue_get_udev_seqnum (<em class="parameter"><code><span class="type">struc
<div class="refsect3">
<a name="id-1.2.7.6.12.6"></a><h4>Returns</h4>
<p> 0.</p>
-<p></p>
</div>
</div>
<hr>
@@ -504,7 +493,6 @@ udev_queue_flush (<em class="parameter"><code><span class="type">struct udev_que
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev-util.html b/docs/libudev/html/libudev-udev-util.html
index fa72302b1b..00be518401 100644
--- a/docs/libudev/html/libudev-udev-util.html
+++ b/docs/libudev/html/libudev-udev-util.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev_util</title>
+<title>udev_util: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="libudev-udev-hwdb.html" title="udev_hwdb">
<link rel="next" href="api-index-full.html" title="Index">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -93,7 +93,6 @@ four times as long as the input string</p></td>
<div class="refsect3">
<a name="id-1.2.9.5.2.6"></a><h4>Returns</h4>
<p> 0 if the entire string was copied, non-zero otherwise.</p>
-<p></p>
</div>
</div>
</div>
@@ -102,7 +101,6 @@ four times as long as the input string</p></td>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev-udev.html b/docs/libudev/html/libudev-udev.html
index b973a48973..e2998c8653 100644
--- a/docs/libudev/html/libudev-udev.html
+++ b/docs/libudev/html/libudev-udev.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>libudev Reference Manual: udev</title>
+<title>udev: libudev Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libudev Reference Manual">
<link rel="up" href="ch01.html" title="API Reference">
<link rel="prev" href="ch01.html" title="API Reference">
<link rel="next" href="libudev-udev-list.html" title="udev_list">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.23 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -146,7 +146,6 @@ udev_ref (<em class="parameter"><code><span class="type">struct udev</span> *ude
<div class="refsect3">
<a name="id-1.2.2.6.2.6"></a><h4>Returns</h4>
<p> the passed udev library context</p>
-<p></p>
</div>
</div>
<hr>
@@ -174,7 +173,6 @@ reaches zero, the resources of the context will be released.</p>
<div class="refsect3">
<a name="id-1.2.2.6.3.6"></a><h4>Returns</h4>
<p> the passed udev library context if it has still an active reference, or <span class="type">NULL</span> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -189,7 +187,6 @@ release the resources of the udev library context.</p>
<div class="refsect3">
<a name="id-1.2.2.6.4.6"></a><h4>Returns</h4>
<p> a new udev library context</p>
-<p></p>
</div>
</div>
<hr>
@@ -243,10 +240,6 @@ udev_get_log_priority (<em class="parameter"><code><span class="type">struct ude
</tr></tbody>
</table></div>
</div>
-<div class="refsect3">
-<a name="id-1.2.2.6.6.6"></a><h4>Returns</h4>
-<p></p>
-</div>
</div>
<hr>
<div class="refsect2">
@@ -303,7 +296,6 @@ to access from callbacks.</p>
<div class="refsect3">
<a name="id-1.2.2.6.8.6"></a><h4>Returns</h4>
<p> stored userdata</p>
-<p></p>
</div>
</div>
<hr>
@@ -348,7 +340,6 @@ udev_set_userdata (<em class="parameter"><code><span class="type">struct udev</s
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.23</div>
</body>
</html> \ No newline at end of file
diff --git a/docs/libudev/html/libudev.devhelp2 b/docs/libudev/html/libudev.devhelp2
index 7efd1f0af9..bf295befc8 100644
--- a/docs/libudev/html/libudev.devhelp2
+++ b/docs/libudev/html/libudev.devhelp2
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
-<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
-<book xmlns="http://www.devhelp.net/book" title="libudev Reference Manual" link="index.html" author="" name="libudev" version="2" language="c">
+<book xmlns="" title="libudev Reference Manual" link="index.html" author="" name="libudev" version="2" language="c">
<chapters>
<sub name="API Reference" link="ch01.html">
<sub name="udev" link="libudev-udev.html"/>
diff --git a/docs/libudev/html/style.css b/docs/libudev/html/style.css
index c141ddd291..367542097b 100644
--- a/docs/libudev/html/style.css
+++ b/docs/libudev/html/style.css
@@ -60,7 +60,7 @@ a:hover
div.informaltable table
{
border-collapse: separate;
- border-spacing: 1em 0.5em;
+ border-spacing: 1em 0.3em;
border: none;
}
@@ -148,6 +148,8 @@ div.table table th
h4
{
color: #555753;
+ margin-top: 1em;
+ margin-bottom: 1em;
}
hr
@@ -166,17 +168,16 @@ dl.toc dt
padding-bottom: 0.25em;
}
-dl.toc > dd > dl > dt
+dl.toc > dt
{
padding-top: 0.25em;
padding-bottom: 0.25em;
+ font-weight: bold;
}
-dl.toc > dt
+dl.toc > dl
{
- padding-top: 1em;
padding-bottom: 0.5em;
- font-weight: bold;
}
.parameter
@@ -346,7 +347,9 @@ acronym,abbr
}
@media screen {
- sup a.footnote
+ /* these have a <sup> as a first child, but since there are no parent selectors
+ * we can't use that. */
+ a.footnote
{
position: relative;
top: 0em ! important;
diff --git a/docs/libudev/version.xml b/docs/libudev/version.xml
index 037ba97196..3d4c7bfe8e 100644
--- a/docs/libudev/version.xml
+++ b/docs/libudev/version.xml
@@ -1 +1 @@
-219
+220