summary refs log tree commit diff
path: root/docs/api
diff options
context:
space:
mode:
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/Makefile.in129
-rw-r--r--docs/api/NetworkManager.types0
-rw-r--r--docs/api/html/NetworkManager.devhelp30
-rw-r--r--docs/api/html/NetworkManager.devhelp228
-rw-r--r--docs/api/html/index.html36
-rw-r--r--docs/api/html/ix01.html6
-rw-r--r--docs/api/html/license.html4
-rw-r--r--docs/api/html/ref-dbus.html4
-rw-r--r--docs/api/html/ref-migrating.html62
-rw-r--r--docs/api/html/ref-settings.html40
-rw-r--r--docs/api/html/secrets-flags.html4
-rw-r--r--docs/api/html/spec.html4
-rw-r--r--docs/api/spec.html4
-rw-r--r--docs/api/tmpl/NetworkManager-unused.sgml0
-rw-r--r--docs/api/version.xml2
15 files changed, 171 insertions, 182 deletions
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
--- /dev/null
+++ b/docs/api/NetworkManager.types
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 @@
-<?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="NetworkManager D-Bus Reference Manual" link="index.html" author="Dan Williams" name="NetworkManager">
-  <chapters>
-    <sub name="D-Bus API Reference" link="ref-dbus.html"/>
-    <sub name="Network Configuration Setting Specification" link="ref-settings.html">
-      <sub name="Configuration Settings" link="ref-settings.html#id443345"/>
-      <sub name="Secret flag types" link="secrets-flags.html"/>
-    </sub>
-    <sub name="Migrating from NetworkManager 0.8 to NetworkManager 0.9" link="ref-migrating.html">
-      <sub name="Architecture and D-Bus API Changes in 0.9" link="ref-migrating.html#id458958">
-        <sub name="Elimination of the User Settings Service" link="ref-migrating.html#id450602"/>
-        <sub name="User Secret Agents" link="ref-migrating.html#id434654"/>
-        <sub name="Settings Service Interface Changes" link="ref-migrating.html#id422651"/>
-        <sub name="Connection Object Interface Changes" link="ref-migrating.html#id439868"/>
-        <sub name="Permissions Methods Consolidation" link="ref-migrating.html#id413219"/>
-        <sub name="AddConnection Returns Object Path of New Connection" link="ref-migrating.html#id429171"/>
-        <sub name="Support for WiMAX Devices" link="ref-migrating.html#id433755"/>
-        <sub name="New Device States" link="ref-migrating.html#id451432"/>
-        <sub name="New Active Connection State" link="ref-migrating.html#id458979"/>
-        <sub name="Consolidated Modem Devices" link="ref-migrating.html#id459108"/>
-        <sub name="Secret Property Flags" link="ref-migrating.html#id423588"/>
-        <sub name="Deprecated Methods Removed" link="ref-migrating.html#id418180"/>
-      </sub>
-    </sub>
-    <sub name="Index" link="ix01.html"/>
-    <sub name="License" link="license.html"/>
-  </chapters>
-  <functions/>
-</book>
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 @@
   <chapters>
     <sub name="D-Bus API Reference" link="ref-dbus.html"/>
     <sub name="Network Configuration Setting Specification" link="ref-settings.html">
-      <sub name="Configuration Settings" link="ref-settings.html#id443345"/>
+      <sub name="Configuration Settings" link="ref-settings.html#id543085"/>
       <sub name="Secret flag types" link="secrets-flags.html"/>
     </sub>
     <sub name="Migrating from NetworkManager 0.8 to NetworkManager 0.9" link="ref-migrating.html">
-      <sub name="Architecture and D-Bus API Changes in 0.9" link="ref-migrating.html#id458958">
-        <sub name="Elimination of the User Settings Service" link="ref-migrating.html#id450602"/>
-        <sub name="User Secret Agents" link="ref-migrating.html#id434654"/>
-        <sub name="Settings Service Interface Changes" link="ref-migrating.html#id422651"/>
-        <sub name="Connection Object Interface Changes" link="ref-migrating.html#id439868"/>
-        <sub name="Permissions Methods Consolidation" link="ref-migrating.html#id413219"/>
-        <sub name="AddConnection Returns Object Path of New Connection" link="ref-migrating.html#id429171"/>
-        <sub name="Support for WiMAX Devices" link="ref-migrating.html#id433755"/>
-        <sub name="New Device States" link="ref-migrating.html#id451432"/>
-        <sub name="New Active Connection State" link="ref-migrating.html#id458979"/>
-        <sub name="Consolidated Modem Devices" link="ref-migrating.html#id459108"/>
-        <sub name="Secret Property Flags" link="ref-migrating.html#id423588"/>
-        <sub name="Deprecated Methods Removed" link="ref-migrating.html#id418180"/>
+      <sub name="Architecture and D-Bus API Changes in 0.9" link="ref-migrating.html#id512495">
+        <sub name="Elimination of the User Settings Service" link="ref-migrating.html#id526099"/>
+        <sub name="User Secret Agents" link="ref-migrating.html#id524364"/>
+        <sub name="Settings Service Interface Changes" link="ref-migrating.html#id537045"/>
+        <sub name="Connection Object Interface Changes" link="ref-migrating.html#id535485"/>
+        <sub name="Permissions Methods Consolidation" link="ref-migrating.html#id520721"/>
+        <sub name="AddConnection Returns Object Path of New Connection" link="ref-migrating.html#id540760"/>
+        <sub name="Support for WiMAX Devices" link="ref-migrating.html#id532887"/>
+        <sub name="New Device States" link="ref-migrating.html#id470788"/>
+        <sub name="New Active Connection State" link="ref-migrating.html#id550587"/>
+        <sub name="Consolidated Modem Devices" link="ref-migrating.html#id553991"/>
+        <sub name="Secret Property Flags" link="ref-migrating.html#id525705"/>
+        <sub name="Deprecated Methods Removed" link="ref-migrating.html#id522193"/>
       </sub>
     </sub>
     <sub name="Index" link="ix01.html"/>
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 @@
 <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 <link rel="home" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="next" href="ref-dbus.html" title="D-Bus API Reference">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -22,11 +22,11 @@
 	    <code class="email">&lt;<a class="email" href="mailto:dcbw@redhat.com">dcbw@redhat.com</a>&gt;</code><br>
 	  </p></div></div>
 </div></div></div>
-<div><p class="releaseinfo">Version 0.9.1.95
+<div><p class="releaseinfo">Version 0.9.2.0
 </p></div>
 <div><p class="copyright">Copyright © 2011 The NetworkManager Authors</p></div>
 <div><div class="legalnotice">
-<a name="id373226"></a><p>
+<a name="id472231"></a><p>
 	Permission is granted to copy, distribute and/or modify this
 	document under the terms of the <em class="citetitle">GNU Free
 	Documentation License</em>, Version 1.1 or any later
@@ -61,25 +61,25 @@
 <dt><span class="chapter"><a href="ref-dbus.html">D-Bus API Reference</a></span></dt>
 <dt><span class="chapter"><a href="ref-settings.html">Network Configuration Setting Specification</a></span></dt>
 <dd><dl>
-<dt><span class="section"><a href="ref-settings.html#id443345">Configuration Settings</a></span></dt>
+<dt><span class="section"><a href="ref-settings.html#id543085">Configuration Settings</a></span></dt>
 <dt><span class="section"><a href="secrets-flags.html">Secret flag types</a></span></dt>
 </dl></dd>
 <dt><span class="chapter"><a href="ref-migrating.html">Migrating from NetworkManager 0.8 to NetworkManager 0.9</a></span></dt>
 <dd><dl>
-<dt><span class="section"><a href="ref-migrating.html#id458958">Architecture and D-Bus API Changes in 0.9</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id512495">Architecture and D-Bus API Changes in 0.9</a></span></dt>
 <dd><dl>
-<dt><span class="section"><a href="ref-migrating.html#id450602">Elimination of the User Settings Service</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id434654">User Secret Agents</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id422651">Settings Service Interface Changes</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id439868">Connection Object Interface Changes</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id413219">Permissions Methods Consolidation</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id429171">AddConnection Returns Object Path of New Connection</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id433755">Support for WiMAX Devices</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id451432">New Device States</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id458979">New Active Connection State</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id459108">Consolidated Modem Devices</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id423588">Secret Property Flags</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id418180">Deprecated Methods Removed</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id526099">Elimination of the User Settings Service</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id524364">User Secret Agents</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id537045">Settings Service Interface Changes</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id535485">Connection Object Interface Changes</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id520721">Permissions Methods Consolidation</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id540760">AddConnection Returns Object Path of New Connection</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id532887">Support for WiMAX Devices</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id470788">New Device States</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id550587">New Active Connection State</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id553991">Consolidated Modem Devices</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id525705">Secret Property Flags</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id522193">Deprecated Methods Removed</a></span></dt>
 </dl></dd>
 </dl></dd>
 <dt><span class="index"><a href="ix01.html">Index</a></span></dt>
@@ -88,6 +88,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/ix01.html b/docs/api/html/ix01.html
index 00cfa690..1a38a76c 100644
--- a/docs/api/html/ix01.html
+++ b/docs/api/html/ix01.html
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="prev" href="ref-migrating.html" title="Migrating from NetworkManager 0.8 to NetworkManager 0.9">
 <link rel="next" href="license.html" title="Appendix A. License">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -21,11 +21,11 @@
 </tr></table>
 <div class="index">
 <div class="titlepage"><div><div><h2 class="title">
-<a name="id403117"></a>Index</h2></div></div></div>
+<a name="id471201"></a>Index</h2></div></div></div>
 <div class="index"></div>
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/license.html b/docs/api/html/license.html
index fc0b0a38..e23a9d15 100644
--- a/docs/api/html/license.html
+++ b/docs/api/html/license.html
@@ -7,7 +7,7 @@
 <link rel="home" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="up" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="prev" href="ix01.html" title="Index">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -380,6 +380,6 @@ Public License instead of this License.
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/ref-dbus.html b/docs/api/html/ref-dbus.html
index 29392bed..9d3c0ef4 100644
--- a/docs/api/html/ref-dbus.html
+++ b/docs/api/html/ref-dbus.html
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="prev" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="next" href="ref-settings.html" title="Network Configuration Setting Specification">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -30,6 +30,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/ref-migrating.html b/docs/api/html/ref-migrating.html
index 5e5471b1..abc58248 100644
--- a/docs/api/html/ref-migrating.html
+++ b/docs/api/html/ref-migrating.html
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="prev" href="secrets-flags.html" title="Secret flag types">
 <link rel="next" href="ix01.html" title="Index">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -23,20 +23,20 @@
 <div class="titlepage"><div><div><h2 class="title">
 <a name="ref-migrating"></a>Migrating from NetworkManager 0.8 to NetworkManager 0.9</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"><a href="ref-migrating.html#id458958">Architecture and D-Bus API Changes in 0.9</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id512495">Architecture and D-Bus API Changes in 0.9</a></span></dt>
 <dd><dl>
-<dt><span class="section"><a href="ref-migrating.html#id450602">Elimination of the User Settings Service</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id434654">User Secret Agents</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id422651">Settings Service Interface Changes</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id439868">Connection Object Interface Changes</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id413219">Permissions Methods Consolidation</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id429171">AddConnection Returns Object Path of New Connection</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id433755">Support for WiMAX Devices</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id451432">New Device States</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id458979">New Active Connection State</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id459108">Consolidated Modem Devices</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id423588">Secret Property Flags</a></span></dt>
-<dt><span class="section"><a href="ref-migrating.html#id418180">Deprecated Methods Removed</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id526099">Elimination of the User Settings Service</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id524364">User Secret Agents</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id537045">Settings Service Interface Changes</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id535485">Connection Object Interface Changes</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id520721">Permissions Methods Consolidation</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id540760">AddConnection Returns Object Path of New Connection</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id532887">Support for WiMAX Devices</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id470788">New Device States</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id550587">New Active Connection State</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id553991">Consolidated Modem Devices</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id525705">Secret Property Flags</a></span></dt>
+<dt><span class="section"><a href="ref-migrating.html#id522193">Deprecated Methods Removed</a></span></dt>
 </dl></dd>
 </dl></div>
 <p>
@@ -50,14 +50,14 @@
   </p>
 <div class="section">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="id458958"></a>Architecture and D-Bus API Changes in 0.9</h2></div></div></div>
+<a name="id512495"></a>Architecture and D-Bus API Changes in 0.9</h2></div></div></div>
 <p>
       This section details the architectural and D-Bus API changes in
       NetworkManager 0.9.
     </p>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id450602"></a>Elimination of the User Settings Service</h3></div></div></div>
+<a name="id526099"></a>Elimination of the User Settings Service</h3></div></div></div>
 <p>
       Previously there were two "settings services", or D-Bus services that
       provided and saved network configuration information.  NetworkManager
@@ -103,7 +103,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id434654"></a>User Secret Agents</h3></div></div></div>
+<a name="id524364"></a>User Secret Agents</h3></div></div></div>
 <p>
       Even with the elimination of the user settings service, in some cases it
       is still desirable to store secrets in the user's session and not in
@@ -152,7 +152,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id422651"></a>Settings Service Interface Changes</h3></div></div></div>
+<a name="id537045"></a>Settings Service Interface Changes</h3></div></div></div>
 <p>
       With the elimination of the user settings service, the old
       <code class="literal">org.freedesktop.NetworkManagerUserSettings</code> and
@@ -188,7 +188,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id439868"></a>Connection Object Interface Changes</h3></div></div></div>
+<a name="id535485"></a>Connection Object Interface Changes</h3></div></div></div>
 <p>
       Consistent with the interface changes to the Settings object, the
       Connection object's D-Bus interface has changed to
@@ -222,7 +222,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id413219"></a>Permissions Methods Consolidation</h3></div></div></div>
+<a name="id520721"></a>Permissions Methods Consolidation</h3></div></div></div>
 <p>
       Previously there were two D-Bus method calls to retrieve the list of
       operations that a user client could perform, and two signals notifying
@@ -254,7 +254,7 @@
       are now string-based permissions.  The mapping is as follows:
       </p>
 <div class="table">
-<a name="id445996"></a><p class="title"><b>Table 17. </b></p>
+<a name="id554278"></a><p class="title"><b>Table 17. </b></p>
 <div class="table-contents"><table border="1">
 <colgroup>
 <col>
@@ -305,7 +305,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id429171"></a>AddConnection Returns Object Path of New Connection</h3></div></div></div>
+<a name="id540760"></a>AddConnection Returns Object Path of New Connection</h3></div></div></div>
 <p>
       The <a class="ulink" href="spec.html#org.freedesktop.NetworkManager.Settings" target="_top">
       <code class="literal">org.freedesktop.NetworkManager.Settings.AddConnection</code>
@@ -323,7 +323,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id433755"></a>Support for WiMAX Devices</h3></div></div></div>
+<a name="id532887"></a>Support for WiMAX Devices</h3></div></div></div>
 <p>
       NetworkManager now supports Intel WiMAX mobile broadband devices.  A
       corresponding device type (<code class="literal">NM_DEVICE_TYPE_WIMAX</code>) and
@@ -346,7 +346,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id451432"></a>New Device States</h3></div></div></div>
+<a name="id470788"></a>New Device States</h3></div></div></div>
 <p>
       A few <a class="ulink" href="spec.html#type-NM_DEVICE_STATE" target="_top">new device states</a>
       have been added, and all device states have been renumbered for flexibility.
@@ -361,7 +361,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id458979"></a>New Active Connection State</h3></div></div></div>
+<a name="id550587"></a>New Active Connection State</h3></div></div></div>
 <p>
       Along with the new device states, an
       <a class="ulink" href="spec.html#type-NM_ACTIVE_CONNECTION_STATE" target="_top">additional
@@ -377,7 +377,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id459108"></a>Consolidated Modem Devices</h3></div></div></div>
+<a name="id553991"></a>Consolidated Modem Devices</h3></div></div></div>
 <p>
       Many new mobile broadband devices support multiple access families, like
       Qualcomm Gobi cards (CDMA/EVDO and GSM/UMTS), or multi-mode EVDO/LTE
@@ -413,7 +413,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id423588"></a>Secret Property Flags</h3></div></div></div>
+<a name="id525705"></a>Secret Property Flags</h3></div></div></div>
 <p>
       In the Connection object's configuration properties, each setting's secret
       properties (like WiFi passphrases, or public key passwords, etc) now has
@@ -422,7 +422,7 @@
       following values:
       </p>
 <div class="table">
-<a name="id423596"></a><p class="title"><b>Table 18. </b></p>
+<a name="id525714"></a><p class="title"><b>Table 18. </b></p>
 <div class="table-contents"><table border="1">
 <colgroup>
 <col>
@@ -484,7 +484,7 @@
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id418180"></a>Deprecated Methods Removed</h3></div></div></div>
+<a name="id522193"></a>Deprecated Methods Removed</h3></div></div></div>
 <p>
       A few methods and signals of the <code class="literal">org.freedesktop.NetworkManager</code>
       interface deprecated in version 0.7 have been removed.  All the
@@ -494,7 +494,7 @@
       their replacements:
       </p>
 <div class="table">
-<a name="id418194"></a><p class="title"><b>Table 19. </b></p>
+<a name="id522207"></a><p class="title"><b>Table 19. </b></p>
 <div class="table-contents"><table border="1">
 <colgroup>
 <col>
@@ -534,6 +534,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/ref-settings.html b/docs/api/html/ref-settings.html
index 59994af9..b1737585 100644
--- a/docs/api/html/ref-settings.html
+++ b/docs/api/html/ref-settings.html
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="NetworkManager D-Bus Reference Manual">
 <link rel="prev" href="ref-dbus.html" title="D-Bus API Reference">
 <link rel="next" href="secrets-flags.html" title="Secret flag types">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -23,7 +23,7 @@
 <div class="titlepage"><div><div><h2 class="title">
 <a name="ref-settings"></a>Network Configuration Setting Specification</h2></div></div></div>
 <div class="toc"><dl>
-<dt><span class="section"><a href="ref-settings.html#id443345">Configuration Settings</a></span></dt>
+<dt><span class="section"><a href="ref-settings.html#id543085">Configuration Settings</a></span></dt>
 <dt><span class="section"><a href="secrets-flags.html">Secret flag types</a></span></dt>
 </dl></div>
 <p>
@@ -35,11 +35,11 @@
     </p>
 <div class="section">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="id443345"></a>Configuration Settings</h2></div></div></div>
+<a name="id543085"></a>Configuration Settings</h2></div></div></div>
 <p>
 </p>
 <div class="table">
-<a name="id446574"></a><p class="title"><b>Table 1. 802-1x setting</b></p>
+<a name="id520594"></a><p class="title"><b>Table 1. 802-1x setting</b></p>
 <div class="table-contents"><table summary="802-1x setting" border="1">
 <colgroup>
 <col>
@@ -228,7 +228,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id430566"></a><p class="title"><b>Table 2. bluetooth setting</b></p>
+<a name="id529209"></a><p class="title"><b>Table 2. bluetooth setting</b></p>
 <div class="table-contents"><table summary="bluetooth setting" border="1">
 <colgroup>
 <col>
@@ -267,7 +267,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id430698"></a><p class="title"><b>Table 3. cdma setting</b></p>
+<a name="id529342"></a><p class="title"><b>Table 3. cdma setting</b></p>
 <div class="table-contents"><table summary="cdma setting" border="1">
 <colgroup>
 <col>
@@ -318,7 +318,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id430897"></a><p class="title"><b>Table 4. connection setting</b></p>
+<a name="id529540"></a><p class="title"><b>Table 4. connection setting</b></p>
 <div class="table-contents"><table summary="connection setting" border="1">
 <colgroup>
 <col>
@@ -387,7 +387,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id431198"></a><p class="title"><b>Table 5. gsm setting</b></p>
+<a name="id529841"></a><p class="title"><b>Table 5. gsm setting</b></p>
 <div class="table-contents"><table summary="gsm setting" border="1">
 <colgroup>
 <col>
@@ -480,7 +480,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id431623"></a><p class="title"><b>Table 6. ipv4 setting</b></p>
+<a name="id530266"></a><p class="title"><b>Table 6. ipv4 setting</b></p>
 <div class="table-contents"><table summary="ipv4 setting" border="1">
 <colgroup>
 <col>
@@ -579,7 +579,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id460581"></a><p class="title"><b>Table 7. ipv6 setting</b></p>
+<a name="id559244"></a><p class="title"><b>Table 7. ipv6 setting</b></p>
 <div class="table-contents"><table summary="ipv6 setting" border="1">
 <colgroup>
 <col>
@@ -660,7 +660,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id460899"></a><p class="title"><b>Table 8. 802-11-olpc-mesh setting</b></p>
+<a name="id559562"></a><p class="title"><b>Table 8. 802-11-olpc-mesh setting</b></p>
 <div class="table-contents"><table summary="802-11-olpc-mesh setting" border="1">
 <colgroup>
 <col>
@@ -705,7 +705,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id461037"></a><p class="title"><b>Table 9. ppp setting</b></p>
+<a name="id559700"></a><p class="title"><b>Table 9. ppp setting</b></p>
 <div class="table-contents"><table summary="ppp setting" border="1">
 <colgroup>
 <col>
@@ -840,7 +840,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id461567"></a><p class="title"><b>Table 10. pppoe setting</b></p>
+<a name="id560230"></a><p class="title"><b>Table 10. pppoe setting</b></p>
 <div class="table-contents"><table summary="pppoe setting" border="1">
 <colgroup>
 <col>
@@ -891,7 +891,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id461732"></a><p class="title"><b>Table 11. serial setting</b></p>
+<a name="id560395"></a><p class="title"><b>Table 11. serial setting</b></p>
 <div class="table-contents"><table summary="serial setting" border="1">
 <colgroup>
 <col>
@@ -948,7 +948,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id461945"></a><p class="title"><b>Table 12. vpn setting</b></p>
+<a name="id560589"></a><p class="title"><b>Table 12. vpn setting</b></p>
 <div class="table-contents"><table summary="vpn setting" border="1">
 <colgroup>
 <col>
@@ -999,7 +999,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id462151"></a><p class="title"><b>Table 13. wimax setting</b></p>
+<a name="id560795"></a><p class="title"><b>Table 13. wimax setting</b></p>
 <div class="table-contents"><table summary="wimax setting" border="1">
 <colgroup>
 <col>
@@ -1038,7 +1038,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id462289"></a><p class="title"><b>Table 14. 802-3-ethernet setting</b></p>
+<a name="id560933"></a><p class="title"><b>Table 14. 802-3-ethernet setting</b></p>
 <div class="table-contents"><table summary="802-3-ethernet setting" border="1">
 <colgroup>
 <col>
@@ -1131,7 +1131,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id462730"></a><p class="title"><b>Table 15. 802-11-wireless setting</b></p>
+<a name="id561374"></a><p class="title"><b>Table 15. 802-11-wireless setting</b></p>
 <div class="table-contents"><table summary="802-11-wireless setting" border="1">
 <colgroup>
 <col>
@@ -1236,7 +1236,7 @@
 <p><br class="table-break">
 </p>
 <div class="table">
-<a name="id463239"></a><p class="title"><b>Table 16. 802-11-wireless-security setting</b></p>
+<a name="id561883"></a><p class="title"><b>Table 16. 802-11-wireless-security setting</b></p>
 <div class="table-contents"><table summary="802-11-wireless-security setting" border="1">
 <colgroup>
 <col>
@@ -1368,6 +1368,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/secrets-flags.html b/docs/api/html/secrets-flags.html
index ee0a78fe..23f90ec7 100644
--- a/docs/api/html/secrets-flags.html
+++ b/docs/api/html/secrets-flags.html
@@ -8,7 +8,7 @@
 <link rel="up" href="ref-settings.html" title="Network Configuration Setting Specification">
 <link rel="prev" href="ref-settings.html" title="Network Configuration Setting Specification">
 <link rel="next" href="ref-migrating.html" title="Migrating from NetworkManager 0.8 to NetworkManager 0.9">
-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -59,6 +59,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.17</div>
+          Generated by GTK-Doc V1.18</div>
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/api/html/spec.html b/docs/api/html/spec.html
index 3d38d7e3..eb0a828b 100644
--- a/docs/api/html/spec.html
+++ b/docs/api/html/spec.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ascii" /><title>NetworkManager D-Bus Interface Specification version 0.9.1.95</title><style type="text/css">
+<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ascii" /><title>NetworkManager D-Bus Interface Specification version 0.9.2.0</title><style type="text/css">
 
           body {
             font-family: sans-serif;
@@ -98,7 +98,7 @@
             margin-right: 4em;
           }
 
-        </style></head><body><h1 class="topbox">NetworkManager D-Bus Interface Specification</h1><h2>Version 0.9.1.95</h2><div>Copyright (C) 2008 - 2011 Red Hat, Inc.</div><div>Copyright (C) 2008 - 2009 Novell, Inc.</div><div class="license">
+        </style></head><body><h1 class="topbox">NetworkManager D-Bus Interface Specification</h1><h2>Version 0.9.2.0</h2><div>Copyright (C) 2008 - 2011 Red Hat, Inc.</div><div>Copyright (C) 2008 - 2009 Novell, Inc.</div><div class="license">
 <p>This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
diff --git a/docs/api/spec.html b/docs/api/spec.html
index 3d38d7e3..eb0a828b 100644
--- a/docs/api/spec.html
+++ b/docs/api/spec.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ascii" /><title>NetworkManager D-Bus Interface Specification version 0.9.1.95</title><style type="text/css">
+<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ascii" /><title>NetworkManager D-Bus Interface Specification version 0.9.2.0</title><style type="text/css">
 
           body {
             font-family: sans-serif;
@@ -98,7 +98,7 @@
             margin-right: 4em;
           }
 
-        </style></head><body><h1 class="topbox">NetworkManager D-Bus Interface Specification</h1><h2>Version 0.9.1.95</h2><div>Copyright (C) 2008 - 2011 Red Hat, Inc.</div><div>Copyright (C) 2008 - 2009 Novell, Inc.</div><div class="license">
+        </style></head><body><h1 class="topbox">NetworkManager D-Bus Interface Specification</h1><h2>Version 0.9.2.0</h2><div>Copyright (C) 2008 - 2011 Red Hat, Inc.</div><div>Copyright (C) 2008 - 2009 Novell, Inc.</div><div class="license">
 <p>This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
diff --git a/docs/api/tmpl/NetworkManager-unused.sgml b/docs/api/tmpl/NetworkManager-unused.sgml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/docs/api/tmpl/NetworkManager-unused.sgml
diff --git a/docs/api/version.xml b/docs/api/version.xml
index dbd0ed64..594150e3 100644
--- a/docs/api/version.xml
+++ b/docs/api/version.xml
@@ -1 +1 @@
-0.9.1.95
+0.9.2.0