Changeset 325971
- Timestamp:
- 12/25/2010 12:47:35 AM (15 years ago)
- Location:
- wp-pear-debug
- Files:
-
- 13 edited
- 2 copied
-
tags/1.4.8 (copied) (copied from wp-pear-debug/trunk)
-
tags/1.4.8/lib/PHP_Debug/Debug/Renderer.class.php (modified) (2 diffs)
-
tags/1.4.8/lib/PHP_Debug/Debug/Renderer/HTML/Div.class.php (modified) (1 diff)
-
tags/1.4.8/lib/PHP_Debug/Debug/Renderer/HTML/Table.class.php (modified) (1 diff)
-
tags/1.4.8/lib/PHP_Debug/PHP_Debug.class.php (modified) (1 diff)
-
tags/1.4.8/lib/util/wpdutil.class.php (modified) (1 diff)
-
tags/1.4.8/readme.txt (copied) (copied from wp-pear-debug/trunk/readme.txt) (1 diff)
-
tags/1.4.8/wp-pear-debug.php (modified) (1 diff)
-
trunk/lib/PHP_Debug/Debug/Renderer.class.php (modified) (2 diffs)
-
trunk/lib/PHP_Debug/Debug/Renderer/HTML/Div.class.php (modified) (1 diff)
-
trunk/lib/PHP_Debug/Debug/Renderer/HTML/Table.class.php (modified) (1 diff)
-
trunk/lib/PHP_Debug/PHP_Debug.class.php (modified) (1 diff)
-
trunk/lib/util/wpdutil.class.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-pear-debug.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-pear-debug/tags/1.4.8/lib/PHP_Debug/Debug/Renderer.class.php
r56312 r325971 1 1 <?php 2 2 3 wp _pear_debug::loadClass('Debug.Renderer.Common');3 wpdutil::loadClass('PHP_Debug.Debug.Renderer.Common'); 4 4 5 5 /** … … 34 34 35 35 36 wp _pear_debug::loadClass('Debug.Renderer.'.$options['render_type'].'.'.$options['render_mode']);36 wpdutil::loadClass('PHP_Debug.Debug.Renderer.'.$options['render_type'].'.'.$options['render_mode']); 37 37 38 38 if (class_exists($className)) { -
wp-pear-debug/tags/1.4.8/lib/PHP_Debug/Debug/Renderer/HTML/Div.class.php
r202097 r325971 14 14 */ 15 15 16 wp _pear_debug::loadClass('Debug.Renderer.HTML.DivConfig');16 wpdutil::loadClass('PHP_Debug.Debug.Renderer.HTML.DivConfig'); 17 17 18 18 -
wp-pear-debug/tags/1.4.8/lib/PHP_Debug/Debug/Renderer/HTML/Table.class.php
r56312 r325971 5 5 */ 6 6 7 wp _pear_debug::loadClass('Debug.Renderer.HTML.TableConfig');7 wpdutil::loadClass('PHP_Debug.Debug.Renderer.HTML.TableConfig'); 8 8 /** 9 9 * A concrete renderer for Debug -
wp-pear-debug/tags/1.4.8/lib/PHP_Debug/PHP_Debug.class.php
r225353 r325971 56 56 * @see Debug/Renderer/*.php 57 57 */ 58 wp _pear_debug::loadClass('DebugLine');59 wp _pear_debug::loadClass('Debug.Renderer');58 wpdutil::loadClass('PHP_Debug.DebugLine'); 59 wpdutil::loadClass('PHP_Debug.Debug.Renderer'); 60 60 61 61 -
wp-pear-debug/tags/1.4.8/lib/util/wpdutil.class.php
r225353 r325971 28 28 if(!file_exists($sFile)) 29 29 { 30 Throw new Exception("Unable to load class: ". $s ClassPath);30 Throw new Exception("Unable to load class: ". $sFile); 31 31 } 32 32 -
wp-pear-debug/tags/1.4.8/readme.txt
r310297 r325971 4 4 Tags: debug, pear, php_debug, debugging, database debug, performance debug, performance 5 5 Requires at least: 2.8 6 Tested up to: 3.0 7 Stable tag: 1.4. 66 Tested up to: 3.0.3 7 Stable tag: 1.4.8 8 8 9 9 This plugin incorporates the pear php_debug library into wordpress. -
wp-pear-debug/tags/1.4.8/wp-pear-debug.php
r225937 r325971 138 138 //Ok everything is set begin debugging 139 139 //Mostly not useful 140 //self::add("Begin Debugging"); 140 self::add("Begin Debugging"); 141 self::error("Begin Debugging"); 141 142 } 142 143 -
wp-pear-debug/trunk/lib/PHP_Debug/Debug/Renderer.class.php
r56312 r325971 1 1 <?php 2 2 3 wp _pear_debug::loadClass('Debug.Renderer.Common');3 wpdutil::loadClass('PHP_Debug.Debug.Renderer.Common'); 4 4 5 5 /** … … 34 34 35 35 36 wp _pear_debug::loadClass('Debug.Renderer.'.$options['render_type'].'.'.$options['render_mode']);36 wpdutil::loadClass('PHP_Debug.Debug.Renderer.'.$options['render_type'].'.'.$options['render_mode']); 37 37 38 38 if (class_exists($className)) { -
wp-pear-debug/trunk/lib/PHP_Debug/Debug/Renderer/HTML/Div.class.php
r202097 r325971 14 14 */ 15 15 16 wp _pear_debug::loadClass('Debug.Renderer.HTML.DivConfig');16 wpdutil::loadClass('PHP_Debug.Debug.Renderer.HTML.DivConfig'); 17 17 18 18 -
wp-pear-debug/trunk/lib/PHP_Debug/Debug/Renderer/HTML/Table.class.php
r56312 r325971 5 5 */ 6 6 7 wp _pear_debug::loadClass('Debug.Renderer.HTML.TableConfig');7 wpdutil::loadClass('PHP_Debug.Debug.Renderer.HTML.TableConfig'); 8 8 /** 9 9 * A concrete renderer for Debug -
wp-pear-debug/trunk/lib/PHP_Debug/PHP_Debug.class.php
r225353 r325971 56 56 * @see Debug/Renderer/*.php 57 57 */ 58 wp _pear_debug::loadClass('DebugLine');59 wp _pear_debug::loadClass('Debug.Renderer');58 wpdutil::loadClass('PHP_Debug.DebugLine'); 59 wpdutil::loadClass('PHP_Debug.Debug.Renderer'); 60 60 61 61 -
wp-pear-debug/trunk/lib/util/wpdutil.class.php
r225353 r325971 28 28 if(!file_exists($sFile)) 29 29 { 30 Throw new Exception("Unable to load class: ". $s ClassPath);30 Throw new Exception("Unable to load class: ". $sFile); 31 31 } 32 32 -
wp-pear-debug/trunk/readme.txt
r310297 r325971 4 4 Tags: debug, pear, php_debug, debugging, database debug, performance debug, performance 5 5 Requires at least: 2.8 6 Tested up to: 3.0 7 Stable tag: 1.4. 66 Tested up to: 3.0.3 7 Stable tag: 1.4.8 8 8 9 9 This plugin incorporates the pear php_debug library into wordpress. -
wp-pear-debug/trunk/wp-pear-debug.php
r225937 r325971 138 138 //Ok everything is set begin debugging 139 139 //Mostly not useful 140 //self::add("Begin Debugging"); 140 self::add("Begin Debugging"); 141 self::error("Begin Debugging"); 141 142 } 142 143
Note: See TracChangeset
for help on using the changeset viewer.