Commit Graph

3082 Commits

Author SHA1 Message Date
Michał Kandulski
685a9085a9 Updated polish i18n. 2010-12-22 08:44:16 +01:00
Georg Brandl
2f4f5bb30d Use better-readable code markup in text output. 2010-12-18 09:42:27 +01:00
Georg Brandl
29d6167125 Remove html_permalink_text again and give meaning to html_add_permalinks. 2010-12-11 09:25:59 +01:00
Georg Brandl
266df2317f Revert accident. 2010-12-11 09:25:35 +01:00
Georg Brandl
ec85695e7c Allow giving root dir to quickstart as an argument. 2010-12-03 21:04:57 +01:00
mcantor
b3ee43700c added a :private-members: option to autodoc, which will instruct directives to include members whose names start with an underscore 2010-12-01 21:45:47 -05:00
Daniel Neuhäuser
e38f19a829 "Fixed" the CombinedHTMLDiff test
The output should probably be validated but I just wanted to make
sure it runs without an Exception first
2010-12-01 23:13:31 +01:00
Daniel Neuhäuser
dd955b1f94 #559 Add html_permalink_text confval 2010-12-01 22:54:54 +01:00
Robert Lehmann
8dc49de956 merge with trunk 2010-11-30 14:25:44 +01:00
Georg Brandl
537db42ece Add cancel button to comment reply form. 2010-11-24 22:08:26 +01:00
Robert Lehmann
4a2ce98cd8 Recommend best practice instead of sphinx-to-github.
Reported by the original author, Michael Jones, on sphinx-dev.
http://groups.google.com/group/sphinx-dev/msg/1faa6adbe1bf0819
2010-12-09 10:44:31 +01:00
Georg Brandl
6c843451b2 Fix event handling and class names for comment sort links. 2010-11-24 21:31:26 +01:00
Georg Brandl
80c3fc6000 Fix typo. 2010-11-24 17:12:05 +01:00
Georg Brandl
b72e41832e Small tweaks. 2010-11-24 09:17:11 +01:00
Georg Brandl
9481a557c1 Add a text-based diff view e.g. for display in emails. 2010-11-21 21:18:57 +01:00
Georg Brandl
9a3a3df917 Highligh comments to moderate. 2010-11-21 21:07:20 +01:00
Georg Brandl
27f9378670 Fix comment voting again. 2010-11-21 20:56:13 +01:00
Georg Brandl
8e07433256 Remove more mentions of reject_comment. 2010-11-21 20:49:51 +01:00
Georg Brandl
f9705fc5b7 Remove comment rejection; delete is fine for that now. 2010-11-21 20:47:32 +01:00
Georg Brandl
6d6f799710 Remove comment form once comment is submitted, and allow directly opening a comment popup with an anchor. 2010-11-21 20:43:20 +01:00
Georg Brandl
9295e3ce1a Fix deletion of comments with votes. 2010-11-21 20:02:23 +01:00
Georg Brandl
fc9549767c Tolerate the lack of a sidebar. 2010-11-21 14:02:03 +01:00
Georg Brandl
53d237a4eb Allow configuration whether to allow anonymous comments. 2010-11-21 13:41:19 +01:00
Georg Brandl
bdf27419e4 Support complete comment deletion. 2010-11-21 13:17:11 +01:00
Georg Brandl
69713fb26d Allow rst markup in the comment text. 2010-11-21 12:46:31 +01:00
Georg Brandl
e05137417a Tweak the commenting interface a bit. 2010-11-21 11:13:11 +01:00
Georg Brandl
7e3f9d866a Fix a few smaller issues. Add JS and CSS for all pages. 2010-11-21 08:25:43 +01:00
Georg Brandl
dae3933e87 Add a "nocomment" class to be able to hide bubbles. 2010-11-20 18:00:23 +01:00
Georg Brandl
fbaae8b740 For now, do not allow comments on literals. 2010-11-20 18:00:11 +01:00
Georg Brandl
2ab934b232 Make websupport builder inherit from serializing builder, remove separate WebSupportApp. 2010-11-20 17:41:20 +01:00
Georg Brandl
47bc250f19 Avoid "import *" and remove unused import/variable. 2010-11-20 11:25:37 +01:00
Georg Brandl
de0cf8f665 Fix calling all serializers with pickle.HIGHEST_PROTOCOL argument. 2010-11-20 09:45:05 +01:00
amenohi
0c7d972c81 On HTML Help, ignore 'html_output_encoding' and use langage encoding. 2010-11-18 17:18:15 +09:00
amenohi
9be3dc6cda Fix garbled HTML Help keywords. 2010-11-18 16:44:41 +09:00
Georg Brandl
0a9f5a058a major.minor version is enough for the grammar pickle. 2010-12-09 19:18:19 +01:00
Georg Brandl
35258f2c46 merge with 1.0 2010-11-17 22:59:08 +01:00
Georg Brandl
1cea10643d Do not require build dir to exist. 2010-11-17 22:58:11 +01:00
Georg Brandl
e0f2c2e7e9 Add changelog entry. 2010-11-17 21:17:51 +01:00
Michael Jones
e36ca00744 Account for arguments with only a type and no parameter name
Previously, the code was parsing the type into the argname variable and then
when it found something (not "," or ")") following the type it swapped the name
into the type and parsed next part as the name.

However, when no name is provided, as it allowed in c++, if you're not planning
on using the parameter, or it is in a function declaration, then the actual
type was being left in the name variable and the type variable was empty.

As a result function signatures for references were being generated without
knowledge of the type, which is the important factor in disambiguating
overloaded functions.
2010-11-18 08:56:39 +13:00
Michael Jones
71660ccdf1 Account for arguments with only a type and no parameter name
Previously, the code was parsing the type into the argname variable and then
when it found something (not "," or ")") following the type it swapped the name
into the type and parsed next part as the name.

However, when no name is provided, as it allowed in c++, if you're not planning
on using the parameter, or it is in a function declaration, then the actual
type was being left in the name variable and the type variable was empty.

As a result function signatures for references were being generated without
knowledge of the type, which is the important factor in disambiguating
overloaded functions.
2010-11-18 08:56:39 +13:00
Michael Jones
55e7071523 Update cpp domain identifier regex to match destructors
Previously the regex would fail to match c++ destructors, as the presence of a
"~" would mean that the "\b" would no longer match the start of a word.

Now we try to find the optional "~" first then continue with the word as
normal.
2010-11-18 08:51:43 +13:00
Michael Jones
d04182b85c Update cpp domain identifier regex to match destructors
Previously the regex would fail to match c++ destructors, as the presence of a
"~" would mean that the "\b" would no longer match the start of a word.

Now we try to find the optional "~" first then continue with the word as
normal.
2010-11-18 08:51:43 +13:00
Robert Lehmann
3de93d83d6 Split up tests for locale patching. 2010-11-14 19:50:30 +01:00
Robert Lehmann
84298debb7 Supply missing PO file for tests. 2010-11-14 19:43:28 +01:00
Robert Lehmann
f055c1593f Split up sphinx-i18n tests into build and patch phase. 2010-11-14 19:42:50 +01:00
Robert Lehmann
3ab3400c12 Remove generated catalogs properly after tests. 2010-11-13 13:15:15 +01:00
Robert Lehmann
3d006f827d Transform false positives into skipped tests. 2010-11-13 13:14:35 +01:00
Robert Lehmann
b720156437 Tested section grouping for translations. 2010-11-13 12:59:12 +01:00
Robert Lehmann
f411dbce23 Ignored translator errors in non-paragraphs for now. 2010-11-13 12:50:52 +01:00
Robert Lehmann
b151aa56e1 Clean up coding style for better comprehensibility. 2010-11-13 12:49:39 +01:00