|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# ##### |
| 4 | +# |
| 5 | +# Settings.cfg - A TYPO3 Documentation Project's Configuration File |
| 6 | +# Information about Settings.cfg: |
| 7 | +# https://docs.typo3.org/typo3cms/HowToDocument/GeneralConventions/DirectoryFilenames.html#settings-cfg |
| 8 | +# |
| 9 | +# About Syntax: |
| 10 | +# See https://docs.python.org/2/library/configparser.html |
| 11 | +# |
| 12 | +# Attention: |
| 13 | +# Only " ;" can start an inline comment. |
| 14 | +# This is: blank PLUS semicolon! |
| 15 | +# |
| 16 | +# ##### |
| 17 | + |
| 18 | +[general] |
| 19 | + |
| 20 | +# ................................................................................. |
| 21 | +# ... (required) title (displayed in left sidebar (desktop) or top panel (mobile) |
| 22 | +# ................................................................................. |
| 23 | + |
| 24 | +project = Image Copyright |
| 25 | + |
| 26 | +# ................................................................................. |
| 27 | +# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version" |
| 28 | +# ................................................................................. |
| 29 | + |
| 30 | +release = 1.0.2 |
| 31 | + |
| 32 | +# ................................................................................. |
| 33 | +# ... (recommended) displayed in footer |
| 34 | +# ................................................................................. |
| 35 | + |
| 36 | +copyright = Carsten Walther |
| 37 | + |
| 38 | +[html_theme_options] |
| 39 | + |
| 40 | +# ................................................................................. |
| 41 | +# ... (recommended) to get the "Edit me on Github Button" |
| 42 | +# ................................................................................. |
| 43 | + |
| 44 | +github_branch = master |
| 45 | +github_repository = carsten-walther/image_copyright |
| 46 | + |
| 47 | +# ................................................................................. |
| 48 | +# ... (recommended) Fill in values to get links in the "Related Links" section |
| 49 | +# ................................................................................. |
| 50 | + |
| 51 | +# usually an email address |
| 52 | +project_contact = walther.carsten@web.de |
| 53 | + |
| 54 | +# URL of online discussions, you can leave this blank |
| 55 | +project_discussions = |
| 56 | + |
| 57 | +# URL of webpage of your extension (if it has one) |
| 58 | +project_home = https://github.com/carsten-walther/image_copyright |
| 59 | + |
| 60 | +# URL to Issues |
| 61 | +project_issues = https://github.com/carsten-walther/image_copyright/issues |
| 62 | + |
| 63 | +# URL of repository |
| 64 | +project_repository = https://github.com/carsten-walther/image_copyright |
| 65 | + |
| 66 | +[intersphinx_mapping] |
| 67 | + |
| 68 | +# ................................................................................. |
| 69 | +# for cross-referencing across manuals (intersphinx) with :ref: |
| 70 | +# |
| 71 | +# You must uncomment all manuals you use in your cross-references |
| 72 | +# |
| 73 | +# Example usage: |
| 74 | +# :ref:`t3contribute:start` will link to start page of Contribution Guide |
| 75 | +# ................................................................................. |
| 76 | + |
| 77 | +h2document = https://docs.typo3.org/m/typo3/docs-how-to-document/master/en-us/ |
| 78 | +# t3coreapi = https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ |
| 79 | +# t3editors = https://docs.typo3.org/m/typo3/tutorial-editors/master/en-us/ |
| 80 | +# t3extbasebook = https://docs.typo3.org/m/typo3/book-extbasefluid/master/en-us/Index.html |
| 81 | +# t3install = https://docs.typo3.org/m/typo3/guide-installation/master/en-us/ |
| 82 | +# t3l10n = https://docs.typo3.org/m/typo3/guide-frontendlocalization/master/en-us/ |
| 83 | +# t3start = https://docs.typo3.org/m/typo3/tutorial-getting-started/master/en-us/ |
| 84 | +# t3sitepackage = https://docs.typo3.org/m/typo3/tutorial-sitepackage/master/en-us/ |
| 85 | +# t3tca = https://docs.typo3.org/m/typo3/reference-tca/master/en-us/ |
| 86 | +# t3templating = https://docs.typo3.org/m/typo3/tutorial-templating-with-fluid/master/en-us/ |
| 87 | +# t3ts45 = https://docs.typo3.org/m/typo3/tutorial-typoscript-in-45-minutes/master/en-us/ |
| 88 | +# t3tsconfig = https://docs.typo3.org/m/typo3/reference-tsconfig/master/en-us/ |
| 89 | +t3tsref = https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ |
| 90 | + |
| 91 | +[extensions] |
| 92 | + |
| 93 | +# This is required for embedding YouTube videos |
| 94 | + |
| 95 | +any_name_youtube = sphinxcontrib.youtube |
0 commit comments