Directory trunk/wact/exception/

Directory Deleted:
2009-05-23 18:04
Total Files:
0
Deleted Files:
12
Lines of Code:
0

[root]/trunk/wact/exception
                Folder removed from repo formatter (0 files, 0 lines)

Lines of Code

trunk/wact/exception/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
JeffMoore 59 (100.0%) 1135 (100.0%) 19.2

Most Recent Commits

JeffMoore 2009-05-23 18:04 Rev.: 954

convert filename case

0 lines of code changed in 12 files:

  • trunk/wact/exception: base.inc.php (del), base.test.php (del), base.xcpt.php (del), collection.inc.php (del), collection.xcpt.php (del), debughandler.inc.php (del), errorhandler.inc.php (del), formatter.inc.php (del), handler.inc.php (del), html.inc.php (del), html.test.php (del), phperror.xcpt.php (del)
JeffMoore 2009-04-26 06:49 Rev.: 898

Remove @version, @access, and @version doc comments. They're meaningless here.

0 lines of code changed in 4 files:

  • trunk/wact/exception: base.inc.php (-4), collection.inc.php (-3), formatter.inc.php (-3), handler.inc.php (-3)
JeffMoore 2008-10-19 01:41 Rev.: 782

Renamed test base classes to autonaming conventions. Also implemented
template filter. This should have been two different checkins. Oops.

1 lines of code changed in 1 file:

  • trunk/wact/exception: base.test.php (+1 -1)
JeffMoore 2008-10-18 19:23 Rev.: 779

Updated error and exception formatters to use autoloading conventions

48 lines of code changed in 4 files:

  • trunk/wact/exception: base.inc.php (+3 -2), collection.inc.php (+5 -4), formatter.inc.php (new 39), handler.inc.php (+1 -2)
JeffMoore 2008-10-13 00:45 Rev.: 769

Added convenience method.

8 lines of code changed in 1 file:

  • trunk/wact/exception: handler.inc.php (+8)
JeffMoore 2008-05-04 05:28 Rev.: 672

Changed base exception to introduce sprintf like capability.

243 lines of code changed in 3 files:

  • trunk/wact/exception: base.inc.php (+169 -27), base.test.php (+61 -11), collection.inc.php (+13 -6)
JeffMoore 2008-03-29 16:21 Rev.: 667

Renamed WactException to Wact_Exception_Base to comply with Autoloading scheme.

Wact_Exception_Base was used instead of Wact_Exception to keep the file inside the exception directory. This raises an interesting issue about "namesake" classes that typically take on
the name of the package they are in. In autoloading schemes, they typically appear above their
package directory. We've been placing them inside the package directory. When converting to
namespaces in 5.3, I am not sure which behavior is best.

128 lines of code changed in 3 files:

  • trunk/wact/exception: base.inc.php (new 124), base.test.php (+3 -3), collection.inc.php (+1 -1)
JeffMoore 2008-03-29 07:07 Rev.: 665

Began converting exception mechanism to use autoloading.

6 lines of code changed in 2 files:

  • trunk/wact/exception: collection.inc.php (new 6), handler.inc.php (new)
JeffMoore 2006-11-11 21:42 Rev.: 302

moved message formatter to its own directory.

5 lines of code changed in 4 files:

  • trunk/wact/exception: base.xcpt.php (+1 -1), collection.xcpt.php (+1 -1), debughandler.inc.php (+2 -2), phperror.xcpt.php (+1 -1)
JeffMoore 2006-11-05 01:40 Rev.: 290

Cleaned up view lifecycle centering around when iterators and models are
available to be accessed during the render stage.

5 lines of code changed in 1 file:

  • trunk/wact/exception: base.xcpt.php (+5)
JeffMoore 2006-10-21 20:51 Rev.: 219

Fixed up HTML error and exception message reporting.

273 lines of code changed in 5 files:

  • trunk/wact/exception: base.xcpt.php (+15 -87), collection.xcpt.php (+30), debughandler.inc.php (+41 -7), html.inc.php (+168), phperror.xcpt.php (+19 -6)
JeffMoore 2006-10-21 19:14 Rev.: 218

Added debugging error handler.

33 lines of code changed in 1 file:

  • trunk/wact/exception: debughandler.inc.php (+33)
JeffMoore 2006-10-21 02:49 Rev.: 216

Added an Exception that collects other exceptions into a list.

75 lines of code changed in 2 files:

  • trunk/wact/exception: base.xcpt.php (+1 -1), collection.xcpt.php (new 74)
JeffMoore 2006-10-09 02:38 Rev.: 208

Added Level

26 lines of code changed in 1 file:

  • trunk/wact/exception: phperror.xcpt.php (+26)
JeffMoore 2006-10-09 01:41 Rev.: 207

Added tests to make sure information passed to the constructor of an
exception is incorporated into the error message for that exception.

7 lines of code changed in 1 file:

  • trunk/wact/exception: base.xcpt.php (+7)
JeffMoore 2006-10-07 16:52 Rev.: 206

Added ability to convert non-Wact exception messages to HTML.

83 lines of code changed in 4 files:

  • trunk/wact/exception: base.xcpt.php (+3 -1), debughandler.inc.php (+2 -1), html.inc.php (new 51), html.test.php (new 27)
JeffMoore 2006-10-06 23:49 Rev.: 205

Added an exception handler to print debugging information for uncaught
exceptions.
The base exception class now has the ability to generate an html representation
of itself. (With truly dreadful HTML.)
Added several examples to show what information will be shown with uncaught
exceptions.

153 lines of code changed in 2 files:

  • trunk/wact/exception: base.xcpt.php (+98 -1), debughandler.inc.php (new 55)
JeffMoore 2006-10-06 04:24 Rev.: 204

Added interpolation to error messages so that {property} is replaced by the
value of that property on the object (via the getProperty accessor methods).

23 lines of code changed in 1 file:

  • trunk/wact/exception: base.xcpt.php (+23 -4)
JeffMoore 2006-10-06 04:05 Rev.: 203

__toString now includes any causing exceptions.

14 lines of code changed in 1 file:

  • trunk/wact/exception: base.xcpt.php (+14 -1)
JeffMoore 2006-10-06 02:35 Rev.: 202

Removed unused i18n features from base exception class.

4 lines of code changed in 6 files:

  • trunk/wact/exception: base.test.php (new), base.xcpt.php (new), phperror.xcpt.php (new)
Generated by StatSVN 0.4.0