From ca278cecddd95da2c3f84bcb043c644135a98563 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 12 Nov 2004 14:14:23 +0000 Subject: [PATCH] *** empty log message *** --- livesupport/Makefile | 4 +++- .../modules/storage/etc/storageClient.xml | 3 ++- .../modules/storage/etc/testStorage.xml | 3 ++- .../modules/storage/src/TestStorageClient.cxx | 19 +++++++++++++++++-- .../modules/storage/src/TestStorageClient.h | 14 +++++++------- .../products/scheduler/etc/scheduler.xml | 3 ++- .../products/scheduler/etc/storageClient.xml | 3 ++- .../src/AddAudioClipToPlaylistMethod.h | 5 +++-- .../scheduler/src/DeletePlaylistMethod.h | 5 +++-- .../scheduler/src/DisplayAudioClipMethod.h | 5 +++-- .../scheduler/src/DisplayAudioClipsMethod.h | 5 +++-- .../scheduler/src/DisplayPlaylistMethod.h | 5 +++-- .../scheduler/src/DisplayPlaylistsMethod.h | 5 +++-- .../scheduler/src/DisplayScheduleMethod.h | 5 +++-- .../scheduler/src/GeneratePlayReportMethod.h | 5 +++-- .../src/OpenPlaylistForEditingMethod.h | 5 +++-- .../src/RemoveAudioClipFromPlaylistMethod.h | 5 +++-- .../scheduler/src/RemoveFromScheduleMethod.h | 5 +++-- .../products/scheduler/src/RescheduleMethod.h | 5 +++-- .../src/RevertEditedPlaylistMethod.h | 5 +++-- .../scheduler/src/SavePlaylistMethod.h | 5 +++-- .../scheduler/src/UpdateFadeInFadeOutMethod.h | 5 +++-- .../scheduler/src/UploadPlaylistMethod.h | 5 +++-- .../scheduler/src/ValidatePlaylistMethod.h | 5 +++-- 24 files changed, 86 insertions(+), 48 deletions(-) diff --git a/livesupport/Makefile b/livesupport/Makefile index 577f90ae9..831441aa8 100644 --- a/livesupport/Makefile +++ b/livesupport/Makefile @@ -21,7 +21,7 @@ # # # Author : $Author: fgerlits $ -# Version : $Revision: 1.9 $ +# Version : $Revision: 1.10 $ # Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/Attic/Makefile,v $ #------------------------------------------------------------------------------- @@ -48,6 +48,7 @@ COVERAGE_DIR = ${DOC_DIR}/coverage ETC_DIR = ${BASE_DIR}/etc DOXYGEN_CONFIG = ${ETC_DIR}/doxygen.config +XMLRPC-DOXYGEN_CONFIG = ${ETC_DIR}/xmlrpc-doxygen.config XMLRPCXX_DOC_DIR = ${BASE_DIR}/usr/share/doc/xmlrpc++ EXTERNAL_DOC_PAGES = ${XMLRPCXX_DOC_DIR}/XmlRpcServerMethod_8h-source.html \ @@ -111,6 +112,7 @@ doc: doxygen testresults doxygen: ${DOXYGEN} ${DOXYGEN_CONFIG} + ${DOXYGEN} ${XMLRPC-DOXYGEN_CONFIG} testresults: ${XSLTPROC} ${TESTRESULT_XSLT} ${TESTRESULTS_IN} > ${TESTRESULTS_FILE} diff --git a/livesupport/modules/storage/etc/storageClient.xml b/livesupport/modules/storage/etc/storageClient.xml index 080f95818..8f471f6f9 100644 --- a/livesupport/modules/storage/etc/storageClient.xml +++ b/livesupport/modules/storage/etc/storageClient.xml @@ -4,6 +4,7 @@ + @@ -19,7 +20,7 @@ ]> - + + @@ -16,7 +17,7 @@ ]> - + get_value(); + // iterate through the playlist elements ... xmlpp::Node::NodeList nodes = element.get_children(Playlist::getConfigElementName()); @@ -250,7 +265,7 @@ TestStorageClient :: acquirePlaylist(Ptr::Ref id) const } std::stringstream fileName; - fileName << "file:///tmp/tempPlaylist" << newPlaylist->getId()->getId() + fileName << localTempStorage << newPlaylist->getId()->getId() << "#" << std::rand() << ".smil"; smilDocument->write_to_file(fileName.str(), "UTF-8"); diff --git a/livesupport/modules/storage/src/TestStorageClient.h b/livesupport/modules/storage/src/TestStorageClient.h index 7eae1cf31..17faca630 100644 --- a/livesupport/modules/storage/src/TestStorageClient.h +++ b/livesupport/modules/storage/src/TestStorageClient.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.12 $ + Version : $Revision: 1.13 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClient.h,v $ ------------------------------------------------------------------------------*/ @@ -67,7 +67,7 @@ using namespace LiveSupport::Core; * A dummy storage client, only used for test purposes. * * @author $Author: fgerlits $ - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ */ class TestStorageClient : virtual public Configurable, @@ -79,11 +79,6 @@ class TestStorageClient : */ static const std::string configElementNameStr; - /** - * The path to the local temp storage - */ - static const std::string localTempStoragePath; - /** * The map type containing the playlists by their ids. */ @@ -106,6 +101,11 @@ class TestStorageClient : */ AudioClipMap audioClipMap; + /** + * The path where the temporary SMIL files are strored. + */ + std::string localTempStorage; + public: /** diff --git a/livesupport/products/scheduler/etc/scheduler.xml b/livesupport/products/scheduler/etc/scheduler.xml index 872263d8b..4b903ec79 100644 --- a/livesupport/products/scheduler/etc/scheduler.xml +++ b/livesupport/products/scheduler/etc/scheduler.xml @@ -14,6 +14,7 @@ + @@ -44,7 +45,7 @@ - + diff --git a/livesupport/products/scheduler/etc/storageClient.xml b/livesupport/products/scheduler/etc/storageClient.xml index 75ac2c703..819dd2abb 100644 --- a/livesupport/products/scheduler/etc/storageClient.xml +++ b/livesupport/products/scheduler/etc/storageClient.xml @@ -4,6 +4,7 @@ + @@ -24,7 +25,7 @@ ]> - + @@ -98,7 +99,7 @@ using namespace LiveSupport::Core; * * * @author $Author: fgerlits $ - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ */ class AddAudioClipToPlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DeletePlaylistMethod.h b/livesupport/products/scheduler/src/DeletePlaylistMethod.h index b6d896af5..78cad0a5e 100644 --- a/livesupport/products/scheduler/src/DeletePlaylistMethod.h +++ b/livesupport/products/scheduler/src/DeletePlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/DeletePlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -67,6 +67,7 @@ using namespace LiveSupport::Core; * An XML-RPC method object to delete a playlist given by its playlist id. * * The name of the method when called through XML-RPC is "deletePlaylist". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -90,7 +91,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class DeletePlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DisplayAudioClipMethod.h b/livesupport/products/scheduler/src/DisplayAudioClipMethod.h index a028a4ae2..4b999f767 100644 --- a/livesupport/products/scheduler/src/DisplayAudioClipMethod.h +++ b/livesupport/products/scheduler/src/DisplayAudioClipMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -68,6 +68,7 @@ using namespace LiveSupport::Core; * audio clip id. * * The name of the method when called through XML-RPC is "displayAudioClip". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -96,7 +97,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class DisplayAudioClipMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h index 22ba33af0..505e47569 100644 --- a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h +++ b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -71,6 +71,7 @@ using namespace LiveSupport::Core; * in the audio clip store. * * The name of the method when called through XML-RPC is "displayAudioClips". + * * No input parameters are expected. * * The XML-RPC function returns an XML-RPC array, containing a structure @@ -83,7 +84,7 @@ using namespace LiveSupport::Core; * * * @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class DisplayAudioClipsMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DisplayPlaylistMethod.h b/livesupport/products/scheduler/src/DisplayPlaylistMethod.h index 9363f2110..bc26a3889 100644 --- a/livesupport/products/scheduler/src/DisplayPlaylistMethod.h +++ b/livesupport/products/scheduler/src/DisplayPlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -68,6 +68,7 @@ using namespace LiveSupport::Core; * playlist id. * * The name of the method when called through XML-RPC is "displayPlaylist". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -96,7 +97,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class DisplayPlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h index 100c3ec9b..add83a8f5 100644 --- a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h +++ b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -71,6 +71,7 @@ using namespace LiveSupport::Core; * in the playlist store. * * The name of the method when called through XML-RPC is "displayPlaylists". + * * No input parameters are expected. * * The XML-RPC function returns an XML-RPC array, containing a structure @@ -83,7 +84,7 @@ using namespace LiveSupport::Core; * * * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class DisplayPlaylistsMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/DisplayScheduleMethod.h b/livesupport/products/scheduler/src/DisplayScheduleMethod.h index 665a84e1b..8b5344a07 100644 --- a/livesupport/products/scheduler/src/DisplayScheduleMethod.h +++ b/livesupport/products/scheduler/src/DisplayScheduleMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -72,6 +72,7 @@ using namespace LiveSupport::Core; * time interval. * * The name of the method when called through XML-RPC is "displaySchedule". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -106,7 +107,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class DisplayScheduleMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/GeneratePlayReportMethod.h b/livesupport/products/scheduler/src/GeneratePlayReportMethod.h index 62b19cd7c..c686a8146 100644 --- a/livesupport/products/scheduler/src/GeneratePlayReportMethod.h +++ b/livesupport/products/scheduler/src/GeneratePlayReportMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -72,6 +72,7 @@ using namespace LiveSupport::Core; * played during a specified time interval. * * The name of the method when called through XML-RPC is "generatePlayReport". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -103,7 +104,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class GeneratePlayReportMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h index 2e1bb175a..07ecf4ade 100644 --- a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h +++ b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.5 $ + Version : $Revision: 1.6 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -69,6 +69,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "openPlaylistForEditing". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -96,7 +97,7 @@ using namespace LiveSupport::Core; *
  • 105 - could not open playlist
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.5 $ + * @version $Revision: 1.6 $ */ class OpenPlaylistForEditingMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h index a1654aaab..5bc7e1dee 100644 --- a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h +++ b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -69,6 +69,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "removeAudioClipFromPlaylist". + * * The expected parameter is an XML-RPC structure, with the following * members: *
    @@ -94,7 +95,7 @@ using namespace LiveSupport::Core; *
  • 406 - no audio clip at the specified relative offset
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class RemoveAudioClipFromPlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h index 0d0cc6d19..ebbc9b58b 100644 --- a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h +++ b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -68,6 +68,7 @@ using namespace LiveSupport::Core; * An XML-RPC method object to remove a scheduled entry. * * The name of the method when called through XML-RPC is "removeFromSchedule". + * * The expected parameter is an XML-RPC structure, with the following * members: *
    @@ -88,7 +89,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class RemoveFromScheduleMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/RescheduleMethod.h b/livesupport/products/scheduler/src/RescheduleMethod.h index 61a5f6214..e04c3434c 100644 --- a/livesupport/products/scheduler/src/RescheduleMethod.h +++ b/livesupport/products/scheduler/src/RescheduleMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.3 $ + Version : $Revision: 1.4 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -68,6 +68,7 @@ using namespace LiveSupport::Core; * An XML-RPC method object to reschedule an already scheduled event. * * The name of the method when called through XML-RPC is "reschedule". + * * The expected parameter is an XML-RPC structure, with the following * members: *
    @@ -92,7 +93,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ class RescheduleMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h index 6b4cffea6..c81f974c4 100644 --- a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h +++ b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -69,6 +69,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "revertEditedPlaylist". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -89,7 +90,7 @@ using namespace LiveSupport::Core; *
  • 804 - could not revert playlist
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class RevertEditedPlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/SavePlaylistMethod.h b/livesupport/products/scheduler/src/SavePlaylistMethod.h index b3ec83f59..d61afa78d 100644 --- a/livesupport/products/scheduler/src/SavePlaylistMethod.h +++ b/livesupport/products/scheduler/src/SavePlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -70,6 +70,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "savePlaylist". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -90,7 +91,7 @@ using namespace LiveSupport::Core; *
  • 704 - could not save playlist
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class SavePlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h index 9d04522ba..ae17ac9be 100644 --- a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h +++ b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -69,6 +69,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "updateFadeInFadeOut". + * * The expected parameter is an XML-RPC structure, with the following * members: *
    @@ -98,7 +99,7 @@ using namespace LiveSupport::Core; *
  • 1608 - no audio clip at the specified relative offset
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class UpdateFadeInFadeOutMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/UploadPlaylistMethod.h b/livesupport/products/scheduler/src/UploadPlaylistMethod.h index 77aa51234..b424bc130 100644 --- a/livesupport/products/scheduler/src/UploadPlaylistMethod.h +++ b/livesupport/products/scheduler/src/UploadPlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.6 $ + Version : $Revision: 1.7 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -69,6 +69,7 @@ using namespace LiveSupport::Core; * and schedule it in the scheduler. * * The name of the method when called through XML-RPC is "uploadPlaylist". + * * The expected parameter is an XML-RPC structure, with the following * members: *
    @@ -101,7 +102,7 @@ using namespace LiveSupport::Core; *
* * @author $Author: fgerlits $ - * @version $Revision: 1.6 $ + * @version $Revision: 1.7 $ */ class UploadPlaylistMethod : public XmlRpc::XmlRpcServerMethod { diff --git a/livesupport/products/scheduler/src/ValidatePlaylistMethod.h b/livesupport/products/scheduler/src/ValidatePlaylistMethod.h index f65923411..cec371cf1 100644 --- a/livesupport/products/scheduler/src/ValidatePlaylistMethod.h +++ b/livesupport/products/scheduler/src/ValidatePlaylistMethod.h @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.1 $ + Version : $Revision: 1.2 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethod.h,v $ ------------------------------------------------------------------------------*/ @@ -68,6 +68,7 @@ using namespace LiveSupport::Core; * * The name of the method when called through XML-RPC is * "validatePlaylist". + * * The expected parameter is an XML-RPC structure, with the following * member: *
    @@ -94,7 +95,7 @@ using namespace LiveSupport::Core; *
  • 504 - playlist has not been opened for editing
  • *
* @author $Author: fgerlits $ - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ class ValidatePlaylistMethod : public XmlRpc::XmlRpcServerMethod {