The branch "master" has been updated. The following is a summary of the commits.
from: e9aab811f7f2ad3d4a1973d8f14ac7d0282da934 5ab6f8e [jan] Complete the reST renderer. Summary: http://github.com/horde/horde/compare/e9aab811f7f2ad3d4a1973d8f14ac7d0282da934...5ab6f8e8f5b3e2a19cdc5a6edb1c785be6c0c3f1 ----------------------------------------------------------------------- commit 5ab6f8e8f5b3e2a19cdc5a6edb1c785be6c0c3f1 Author: Jan Schneider <[email protected]> Date: Tue Feb 23 19:20:50 2016 +0100 [jan] Complete the reST renderer. The Wiki/TextFormat page renders completely as reST now. Only a few minor things are still missing. wicked/docs/CHANGES | 1 + wicked/lib/Page.php | 70 +++++--- wicked/lib/Text_Wiki/Parse/Default/Freelink2.php | 58 ++++++- wicked/lib/Text_Wiki/Parse/Default/Table2.php | 212 ++++++++++++++++++++++ wicked/lib/Text_Wiki/Render/Plain/Table2.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Anchor.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Blockquote.php | 31 ++- wicked/lib/Text_Wiki/Render/Rst/Bold.php | 9 +- wicked/lib/Text_Wiki/Render/Rst/Center.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Colortext.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Deflist.php | 2 +- wicked/lib/Text_Wiki/Render/Rst/Emphasis.php | 2 - wicked/lib/Text_Wiki/Render/Rst/Freelink.php | 53 ------ wicked/lib/Text_Wiki/Render/Rst/Freelink2.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Heading2.php | 12 +- wicked/lib/Text_Wiki/Render/Rst/Interwiki.php | 66 +++++++ wicked/lib/Text_Wiki/Render/Rst/Italic.php | 27 +++ wicked/lib/Text_Wiki/Render/Rst/Links.php | 17 +- wicked/lib/Text_Wiki/Render/Rst/List.php | 26 ++- wicked/lib/Text_Wiki/Render/Rst/Paragraph.php | 3 +- wicked/lib/Text_Wiki/Render/Rst/Phplookup.php | 58 ++++++ wicked/lib/Text_Wiki/Render/Rst/Revise.php | 46 +++++ wicked/lib/Text_Wiki/Render/Rst/Strong.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Subscript.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Superscript.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Table2.php | 157 ++++++++++++++++ wicked/lib/Text_Wiki/Render/Rst/Tt.php | 2 +- wicked/lib/Text_Wiki/Render/Rst/Underline.php | 26 +++ wicked/lib/Text_Wiki/Render/Rst/Url.php | 7 +- wicked/lib/Text_Wiki/Render/Rst/Wikilink.php | 127 +++++++++++++ wicked/lib/Text_Wiki/Render/Xhtml/Wikilink2.php | 2 +- wicked/package.xml | 40 ++++- wicked/test/Wicked/Unit/RstTest.php | 11 + 33 files changed, 1135 insertions(+), 138 deletions(-) create mode 100644 wicked/lib/Text_Wiki/Parse/Default/Table2.php create mode 100644 wicked/lib/Text_Wiki/Render/Plain/Table2.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Anchor.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Center.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Colortext.php delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Freelink.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Freelink2.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Interwiki.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Italic.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Phplookup.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Revise.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Strong.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Subscript.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Superscript.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Table2.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Underline.php create mode 100644 wicked/lib/Text_Wiki/Render/Rst/Wikilink.php http://github.com/horde/horde/commit/5ab6f8e8f5b3e2a19cdc5a6edb1c785be6c0c3f1 -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
