diff --git a/admin_manual/conf.py b/admin_manual/conf.py index ccacdea1e..e8e3a7295 100644 --- a/admin_manual/conf.py +++ b/admin_manual/conf.py @@ -40,10 +40,6 @@ source_suffix = '.rst' # The master toctree document. master_doc = 'contents' -# General information about the project. -project = u'ownCloud 9.0 Server Administration Manual' -copyright = u'2012-2016, The ownCloud developers' - # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. @@ -53,6 +49,12 @@ version = '9.0' # The full version, including alpha/beta/rc tags. release = '9.0' +# General information about the project. +project = u'ownCloud %s Server Administration Manual' % (version) +copyright = u'2012-2016, The ownCloud developers' + + + # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None @@ -245,7 +247,7 @@ texinfo_documents = [ ('contents', 'ownCloud Server Admin Manual', u'ownCloud Se epub_title = u'ownCloud Server Administration Manual' epub_author = u'The ownCloud developers' epub_publisher = u'The ownCloud developers' -epub_copyright = u'2012-2015, The ownCloud developers' +epub_copyright = u'2012-2016, The ownCloud developers' # The language of the text. It defaults to the language option # or en if the language is not set. @@ -283,3 +285,4 @@ epub_copyright = u'2012-2015, The ownCloud developers' # Include todos? todo_include_todos = True + diff --git a/user_manual/conf.py b/user_manual/conf.py index 5b6bf2b64..7894a0c85 100644 --- a/user_manual/conf.py +++ b/user_manual/conf.py @@ -39,10 +39,6 @@ source_suffix = '.rst' # The master toctree document. master_doc = 'contents' -# General information about the project. -project = u'ownCloud User Manual' -copyright = u'2012-2015, The ownCloud developers' - # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. @@ -52,6 +48,10 @@ version = '9.0' # The full version, including alpha/beta/rc tags. release = '9.0' +# General information about the project. +project = u'ownCloud %s User Manual' % (version) +copyright = u'2012-2016, The ownCloud developers' + # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None @@ -253,7 +253,7 @@ texinfo_documents = [ epub_title = u'ownCloud User Manual' epub_author = u'The ownCloud developers' epub_publisher = u'The ownCloud developers' -epub_copyright = u'2012-2015, The ownCloud developers' +epub_copyright = u'2012-2016, The ownCloud developers' # The language of the text. It defaults to the language option # or en if the language is not set.