mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Move miscellaneous documentation from examples/ to docs/.
Wasn't very logical putting these doc files in the examples directory.
This commit is contained in:
16
.gitignore
vendored
16
.gitignore
vendored
@@ -130,6 +130,14 @@ Makefile.in
|
|||||||
/diff/stamp-virt-diff.pod
|
/diff/stamp-virt-diff.pod
|
||||||
/diff/virt-diff
|
/diff/virt-diff
|
||||||
/diff/virt-diff.1
|
/diff/virt-diff.1
|
||||||
|
/docs/guestfs-faq.1
|
||||||
|
/docs/guestfs-performance.1
|
||||||
|
/docs/guestfs-recipes.1
|
||||||
|
/docs/guestfs-testing.1
|
||||||
|
/docs/stamp-guestfs-faq.pod
|
||||||
|
/docs/stamp-guestfs-performance.pod
|
||||||
|
/docs/stamp-guestfs-recipes.pod
|
||||||
|
/docs/stamp-guestfs-testing.pod
|
||||||
/edit/stamp-virt-*.pod
|
/edit/stamp-virt-*.pod
|
||||||
/edit/virt-edit
|
/edit/virt-edit
|
||||||
/edit/virt-edit.1
|
/edit/virt-edit.1
|
||||||
@@ -146,18 +154,10 @@ Makefile.in
|
|||||||
/examples/debug-logging
|
/examples/debug-logging
|
||||||
/examples/display-icon
|
/examples/display-icon
|
||||||
/examples/guestfs-examples.3
|
/examples/guestfs-examples.3
|
||||||
/examples/guestfs-faq.1
|
|
||||||
/examples/guestfs-performance.1
|
|
||||||
/examples/guestfs-recipes.1
|
|
||||||
/examples/guestfs-testing.1
|
|
||||||
/examples/inspect-vm
|
/examples/inspect-vm
|
||||||
/examples/libvirt-auth
|
/examples/libvirt-auth
|
||||||
/examples/mount-local
|
/examples/mount-local
|
||||||
/examples/stamp-guestfs-examples.pod
|
/examples/stamp-guestfs-examples.pod
|
||||||
/examples/stamp-guestfs-faq.pod
|
|
||||||
/examples/stamp-guestfs-performance.pod
|
|
||||||
/examples/stamp-guestfs-recipes.pod
|
|
||||||
/examples/stamp-guestfs-testing.pod
|
|
||||||
/examples/virt-dhcp-address
|
/examples/virt-dhcp-address
|
||||||
/fish/cmds.c
|
/fish/cmds.c
|
||||||
/fish/cmds-gperf.c
|
/fish/cmds-gperf.c
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ SUBDIRS += gnulib/tests
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# Basic source for the library.
|
# Basic source for the library.
|
||||||
SUBDIRS += tests/data generator src examples po
|
SUBDIRS += tests/data generator src docs examples po
|
||||||
|
|
||||||
if ENABLE_DAEMON
|
if ENABLE_DAEMON
|
||||||
SUBDIRS += daemon
|
SUBDIRS += daemon
|
||||||
|
|||||||
@@ -1743,6 +1743,7 @@ AC_CONFIG_FILES([Makefile
|
|||||||
df/Makefile
|
df/Makefile
|
||||||
dib/Makefile
|
dib/Makefile
|
||||||
diff/Makefile
|
diff/Makefile
|
||||||
|
docs/Makefile
|
||||||
edit/Makefile
|
edit/Makefile
|
||||||
erlang/Makefile
|
erlang/Makefile
|
||||||
erlang/examples/Makefile
|
erlang/examples/Makefile
|
||||||
|
|||||||
86
docs/Makefile.am
Normal file
86
docs/Makefile.am
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
# libguestfs documentation
|
||||||
|
# Copyright (C) 2010-2015 Red Hat Inc.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
include $(top_srcdir)/subdir-rules.mk
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
guestfs-faq.pod \
|
||||||
|
guestfs-performance.pod \
|
||||||
|
guestfs-recipes.pod \
|
||||||
|
guestfs-testing.pod \
|
||||||
|
README
|
||||||
|
|
||||||
|
CLEANFILES = \
|
||||||
|
stamp-guestfs-faq.pod \
|
||||||
|
stamp-guestfs-performance.pod \
|
||||||
|
stamp-guestfs-recipes.pod \
|
||||||
|
stamp-guestfs-testing.pod
|
||||||
|
|
||||||
|
man_MANS = \
|
||||||
|
guestfs-faq.1 \
|
||||||
|
guestfs-performance.1 \
|
||||||
|
guestfs-recipes.1 \
|
||||||
|
guestfs-testing.1
|
||||||
|
noinst_DATA = \
|
||||||
|
$(top_builddir)/html/guestfs-faq.1.html \
|
||||||
|
$(top_builddir)/html/guestfs-performance.1.html \
|
||||||
|
$(top_builddir)/html/guestfs-recipes.1.html \
|
||||||
|
$(top_builddir)/html/guestfs-testing.1.html
|
||||||
|
|
||||||
|
guestfs-faq.1 $(top_builddir)/html/guestfs-faq.1.html: stamp-guestfs-faq.pod
|
||||||
|
|
||||||
|
stamp-guestfs-faq.pod: guestfs-faq.pod
|
||||||
|
$(PODWRAPPER) \
|
||||||
|
--section 1 \
|
||||||
|
--man guestfs-faq.1 \
|
||||||
|
--html $(top_builddir)/html/guestfs-faq.1.html \
|
||||||
|
--license LGPLv2+ \
|
||||||
|
$<
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
guestfs-performance.1 $(top_builddir)/html/guestfs-performance.1.html: stamp-guestfs-performance.pod
|
||||||
|
|
||||||
|
stamp-guestfs-performance.pod: guestfs-performance.pod
|
||||||
|
$(PODWRAPPER) \
|
||||||
|
--section 1 \
|
||||||
|
--man guestfs-performance.1 \
|
||||||
|
--html $(top_builddir)/html/guestfs-performance.1.html \
|
||||||
|
--license LGPLv2+ \
|
||||||
|
$<
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
guestfs-recipes.1 $(top_builddir)/html/guestfs-recipes.1.html: stamp-guestfs-recipes.pod
|
||||||
|
|
||||||
|
stamp-guestfs-recipes.pod: guestfs-recipes.pod
|
||||||
|
$(PODWRAPPER) \
|
||||||
|
--section 1 \
|
||||||
|
--man guestfs-recipes.1 \
|
||||||
|
--html $(top_builddir)/html/guestfs-recipes.1.html \
|
||||||
|
--license examples \
|
||||||
|
$<
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
guestfs-testing.1 $(top_builddir)/html/guestfs-testing.1.html: stamp-guestfs-testing.pod
|
||||||
|
|
||||||
|
stamp-guestfs-testing.pod: guestfs-testing.pod
|
||||||
|
$(PODWRAPPER) \
|
||||||
|
--section 1 \
|
||||||
|
--man guestfs-testing.1 \
|
||||||
|
--html $(top_builddir)/html/guestfs-testing.1.html \
|
||||||
|
--license LGPLv2+ \
|
||||||
|
$<
|
||||||
|
touch $@
|
||||||
11
docs/README
Normal file
11
docs/README
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
This directory contains miscellaneous manual pages which don't fit
|
||||||
|
elsewhere.
|
||||||
|
|
||||||
|
Most libguestfs documentation is in manual pages. The source for
|
||||||
|
those manual pages are POD files (*.pod), and they are normally
|
||||||
|
located next to the source files they relate to (eg. guestfish
|
||||||
|
documentation is in fish/guestfish.pod).
|
||||||
|
|
||||||
|
All manual pages are available online at http://libguestfs.org/
|
||||||
|
|
||||||
|
The main API documentation is: http://libguestfs.org/guestfs.3.html
|
||||||
@@ -20,10 +20,6 @@ include $(top_srcdir)/subdir-rules.mk
|
|||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
LICENSE \
|
LICENSE \
|
||||||
guestfs-examples.pod \
|
guestfs-examples.pod \
|
||||||
guestfs-faq.pod \
|
|
||||||
guestfs-performance.pod \
|
|
||||||
guestfs-recipes.pod \
|
|
||||||
guestfs-testing.pod \
|
|
||||||
copy-over.c \
|
copy-over.c \
|
||||||
create-disk.c \
|
create-disk.c \
|
||||||
debug-logging.c \
|
debug-logging.c \
|
||||||
@@ -34,11 +30,7 @@ EXTRA_DIST = \
|
|||||||
virt-dhcp-address.c
|
virt-dhcp-address.c
|
||||||
|
|
||||||
CLEANFILES = \
|
CLEANFILES = \
|
||||||
stamp-guestfs-examples.pod \
|
stamp-guestfs-examples.pod
|
||||||
stamp-guestfs-faq.pod \
|
|
||||||
stamp-guestfs-performance.pod \
|
|
||||||
stamp-guestfs-recipes.pod \
|
|
||||||
stamp-guestfs-testing.pod
|
|
||||||
|
|
||||||
noinst_PROGRAMS = create-disk debug-logging display-icon inspect-vm
|
noinst_PROGRAMS = create-disk debug-logging display-icon inspect-vm
|
||||||
if HAVE_LIBVIRT
|
if HAVE_LIBVIRT
|
||||||
@@ -139,18 +131,8 @@ virt_dhcp_address_LDADD = \
|
|||||||
$(top_builddir)/src/libguestfs.la
|
$(top_builddir)/src/libguestfs.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
man_MANS = \
|
man_MANS = guestfs-examples.3
|
||||||
guestfs-examples.3 \
|
noinst_DATA = $(top_builddir)/html/guestfs-examples.3.html
|
||||||
guestfs-faq.1 \
|
|
||||||
guestfs-performance.1 \
|
|
||||||
guestfs-recipes.1 \
|
|
||||||
guestfs-testing.1
|
|
||||||
noinst_DATA = \
|
|
||||||
$(top_builddir)/html/guestfs-examples.3.html \
|
|
||||||
$(top_builddir)/html/guestfs-faq.1.html \
|
|
||||||
$(top_builddir)/html/guestfs-performance.1.html \
|
|
||||||
$(top_builddir)/html/guestfs-recipes.1.html \
|
|
||||||
$(top_builddir)/html/guestfs-testing.1.html
|
|
||||||
|
|
||||||
guestfs-examples.3 $(top_builddir)/html/guestfs-examples.3.html: stamp-guestfs-examples.pod
|
guestfs-examples.3 $(top_builddir)/html/guestfs-examples.3.html: stamp-guestfs-examples.pod
|
||||||
|
|
||||||
@@ -170,47 +152,3 @@ stamp-guestfs-examples.pod: guestfs-examples.pod copy-over.c create-disk.c debug
|
|||||||
--license examples \
|
--license examples \
|
||||||
$<
|
$<
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
guestfs-faq.1 $(top_builddir)/html/guestfs-faq.1.html: stamp-guestfs-faq.pod
|
|
||||||
|
|
||||||
stamp-guestfs-faq.pod: guestfs-faq.pod
|
|
||||||
$(PODWRAPPER) \
|
|
||||||
--section 1 \
|
|
||||||
--man guestfs-faq.1 \
|
|
||||||
--html $(top_builddir)/html/guestfs-faq.1.html \
|
|
||||||
--license LGPLv2+ \
|
|
||||||
$<
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
guestfs-performance.1 $(top_builddir)/html/guestfs-performance.1.html: stamp-guestfs-performance.pod
|
|
||||||
|
|
||||||
stamp-guestfs-performance.pod: guestfs-performance.pod
|
|
||||||
$(PODWRAPPER) \
|
|
||||||
--section 1 \
|
|
||||||
--man guestfs-performance.1 \
|
|
||||||
--html $(top_builddir)/html/guestfs-performance.1.html \
|
|
||||||
--license LGPLv2+ \
|
|
||||||
$<
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
guestfs-recipes.1 $(top_builddir)/html/guestfs-recipes.1.html: stamp-guestfs-recipes.pod
|
|
||||||
|
|
||||||
stamp-guestfs-recipes.pod: guestfs-recipes.pod
|
|
||||||
$(PODWRAPPER) \
|
|
||||||
--section 1 \
|
|
||||||
--man guestfs-recipes.1 \
|
|
||||||
--html $(top_builddir)/html/guestfs-recipes.1.html \
|
|
||||||
--license examples \
|
|
||||||
$<
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
guestfs-testing.1 $(top_builddir)/html/guestfs-testing.1.html: stamp-guestfs-testing.pod
|
|
||||||
|
|
||||||
stamp-guestfs-testing.pod: guestfs-testing.pod
|
|
||||||
$(PODWRAPPER) \
|
|
||||||
--section 1 \
|
|
||||||
--man guestfs-testing.1 \
|
|
||||||
--html $(top_builddir)/html/guestfs-testing.1.html \
|
|
||||||
--license LGPLv2+ \
|
|
||||||
$<
|
|
||||||
touch $@
|
|
||||||
|
|||||||
@@ -13,13 +13,13 @@
|
|||||||
../df/virt-df.pod
|
../df/virt-df.pod
|
||||||
../dib/virt-dib.pod
|
../dib/virt-dib.pod
|
||||||
../diff/virt-diff.pod
|
../diff/virt-diff.pod
|
||||||
|
../docs/guestfs-faq.pod
|
||||||
|
../docs/guestfs-performance.pod
|
||||||
|
../docs/guestfs-recipes.pod
|
||||||
|
../docs/guestfs-testing.pod
|
||||||
../edit/virt-edit.pod
|
../edit/virt-edit.pod
|
||||||
../erlang/examples/guestfs-erlang.pod
|
../erlang/examples/guestfs-erlang.pod
|
||||||
../examples/guestfs-examples.pod
|
../examples/guestfs-examples.pod
|
||||||
../examples/guestfs-faq.pod
|
|
||||||
../examples/guestfs-performance.pod
|
|
||||||
../examples/guestfs-recipes.pod
|
|
||||||
../examples/guestfs-testing.pod
|
|
||||||
../fish/guestfish-actions.pod
|
../fish/guestfish-actions.pod
|
||||||
../fish/guestfish-commands.pod
|
../fish/guestfish-commands.pod
|
||||||
../fish/guestfish-prepopts.pod
|
../fish/guestfish-prepopts.pod
|
||||||
|
|||||||
@@ -4458,6 +4458,10 @@ L<virt-dib(1)> command and documentation.
|
|||||||
|
|
||||||
L<virt-diff(1)> command and documentation.
|
L<virt-diff(1)> command and documentation.
|
||||||
|
|
||||||
|
=item F<doc>
|
||||||
|
|
||||||
|
Miscellaneous manual pages.
|
||||||
|
|
||||||
=item F<edit>
|
=item F<edit>
|
||||||
|
|
||||||
L<virt-edit(1)> command and documentation.
|
L<virt-edit(1)> command and documentation.
|
||||||
|
|||||||
Reference in New Issue
Block a user