mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-02 00:52:34 +02:00
2017-10-17 Fred Gleason <fredg@paravelsystems.com>
* Moved the man pages to 'docs/manpages/'. * Stubbed out a Rivendell Operations Guide in 'docs/opsguide/'.
This commit is contained in:
parent
4b5adfd53c
commit
4f165c1dcf
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,4 +1,7 @@
|
||||
*~
|
||||
*.1
|
||||
*.5
|
||||
*.8
|
||||
*.cgi
|
||||
*.exe
|
||||
*.la
|
||||
@ -26,11 +29,10 @@ config.status
|
||||
config.sub
|
||||
configure
|
||||
depcomp
|
||||
docs/docbook/*.1
|
||||
docs/docbook/*.5
|
||||
docs/docbook/*.8
|
||||
docs/docbook/*.html
|
||||
docs/docbook/*.pdf
|
||||
docs/opsguide/*.html
|
||||
docs/opsguide/*.pdf
|
||||
helpers/cwrap
|
||||
helpers/jsmin
|
||||
importers/nexgen_filter
|
||||
|
@ -16174,3 +16174,6 @@
|
||||
* Updated 'NEWS'.
|
||||
2017-10-17 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 2.17.0int00.
|
||||
2017-10-17 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Moved the man pages to 'docs/manpages/'.
|
||||
* Stubbed out a Rivendell Operations Guide in 'docs/opsguide/'.
|
||||
|
@ -503,6 +503,8 @@ AC_CONFIG_FILES([rivendell.spec \
|
||||
docs/Makefile \
|
||||
docs/docbook/Makefile \
|
||||
docs/examples/Makefile \
|
||||
docs/manpages/Makefile \
|
||||
docs/opsguide/Makefile \
|
||||
docs/tables/Makefile \
|
||||
debian/Makefile \
|
||||
debian/patches/Makefile \
|
||||
|
@ -20,7 +20,7 @@
|
||||
## Use automake to process this into a Makefile.in
|
||||
|
||||
if DOCBOOK_AM
|
||||
DOCBOOK_AM_OPT = docbook
|
||||
DOCBOOK_AM_OPT = docbook manpages opsguide
|
||||
endif
|
||||
|
||||
SUBDIRS = $(DOCBOOK_AM_OPT) examples\
|
||||
|
@ -33,47 +33,14 @@
|
||||
|
||||
all-local: cae.html\
|
||||
cae.pdf\
|
||||
rdclilogedit.1\
|
||||
rdconvert.1\
|
||||
rddbcheck.8\
|
||||
rdmarkerset.8\
|
||||
rdrender.1\
|
||||
rdrevert.8\
|
||||
rdexport.1\
|
||||
rdimport.1\
|
||||
rml.html\
|
||||
rml.pdf\
|
||||
web_api.html\
|
||||
web_api.pdf
|
||||
|
||||
man_MANS = rdclilogedit.1\
|
||||
rdconvert.1\
|
||||
rddbcheck.8\
|
||||
rdexport.1\
|
||||
rdimport.1\
|
||||
rdmarkerset.8\
|
||||
rdrender.1\
|
||||
rdrevert.8
|
||||
|
||||
EXTRA_DIST = cae.html\
|
||||
cae.pdf\
|
||||
cae.xml\
|
||||
rdclilogedit.1\
|
||||
rdclilogedit.xml\
|
||||
rdconvert.1\
|
||||
rdconvert.xml\
|
||||
rddbcheck.8\
|
||||
rddbcheck.xml\
|
||||
rdmarkerset.8\
|
||||
rdmarkerset.xml\
|
||||
rdrender.1\
|
||||
rdrender.xml\
|
||||
rdrevert.8\
|
||||
rdrevert.xml\
|
||||
rdexport.1\
|
||||
rdexport.xml\
|
||||
rdimport.1\
|
||||
rdimport.xml\
|
||||
rml.html\
|
||||
rml.pdf\
|
||||
rml.xml\
|
||||
|
77
docs/manpages/Makefile.am
Normal file
77
docs/manpages/Makefile.am
Normal file
@ -0,0 +1,77 @@
|
||||
## Makefile.am
|
||||
##
|
||||
## docs/manpages/automake.am for Rivendell
|
||||
##
|
||||
## (C) Copyright 2015-2017 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License version 2 as
|
||||
## published by the Free Software Foundation.
|
||||
##
|
||||
## 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
##
|
||||
## Use automake to process this into a Makefile.in
|
||||
|
||||
##
|
||||
## Build Dependencies
|
||||
##
|
||||
%.html: %.xml
|
||||
xsltproc -o $@ $(DOCBOOK_STYLESHEETS)/xhtml/docbook.xsl $<
|
||||
%.pdf: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/fo/docbook.xsl $< | fop - -pdf $@
|
||||
%.1: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/manpages/docbook.xsl $<
|
||||
%.8: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/manpages/docbook.xsl $<
|
||||
|
||||
all-local: rdclilogedit.1\
|
||||
rdconvert.1\
|
||||
rddbcheck.8\
|
||||
rdmarkerset.8\
|
||||
rdrender.1\
|
||||
rdrevert.8\
|
||||
rdexport.1\
|
||||
rdimport.1
|
||||
|
||||
man_MANS = rdclilogedit.1\
|
||||
rdconvert.1\
|
||||
rddbcheck.8\
|
||||
rdexport.1\
|
||||
rdimport.1\
|
||||
rdmarkerset.8\
|
||||
rdrender.1\
|
||||
rdrevert.8
|
||||
|
||||
EXTRA_DIST = rdclilogedit.1\
|
||||
rdclilogedit.xml\
|
||||
rdconvert.1\
|
||||
rdconvert.xml\
|
||||
rddbcheck.8\
|
||||
rddbcheck.xml\
|
||||
rdmarkerset.8\
|
||||
rdmarkerset.xml\
|
||||
rdrender.1\
|
||||
rdrender.xml\
|
||||
rdrevert.8\
|
||||
rdrevert.xml\
|
||||
rdexport.1\
|
||||
rdexport.xml\
|
||||
rdimport.1\
|
||||
rdimport.xml
|
||||
|
||||
CLEANFILES = *~
|
||||
MAINTAINERCLEANFILES = *~\
|
||||
*.1\
|
||||
*.8\
|
||||
*.html\
|
||||
*.pdf\
|
||||
aclocal.m4\
|
||||
configure\
|
||||
Makefile.in
|
49
docs/opsguide/Makefile.am
Normal file
49
docs/opsguide/Makefile.am
Normal file
@ -0,0 +1,49 @@
|
||||
## automake.am
|
||||
##
|
||||
## docs/opsguide/automake.am for Rivendell
|
||||
##
|
||||
## (C) Copyright 2017 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License version 2 as
|
||||
## published by the Free Software Foundation.
|
||||
##
|
||||
## 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
##
|
||||
## Use automake to process this into a Makefile.in
|
||||
|
||||
##
|
||||
## Build Dependencies
|
||||
##
|
||||
%.html: %.xml
|
||||
xsltproc -o $@ $(DOCBOOK_STYLESHEETS)/xhtml/docbook.xsl $<
|
||||
%.pdf: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/fo/docbook.xsl $< | fop - -pdf $@
|
||||
%.1: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/manpages/docbook.xsl $<
|
||||
%.8: %.xml
|
||||
xsltproc $(DOCBOOK_STYLESHEETS)/manpages/docbook.xsl $<
|
||||
|
||||
all-local: opsguide.html\
|
||||
opsguide.pdf
|
||||
|
||||
EXTRA_DIST = opsguide.html\
|
||||
opsguide.pdf\
|
||||
opsguide.xml
|
||||
|
||||
CLEANFILES = *~
|
||||
MAINTAINERCLEANFILES = *~\
|
||||
*.1\
|
||||
*.8\
|
||||
*.html\
|
||||
*.pdf\
|
||||
aclocal.m4\
|
||||
configure\
|
||||
Makefile.in
|
1779
docs/opsguide/opsguide.xml
Normal file
1779
docs/opsguide/opsguide.xml
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user