http://pear.php.net/
pear-webmaster@lists.php.netpear-webmaster@lists.php.neten-usLatest releases of text_wikiThe latest releases for the package text_wikiText_Wiki 1.2.3
http://pear.php.net/package/Text_Wiki/download/1.2.3/
QA release<br />
<br />
Bug #23791 Undefined offset: 2 in /usr/share/php/Text/Wiki.php<br />
GitHub #3 Fix recursive call to constructor [rjsmelo]
2019年03月12日T20:51:54-05:00kguestText_Wiki 1.2.1
http://pear.php.net/package/Text_Wiki/download/1.2.1/
QA Release<br />
Bug #12490 wiki's do not display since php5-5.2.5 upgrade but are editable. justinpatrin<br />
Bug #12580 incorrect/incomplete license in package.xml justinpatrin<br />
Bug #12619 Tab character before # causes invalid Xhtml justinpatrin<br />
Bug #12665 External site documentation link invalid justinpatrin<br />
Doc Bug #14049 Missing documentation justinpatrin<br />
Bug #14869 skip tests when config is not available, not fail justinpatrin<br />
Bug #15758 URLs with # at the end not considered a url justinpatrin<br />
Bug #16222 External documentation is down justinpatrin
2010年10月25日T10:01:15-05:00doconnorText_Wiki 1.2.0
http://pear.php.net/package/Text_Wiki/download/1.2.0/
Stable release for 1.2.0<br />
<br />
Changes since 1.2.0RC2<br />
* Fix Bug #10114: Ruleset Case Sensitivity [justinpatrin]<br />
* Fix Bug #11262: Doesn't behave nicely with <code type="php"> [justinpatrin]<br />
* Fixed a notices about undefined 'css' and 'name' indexes [mic]<br />
* Allow class to be specified in Xhtml Box and Center renderers [mic]<br />
* Use css instead of deprecated align attribute for Xhtml/Image alignment [justinpatrin]<br />
* Don't pop up a new window with Xhtml Interwiki and Phplookup renderers when target is '_self' [justinpatrin]<br />
* Properly encode text in Xhtml Preformatted renderer [mic]<br />
<br />
Changes since 1.2.0RC1 (1.2.0RC2)<br />
* Added an Address Xhtml renderer<br />
* Balanced token checking has been added (this means that output such as <b><i>italic</b></i> is caught)<br />
* A new stack-based callback system for renderers has been added to allow for more flexible output handling (see BlockQuote)<br />
* The Url Xhtml renderer now allows a name to be passed in<br />
* The Url Xhtml, Plain, Latex renderers now allow start/end tokens<br />
* Package.xml 2.0 is now used exclusively<br />
* Bug #7320 fix UTF-8 rendering in WikiLink and Freelink<br />
* Various UTF-8 fixes<br />
* Bug #6292 remove paragraph tags from around headings and hrs in Xhtml renderer<br />
* Preformatted Xhtml renderer now correctly escapes output<br />
<br />
Changes since 1.1.0 (1.2.0RC1)<br />
* Internal Text_Wiki error handling used in factory and singleton<br />
* Needed files are now required<br />
* bertrand Gugger left development of Text_Wiki<br />
* Raw output is now encoded in Xhtml renderer to avoid XSS attacks<br />
* Bug 8313 fix anchor output in Xhtml/Wikilink when used in conjuction with sprintf (thanks to bjs5075 at rit dot edu)<br />
* Fixed various encoding issues with Xhtml/Wikilink URLs<br />
* Bug #7091 fixed variable substitution in Latex renderer (thanks randlem at bgsu dot edu)
2007年06月09日T20:06:01-05:00justinpatrinText_Wiki 1.2.0RC2
http://pear.php.net/package/Text_Wiki/download/1.2.0RC2/
New Features:<br />
# Added an Address Xhtml renderer<br />
# Balanced token checking has been added (this means that output such as <b><i>italic</b></i> is caught)<br />
# A new stack-based callback system for renderers has been added to allow for more flexible output handling (see BlockQuote)<br />
# The Url Xhtml renderer now allows a name to be passed in<br />
# The Url Xhtml, Plain, Latex renderers now allow start/end tokens<br />
<br />
Changes:<br />
# Experimental preg rendering method deprecated as it had problems<br />
# Package.xml 2.0 is now used exclusively<br />
<br />
Bugs fixed:<br />
# Bug #7320 fix UTF-8 rendering in WikiLink and Freelink<br />
# Various UTF-8 fixes<br />
# Bug #6292 remove paragraph tags from around headings and hrs in Xhtml renderer<br />
# Preformatted Xhtml renderer now correctly escapes output
2007年03月11日T20:29:51-05:00justinpatrinText_Wiki 1.2.0RC1
http://pear.php.net/package/Text_Wiki/download/1.2.0RC1/
New Features:<br />
# Experimental new rendering method introduced that uses preg instead of char-by-char parsing<br />
## Please test for both speed and memory usage<br />
<br />
Changes:<br />
# Internal Text_Wiki error handling used in factory and singleton<br />
# Needed files are now required<br />
# bertrand Gugger has left development of Text_Wiki<br />
<br />
Bugs fixed:<br />
# Raw output is now encoded in Xhtml renderer to avoid XSS attacks<br />
# Bug 8313 fix anchor output in Xhtml/Wikilink when used in conjuction with sprintf (thanks to bjs5075 at rit dot edu)<br />
# Fixed various encoding issues with Xhtml/Wikilink URLs<br />
# Bug #7091 fixed variable substitution in Latex renderer (thanks randlem at bgsu dot edu)
2006年10月10日T15:41:26-05:00justinpatrinText_Wiki 1.1.0
http://pear.php.net/package/Text_Wiki/download/1.1.0/
This is a major release as we reduce global resource usage<br />
# instantiate renderers only as needed<br />
# factory() method introduced for instantiating Text_Wiki objects<br />
# singleton() static method to get a single object instanciated pro parser (merci davidc for advices)<br />
<br />
The constructor is now deprecated in favor of the new singleton() or factory() methods<br />
Default also have its own class now, wich means Text_Wiki is a pure abstract class<br />
<br />
Renderers now have their own methods for:<br />
# text: textEncode() defaulted to php htmlspecialchars()<br />
for Xhtml render to the text encoding choosed in conf (#5953, thanks jocke at selincite dot com)<br />
# url: urlEncode() defaulted to the php rawurlencode()<br />
<br />
Wiki general:<br />
# Correct the key used in changeRule(), ensure no double new rule.<br />
# Page names and anchors Urlencode() as render required (e.g. may contain spaces)<br />
# Interwiki: parser may now give the full url instead of site+page (Mediawiki need)<br />
# Improved test.<br />
<br />
Latex render:<br />
# Only variables should be assigned by reference (#6010, thanks twells at smarterliving dot com)<br />
<br />
Plain render:<br />
# Interwiki: Complete the rendering with indication of (url) or (site:page)<br />
<br />
Xhtml render:<br />
# Rendering Fix for Tables (Missing Whitespace) (thanks ritzmo)<br />
# Added support for two-token URLs<br />
## This allows formatting within URL text and proper rendering into other Wiki dialects (assuming that your parser supports the new feature. The Default parser does not yet support this.)<br />
<br />
Maintainers:<br />
# Del , one of the funders of the original code fully as pear developer<br />
# JustinP is now lead
2006年03月02日T12:24:26-05:00togggText_Wiki 1.0.3
http://pear.php.net/package/Text_Wiki/download/1.0.3/
This is a bug fix release, the Bug #5863: mixed <ul> <ol> when using * and # fix introduced a potential BBC: Bug #5879 Nested lists to do not parse properly in Text_Wiki
2005年11月08日T14:09:59-05:00togggText_Wiki 1.0.2
http://pear.php.net/package/Text_Wiki/download/1.0.2/
This is a bug fix release, also with a few enhancements<br />
Default parser:<br />
* Bug #5660: The # is to be kept in the anchor option, (jeremy Lecour)<br />
* Bug #5863: Don't mix bullet and numbered lists when following each other, (stefan dot kilp at gmx dot net)<br />
* Bug #5397: variable used inside single quotes bugs WikiLinks (kristof dot coomans at sckcen dot be)<br />
Xhtml renderer:<br />
* Bug #5447: Preset $collapse to null (martin at mein-horde dot de)<br />
* Bug #5847: onclick in lowercase for Xhtml compliance (meisteg at msoe dot edu)<br />
* Unitiliazed row and column 's spans when coming from not mediawiki parser<br />
Xhtml and Latex renderers:<br />
* Render enumeration type a, A, i, or I in lists
2005年11月06日T07:04:44-05:00togggText_Wiki 1.0.1
http://pear.php.net/package/Text_Wiki/download/1.0.1/
This is a bug fix and security release, also preparing the introduction of new parsers/renderers<br />
* Fixed bug 3881 and 4442, UTF-8 encoding problems. There are new config options for Render_Xhtml, 'charset' and 'quotes', that allow you to specify the charset for translation.<br />
* Fixed bug 3959, "XHTML lists not rendered according W3C Standards" (where a line of text before a list leaves an open paragraph tag and closes it after the list)<br />
* In Parse_Xhtml_Toc, returns an extra newline before the parsed replacement text to comply with the matching regex.<br />
* In Render_Xhtml_Toc, added a 'collapse' config key to collapse the div horizontally within a table; this is for aesthetics, nothing else. The 'collapse' option is true by default.<br />
* Added general rules Smiley, Subscript ",,text,," and Underline "__text__"<br />
* Added rendering rules Box, Font, Page, Plugin, Preformatted, Specialchar and Titelbar<br />
for the optional extra parsers (BBCode, Cowiki, Doku, Mediawiki and Tiki)<br />
* Fixed bug 4175 "Wrong transform method" by generating PEAR_Error objects when a parse, format, or render rule cannot be found.<br />
* applied feature request 4436 "Add option to getTokens to get original token indices" -- now the return array from getTokens() is keyed to the original token index number.<br />
* Fixed Bug #4473 Undefined variables in error()<br />
* Fixed bug 4474 to silence calls to htmlentities and htmlspecialchars so that errors about charsets don't pop up, per counsel from Jan at Horde.<br />
* Fixed Code potential nesting<br />
* Fixed bug #4719, "In Latex, newline rule does not produce a new line"<br />
* Request #4520 Additional space confuses image tag, adapted regexp<br />
* Request #4634 Code block title/filename, uses conf css_filename<br />
* Code Xhtml: add php tags only if not there<br />
* Heading: collapsing in headers<br />
* Colortext Xhtml: don't add # if allready present<br />
* Anchor Xhtml htlmentify the link<br />
* Cleaned Xhtml renderers documentation headers<br />
* Added an example in doc<br />
* Rowspan and space before free format in Table renderer<br />
* Secured url linked on images
2005年09月12日T10:48:56-05:00togggText_Wiki 1.0.0
http://pear.php.net/package/Text_Wiki/download/1.0.0/
* First stable release
2005年03月13日T20:05:52-05:00pmjones