Georg Brandl
f1e39097c6
Add a minimal test for external toctree links and fix a small bug found by it.
2009-01-26 22:04:29 +01:00
Benjamin Peterson
07c5a8b449
use the py3k version of callable()
2009-01-10 13:04:23 -06:00
Georg Brandl
a759690221
merge in Murkt's branch
2009-01-04 22:33:00 +01:00
Georg Brandl
c83d630fd8
Close #52 : There is now a `hlist` directive, creating a compact
...
list by placing distributing items into multiple columns.
2009-01-04 22:00:40 +01:00
Georg Brandl
04689accd0
Small API change.
2009-01-04 20:43:15 +01:00
Georg Brandl
27bc4e3189
Add new tests for the attribute feature and fix existing tests.
2009-01-04 20:27:37 +01:00
Georg Brandl
b4a866e2fb
merge with main
2009-01-03 12:35:15 +01:00
Georg Brandl
4d083fabbe
Add tests for new literalinclude options, and fix an off-by-one bug.
2009-01-03 12:29:42 +01:00
Georg Brandl
f16f94f2cd
Merge in copyright style changes from 0.5.
2009-01-03 12:15:19 +01:00
Georg Brandl
0b28b3e6f6
Switch copyright and license tags to single style. Add contributor
...
names in AUTHORS instead, and add the license of etree13 to
LICENSE.
2009-01-03 11:57:07 +01:00
Benjamin Peterson
bb6b7d9b31
add a test for detecting python console sessions
2009-01-01 10:33:41 -06:00
Georg Brandl
b3d55c3139
Close #4 : Added a `:download:` role that marks a non-document file
...
for inclusion into the HTML output and links to it.
2008-12-28 21:30:25 +01:00
Georg Brandl
a2363c0751
Fix test_autodoc after return annotation change.
2008-12-28 19:44:10 +01:00
Georg Brandl
26d7aafaae
Explicitly refer to the license in :license: tags.
2008-12-27 12:19:17 +01:00
Georg Brandl
0a1b821c7f
Handle class aliases (like `class Foo: factory = dict`) better in autodoc.
2008-12-25 21:50:45 +01:00
Georg Brandl
dafb55a467
Fix documentation of inner classes in autodoc. Messy!
2008-12-23 20:05:56 +01:00
Georg Brandl
409cc1fe39
Remove sphinx.builder usage.
2008-12-23 20:04:45 +01:00
Georg Brandl
037954d850
The `autodoc_skip_member` event now also gets to decide
...
whether to skip members whose name starts with underscores.
Previously, these members were always automatically skipped.
Therefore, if you handle this event, add something like this
to your event handler to restore the old behavior::
if name.startswith('_'):
return True
2008-12-15 12:49:40 +01:00
Georg Brandl
1d00f4a487
Merge bugfix from 0.5.
2008-12-08 08:57:46 +01:00
Georg Brandl
058001c831
Fix #68 : invalid latex output for images with height set.
2008-12-08 08:52:55 +01:00
Georg Brandl
9442b92213
Automated merge with file:///home/gbr/devel/sphinx0.5
2008-12-08 08:44:34 +01:00
Georg Brandl
83dba8fc76
Fix #60 : "smart" image inclusion in subdirs.
2008-12-08 08:44:18 +01:00
Georg Brandl
733b2b5bc6
Automated merge with file:///home/gbr/devel/sphinx0.5
2008-12-07 22:36:44 +01:00
Georg Brandl
132086798a
Fix autoclass_content = "both" bug.
2008-12-07 22:36:23 +01:00
Georg Brandl
4634b296af
Merge bugfix from 0.5.
2008-11-30 21:09:28 +01:00
Georg Brandl
35a58e50ca
Also fix invalid index entries for Latex output.
2008-11-30 21:06:07 +01:00
Georg Brandl
c450bab147
Allow using different Pygments formatters.
2008-11-30 20:29:34 +01:00
Georg Brandl
50339493c6
Add Sphinx.add_lexer().
2008-11-30 19:58:29 +01:00
Georg Brandl
2757866655
Allow giving values for dict type config values in the overrides.
2008-11-30 16:33:56 +01:00
Georg Brandl
9175e665b1
Move builders and writers into new packages.
2008-11-29 19:56:58 +01:00
Georg Brandl
6726192fb6
Don't fail test suite because of missing latex packages.
2008-11-23 21:58:30 +01:00
Georg Brandl
a2773de9e0
Add file in _static directory so that it isn't ignored by Hg.
2008-11-23 21:35:52 +01:00
Georg Brandl
2bb2e78488
2.4 compatibility fix.
2008-11-23 19:02:10 +01:00
Georg Brandl
91c31181b0
Add tests for HTML escaping.
2008-11-23 15:22:09 +01:00
Georg Brandl
410ac72590
Fix test after latex writer change.
2008-11-23 15:21:57 +01:00
Georg Brandl
4c3f2f0d7e
Add classes to toctree items that indicate depth.
2008-11-09 20:43:36 +01:00
Georg Brandl
0060e50efa
Add todo extension.
2008-11-09 19:46:32 +01:00
Georg Brandl
6935790e0f
Fix test typo.
2008-11-08 12:26:49 +01:00
Georg Brandl
dbfe74d5e6
Fix the handling of images in different directories.
2008-11-06 10:36:56 +01:00
Georg Brandl
7aa1c5eed2
#21 : allow short form for seealso arguments.
2008-11-04 21:35:05 +01:00
Georg Brandl
a6f09758e3
Add -A option to pass values into HTML templates.
2008-11-04 08:34:35 +01:00
Georg Brandl
324145853e
#29 : fix some option list issues, in HTML, LaTeX and text writers.
2008-11-03 21:40:21 +01:00
Georg Brandl
1ed2d916cd
Improve node coverage for latex/text writers.
2008-11-01 14:40:02 +00:00
Georg Brandl
2ebb04f10f
Fix for r67038.
2008-10-28 16:53:05 +00:00
Georg Brandl
fb58083eb5
Remove outdated check.
2008-10-27 17:36:19 +00:00
Georg Brandl
29a3a86cef
Add global citations. #1 .
2008-10-25 15:54:34 +00:00
Georg Brandl
9f4be9b916
Add minimal test for descitems.
2008-10-18 17:57:35 +00:00
Georg Brandl
3a1af61b9f
Add test for meta directive and add visitor functions for latex and text writers.
2008-10-18 17:29:56 +00:00
Georg Brandl
8ccd4ace64
Role names are case-insensitive. #24 .
2008-10-16 20:41:05 +00:00
Georg Brandl
688ef9dc1f
Properly escape authors and titles put into quickstart latex_documents setting.
2008-10-16 19:43:15 +00:00