1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00

docs: Use a different copyright in the html and man output

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-04-12 15:16:12 +02:00
parent 6ce2ceb58b
commit 30adceb7bb
3 changed files with 14 additions and 2 deletions

3
docs/_templates/layout.html vendored Normal file
View File

@ -0,0 +1,3 @@
{% extends "!layout.html" %}
{% set copyright = "2006-2014 Ricardo Garcia Gonzalez" %}

View File

@ -37,7 +37,9 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'youtube-dl' project = u'youtube-dl'
copyright = u'2014, Ricardo Garcia Gonzalez' # Set it to None so that we can set different copyrights in the html and man
# output
copyright = None
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -72,6 +74,6 @@ htmlhelp_basename = 'youtube-dldoc'
# -- Options for the man page --------------------------------------------- # -- Options for the man page ---------------------------------------------
man_pages = [('youtube-dl.1', 'youtube-dl', 'download videos from youtube.com or other video platforms', 'Ricardo Garcia Gonzalez', 1)] man_pages = [('youtube-dl.1', 'youtube-dl', 'download videos from youtube.com or other video platforms', None, 1)]
man_show_urls = True man_show_urls = True

View File

@ -76,3 +76,10 @@ BUGS
==== ====
Bugs and suggestions should be reported at: https://github.com/rg3/youtube-dl/issues. Please read the `bug reporting guidelines <https://github.com/rg3/youtube-dl/#bugs>`_ before opening a ticket. Bugs and suggestions should be reported at: https://github.com/rg3/youtube-dl/issues. Please read the `bug reporting guidelines <https://github.com/rg3/youtube-dl/#bugs>`_ before opening a ticket.
COPYRIGHT
=========
youtube-dl is released into the public domain by the copyright holders.
This manual page is based on the README file originally written by `Daniel Bolton <https://github.com/dbbolton>`_ and is likewise released into the public domain.