diff --git a/livesupport/etc/doxygen.config b/livesupport/etc/doxygen.config index 6bc2808b1..bb93f0abc 100644 --- a/livesupport/etc/doxygen.config +++ b/livesupport/etc/doxygen.config @@ -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 diff --git a/livesupport/etc/xmlrpc-doxygen.config b/livesupport/etc/xmlrpc-doxygen.config index 0fdc88ab6..3738ae539 100644 --- a/livesupport/etc/xmlrpc-doxygen.config +++ b/livesupport/etc/xmlrpc-doxygen.config @@ -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 diff --git a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcCommunicationException.h b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcCommunicationException.h index 2b2f7bb19..cf07fe657 100644 --- a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcCommunicationException.h +++ b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcCommunicationException.h @@ -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 { diff --git a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcIOException.h b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcIOException.h index 9258b4ae0..a574bf0d4 100644 --- a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcIOException.h +++ b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcIOException.h @@ -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 { diff --git a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcInvalidArgumentException.h b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcInvalidArgumentException.h index 84b55fe99..cb53cecc2 100644 --- a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcInvalidArgumentException.h +++ b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcInvalidArgumentException.h @@ -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 { diff --git a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodFaultException.h b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodFaultException.h index 3484f15da..c3001a982 100644 --- a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodFaultException.h +++ b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodFaultException.h @@ -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 { diff --git a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodResponseException.h b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodResponseException.h index a41bc26ef..3bed8562f 100644 --- a/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodResponseException.h +++ b/livesupport/modules/core/include/LiveSupport/Core/XmlRpcMethodResponseException.h @@ -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 {