Commit Graph

958 Commits

Author SHA1 Message Date
Dougal Matthews
09253e9cac Bump version to 0.15.2 0.15.2 2016-02-08 09:08:31 +00:00
Dougal Matthews
2cb4ffadbd Merge pull request #820 from d0ugal/fix-warning
Only display the warning for a specific set of themes
2016-02-08 09:07:11 +00:00
Dougal Matthews
e904b103ed Add note to release notes 2016-02-05 12:23:47 +00:00
Dougal Matthews
c2ff004a85 Only display the warning for a specific set of themes
Closes #819
2016-02-05 12:20:28 +00:00
Dougal Matthews
e6812a45d0 Merge pull request #816 from pquentin/patch-1
readthedocs theme: Keep same font-size everywhere
2016-02-02 14:22:01 +00:00
Quentin Pradet
61f7557f53 Merge branch 'master' into patch-1 2016-02-02 09:59:28 +04:00
Dougal Matthews
060312a575 Merge pull request #817 from pra85/patch-1
Minor typo
2016-01-31 20:28:32 +00:00
Prayag Verma
cc1f81e9de Minor typo
Remove extra `the`
2016-02-01 01:52:19 +05:30
Quentin Pradet
537d1fca3d readthedocs theme: Keep same font-size everywhere
The RTD CSS uses both the `html` and `p` selectors to define font size.
MkDocs used to use `body` to reduce size, which only applied to anything
else than `p`. This patch restores compatibility with RTD by using html,
not body. Fixes #801.
2016-01-31 14:52:09 +04:00
Dougal Matthews
ea5f07bf66 Bump version to 0.15.1 0.15.1 2016-01-30 08:28:13 +00:00
Dougal Matthews
8a37ba8296 Update release notes 2016-01-30 08:27:52 +00:00
Dougal Matthews
09e66f5c0f Merge pull request #812 from d0ugal/master
Lower required Click version
2016-01-30 08:25:40 +00:00
Dougal Matthews
c1878a24a6 Add the classifier for Python 3.5 2016-01-29 17:21:25 +00:00
Dougal Matthews
71de07cdaf Lower the required Click version to 3.3 2016-01-29 17:21:12 +00:00
Dougal Matthews
a59ade70ec Bump version to 0.15.0 0.15.0 2016-01-21 09:48:48 +00:00
Dougal Matthews
70adae9ad8 Deploy to PyPI with Travis 2016-01-21 09:46:39 +00:00
Dougal Matthews
e3da231798 Add mustache files to the MANIFEST.in 2016-01-17 08:47:31 +00:00
Dougal Matthews
89f2066d8d Merge pull request #799 from waylan/rn
Update release notes
2016-01-15 09:36:40 +00:00
Waylan Limberg
ffbad6685b Update release notes 2016-01-14 20:22:04 -05:00
Dougal Matthews
732e50849e Merge pull request #792 from RandallKent/master
Bump Font Awesome to 4.5.0 (minified) as requested in #789
2016-01-12 20:37:03 +00:00
Dougal Matthews
fa9f8c45dc Merge pull request #786 from jdury/master
Added html meta X-UA-Compatible to properly display pages in IE
2016-01-12 20:35:42 +00:00
Randall Kent
c507b56383 Bump Font Awesome to 4.5.0 (minified) as requested in #789 2016-01-11 18:48:52 -05:00
Dougal Matthews
6f6a0abb2c Merge pull request #787 from daurnimator/patch-1
docs/index.md: doc_dir default is "docs" not "doc"
2016-01-08 09:08:30 +00:00
daurnimator
e91104f8a6 docs/index.md: doc_dir default is "docs" not "doc" 2016-01-08 13:31:11 +11:00
JDury
867a5b4319 Added html meta X-UA-Compatible to properly display pages in IE 2016-01-06 16:27:02 +01:00
Dougal Matthews
0630c49908 Merge pull request #768 from waylan/767
Document the `--help` flag.
2015-12-01 12:20:22 +00:00
Waylan Limberg
0aa6e56536 Document the --help flag.
As of 40dc17e17e, any mention of the `--help` flag had been removed from
the documentation. A breif summary has been added here. However, the output
of `--help` has not been included as that can change in the future and
updating the docs every time a option is updated become unnesecarily
duplicative (as the command line is self-documenting). This fixes #767.
2015-11-30 17:31:40 -05:00
Dougal Matthews
3dfd95deae Merge pull request #749 from zarvox/a-tag-cant-self-close
Fix an <a> tag with a /> in the readthedocs theme.
2015-11-20 14:42:45 +00:00
Dougal Matthews
98d79e9687 Merge pull request #757 from pkoro/remote_name
Fix in help message regarding remote name
2015-11-20 14:42:25 +00:00
Dougal Matthews
e6f43381f2 Merge pull request #755 from waylan/751
Add support for Python 3.5
2015-11-20 14:37:55 +00:00
Paschalis Korosoglou
a14ff6355f Fix in help message regarding remote name 2015-11-19 09:49:20 +02:00
Waylan Limberg
74953f2995 Force tox to use Py26 for Flake8 env.
WHen Flake8 is run in Python3, it will fail on "undefined" objects which
are onlu used in if statements that run on Python2. As a workaround,
force tox to use Python2 when running Flake8. This can just be removed
in the future if/when Python2 support is dropped.
2015-11-17 20:30:09 -05:00
Waylan Limberg
2eb7b23941 Force Travis to use Python3.5. 2015-11-17 20:08:08 -05:00
Waylan Limberg
3c0849b0d7 Switch Travis to use new container-based infrastructure. 2015-11-17 19:49:45 -05:00
Waylan Limberg
1f561c6979 Include Py35 tests in CI tests. 2015-11-17 19:26:36 -05:00
Waylan Limberg
b87d2bf552 Remaining tests pass on Python 3.5
The `search.ContentParser` (a HTMLParser subclass)  should always be closed
to force parsing of all buffered data. The three low-level tests now close
the parser manually. However, a call to close was also added to the higher
level SearchIndex class.
2015-11-17 19:10:34 -05:00
Waylan Limberg
d759c9d437 Add support for Python 3.5
Also include a fix for one failing test with HTMLParser. Three additional
tests are still failing for a differant problem related to search.
2015-11-17 18:28:41 -05:00
Drew Fisher
e3d51e24b8 Fix an <a> tag with a /> in the readthedocs theme. 2015-11-11 13:58:37 -08:00
Dougal Matthews
3c6a66b388 Merge pull request #721 from gregmuellegger/fix-rtd-page-name
Provide the source file name to the JS in readthedocs theme
2015-09-22 20:10:43 +01:00
Gregor Müllegger
4987542100 Provide the source file name to the JS in readthedocs theme
readthedocs.org needs the file name in order to identify the correct source
file to link to the same file in other versions of the same documentation or
to the source on GitHub.

Related rtfd/readthedocs.org#1480
2015-09-07 19:17:39 +02:00
Dougal Matthews
74031a084d Merge pull request #707 from d0ugal/rtd-path-fix
Add the current page abs_url for RTD integration
2015-08-15 11:10:47 +01:00
Dougal Matthews
d7930bd3a9 Merge pull request #698 from waylan/lint
Corrected lint errors in Markdown docs.
2015-08-15 11:07:49 +01:00
Dougal Matthews
2cd95d4ec1 Merge pull request #708 from d0ugal/disable_click_warning
Disable the warning for unicode_literals in Click and Python 2
2015-08-14 09:35:47 +01:00
Dougal Matthews
d06a5ad255 Merge pull request #706 from d0ugal/rename_cli
Rename cli.py to __main__.py
2015-08-13 15:29:04 +01:00
Waylan Limberg
c84cb0ce03 More docs cleanup for Markdown linter 2015-08-13 10:18:35 -04:00
Waylan Limberg
bd33c4b76b Corrected lint errors in Markdown docs.
Also added README.md and CONTRIBUTING.md to the linter.

Note, that I am still getting one failer (in two locations). However
I consider that failer a bug in the linter and have reported it
upstream. We could disable that Rule (MD031), but as we are not
requiring the lint rules to pass presently, I just left it alone.

Also, while the code linter is set to allow lines 119 chars long,
I am using the Markdown linter's default of 80. Prose is easier to
read with shorter line lenghts, so I think it makes more sense to
use the default. Also, changing the default would have required
adding a config file. Adding a Ruby file for only one minor setting
seems silly, so I left it alone.
2015-08-13 10:18:34 -04:00
Dougal Matthews
cabe5b4361 Add the current page abs_url for RTD integration 2015-08-13 09:48:21 +01:00
Dougal Matthews
d282ad7a9c Disable the warning for unicode_literals in Click and Python 2
Closes #703
2015-08-13 09:36:19 +01:00
Dougal Matthews
bcb88abcda Rename cli.py to __main__.py
This uses the standard entrypoint name and allows `python -m mkdocs` to
work.
2015-08-13 09:26:21 +01:00
Dougal Matthews
32751b828d Merge pull request #704 from nicoddemus/patch-1
minor typo: filies -> files
2015-08-07 06:48:30 +01:00