cvs: peardoc /en/core/pear pear-errorstack.xml pear-exception.xml
[email protected] ("Alexander Merz")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvsalexmerz1197268652@cvsserver> |
alexmerz Mon Dec 10 06:37:32 2007 UTC
Modified files:
/peardoc/en/core/pear pear-errorstack.xml pear-exception.xml
Log:
please use classname at least in case of the first occurence in a section
http://cvs.php.net/viewvc.cgi/peardoc/en/core/pear/pear-errorstack.xml?r1=1.5&r2=1.6&diff_format=u
Index: peardoc/en/core/pear/pear-errorstack.xml
diff -u peardoc/en/core/pear/pear-errorstack.xml:1.5 peardoc/en/core/pear/pear-errorstack.xml:1.6
--- peardoc/en/core/pear/pear-errorstack.xml:1.5 Thu Oct 12 21:15:49 2006
+++ peardoc/en/core/pear/pear-errorstack.xml Mon Dec 10 06:37:32 2007
@@ -1,11 +1,11 @@
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<sect1 id="core.pear.pear-errorstack">
<title>PEAR_ErrorStack</title>
<titleabbrev>PEAR_ErrorStack</titleabbrev>
<para>
- PEAR_ErrorStack is an experimental error raising and handling implementation for PEAR that is designed
- to replace PEAR_Error when it has stabilized. PEAR_ErrorStack is both backwards compatible with PEAR_Error
- and forward compatible with PHP 5's PEAR_Exception class. There are many other features, all described
+ <classname>PEAR_ErrorStack</classname> is an experimental error raising and handling implementation for PEAR that is designed
+ to replace PEAR_Error when it has stabilized. PEAR_ErrorStack is both backwards compatible with <classname>PEAR_Error</classname>
+ and forward compatible with PHP 5's <classname>PEAR_Exception</classname> class. There are many other features, all described
in the Introduction.
</para>
<para>Usage:
http://cvs.php.net/viewvc.cgi/peardoc/en/core/pear/pear-exception.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/core/pear/pear-exception.xml
diff -u peardoc/en/core/pear/pear-exception.xml:1.1 peardoc/en/core/pear/pear-exception.xml:1.2
--- peardoc/en/core/pear/pear-exception.xml:1.1 Thu Oct 12 21:15:49 2006
+++ peardoc/en/core/pear/pear-exception.xml Mon Dec 10 06:37:32 2007
@@ -1,9 +1,9 @@
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<sect1 id="core.pear.pear-exception">
<title>PEAR_Exception - PHP 5+</title>
<titleabbrev>PEAR_Exception</titleabbrev>
<para>
- PEAR_Exception is the recommended error handling solution for PHP 5-based
+ <classname>PEAR_Exception</classname> is the recommended error handling solution for PHP 5-based
packages in PEAR. PEAR_Exception is a lightweight wrapper above the
built-in <classname>Exception</classname> class in PHP 5 that provides the
ability to specify causes for errors, register observers, and many more