Various fixes

This commit is contained in:
Daniel Molkentin
2014-01-06 17:40:56 +01:00
parent e151ee5f6f
commit 710cfc54c7
6 changed files with 26 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ help:
@echo " epub to make an epub"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " pdf to make PDF files"
@echo " text to make text files"
@echo " man to make manual pages"
@echo " texinfo to make Texinfo files"
@@ -122,10 +123,15 @@ latexpdf:
$(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
pdf:
$(SPHINXBUILD) -b pdf $(ALLSPHINXOPTS) $(BUILDDIR)/pdf
@echo
@echo "build finished. the text files are in $(BUILDDIR)/pdf."
text:
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
@echo
@echo "Build finished. The text files are in $(BUILDDIR)/text."
@echo "build finished. the text files are in $(BUILDDIR)/text."
man:
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man

View File

@@ -166,7 +166,7 @@ html_show_sphinx = False
#html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = '2012-2014'
htmlhelp_basename = 'owncloudDeveloperManual'
# -- Options for LaTeX output --------------------------------------------------
@@ -211,7 +211,7 @@ latex_logo = '../_shared_assets/static/logo-blue.pdf'
# -- Options for pdf page output -----------------------------------------------
pdf_documents = [('index', u'2012-2014', u'ownCloud Developer Manual',
pdf_documents = [('contents', u'owncloudDeveloperManual', u'ownCloud Developer Manual',
u'The ownCloud developers'),]
# -- Options for manual page output --------------------------------------------
@@ -219,7 +219,7 @@ pdf_documents = [('index', u'2012-2014', u'ownCloud Developer Manual',
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('contents', 'owncloudadminmanual', u'ownCloud Developer Manual',
('contents', 'owncloudDeveloperManual', u'ownCloud Developer Manual',
[u'The ownCloud developers'], 1)
]