Skip to content

Commit c5d7b42

Browse files
committed
Add buttons, add logo to documentation
1 parent bceeda2 commit c5d7b42

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

doc/_static/favicon.ico

1.12 KB
Binary file not shown.

doc/_static/favicon.xcf

2.45 KB
Binary file not shown.

doc/_static/logo.png

95.1 KB
Loading

doc/conf.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@
113113
'github_user': 'tobinus',
114114
'github_repo': 'python-podgen',
115115
'github_banner': True,
116+
'logo_name': False,
117+
'logo': 'logo.png',
116118
}
117119

118120
# Add any paths that contain custom themes here, relative to this directory.
@@ -132,7 +134,7 @@
132134
# The name of an image file (within the static path) to use as favicon of the
133135
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
134136
# pixels large.
135-
#html_favicon = None
137+
html_favicon = "favicon.ico"
136138

137139
# Add any paths that contain custom static files (such as style sheets) here,
138140
# relative to this directory. They are copied after the builtin static files,
@@ -243,8 +245,8 @@
243245
# One entry per manual page. List of tuples
244246
# (source start file, name, description, authors, manual section).
245247
man_pages = [
246-
('index', 'pyPodGen.tex', u'pyPodGen Documentation',
247-
[u'Lars Kiesow'], 1)
248+
('index', 'pyPodGen.tex', u'PodGen Documentation',
249+
[u'Lars Kiesow', u'Thorben Dahl'], 1)
248250
]
249251

250252
# If true, show URL addresses after external links.
@@ -257,8 +259,8 @@
257259
# (source start file, target name, title, author,
258260
# dir menu entry, description, category)
259261
texinfo_documents = [
260-
('index', 'pyPodGen.tex', u'pyPodGen Documentation',
261-
u'Lars Kiesow', 'Lernfunk3', 'One line description of project.',
262+
('index', 'pyPodGen.tex', u'PodGen Documentation',
263+
u'Lars Kiesow, Thorben Dahl', 'Lernfunk3', 'One line description of project.',
262264
'Miscellaneous'),
263265
]
264266

doc/index.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
PodGen
33
======
44

5+
.. image:: https://travis-ci.org/tobinus/python-podgen.svg?branch=master
6+
:target: https://travis-ci.org/tobinus/python-podgen
7+
8+
.. image:: https://readthedocs.org/projects/podgen/badge/?version=latest
9+
:target: http://podgen.readthedocs.io/en/latest/?badge=latest
10+
:alt: Documentation Status
11+
512
Wouldn't it be nice if there was a **clean and simple library** which could help you
613
**generate podcast RSS feeds** from your Python code? Well, today's your lucky day!
714

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PodGen (forked from python-feedgen)
33
===================================
44

5-
[![Build Status](https://travis-ci.org/tobinus/python-podgen.svg?branch=master)](https://travis-ci.org/tobinus/python-podgen)
5+
[![Build Status](https://travis-ci.org/tobinus/python-podgen.svg?branch=master)](https://travis-ci.org/tobinus/python-podgen) [![Documentation Status](https://readthedocs.org/projects/podgen/badge/?version=latest)](http://podgen.readthedocs.io/en/latest/?badge=latest)
66

77
This module can be used to generate podcast feeds in RSS format, and is
88
compatible with Python 3.3+.

0 commit comments

Comments
 (0)