| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| 3 | # JW Player documentation build configuration file, created by |
|---|
| 4 | # sphinx-quickstart on Thu Apr 22 14:04:18 2010. |
|---|
| 5 | # |
|---|
| 6 | # All configuration values have a default; values that are commented out |
|---|
| 7 | # serve to show the default. |
|---|
| 8 | |
|---|
| 9 | import sys, os |
|---|
| 10 | |
|---|
| 11 | # If extensions (or modules to document with autodoc) are in another directory, |
|---|
| 12 | # add these directories to sys.path here. If the directory is relative to the |
|---|
| 13 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
|---|
| 14 | #sys.path.append(os.path.abspath('.')) |
|---|
| 15 | |
|---|
| 16 | # -- General configuration ----------------------------------------------------- |
|---|
| 17 | |
|---|
| 18 | # Add any paths that contain templates here, relative to this directory. |
|---|
| 19 | # templates_path = ['_templates'] |
|---|
| 20 | |
|---|
| 21 | # The suffix of source filenames. |
|---|
| 22 | source_suffix = '.rst' |
|---|
| 23 | |
|---|
| 24 | # The master toctree document. |
|---|
| 25 | master_doc = 'index' |
|---|
| 26 | |
|---|
| 27 | # General information about the project. |
|---|
| 28 | project = 'JW Player for Flash' |
|---|
| 29 | copyright = 'LongTail Video' |
|---|
| 30 | |
|---|
| 31 | # The full version, including alpha/beta/rc tags. |
|---|
| 32 | release = '5.3' |
|---|
| 33 | |
|---|
| 34 | # List of documents that shouldn't be included in the build. |
|---|
| 35 | #unused_docs = [] |
|---|
| 36 | |
|---|
| 37 | # The name of the Pygments (syntax highlighting) style to use. |
|---|
| 38 | pygments_style = 'sphinx' |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | # -- Options for HTML output --------------------------------------------------- |
|---|
| 42 | |
|---|
| 43 | # The theme to use for HTML and HTML Help pages. Major themes that come with |
|---|
| 44 | # Sphinx are currently 'default' and 'sphinxdoc'. |
|---|
| 45 | html_theme = 'default' |
|---|
| 46 | |
|---|
| 47 | # Theme options are theme-specific and customize the look and feel of a theme |
|---|
| 48 | # further. For a list of options available for each theme, see the |
|---|
| 49 | # documentation. |
|---|
| 50 | #html_theme_options = {} |
|---|
| 51 | |
|---|
| 52 | # A shorter title for the navigation bar. Default is the same as html_title. |
|---|
| 53 | #html_short_title = None |
|---|
| 54 | |
|---|
| 55 | # The name of an image file (relative to this directory) to place at the top |
|---|
| 56 | # of the sidebar. |
|---|
| 57 | #html_logo = None |
|---|
| 58 | |
|---|
| 59 | # Add any paths that contain custom static files (such as style sheets) here, |
|---|
| 60 | # relative to this directory. They are copied after the builtin static files, |
|---|
| 61 | # so a file named "default.css" will overwrite the builtin "default.css". |
|---|
| 62 | html_static_path = ['../images'] |
|---|
| 63 | |
|---|
| 64 | # Output file base name for HTML help builder. |
|---|
| 65 | htmlhelp_basename = 'JWPlayerFlash' |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | # -- Options for LaTeX output -------------------------------------------------- |
|---|
| 69 | |
|---|
| 70 | # The paper size ('letter' or 'a4'). |
|---|
| 71 | #latex_paper_size = 'letter' |
|---|
| 72 | |
|---|
| 73 | # The font size ('10pt', '11pt' or '12pt'). |
|---|
| 74 | #latex_font_size = '10pt' |
|---|
| 75 | |
|---|
| 76 | # Grouping the document tree into LaTeX files. List of tuples |
|---|
| 77 | # (source start file, target name, title, author, documentclass [howto/manual]). |
|---|
| 78 | latex_documents = [ |
|---|
| 79 | ('index','JWPlayerFlash.tex','JW Player for Flash','www.longtailvideo.com','manual',True) |
|---|
| 80 | ] |
|---|
| 81 | |
|---|
| 82 | # The name of an image file (relative to this directory) to place at the top of |
|---|
| 83 | # the title page. |
|---|
| 84 | latex_logo = '../images/longtail.png' |
|---|
| 85 | |
|---|
| 86 | # If false, no module index is generated. |
|---|
| 87 | latex_use_modindex = False |
|---|