[Docs] Add spellchecking with pyenchant

- Use sphinxcontrib.spelling with custom wordlist.
- Skip the checking of the modules documents as they raise
false-positives.
- Add a setup.py spellcheck_docs command.
- Fix spelling and other issues.
- Add a doc favicon.
This commit is contained in:
Calum Lind 2019-06-15 19:44:33 +01:00
commit 8b62e50eb8
28 changed files with 191 additions and 134 deletions

View file

@ -1,24 +1,24 @@
# How to set Deluge as default torrent application
## Check registered mime types
## Check registered MIME types
gio mime application/x-bittorrent
gio mime x-scheme-handler/magnet
gio mime application/x-bittorrent
gio mime x-scheme-handler/magnet
## Set Deluge as default mime
## Set Deluge as default for MIME types
gio mime x-scheme-handler/magnet deluge.desktop
gio mime application/x-bittorrent deluge.desktop
gio mime x-scheme-handler/magnet deluge.desktop
gio mime application/x-bittorrent deluge.desktop
## Troubleshooting
update-mime-database ~/.local/share/mime
update-desktop-database ~/.local/share/applications
update-mime-database ~/.local/share/mime
update-desktop-database ~/.local/share/applications
### XDG Check
xdg-mime query default x-scheme-handler/magnet
xdg-mime query default x-scheme-handler/magnet
## References
https://help.gnome.org/admin/system-admin-guide/stable/mime-types-custom-user.html.en
<https://help.gnome.org/admin/system-admin-guide/stable/mime-types-custom-user.html.en>