summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2014-01-12 16:41:23 -0800
committerDavid Schleef <ds@schleef.org>2014-01-12 16:57:15 -0800
commite3dad87cc20a0f9b108471e02a8d7dbf81569411 (patch)
tree17bba4fce2c11b425a521a0d5496c52f181586ad
parent70138b6e8dc553c146531482b4b08bffd02f6e3b (diff)
move docs to subdir
-rw-r--r--configure.ac1
-rw-r--r--doc/Makefile.am110
-rw-r--r--doc/gss/Makefile.am109
-rw-r--r--doc/gss/building.xml (renamed from doc/building.xml)0
-rw-r--r--doc/gss/getting-started.xml (renamed from doc/getting-started.xml)0
-rw-r--r--doc/gss/gss-http-server.xml (renamed from doc/gss-http-server.xml)0
-rw-r--r--doc/gss/gst-helper.h (renamed from doc/gst-helper.h)0
-rw-r--r--doc/gss/gst-streaming-server-docs.sgml (renamed from doc/gst-streaming-server-docs.sgml)0
-rw-r--r--doc/gss/gst-streaming-server-overrides.txt (renamed from doc/gst-streaming-server-overrides.txt)0
-rw-r--r--doc/gss/gst-streaming-server-sections.txt (renamed from doc/gst-streaming-server-sections.txt)0
-rw-r--r--doc/gss/gst-streaming-server.types (renamed from doc/gst-streaming-server.types)0
-rw-r--r--doc/gss/installation.xml (renamed from doc/installation.xml)0
12 files changed, 111 insertions, 109 deletions
diff --git a/configure.ac b/configure.ac
index 54e3c05..3657d75 100644
--- a/configure.ac
+++ b/configure.ac
@@ -228,6 +228,7 @@ AS_HOST_DEFINES()
AC_CONFIG_FILES([
Makefile
doc/Makefile
+doc/gss/Makefile
gst-streaming-server/Makefile
pkgconfig/Makefile
pkgconfig/gst-streaming-server-uninstalled.pc
diff --git a/doc/Makefile.am b/doc/Makefile.am
index f7c5ee0..4f6a7e0 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,109 +1 @@
-## Process this file with automake to produce Makefile.in
-
-# We require automake 1.6 at least.
-AUTOMAKE_OPTIONS = 1.6
-
-# This is a blank Makefile.am for using gtk-doc.
-# Copy this to your project's API docs directory and modify the variables to
-# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
-# of using the various options.
-
-# The name of the module, e.g. 'glib'.
-DOC_MODULE=gst-streaming-server
-
-# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
-#DOC_MODULE_VERSION=2
-
-
-# The top-level SGML file. You can change this if you want to.
-DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
-
-# The directory containing the source code. Relative to $(srcdir).
-# gtk-doc will search all .c & .h files beneath here for inline comments
-# documenting the functions and macros.
-# e.g. DOC_SOURCE_DIR=../../../gtk
-DOC_SOURCE_DIR=../gst-streaming-server
-
-# Extra options to pass to gtkdoc-scangobj. Not normally needed.
-SCANGOBJ_OPTIONS=
-
-# Extra options to supply to gtkdoc-scan.
-# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
-SCAN_OPTIONS=
-
-# Extra options to supply to gtkdoc-mkdb.
-# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
-MKDB_OPTIONS=--sgml-mode --output-format=xml
-
-# Extra options to supply to gtkdoc-mktmpl
-# e.g. MKTMPL_OPTIONS=--only-section-tmpl
-MKTMPL_OPTIONS=
-
-# Extra options to supply to gtkdoc-mkhtml
-MKHTML_OPTIONS=
-
-# Extra options to supply to gtkdoc-fixref. Not normally needed.
-# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
-FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html --extra-dir=$(GST_PREFIX)/share/gtk-doc/html --extra-dir=$(SOUP_PREFIX)/share/gtk-doc/html
-
-# Used for dependencies. The docs will be rebuilt if any of these change.
-# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
-# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
-HFILE_GLOB=$(top_srcdir)/gst-streaming-server/*.h
-CFILE_GLOB=$(top_srcdir)/gst-streaming-server/*.c
-
-# Extra header to include when scanning, which are not under DOC_SOURCE_DIR
-# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
-EXTRA_HFILES=
-
-# Header files to ignore when scanning. Use base file name, no paths
-# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
-IGNORE_HFILES=gss-content.h
-
-# Images to copy into HTML directory.
-# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
-HTML_IMAGES=
-
-# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
-# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
-content_files=
-
-# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
-# These files must be listed here *and* in content_files
-# e.g. expand_content_files=running.sgml
-expand_content_files=
-
-# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
-# Only needed if you are using gtkdoc-scangobj to dynamically query widget
-# signals and properties.
-# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
-# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-GTKDOC_CFLAGS=-include gst-helper.h $(GSS_CFLAGS) $(GST_CFLAGS) $(SOUP_CFLAGS) $(GST_RTSP_SERVER_CFLAGS)
-GTKDOC_LIBS=$(top_builddir)/gst-streaming-server/libgss-@GST_API_VERSION@.la $(GST_LIBS) $(SOUP_LIBS) $(GST_RTSP_SERVER_LIBS) $(JSON_GLIB_LIBS)
-
-GTKDOC_CC=$(LIBTOOL) --tag=CC --mode=compile $(CC)
-GTKDOC_LD=$(LIBTOOL) --tag=CC --mode=link $(CC)
-
-# This includes the standard gtk-doc make rules, copied by gtkdocize.
-include $(top_srcdir)/common/gtk-doc.mak
-
-# Other files to distribute
-# e.g. EXTRA_DIST += version.xml.in
-EXTRA_DIST +=
-
-# Files not to distribute
-# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
-# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
-#DISTCLEANFILES +=
-
-# Comment this out if you want your docs-status tested during 'make check'
-if ENABLE_GTK_DOC
-#TESTS_ENVIRONMENT = cd $(srcsrc) &&
-#TESTS = $(GTKDOC_CHECK)
-endif
-
--include $(top_srcdir)/git.mk
-
-update-www:
- rsync -a html/* cooker.entropywave.com:/srv/code.entropywave.com/www/documentation/gst-streaming-server
-
+SUBDIRS=gss
diff --git a/doc/gss/Makefile.am b/doc/gss/Makefile.am
new file mode 100644
index 0000000..aa08295
--- /dev/null
+++ b/doc/gss/Makefile.am
@@ -0,0 +1,109 @@
+## Process this file with automake to produce Makefile.in
+
+# We require automake 1.6 at least.
+AUTOMAKE_OPTIONS = 1.6
+
+# This is a blank Makefile.am for using gtk-doc.
+# Copy this to your project's API docs directory and modify the variables to
+# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
+# of using the various options.
+
+# The name of the module, e.g. 'glib'.
+DOC_MODULE=gst-streaming-server
+
+# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
+#DOC_MODULE_VERSION=2
+
+
+# The top-level SGML file. You can change this if you want to.
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code. Relative to $(srcdir).
+# gtk-doc will search all .c & .h files beneath here for inline comments
+# documenting the functions and macros.
+# e.g. DOC_SOURCE_DIR=../../../gtk
+DOC_SOURCE_DIR=$(top_srcdir)/gst-streaming-server
+
+# Extra options to pass to gtkdoc-scangobj. Not normally needed.
+SCANGOBJ_OPTIONS=
+
+# Extra options to supply to gtkdoc-scan.
+# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
+SCAN_OPTIONS=
+
+# Extra options to supply to gtkdoc-mkdb.
+# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
+MKDB_OPTIONS=--sgml-mode --output-format=xml
+
+# Extra options to supply to gtkdoc-mktmpl
+# e.g. MKTMPL_OPTIONS=--only-section-tmpl
+MKTMPL_OPTIONS=
+
+# Extra options to supply to gtkdoc-mkhtml
+MKHTML_OPTIONS=
+
+# Extra options to supply to gtkdoc-fixref. Not normally needed.
+# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
+FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html --extra-dir=$(GST_PREFIX)/share/gtk-doc/html --extra-dir=$(SOUP_PREFIX)/share/gtk-doc/html
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
+# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
+HFILE_GLOB=$(top_srcdir)/gst-streaming-server/*.h
+CFILE_GLOB=$(top_srcdir)/gst-streaming-server/*.c
+
+# Extra header to include when scanning, which are not under DOC_SOURCE_DIR
+# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
+EXTRA_HFILES=
+
+# Header files to ignore when scanning. Use base file name, no paths
+# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
+IGNORE_HFILES=gss-content.h
+
+# Images to copy into HTML directory.
+# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
+HTML_IMAGES=
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
+# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
+content_files=
+
+# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
+# These files must be listed here *and* in content_files
+# e.g. expand_content_files=running.sgml
+expand_content_files=
+
+# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
+# Only needed if you are using gtkdoc-scangobj to dynamically query widget
+# signals and properties.
+# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
+GTKDOC_CFLAGS=-include gst-helper.h $(GSS_CFLAGS) $(GST_CFLAGS) $(SOUP_CFLAGS) $(GST_RTSP_SERVER_CFLAGS)
+GTKDOC_LIBS=$(top_builddir)/gst-streaming-server/libgss-@GST_API_VERSION@.la $(GST_LIBS) $(SOUP_LIBS) $(GST_RTSP_SERVER_LIBS) $(JSON_GLIB_LIBS)
+
+GTKDOC_CC=$(LIBTOOL) --tag=CC --mode=compile $(CC)
+GTKDOC_LD=$(LIBTOOL) --tag=CC --mode=link $(CC)
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/common/gtk-doc.mak
+
+# Other files to distribute
+# e.g. EXTRA_DIST += version.xml.in
+EXTRA_DIST +=
+
+# Files not to distribute
+# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
+# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
+#DISTCLEANFILES +=
+
+# Comment this out if you want your docs-status tested during 'make check'
+if ENABLE_GTK_DOC
+#TESTS_ENVIRONMENT = cd $(srcsrc) &&
+#TESTS = $(GTKDOC_CHECK)
+endif
+
+-include $(top_srcdir)/git.mk
+
+update-www:
+ rsync -a html/* cooker.entropywave.com:/srv/code.entropywave.com/www/documentation/gst-streaming-server
+
diff --git a/doc/building.xml b/doc/gss/building.xml
index a7f8fc5..a7f8fc5 100644
--- a/doc/building.xml
+++ b/doc/gss/building.xml
diff --git a/doc/getting-started.xml b/doc/gss/getting-started.xml
index 7e73a23..7e73a23 100644
--- a/doc/getting-started.xml
+++ b/doc/gss/getting-started.xml
diff --git a/doc/gss-http-server.xml b/doc/gss/gss-http-server.xml
index ae9c2db..ae9c2db 100644
--- a/doc/gss-http-server.xml
+++ b/doc/gss/gss-http-server.xml
diff --git a/doc/gst-helper.h b/doc/gss/gst-helper.h
index 9f4950e..9f4950e 100644
--- a/doc/gst-helper.h
+++ b/doc/gss/gst-helper.h
diff --git a/doc/gst-streaming-server-docs.sgml b/doc/gss/gst-streaming-server-docs.sgml
index e5e82fb..e5e82fb 100644
--- a/doc/gst-streaming-server-docs.sgml
+++ b/doc/gss/gst-streaming-server-docs.sgml
diff --git a/doc/gst-streaming-server-overrides.txt b/doc/gss/gst-streaming-server-overrides.txt
index d1aab3e..d1aab3e 100644
--- a/doc/gst-streaming-server-overrides.txt
+++ b/doc/gss/gst-streaming-server-overrides.txt
diff --git a/doc/gst-streaming-server-sections.txt b/doc/gss/gst-streaming-server-sections.txt
index d6b2b69..d6b2b69 100644
--- a/doc/gst-streaming-server-sections.txt
+++ b/doc/gss/gst-streaming-server-sections.txt
diff --git a/doc/gst-streaming-server.types b/doc/gss/gst-streaming-server.types
index 0ae1153..0ae1153 100644
--- a/doc/gst-streaming-server.types
+++ b/doc/gss/gst-streaming-server.types
diff --git a/doc/installation.xml b/doc/gss/installation.xml
index a0cfb5d..a0cfb5d 100644
--- a/doc/installation.xml
+++ b/doc/gss/installation.xml