|
11 | 11 | # All configuration values have a default; values that are commented out |
12 | 12 | # serve to show the default. |
13 | 13 |
|
| 14 | +from __future__ import unicode_literals |
| 15 | + |
14 | 16 | import sys, os, os.path |
15 | 17 |
|
16 | 18 | # If extensions (or modules to document with autodoc) are in another directory, |
|
41 | 43 | master_doc = 'index' |
42 | 44 |
|
43 | 45 | # General information about the project. |
44 | | -project = u'Selenium' |
45 | | -copyright = u'2011, plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
| 46 | +project = 'Selenium' |
| 47 | +copyright = '2011, plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
46 | 48 |
|
47 | 49 | # The version info for the project you're documenting, acts as replacement for |
48 | 50 | # |version| and |release|, also used in various other places throughout the |
|
179 | 181 | # Grouping the document tree into LaTeX files. List of tuples |
180 | 182 | # (source start file, target name, title, author, documentclass [howto/manual]). |
181 | 183 | latex_documents = [ |
182 | | - ('index', 'Selenium.tex', u'Selenium Documentation', |
183 | | - u'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.', 'manual'), |
| 184 | + ('index', 'Selenium.tex', 'Selenium Documentation', |
| 185 | + 'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.', 'manual'), |
184 | 186 | ] |
185 | 187 |
|
186 | 188 | # The name of an image file (relative to this directory) to place at the top of |
|
212 | 214 | # One entry per manual page. List of tuples |
213 | 215 | # (source start file, name, description, authors, manual section). |
214 | 216 | man_pages = [ |
215 | | - ('index', 'selenium', u'Selenium Documentation', |
216 | | - [u'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.'], 1) |
| 217 | + ('index', 'selenium', 'Selenium Documentation', |
| 218 | + ['plightbo, simon.m.stewart, hbchai, jrhuggins, et al.'], 1) |
217 | 219 | ] |
218 | 220 |
|
219 | 221 |
|
220 | 222 | # -- Options for Epub output --------------------------------------------------- |
221 | 223 |
|
222 | 224 | # Bibliographic Dublin Core info. |
223 | | -epub_title = u'Selenium' |
224 | | -epub_author = u'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
225 | | -epub_publisher = u'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
226 | | -epub_copyright = u'2011, plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
| 225 | +epub_title = 'Selenium' |
| 226 | +epub_author = 'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
| 227 | +epub_publisher = 'plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
| 228 | +epub_copyright = '2011, plightbo, simon.m.stewart, hbchai, jrhuggins, et al.' |
227 | 229 |
|
228 | 230 | # The language of the text. It defaults to the language option |
229 | 231 | # or en if the language is not set. |
|
0 commit comments