From b436a68a20ff3114ded32a7a3d70cdd4954039f9 Mon Sep 17 00:00:00 2001
From: Michael Biebl
Date: Sat, 12 Nov 2011 01:36:14 +0100
Subject: Imported Upstream version 0.9.2.0
---
docs/api/Makefile.in | 129 ++++++++++++++++++-------------
docs/api/NetworkManager.types | 0
docs/api/html/NetworkManager.devhelp | 30 -------
docs/api/html/NetworkManager.devhelp2 | 28 +++----
docs/api/html/index.html | 36 ++++-----
docs/api/html/ix01.html | 6 +-
docs/api/html/license.html | 4 +-
docs/api/html/ref-dbus.html | 4 +-
docs/api/html/ref-migrating.html | 62 +++++++--------
docs/api/html/ref-settings.html | 40 +++++-----
docs/api/html/secrets-flags.html | 4 +-
docs/api/html/spec.html | 4 +-
docs/api/spec.html | 4 +-
docs/api/tmpl/NetworkManager-unused.sgml | 0
docs/api/version.xml | 2 +-
15 files changed, 171 insertions(+), 182 deletions(-)
create mode 100644 docs/api/NetworkManager.types
delete mode 100644 docs/api/html/NetworkManager.devhelp
create mode 100644 docs/api/tmpl/NetworkManager-unused.sgml
(limited to 'docs/api')
diff --git a/docs/api/Makefile.in b/docs/api/Makefile.in
index 043ecf8a..cfb75153 100644
--- a/docs/api/Makefile.in
+++ b/docs/api/Makefile.in
@@ -159,6 +159,8 @@ GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
GNUTLS_LIBS = @GNUTLS_LIBS@
GREP = @GREP@
GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
+GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
GUDEV_CFLAGS = @GUDEV_CFLAGS@
@@ -371,10 +373,10 @@ AUTOMAKE_OPTIONS = 1.7
@WITH_DOCS_TRUE@ migrating-to-09.xml \
@WITH_DOCS_TRUE@ $(NULL)
-@GTK_DOC_USE_LIBTOOL_FALSE@@WITH_DOCS_TRUE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-@GTK_DOC_USE_LIBTOOL_TRUE@@WITH_DOCS_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-@GTK_DOC_USE_LIBTOOL_FALSE@@WITH_DOCS_TRUE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
-@GTK_DOC_USE_LIBTOOL_TRUE@@WITH_DOCS_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+@GTK_DOC_USE_LIBTOOL_FALSE@@WITH_DOCS_TRUE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+@GTK_DOC_USE_LIBTOOL_TRUE@@WITH_DOCS_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+@GTK_DOC_USE_LIBTOOL_FALSE@@WITH_DOCS_TRUE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+@GTK_DOC_USE_LIBTOOL_TRUE@@WITH_DOCS_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
@GTK_DOC_USE_LIBTOOL_FALSE@@WITH_DOCS_TRUE@GTKDOC_RUN =
@GTK_DOC_USE_LIBTOOL_TRUE@@WITH_DOCS_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute
@@ -395,11 +397,11 @@ AUTOMAKE_OPTIONS = 1.7
@WITH_DOCS_FALSE@ version.xml.in
####################################
-@WITH_DOCS_TRUE@EXTRA_DIST = $(SETUP_FILES) $(GENERATED_FILES) \
-@WITH_DOCS_TRUE@ version.xml.in
+@WITH_DOCS_TRUE@EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) \
+@WITH_DOCS_TRUE@ $(GENERATED_FILES) version.xml.in
@WITH_DOCS_TRUE@DOC_STAMPS = setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \
@WITH_DOCS_TRUE@ html-build.stamp pdf-build.stamp \
-@WITH_DOCS_TRUE@ setup.stamp tmpl.stamp sgml.stamp html.stamp pdf.stamp
+@WITH_DOCS_TRUE@ tmpl.stamp sgml.stamp html.stamp pdf.stamp
@WITH_DOCS_TRUE@SCANOBJ_FILES = \
@WITH_DOCS_TRUE@ $(DOC_MODULE).args \
@@ -761,36 +763,43 @@ uninstall-am: uninstall-local
@WITH_DOCS_TRUE@setup-build.stamp:
@WITH_DOCS_TRUE@ -@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
-@WITH_DOCS_TRUE@ echo 'gtk-doc: Preparing build'; \
-@WITH_DOCS_TRUE@ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
-@WITH_DOCS_TRUE@ if test "x$$files" != "x" ; then \
-@WITH_DOCS_TRUE@ for file in $$files ; do \
-@WITH_DOCS_TRUE@ test -f $(abs_srcdir)/$$file && \
-@WITH_DOCS_TRUE@ cp -p $(abs_srcdir)/$$file $(abs_builddir)/; \
-@WITH_DOCS_TRUE@ done \
-@WITH_DOCS_TRUE@ fi; \
-@WITH_DOCS_TRUE@ test -f $(abs_srcdir)/tmpl && \
-@WITH_DOCS_TRUE@ cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \
+@WITH_DOCS_TRUE@ echo ' DOC Preparing build'; \
+@WITH_DOCS_TRUE@ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
+@WITH_DOCS_TRUE@ if test "x$$files" != "x" ; then \
+@WITH_DOCS_TRUE@ for file in $$files ; do \
+@WITH_DOCS_TRUE@ test -f $(abs_srcdir)/$$file && \
+@WITH_DOCS_TRUE@ cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
+@WITH_DOCS_TRUE@ done; \
+@WITH_DOCS_TRUE@ fi; \
+@WITH_DOCS_TRUE@ test -d $(abs_srcdir)/tmpl && \
+@WITH_DOCS_TRUE@ { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \
+@WITH_DOCS_TRUE@ chmod -R u+w $(abs_builddir)/tmpl; } \
@WITH_DOCS_TRUE@ fi
@WITH_DOCS_TRUE@ @touch setup-build.stamp
-@WITH_DOCS_TRUE@setup.stamp: setup-build.stamp
-@WITH_DOCS_TRUE@ @true
-
#### scan ####
@WITH_DOCS_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Scanning header files'
+@WITH_DOCS_TRUE@ @echo ' DOC Scanning header files'
@WITH_DOCS_TRUE@ @_source_dir='' ; \
@WITH_DOCS_TRUE@ for i in $(DOC_SOURCE_DIR) ; do \
@WITH_DOCS_TRUE@ _source_dir="$${_source_dir} --source-dir=$$i" ; \
@WITH_DOCS_TRUE@ done ; \
@WITH_DOCS_TRUE@ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
@WITH_DOCS_TRUE@ @if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
-@WITH_DOCS_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) ; \
+@WITH_DOCS_TRUE@ echo " DOC Introspecting gobjects"; \
+@WITH_DOCS_TRUE@ scanobj_options=""; \
+@WITH_DOCS_TRUE@ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+@WITH_DOCS_TRUE@ if test "$(?)" = "0"; then \
+@WITH_DOCS_TRUE@ if test "x$(V)" = "x1"; then \
+@WITH_DOCS_TRUE@ scanobj_options="--verbose"; \
+@WITH_DOCS_TRUE@ fi; \
+@WITH_DOCS_TRUE@ fi; \
+@WITH_DOCS_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
+@WITH_DOCS_TRUE@ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
@WITH_DOCS_TRUE@ else \
@WITH_DOCS_TRUE@ for i in $(SCANOBJ_FILES) ; do \
-@WITH_DOCS_TRUE@ test -f $$i || touch $$i ; \
+@WITH_DOCS_TRUE@ test -f $$i || touch $$i ; \
@WITH_DOCS_TRUE@ done \
@WITH_DOCS_TRUE@ fi
@WITH_DOCS_TRUE@ @touch scan-build.stamp
@@ -800,8 +809,8 @@ uninstall-am: uninstall-local
#### templates ####
-@WITH_DOCS_TRUE@tmpl-build.stamp: setup.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Rebuilding template files'
+@WITH_DOCS_TRUE@tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
+@WITH_DOCS_TRUE@ @echo ' DOC Rebuilding template files'
@WITH_DOCS_TRUE@ @gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
@WITH_DOCS_TRUE@ @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
@WITH_DOCS_TRUE@ if test -w $(abs_srcdir) ; then \
@@ -819,7 +828,7 @@ uninstall-am: uninstall-local
#### xml ####
@WITH_DOCS_TRUE@sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Building XML'
+@WITH_DOCS_TRUE@ @echo ' DOC Building XML'
@WITH_DOCS_TRUE@ @-chmod -R u+w $(srcdir)
@WITH_DOCS_TRUE@ @_source_dir='' ; \
@WITH_DOCS_TRUE@ for i in $(DOC_SOURCE_DIR) ; do \
@@ -834,13 +843,19 @@ uninstall-am: uninstall-local
#### html ####
@WITH_DOCS_TRUE@html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Building HTML'
+@WITH_DOCS_TRUE@ @echo ' DOC Building HTML'
@WITH_DOCS_TRUE@ @rm -rf html
@WITH_DOCS_TRUE@ @mkdir html
@WITH_DOCS_TRUE@ @mkhtml_options=""; \
+@WITH_DOCS_TRUE@ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+@WITH_DOCS_TRUE@ if test "$(?)" = "0"; then \
+@WITH_DOCS_TRUE@ if test "x$(V)" = "x1"; then \
+@WITH_DOCS_TRUE@ mkhtml_options="$$mkhtml_options --verbose"; \
+@WITH_DOCS_TRUE@ fi; \
+@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
@WITH_DOCS_TRUE@ if test "$(?)" = "0"; then \
-@WITH_DOCS_TRUE@ mkhtml_options=--path="$(abs_srcdir)"; \
+@WITH_DOCS_TRUE@ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
@WITH_DOCS_TRUE@ -@test "x$(HTML_IMAGES)" = "x" || \
@@ -852,49 +867,55 @@ uninstall-am: uninstall-local
@WITH_DOCS_TRUE@ cp $(abs_builddir)/$$file $(abs_builddir)/html; \
@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ done;
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Fixing cross-references'
+@WITH_DOCS_TRUE@ @echo ' DOC Fixing cross-references'
@WITH_DOCS_TRUE@ @gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
@WITH_DOCS_TRUE@ @touch html-build.stamp
#### pdf ####
@WITH_DOCS_TRUE@pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
-@WITH_DOCS_TRUE@ @echo 'gtk-doc: Building PDF'
-@WITH_DOCS_TRUE@ @rm -rf $(DOC_MODULE).pdf
-@WITH_DOCS_TRUE@ @mkpdf_imgdirs=""; \
+@WITH_DOCS_TRUE@ @echo ' DOC Building PDF'
+@WITH_DOCS_TRUE@ @rm -f $(DOC_MODULE).pdf
+@WITH_DOCS_TRUE@ @mkpdf_options=""; \
+@WITH_DOCS_TRUE@ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+@WITH_DOCS_TRUE@ if test "$(?)" = "0"; then \
+@WITH_DOCS_TRUE@ if test "x$(V)" = "x1"; then \
+@WITH_DOCS_TRUE@ mkpdf_options="$$mkpdf_options --verbose"; \
+@WITH_DOCS_TRUE@ fi; \
+@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ if test "x$(HTML_IMAGES)" != "x"; then \
@WITH_DOCS_TRUE@ for img in $(HTML_IMAGES); do \
@WITH_DOCS_TRUE@ part=`dirname $$img`; \
-@WITH_DOCS_TRUE@ echo $$mkpdf_imgdirs | grep >/dev/null "\-\-imgdir=$$part "; \
+@WITH_DOCS_TRUE@ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \
@WITH_DOCS_TRUE@ if test $$? != 0; then \
-@WITH_DOCS_TRUE@ mkpdf_imgdirs="$$mkpdf_imgdirs --imgdir=$$part"; \
+@WITH_DOCS_TRUE@ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \
@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ done; \
@WITH_DOCS_TRUE@ fi; \
-@WITH_DOCS_TRUE@ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_imgdirs $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
+@WITH_DOCS_TRUE@ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
@WITH_DOCS_TRUE@ @touch pdf-build.stamp
##############
@WITH_DOCS_TRUE@clean-local:
-@WITH_DOCS_TRUE@ rm -f *~ *.bak
-@WITH_DOCS_TRUE@ rm -rf .libs
+@WITH_DOCS_TRUE@ @rm -f *~ *.bak
+@WITH_DOCS_TRUE@ @rm -rf .libs
@WITH_DOCS_TRUE@distclean-local:
-@WITH_DOCS_TRUE@ rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
+@WITH_DOCS_TRUE@ @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
@WITH_DOCS_TRUE@ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
-@WITH_DOCS_TRUE@ if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
+@WITH_DOCS_TRUE@ @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
@WITH_DOCS_TRUE@ rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \
@WITH_DOCS_TRUE@ rm -rf tmpl; \
@WITH_DOCS_TRUE@ fi
@WITH_DOCS_TRUE@maintainer-clean-local: clean
-@WITH_DOCS_TRUE@ rm -rf xml html
+@WITH_DOCS_TRUE@ @rm -rf xml html
@WITH_DOCS_TRUE@install-data-local:
-@WITH_DOCS_TRUE@ @installfiles=`echo $(srcdir)/html/*`; \
-@WITH_DOCS_TRUE@ if test "$$installfiles" = '$(srcdir)/html/*'; \
-@WITH_DOCS_TRUE@ then echo '-- Nothing to install' ; \
+@WITH_DOCS_TRUE@ @installfiles=`echo $(builddir)/html/*`; \
+@WITH_DOCS_TRUE@ if test "$$installfiles" = '$(builddir)/html/*'; \
+@WITH_DOCS_TRUE@ then echo 1>&2 'Nothing to install' ; \
@WITH_DOCS_TRUE@ else \
@WITH_DOCS_TRUE@ if test -n "$(DOC_MODULE_VERSION)"; then \
@WITH_DOCS_TRUE@ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
@@ -903,14 +924,12 @@ uninstall-am: uninstall-local
@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ $(mkinstalldirs) $${installdir} ; \
@WITH_DOCS_TRUE@ for i in $$installfiles; do \
-@WITH_DOCS_TRUE@ echo '-- Installing '$$i ; \
+@WITH_DOCS_TRUE@ echo ' $(INSTALL_DATA) '$$i ; \
@WITH_DOCS_TRUE@ $(INSTALL_DATA) $$i $${installdir}; \
@WITH_DOCS_TRUE@ done; \
@WITH_DOCS_TRUE@ if test -n "$(DOC_MODULE_VERSION)"; then \
@WITH_DOCS_TRUE@ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \
@WITH_DOCS_TRUE@ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \
-@WITH_DOCS_TRUE@ mv -f $${installdir}/$(DOC_MODULE).devhelp \
-@WITH_DOCS_TRUE@ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \
@WITH_DOCS_TRUE@ fi; \
@WITH_DOCS_TRUE@ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \
@WITH_DOCS_TRUE@ fi
@@ -932,15 +951,15 @@ uninstall-am: uninstall-local
@ENABLE_GTK_DOC_FALSE@@WITH_DOCS_TRUE@ @false
@WITH_DOCS_TRUE@dist-hook: dist-check-gtkdoc dist-hook-local
-@WITH_DOCS_TRUE@ mkdir $(distdir)/tmpl
-@WITH_DOCS_TRUE@ mkdir $(distdir)/html
-@WITH_DOCS_TRUE@ -cp $(build)/tmpl/*.sgml $(distdir)/tmpl
-@WITH_DOCS_TRUE@ cp $(builddir)/html/* $(distdir)/html
-@WITH_DOCS_TRUE@ -cp $(builddir)/$(DOC_MODULE).pdf $(distdir)/
-@WITH_DOCS_TRUE@ -cp $(build)/$(DOC_MODULE).types $(distdir)/
-@WITH_DOCS_TRUE@ -cp $(build)/$(DOC_MODULE)-sections.txt $(distdir)/
-@WITH_DOCS_TRUE@ cd $(distdir) && rm -f $(DISTCLEANFILES)
-@WITH_DOCS_TRUE@ $(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
+@WITH_DOCS_TRUE@ @mkdir $(distdir)/tmpl
+@WITH_DOCS_TRUE@ @mkdir $(distdir)/html
+@WITH_DOCS_TRUE@ @-cp ./tmpl/*.sgml $(distdir)/tmpl
+@WITH_DOCS_TRUE@ @cp ./html/* $(distdir)/html
+@WITH_DOCS_TRUE@ @-cp ./$(DOC_MODULE).pdf $(distdir)/
+@WITH_DOCS_TRUE@ @-cp ./$(DOC_MODULE).types $(distdir)/
+@WITH_DOCS_TRUE@ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/
+@WITH_DOCS_TRUE@ @cd $(distdir) && rm -f $(DISTCLEANFILES)
+@WITH_DOCS_TRUE@ @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
@WITH_DOCS_TRUE@.PHONY : dist-hook-local docs
diff --git a/docs/api/NetworkManager.types b/docs/api/NetworkManager.types
new file mode 100644
index 00000000..e69de29b
diff --git a/docs/api/html/NetworkManager.devhelp b/docs/api/html/NetworkManager.devhelp
deleted file mode 100644
index a6c6d17d..00000000
--- a/docs/api/html/NetworkManager.devhelp
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/api/html/NetworkManager.devhelp2 b/docs/api/html/NetworkManager.devhelp2
index 2c08e0b1..b611186d 100644
--- a/docs/api/html/NetworkManager.devhelp2
+++ b/docs/api/html/NetworkManager.devhelp2
@@ -4,23 +4,23 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/api/html/index.html b/docs/api/html/index.html
index 84aa84c9..d0f34722 100644
--- a/docs/api/html/index.html
+++ b/docs/api/html/index.html
@@ -6,7 +6,7 @@
-
+
@@ -22,11 +22,11 @@
<dcbw@redhat.com >
-Version 0.9.1.95
+
Copyright © 2011 The NetworkManager Authors
+ Generated by GTK-Doc V1.18