mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
[Docs] Replace recommonmark with MyST parser
We used recommonmark so that we can use markdown in sphinx but it is buggy and now so switch to better supported MyST-parser. * Fixed incorrect heading warnings in markdown. * Added sphinx toctree to markdown using directive as required by MyST. * Upgraded Sphinx to 4.3 Ref: https://myst-parser.readthedocs.io
This commit is contained in:
parent
342cca4367
commit
24aa48187e
15 changed files with 80 additions and 55 deletions
|
@ -30,11 +30,11 @@ All modules will require the [common](#common) section dependencies.
|
||||||
- [Pillow] - Optional: Support for resizing tracker icons.
|
- [Pillow] - Optional: Support for resizing tracker icons.
|
||||||
- [dbus-python] - Optional: Show item location in filemanager.
|
- [dbus-python] - Optional: Show item location in filemanager.
|
||||||
|
|
||||||
#### Linux and BSD
|
### Linux and BSD
|
||||||
|
|
||||||
- [distro] - Optional: OS platform information.
|
- [distro] - Optional: OS platform information.
|
||||||
|
|
||||||
#### Windows OS
|
### Windows OS
|
||||||
|
|
||||||
- [pywin32]
|
- [pywin32]
|
||||||
- [certifi]
|
- [certifi]
|
||||||
|
@ -52,7 +52,7 @@ All modules will require the [common](#common) section dependencies.
|
||||||
- [librsvg] _>= 2_
|
- [librsvg] _>= 2_
|
||||||
- [libappindicator3] w/GIR - Optional: Ubuntu system tray icon.
|
- [libappindicator3] w/GIR - Optional: Ubuntu system tray icon.
|
||||||
|
|
||||||
#### MacOS
|
### MacOS
|
||||||
|
|
||||||
- [GtkOSXApplication]
|
- [GtkOSXApplication]
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
sphinx==2.0.*
|
sphinx==4.*
|
||||||
recommonmark==0.4.*
|
myst-parser
|
||||||
sphinx_rtd_theme
|
sphinx_rtd_theme
|
||||||
sphinxcontrib-spelling
|
sphinxcontrib-spelling
|
||||||
|
|
|
@ -14,8 +14,6 @@ import os
|
||||||
import sys
|
import sys
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
|
||||||
from recommonmark.states import DummyStateMachine
|
|
||||||
from recommonmark.transform import AutoStructify
|
|
||||||
from six.moves import builtins
|
from six.moves import builtins
|
||||||
from sphinx.ext import apidoc
|
from sphinx.ext import apidoc
|
||||||
from sphinx.ext.autodoc import ClassDocumenter, bool_option
|
from sphinx.ext.autodoc import ClassDocumenter, bool_option
|
||||||
|
@ -50,6 +48,7 @@ extensions = [
|
||||||
'sphinx.ext.napoleon',
|
'sphinx.ext.napoleon',
|
||||||
'sphinx.ext.coverage',
|
'sphinx.ext.coverage',
|
||||||
'sphinxcontrib.spelling',
|
'sphinxcontrib.spelling',
|
||||||
|
'myst_parser',
|
||||||
]
|
]
|
||||||
|
|
||||||
napoleon_include_init_with_doc = True
|
napoleon_include_init_with_doc = True
|
||||||
|
@ -59,7 +58,6 @@ napoleon_use_rtype = False
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
|
|
||||||
# The suffix of source filenames.
|
# The suffix of source filenames.
|
||||||
source_parsers = {'.md': 'recommonmark.parser.CommonMarkParser'}
|
|
||||||
source_suffix = ['.rst', '.md']
|
source_suffix = ['.rst', '.md']
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
|
@ -295,19 +293,6 @@ def maybe_skip_member(app, what, name, obj, skip, options):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
# Monkey patch to fix recommonmark 0.4 doc reference issues.
|
|
||||||
orig_run_role = DummyStateMachine.run_role
|
|
||||||
|
|
||||||
|
|
||||||
def run_role(self, name, options=None, content=None):
|
|
||||||
if name == 'doc':
|
|
||||||
name = 'any'
|
|
||||||
return orig_run_role(self, name, options, content)
|
|
||||||
|
|
||||||
|
|
||||||
DummyStateMachine.run_role = run_role
|
|
||||||
|
|
||||||
|
|
||||||
# Run the sphinx-apidoc to create package/modules rst files for autodoc.
|
# Run the sphinx-apidoc to create package/modules rst files for autodoc.
|
||||||
def run_apidoc(__):
|
def run_apidoc(__):
|
||||||
cur_dir = os.path.abspath(os.path.dirname(__file__))
|
cur_dir = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
@ -329,5 +314,3 @@ def run_apidoc(__):
|
||||||
def setup(app):
|
def setup(app):
|
||||||
app.connect('builder-inited', run_apidoc)
|
app.connect('builder-inited', run_apidoc)
|
||||||
app.connect('autodoc-skip-member', maybe_skip_member)
|
app.connect('autodoc-skip-member', maybe_skip_member)
|
||||||
app.add_config_value('recommonmark_config', {}, True)
|
|
||||||
app.add_transform(AutoStructify)
|
|
||||||
|
|
|
@ -3,7 +3,11 @@
|
||||||
Deluge is an open-source project, and relies on its community of users to keep
|
Deluge is an open-source project, and relies on its community of users to keep
|
||||||
getting better.
|
getting better.
|
||||||
|
|
||||||
- [Code contributions](code.md)
|
```{toctree}
|
||||||
- [Running tests](testing.md)
|
:titlesonly:
|
||||||
- [Documentation contributions](documentation.md)
|
|
||||||
- [Translation contributions](translations.md)
|
code
|
||||||
|
testing
|
||||||
|
documentation
|
||||||
|
translations
|
||||||
|
```
|
||||||
|
|
|
@ -38,7 +38,7 @@ Running the tests for a specific plugin (requires [pytest](https://pypi.python.o
|
||||||
|
|
||||||
All the tests for Deluge can be run using [Tox](https://pypi.python.org/pypi/tox)
|
All the tests for Deluge can be run using [Tox](https://pypi.python.org/pypi/tox)
|
||||||
|
|
||||||
#### See available targets:
|
### See available targets:
|
||||||
|
|
||||||
tox -l
|
tox -l
|
||||||
py27
|
py27
|
||||||
|
@ -46,11 +46,11 @@ All the tests for Deluge can be run using [Tox](https://pypi.python.org/pypi/tox
|
||||||
lint
|
lint
|
||||||
docs
|
docs
|
||||||
|
|
||||||
#### Run specific test:
|
### Run specific test:
|
||||||
|
|
||||||
tox -e py3
|
tox -e py3
|
||||||
|
|
||||||
#### Verify code with pre-commit:
|
### Verify code with pre-commit:
|
||||||
|
|
||||||
tox -e lint
|
tox -e lint
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,11 @@ A collection of guides for specific issues or to cover more detail than the tuto
|
||||||
|
|
||||||
## Web JSON-RPC
|
## Web JSON-RPC
|
||||||
|
|
||||||
- [Connect to JSON-RPC using curl](curl-jsonrpc.md)
|
```{toctree}
|
||||||
|
:titlesonly:
|
||||||
|
|
||||||
|
Connect to JSON-RPC using curl <curl-jsonrpc>
|
||||||
|
```
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
|
|
||||||
|
@ -12,4 +16,8 @@ A collection of guides for specific issues or to cover more detail than the tuto
|
||||||
- [Create a plugin](create-plugin.md)
|
- [Create a plugin](create-plugin.md)
|
||||||
-->
|
-->
|
||||||
|
|
||||||
- [Update 1.3 plugin for 2.0](update-1.3-plugin.md)
|
```{toctree}
|
||||||
|
:titlesonly:
|
||||||
|
|
||||||
|
Update 1.3 plugin for 2.0 <update-1.3-plugin>
|
||||||
|
```
|
||||||
|
|
|
@ -2,7 +2,12 @@
|
||||||
|
|
||||||
This is a guide to help with developing Deluge.
|
This is a guide to help with developing Deluge.
|
||||||
|
|
||||||
- [Tutorials](tutorials/index.md)
|
```{toctree}
|
||||||
- [How-to guides](how-to/index.md)
|
:titlesonly:
|
||||||
- [Packaging](packaging/index.md)
|
|
||||||
- [Changelog](../changelog.md)
|
Tutorials <tutorials/index>
|
||||||
|
how-to/index
|
||||||
|
Packaging <packaging/index>
|
||||||
|
../changelog
|
||||||
|
../depends
|
||||||
|
```
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Packaging documentation
|
# Packaging documentation
|
||||||
|
|
||||||
- [Release checklist](release.md)
|
```{toctree}
|
||||||
- [Launchpad recipe](launchpad-recipe.md)
|
:titlesonly:
|
||||||
- [Windows Packaging](windows.md)
|
|
||||||
|
release
|
||||||
|
launchpad-recipe
|
||||||
|
windows
|
||||||
|
```
|
||||||
|
|
|
@ -46,4 +46,4 @@
|
||||||
[wikipedia]: http://en.wikipedia.org/wiki/Deluge_%28software%29
|
[wikipedia]: http://en.wikipedia.org/wiki/Deluge_%28software%29
|
||||||
[launchpad]: https://translations.launchpad.net/deluge
|
[launchpad]: https://translations.launchpad.net/deluge
|
||||||
[translation]: ../../contributing/translations.md
|
[translation]: ../../contributing/translations.md
|
||||||
[release notes]: ../../release/index.md
|
[release notes]: ../../releases/index.md
|
||||||
|
|
|
@ -2,4 +2,9 @@
|
||||||
|
|
||||||
A list of articles to help developers get started with Deluge.
|
A list of articles to help developers get started with Deluge.
|
||||||
|
|
||||||
- [Development setup](01-setup.md)
|
```{toctree}
|
||||||
|
:numbered: 1
|
||||||
|
:titlesonly:
|
||||||
|
|
||||||
|
Development setup <01-setup>
|
||||||
|
```
|
||||||
|
|
|
@ -4,7 +4,11 @@ A collection of guides covering common issues that might be encountered using De
|
||||||
|
|
||||||
## GTK UI
|
## GTK UI
|
||||||
|
|
||||||
- [Set default torrent application](set-mime-type.md)
|
```{toctree}
|
||||||
|
:titlesonly:
|
||||||
|
|
||||||
|
Set default torrent application <set-mime-type>
|
||||||
|
```
|
||||||
|
|
||||||
## Deluge as a service
|
## Deluge as a service
|
||||||
|
|
||||||
|
@ -14,6 +18,10 @@ shutdown and automatically restart them if they crash.
|
||||||
|
|
||||||
The Deluge daemon deluged and Web UI deluge-web can both be run as services.
|
The Deluge daemon deluged and Web UI deluge-web can both be run as services.
|
||||||
|
|
||||||
- [Create systemd services for Linux](systemd-service.md)
|
```{toctree}
|
||||||
- [Create launchd services for macOS](launchd-service.md)
|
:titlesonly:
|
||||||
- [Create NSSM services for Windows](nssm-service.md)
|
|
||||||
|
Create systemd services for Linux <systemd-service>
|
||||||
|
Create launchd services for macOS <launchd-service>
|
||||||
|
Create NSSM services for Windows <nssm-service>
|
||||||
|
```
|
||||||
|
|
|
@ -12,7 +12,7 @@ and will need modified if using other installation methods e.g. `Deluge.app`.
|
||||||
Create the file `/Library/LaunchDaemons/org.deluge-torrent.deluged.plist`
|
Create the file `/Library/LaunchDaemons/org.deluge-torrent.deluged.plist`
|
||||||
containing the following:
|
containing the following:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/osx/launchd/org.deluge-torrent.deluged.plist
|
.. literalinclude:: ../../../packaging/osx/launchd/org.deluge-torrent.deluged.plist
|
||||||
:language: xml
|
:language: xml
|
||||||
```
|
```
|
||||||
|
@ -29,7 +29,7 @@ sudo launchctl start org.deluge-torrent.deluged
|
||||||
Create the file `/Library/LaunchDaemons/org.deluge-torrent.deluge-web.plist`
|
Create the file `/Library/LaunchDaemons/org.deluge-torrent.deluge-web.plist`
|
||||||
containing the following:
|
containing the following:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/osx/launchd/org.deluge-torrent.deluge-web.plist
|
.. literalinclude:: ../../../packaging/osx/launchd/org.deluge-torrent.deluge-web.plist
|
||||||
:language: xml
|
:language: xml
|
||||||
```
|
```
|
||||||
|
|
|
@ -30,7 +30,7 @@ sudo adduser <username> deluge
|
||||||
|
|
||||||
Create the file `/etc/systemd/system/deluged.service` containing the following:
|
Create the file `/etc/systemd/system/deluged.service` containing the following:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/systemd/deluged.service
|
.. literalinclude:: ../../../packaging/systemd/deluged.service
|
||||||
:language: ini
|
:language: ini
|
||||||
```
|
```
|
||||||
|
@ -47,7 +47,7 @@ sudo mkdir /etc/systemd/system/deluged.service.d/
|
||||||
Then create a user file `/etc/systemd/system/deluged.service.d/user.conf` with
|
Then create a user file `/etc/systemd/system/deluged.service.d/user.conf` with
|
||||||
the following contents:
|
the following contents:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/systemd/user.conf
|
.. literalinclude:: ../../../packaging/systemd/user.conf
|
||||||
:language: ini
|
:language: ini
|
||||||
```
|
```
|
||||||
|
@ -82,7 +82,7 @@ after changes.
|
||||||
|
|
||||||
Create the file `/etc/systemd/system/deluge-web.service` containing the following:
|
Create the file `/etc/systemd/system/deluge-web.service` containing the following:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/systemd/deluge-web.service
|
.. literalinclude:: ../../../packaging/systemd/deluge-web.service
|
||||||
:language: ini
|
:language: ini
|
||||||
```
|
```
|
||||||
|
@ -99,7 +99,7 @@ sudo mkdir /etc/systemd/system/deluge-web.service.d/
|
||||||
Then create a user file `/etc/systemd/system/deluge-web.service.d/user.conf` with
|
Then create a user file `/etc/systemd/system/deluge-web.service.d/user.conf` with
|
||||||
the following contents:
|
the following contents:
|
||||||
|
|
||||||
```eval_rst
|
```{eval-rst}
|
||||||
.. literalinclude:: ../../../packaging/systemd/user.conf
|
.. literalinclude:: ../../../packaging/systemd/user.conf
|
||||||
:language: ini
|
:language: ini
|
||||||
```
|
```
|
||||||
|
|
|
@ -3,7 +3,12 @@
|
||||||
This is a starting point if you are new to Deluge where we will walk
|
This is a starting point if you are new to Deluge where we will walk
|
||||||
you through getting up and running with our BitTorrent client.
|
you through getting up and running with our BitTorrent client.
|
||||||
|
|
||||||
- [1. Installing Deluge](01-install.md)
|
```{toctree}
|
||||||
|
:numbered: 1
|
||||||
|
:titlesonly:
|
||||||
|
|
||||||
|
01-install
|
||||||
|
```
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
2. Using Deluge
|
2. Using Deluge
|
||||||
|
|
|
@ -3,8 +3,11 @@
|
||||||
A summary of the important changes in major releases of Deluge. For more details see
|
A summary of the important changes in major releases of Deluge. For more details see
|
||||||
the [changelog] or the [git commit log].
|
the [changelog] or the [git commit log].
|
||||||
|
|
||||||
- [Changelog]
|
```{toctree}
|
||||||
- [Deluge 2.0 release notes](2.0.md)
|
:titlesonly:
|
||||||
|
|
||||||
|
../changelog
|
||||||
|
2.0
|
||||||
|
```
|
||||||
|
|
||||||
[git commit log]: http://git.deluge-torrent.org/deluge/log/?h=master
|
[git commit log]: http://git.deluge-torrent.org/deluge/log/?h=master
|
||||||
[changelog]: ../changelog.md
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue