Thread: [Phphtmllib-devel] SF.net SVN: phphtmllib:[3555] branches/BRANCH_2_X/phphtmllib/ReadMe.txt
Status: Beta
Brought to you by:
hemna
From: <mpw...@us...> - 2012-03-11 11:24:45
|
Revision: 3555 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3555&view=rev Author: mpwalsh8 Date: 2012-03-11 11:24:39 +0000 (Sun, 11 Mar 2012) Log Message: ----------- Initial checkin. Added Paths: ----------- branches/BRANCH_2_X/phphtmllib/ReadMe.txt Added: branches/BRANCH_2_X/phphtmllib/ReadMe.txt =================================================================== --- branches/BRANCH_2_X/phphtmllib/ReadMe.txt (rev 0) +++ branches/BRANCH_2_X/phphtmllib/ReadMe.txt 2012-03-11 11:24:39 UTC (rev 3555) @@ -0,0 +1,48 @@ +=== phpHtmlLib === +Contributors: mpwalsh8 +Donate link: http://sourceforge.net/project/project_donations.php?group_id=32790 +Tags: HTML, Forms, XHTML, XML, Widgets +Requires at least: 3.1 +Tested up to: 3.3.1 +Stable tag: trunk + +The phpHtmlLib library contains a set of PHP classes and library functions to help +facilitate building, debugging, and rendering of XML, HTML, XHTML, WAP/WML Documents, +and SVG (Scalable Vector Graphics) images as well as complex html Widgets. These +classes, library functions and widgets can be used to build other WordPress plugins. + +== Description == + +phpHtmllib is a set of PHP classes and library functions to help facilitate building, debugging, +and rendering of XML, HTML, XHTML, WAP/WML Documents, and SVG (Scalable Vector Graphics) images +as well as complex html 'widgets'. It provides a mechanism to output perfectly indented/readable +tags, and a programmatic API to generating tags on the fly. + + +More information can be found on the [phpHtmlLib](http://michaelwalsh.org/wordpress/wordpress-plugins/phphtmllib/) +plugin page. + +== Installation == + +1. Use the WordPress plugin installer from the Dashboard or Unzip and Upload the phpHtmlLib content to your /wp-content/plugins/ directory. +1. Activate the plugin through the 'Plugins' menu in WordPress. +1. Refer to the official plugin page for documentation, usage and tips. + + +== Frequently Asked Questions == + +1. What does the phpHtmlLib plugin do? The plugin doesn't provide any new functionality within WordPress. The plugin provides a library of Classes and Widgets that other plugins can build on top of. In particular, phpHtmlLib has a very strong set of Classes for Form Processng which allows forms to be quickly created and processed with a consistent look and feel. +2. Do you plan to support phpHtmlLib 3. as a plugin? No. The phpHtmlLib 3.x thread was a complete re-write of phpHtmlLib for PHP5 and while it takes advantage of a lot of PHP5 functionality, the widget library isn't as robust. The re-write also includes a complete MVC framework which is of no value as a WordPress plugin. The 2.x thread is being maintained for the purposes of proving a WordPress plugin. + +== Changelog == + +The [phpHtmlLib page](http://michaelwalsh.org/wordpress/wordpress-plugins/phphtmllib/) provides +full details on changes, bugs, enhancesments, future developments and much more and is the definitive +source for the Change Log. + += 2.6.3 = +* Fixed numerous deprecated notices and warnings which result when running under PHP5. +* Fixed problem with missing image on Action Bar when displaying empty the action bar on an empty GUIDataList widget. + += 2.6.2 = +* First release under the WordPress plugin respository. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mpw...@us...> - 2013-02-26 14:44:02
|
Revision: 3571 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3571&view=rev Author: mpwalsh8 Date: 2013-02-26 14:43:54 +0000 (Tue, 26 Feb 2013) Log Message: ----------- Fixed issue with method_exists() and PHP 5.3.x compatibility. Modified Paths: -------------- branches/BRANCH_2_X/phphtmllib/ReadMe.txt Modified: branches/BRANCH_2_X/phphtmllib/ReadMe.txt =================================================================== --- branches/BRANCH_2_X/phphtmllib/ReadMe.txt 2013-02-26 14:41:37 UTC (rev 3570) +++ branches/BRANCH_2_X/phphtmllib/ReadMe.txt 2013-02-26 14:43:54 UTC (rev 3571) @@ -3,7 +3,7 @@ Donate link: http://sourceforge.net/project/project_donations.php?group_id=32790 Tags: HTML, Forms, XHTML, XML, Widgets Requires at least: 3.1 -Tested up to: 3.3.1 +Tested up to: 3.5.1 Stable tag: trunk The phpHtmlLib library contains a set of PHP classes and library functions to help @@ -40,6 +40,9 @@ full details on changes, bugs, enhancesments, future developments and much more and is the definitive source for the Change Log. += 2.6.6 = +* Fixed compatibility problem with PHP method_exists() function which caused PHP to crash with some versions of PHP 5.3.x on certain platforms (e.g. PHP 5.3.13 on Linux). + = 2.6.5 = * Fixed recently added child constructors which addressed PHP5.3 compatibility issues so they play nice with PHP5.2.x as well. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |