made XmlRpcException documentation more informative;

added graphviz (dot) graphical inheritance diagram generation to the
livesupport/etc/doxygen.config and xmlrpc-doxygen.config files
This commit is contained in:
fgerlits 2005-01-24 12:48:10 +00:00
parent d40afcac39
commit 317b50732f
7 changed files with 39 additions and 30 deletions

View File

@ -21,7 +21,7 @@
#
#
# Author : $Author: fgerlits $
# Version : $Revision: 1.9 $
# Version : $Revision: 1.10 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/etc/doxygen.config,v $
#-------------------------------------------------------------------------------
@ -1043,7 +1043,7 @@ HIDE_UNDOC_RELATIONS = YES
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
# have no effect if this option is set to NO (the default)
HAVE_DOT = NO
HAVE_DOT = YES
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
# will generate a graph for each documented class showing the direct and

View File

@ -21,7 +21,7 @@
#
#
# Author : $Author: fgerlits $
# Version : $Revision: 1.1 $
# Version : $Revision: 1.2 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/etc/xmlrpc-doxygen.config,v $
#-------------------------------------------------------------------------------
@ -418,7 +418,9 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = products/scheduler/src
INPUT = products/scheduler/src \
modules/archiveServer/var/xmlrpc/XR_Archive.php \
modules/storageServer/var/xmlrpc/XR_LocStor.php
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
@ -1025,7 +1027,7 @@ HIDE_UNDOC_RELATIONS = YES
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
# have no effect if this option is set to NO (the default)
HAVE_DOT = NO
HAVE_DOT = YES
# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
# will generate a graph for each documented class showing the direct and

View File

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $
Version : $Revision: 1.1 $
Author : $Author: fgerlits $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/XmlRpcCommunicationException.h,v $
------------------------------------------------------------------------------*/
@ -55,10 +55,12 @@ namespace Core {
/* =============================================================== data types */
/**
* Exception signaling an XML-RPC communcation problem.
* Exception signaling an XML-RPC problem: could not find the XML-RPC server,
* the server responded 'no such method', or the method response could not be
* parsed.
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @author $Author: fgerlits $
* @version $Revision: 1.2 $
*/
class XmlRpcCommunicationException : public XmlRpcException
{

View File

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $
Version : $Revision: 1.1 $
Author : $Author: fgerlits $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/XmlRpcIOException.h,v $
------------------------------------------------------------------------------*/
@ -55,10 +55,11 @@ namespace Core {
/* =============================================================== data types */
/**
* Exception signaling an XML-RPC I/O problem.
* Exception signaling an XML-RPC problem: there was a problem with a local
* I/O operation.
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @author $Author: fgerlits $
* @version $Revision: 1.2 $
*/
class XmlRpcIOException : public XmlRpcException
{

View File

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $
Version : $Revision: 1.1 $
Author : $Author: fgerlits $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/XmlRpcInvalidArgumentException.h,v $
------------------------------------------------------------------------------*/
@ -55,10 +55,12 @@ namespace Core {
/* =============================================================== data types */
/**
* Exception signaling an XML-RPC invalid parameter problem.
* Exception signaling an XML-RPC problem: invalid argument (functions which
* throw an XmlRpcException throw this when they would normally throw a
* std::invalid_argument).
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @author $Author: fgerlits $
* @version $Revision: 1.2 $
*/
class XmlRpcInvalidArgumentException : public XmlRpcException
{

View File

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $
Version : $Revision: 1.1 $
Author : $Author: fgerlits $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodFaultException.h,v $
------------------------------------------------------------------------------*/
@ -55,10 +55,11 @@ namespace Core {
/* =============================================================== data types */
/**
* Exception signaling an XML-RPC method call problem.
* Exception signaling an XML-RPC problem: the XML-RPC method returned a fault
* response.
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @author $Author: fgerlits $
* @version $Revision: 1.2 $
*/
class XmlRpcMethodFaultException : public XmlRpcException
{

View File

@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author : $Author: maroy $
Version : $Revision: 1.1 $
Author : $Author: fgerlits $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodResponseException.h,v $
------------------------------------------------------------------------------*/
@ -55,10 +55,11 @@ namespace Core {
/* =============================================================== data types */
/**
* Exception signaling an XML-RPC method response problem.
* Exception signaling an XML-RPC problem: the XML-RPC method call completed
* normally, but the response received has incorrect syntax.
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @author $Author: fgerlits $
* @version $Revision: 1.2 $
*/
class XmlRpcMethodResponseException : public XmlRpcException
{