");
- $this->_parseArr2Form($form, $mask['pages'][$key]);
- $this->_parseArr2Form($form, $mask['buttons']);
- $form->addElement('static', NULL, NULL, "
");
- }
- $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
- $form->accept($renderer);
- $output['pages'][] = $renderer->toArray();
- #print_r($output);
- return $output;
- }
-
-
- function changeStationPrefs(&$mask)
- {
- $form = new HTML_QuickForm('changeStationPrefs', UI_STANDARD_FORM_METHOD, UI_HANDLER);
- foreach($mask as $key=>$val) {
- $p = $this->gb->loadGroupPref($this->sessid, 'StationPrefs', $val['element']);
- if (is_string($p)) $mask[$key]['default'] = $p;
- };
- $this->_parseArr2Form($form, $mask);
- $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
- $form->accept($renderer);
- return $renderer->toArray();
- }
-
-
- /**
- * testStream
- *
- * Test if URL seems to be valid
- *
- * @param url string, full URL to test
- * @return array()
- */
- function testStream($url)
- {
- touch(UI_TESTSTREAM_MU3_TMP);
- $handle = fopen(UI_TESTSTREAM_MU3_TMP, "w");
- fwrite($handle, $url);
- fclose($handle);
-
- $parse = parse_url($url);
- $host = $parse["host"];
- $port = $parse["port"] ? $parse["port"] : 80;
- $uri = $parse["path"] ? $parse['path'] : '/'.($parse["query"] ? '?'.$parse["query"] : '');
-
-
- if ($handle = @fsockopen($host, $port, $errno, $errstr, 10)) {
- fputs($handle, "GET $uri HTTP/1.0\r\n");
- fputs($handle, "Host: $host:$port\r\n\r\n");
- $data = fread($handle, 1024);
- list($header, $lost) = explode("\r\n\r\n", $data);
- eregi("^[^\r^\n]*", $data, $piece);
- $pieces = explode(' ', $piece[0]);
- $protocol = $pieces[0];
- $code = $pieces[1];
-
- foreach (explode("\r\n", $header) as $val) {
- if ($type = stristr($val, "content-type:")) {
- $type = explode(':', $type);
-
- foreach ($this->config['stream_types'] as $t) {
- if (preg_match('/'.str_replace('/', '\/', $t).'/i', $type[1])) {
- $match = TRUE;
- break;
- }
- }
-
- $type = array(
- 'type' => trim($type[1]),
- 'valid' => $match === TRUE ? TRUE : FALSE
- );
- break;
- }
- }
-
- return array('connect' => TRUE,
- 'host' => $host,
- 'port' => $port,
- 'uri' => $uri,
- 'code' => $code,
- 'header' => $header,
- 'type' => $type
- );
- }
-
- return array('connect' => FALSE,
- 'host' => $host,
- 'port' => $port,
- );
- }
-}
+uiBase($config);
+ }
+
+ /**
+ * performAction
+ *
+ * Perform a frontend action
+ * map to a function called action_.inc.php
+ *
+ * @param actionName string, name of a action
+ * @param params array[], request vars
+ */
+ function performAction( $actionName, $params )
+ {
+ $actionFunctionName = 'action_' . $actionName ;
+ $actionFunctionFileName = ACTION_BASE . '/action_' . $actionName . '.inc.php' ;
+ if ( file_exists( $actionFunctionFileName ) )
+ {
+ include ( $actionFunctionFileName ) ;
+ if ( method_exists( $actionFunctionName ) )
+ {
+ $actionFunctionName( $this, $params ) ;
+ }
+ }
+ }
+
+ // --- error handling ---
+ /**
+ * getAlertMsg
+ *
+ * extractes error message from session var
+ *
+ * @return string
+ */
+
+
+ function getAlertMsg()
+ {
+ if ($_SESSION['alertMsg']) {
+ $this->alertMsg = $_SESSION['alertMsg'];
+ unset($_SESSION['alertMsg']);
+
+ return $this->alertMsg;
+ }
+ return false;
+ }
+
+
+ // --- template feed ---
+ /**
+ * login
+ *
+ * create a login-form
+ *
+ * @param string $faillogin login name of failed login process
+ * @return string (html)
+ */
+ function login(&$mask)
+ {
+ $form = new HTML_QuickForm('login', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ $this->_parseArr2Form($form, $mask['languages']);
+ $this->_parseArr2Form($form, $mask['login']);
+
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+
+ return $renderer->toArray();
+ }
+
+
+
+
+ /**
+ * getUserInfo
+ *
+ * get info about logged in user
+ *
+ * @return array uname=>user Name, uid=>user ID
+ */
+ function getUserInfo()
+ {
+ return array('uname'=>$this->gb->getSessLogin($this->sessid),
+ 'uid' =>$this->gb->getSessUserId($this->sessid));
+ }
+
+ /**
+ * getStructure
+ *
+ * get directory-structure
+ *
+ * @param int local ID of start-directory
+ * @param boolean $homedir TRUE: get homedir of current user
+
+ * @eturn array tree of directory with subs
+ */
+ function getStructure($id)
+ {
+ $data = array(
+ 'pathdata' => $this->gb->getPath($id, $this->sessid),
+ 'listdata' => $this->gb->getObjType($id)=='Folder' ? $this->gb->listFolder($id, $this->sessid) : array(),
+ );
+ if($_REQUEST['tree']=='Y'){
+ $tmp = $this->gb->getSubTree($id, $this->sessid);
+ foreach ($tmp as $key=>$val) {
+ $val['type'] = $this->gb->getFileType($val['id']);
+ $data['treedata'][$key] = $val;
+ }
+ }
+ if(PEAR::isError($data['listdata'])){
+ $data['msg'] = $data['listdata']->getMessage();
+ $data['listdata'] = array();
+ return FALSE;
+ }
+ foreach ($data['listdata'] as $key=>$val) {
+ if ($val['type'] != 'Folder')
+ $data['listdata'][$key]['title'] = $this->_getMDataValue($val['id'], UI_MDATA_KEY_TITLE);
+ else
+ $data['listdata'][$key]['title'] = $val['name'];
+ }
+ #print_r($data);
+ return $data;
+ }
+
+
+ /**
+ * fileForm
+ *
+ * create a form for file-upload
+ *
+ * @param int local $id of directory to store file
+ *
+ * @eturn string (html)
+ */
+ function fileForm($parms)
+ {
+ extract ($parms);
+ $mask =& $GLOBALS['ui_fmask']['file'];
+
+ $form = new HTML_QuickForm('uploadFile', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ if (!$this->STATIONPREFS['stationMaxfilesize']) $form->setMaxFileSize(strtr(ini_get('upload_max_filesize'), array('M'=>'000000', 'k'=>'000')));
+ else $form->setMaxFileSize($this->STATIONPREFS['stationMaxfilesize']);
+ $form->setConstants(array('folderId' => $folderId,
+ 'id' => $id,
+ 'act' => $id ? 'editItem' : 'addFileData'));
+ $this->_parseArr2Form($form, $mask);
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+ return $renderer->toArray();
+ }
+
+
+ /**
+ * webstreamForm
+ *
+ * create a form to add Webstream
+ *
+ * @param int local $id of directory to store stream
+ *
+ * @eturn string (html)
+ */
+ function webstreamForm($parms)
+ {
+ extract ($parms);
+ $mask =& $GLOBALS['ui_fmask']['webstream'];
+
+ $form = new HTML_QuickForm('addWebstream', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ $const = array('folderId' => $folderId,
+ 'id' => $id,
+ 'act' => $id ? 'editWebstreamData' : 'addWebstreamData',
+ 'title' => $id ? $this->_getMDataValue($id, UI_MDATA_KEY_TITLE) : NULL,
+ 'url' => $id ? $this->_getMDataValue($id, UI_MDATA_KEY_URL) : 'http://',
+ 'length' => $id ? preg_replace("/\.[0-9]{1,6}/", "", $this->_getMDataValue($id, UI_MDATA_KEY_DURATION)) : NULL
+ );
+ $form->setConstants($const);
+ $this->_parseArr2Form($form, $mask);
+
+ /*
+ $form->addGroupRule('grp',
+ array(
+ 'url' => array(
+ array(tra('Missing URL'), 'required'),
+ array(tra('URL structure is invalid'), 'regex', UI_REGEX_URL)
+ )
+ ),
+ NULL,
+ NULL,
+ NULL,
+ 'client'
+ );
+ $form->_rules['grp[url]'][0][validation] = 'client';
+ $form->_rules['grp[url]'][1][validation] = 'client';
+ */
+
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+ return $renderer->toArray();
+ }
+
+
+ /**
+ * getPermissions
+ *
+ * get permissions for local object ID
+ *
+ * @param $id int local ID (file/folder)
+ *
+ * @return array
+ */
+ function permissions($id)
+ {
+ return array('pathdata' => $this->gb->getPath($id),
+ 'perms' => $this->gb->getObjPerms($id),
+ 'actions' => $this->gb->getAllowedActions($this->gb->getObjType($id)),
+ 'subjects' => $this->gb->getSubjects(),
+ 'id' => $id,
+ 'loggedAs' => $this->login
+ );
+ }
+
+
+ /**
+ * getFile
+ *
+ * Call access method and show access path.
+ * Example only - not really useable.
+ * TODO: resource should be released by release method call
+ *
+ * @param id int, local id of accessed file
+ */
+ function getFile($id)
+ {
+ $r = $this->gb->access($id, $this->sessid);
+ if(PEAR::isError($r)) $_SESSION['alertMsg'] = $r->getMessage();
+ else print_r($r);
+ }
+
+ /**
+ * getMdata
+ *
+ * Get file's metadata as XML
+ *
+ * Note: this does not work right with multiple languages
+ *
+ * @param id int, local id of stored file
+ * @return array
+ */
+ function getMdata($id)
+ {
+ return($this->gb->getMdata($id, $this->sessid));
+ }
+
+
+ function getMDataArr($param)
+ {
+ extract($param);
+ static $records, $relations;
+ $arr =& $records[$id];
+
+ if (is_array($arr)) return array('metadata' => $arr);
+
+ if (!is_array($relations)) include dirname(__FILE__).'/formmask/mdata_relations.inc.php';
+
+ $arr = $this->gb->getMDataArray($id, $this->sessid);
+ if (!is_array($arr)) return FALSE;
+
+ foreach ($arr as $key=>$val) {
+ if (is_array($val)) {
+ if ($val[$this->langid]) $val = $val[$this->langid];
+ else $val = $val[UI_DEFAULT_LANGID];
+ }
+
+ if ($relations[$key]) {
+ unset($arr[$key]);
+ $arr[$relations[tra($key)]] = $val;
+ } else {
+ $arr[$key] = $val;
+ }
+ }
+
+ ksort($arr);
+ #print_r($arr);
+ return array('metadata' => $arr);
+ }
+
+
+ /**
+ * metaDataForm
+ *
+ * create a form to edit Metadata
+ *
+ * @param id int
+ * @return string (html)
+ */
+ function metaDataForm($parms)
+ {
+ include dirname(__FILE__).'/formmask/metadata.inc.php';
+
+ extract ($parms);
+ $langid = $langid ? $langid : UI_DEFAULT_LANGID;
+
+ $form = new HTML_QuickForm('langswitch', UI_STANDARD_FORM_METHOD, UI_BROWSER);
+ $this->_parseArr2Form($form, $mask['langswitch']);
+ $form->setConstants(array('target_langid' => $langid));
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+ $output['langswitch'] = $renderer->toArray();
+
+ $form = new HTML_QuickForm('editMetaData', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ $this->_parseArr2Form($form, $mask['basics']);
+ $form->setConstants(array('act' => 'editMetaData',
+ 'id' => $id,
+ 'curr_langid' => $langid,
+ )
+ );
+
+ ## convert element names to be unique over different forms-parts, add javascript to spread values over parts, add existing values from database
+ foreach ($mask['pages'] as $key=>$val) {
+ foreach ($mask['pages'][$key] as $k=>$v) {
+ $mask['pages'][$key][$k]['element'] = $key.'___'.$this->_formElementEncode($v['element']);
+ $mask['pages'][$key][$k]['attributes'] = array_merge($mask['pages'][$key][$k]['attributes'], array('onChange' => "spread(this, '".$this->_formElementEncode($v['element'])."')"));
+ ## load data from GreenBox
+ if ($getval = $this->_getMDataValue($id, $v['element'], $langid, NULL)) {
+ $mask['pages'][$key][$k]['default'] = $getval;
+ $mask['pages'][$key][$k]['attributes']['onFocus'] = 'MData_confirmChange(this)';
+ }
+ }
+ $form->addElement('static', NULL, NULL, "");
+ $this->_parseArr2Form($form, $mask['pages'][$key]);
+ $this->_parseArr2Form($form, $mask['buttons']);
+ $form->addElement('static', NULL, NULL, "
");
+ }
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+ $output['pages'][] = $renderer->toArray();
+ #print_r($output);
+ return $output;
+ }
+
+
+ function changeStationPrefs(&$mask)
+ {
+ $form = new HTML_QuickForm('changeStationPrefs', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ foreach($mask as $key=>$val) {
+ $p = $this->gb->loadGroupPref($this->sessid, 'StationPrefs', $val['element']);
+ if (is_string($p)) $mask[$key]['default'] = $p;
+ };
+ $this->_parseArr2Form($form, $mask);
+ $renderer =& new HTML_QuickForm_Renderer_Array(true, true);
+ $form->accept($renderer);
+ return $renderer->toArray();
+ }
+
+
+ /**
+ * testStream
+ *
+ * Test if URL seems to be valid
+ *
+ * @param url string, full URL to test
+ * @return array()
+ */
+ function testStream($url)
+ {
+ touch(UI_TESTSTREAM_MU3_TMP);
+ $handle = fopen(UI_TESTSTREAM_MU3_TMP, "w");
+ fwrite($handle, $url);
+ fclose($handle);
+
+ $parse = parse_url($url);
+ $host = $parse["host"];
+ $port = $parse["port"] ? $parse["port"] : 80;
+ $uri = $parse["path"] ? $parse['path'] : '/'.($parse["query"] ? '?'.$parse["query"] : '');
+
+
+ if ($handle = @fsockopen($host, $port, $errno, $errstr, 10)) {
+ fputs($handle, "GET $uri HTTP/1.0\r\n");
+ fputs($handle, "Host: $host:$port\r\n\r\n");
+ $data = fread($handle, 1024);
+ list($header, $lost) = explode("\r\n\r\n", $data);
+ eregi("^[^\r^\n]*", $data, $piece);
+ $pieces = explode(' ', $piece[0]);
+ $protocol = $pieces[0];
+ $code = $pieces[1];
+
+ foreach (explode("\r\n", $header) as $val) {
+ if ($type = stristr($val, "content-type:")) {
+ $type = explode(':', $type);
+
+ foreach ($this->config['stream_types'] as $t) {
+ if (preg_match('/'.str_replace('/', '\/', $t).'/i', $type[1])) {
+ $match = TRUE;
+ break;
+ }
+ }
+
+ $type = array(
+ 'type' => trim($type[1]),
+ 'valid' => $match === TRUE ? TRUE : FALSE
+ );
+ break;
+ }
+ }
+
+ return array('connect' => TRUE,
+ 'host' => $host,
+ 'port' => $port,
+ 'uri' => $uri,
+ 'code' => $code,
+ 'header' => $header,
+ 'type' => $type
+ );
+ }
+
+ return array('connect' => FALSE,
+ 'host' => $host,
+ 'port' => $port,
+ );
+ }
+}
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_browser_init.php b/livesupport/modules/htmlUI/var/ui_browser_init.php
index 07cdf9e8f..44f45dde4 100644
--- a/livesupport/modules/htmlUI/var/ui_browser_init.php
+++ b/livesupport/modules/htmlUI/var/ui_browser_init.php
@@ -1,58 +1,58 @@
-handler();
-
-
-## load Smarty+filters ##############################################
-require_once dirname(__FILE__).'/ui_smartyExtensions.inc.php';
-#$Smarty->load_filter('output', 'trimwhitespace');
-#$Smarty->load_filter('post', 'template_marker');
-$Smarty->load_filter('output', 'localizer');
-
-
-## some basic things ################################################
-foreach (get_defined_constants() as $k=>$v) {
- $Smarty->assign($k, $v);
-}
-
-$Smarty->assign('ACT', $_REQUEST['act']);
-$Smarty->assign('CONFIG', $config);
-$Smarty->assign('START', array(
- 'id' => &$uiBrowser->id,
- 'pid' => &$uiBrowser->pid,
- 'fid' => &$uiBrowser->fid,
- 'sessid' => &$uiBrowser->sessid)
- );
-$Smarty->assign('USER', array(
- 'sessid' => &$uiBrowser->sessid,
- 'userid' => &$uiBrowser->userid,
- 'login' => &$uiBrowser->login)
- );
-$uiBrowser->loadStationPrefs($ui_fmask['stationPrefs']);
-$Smarty->assign('STATIONPREFS', $uiBrowser->STATIONPREFS);
-$Smarty->assign_by_ref('_REQUEST', &$_REQUEST);
-
-## retransfer incomplete formdata from SESSION to POST-data #########
-if (is_array($_SESSION['retransferFormData'])){
- foreach($_SESSION['retransferFormData'] as $k=>$v){
- $_POST[$k] = $v;
- }
- unset($_SESSION['retransferFormData']);
-}
+handler();
+
+
+## load Smarty+filters ##############################################
+require_once dirname(__FILE__).'/ui_smartyExtensions.inc.php';
+#$Smarty->load_filter('output', 'trimwhitespace');
+#$Smarty->load_filter('post', 'template_marker');
+$Smarty->load_filter('output', 'localizer');
+
+
+## some basic things ################################################
+foreach (get_defined_constants() as $k=>$v) {
+ $Smarty->assign($k, $v);
+}
+
+$Smarty->assign('ACT', $_REQUEST['act']);
+$Smarty->assign('CONFIG', $config);
+$Smarty->assign('START', array(
+ 'id' => &$uiBrowser->id,
+ 'pid' => &$uiBrowser->pid,
+ 'fid' => &$uiBrowser->fid,
+ 'sessid' => &$uiBrowser->sessid)
+ );
+$Smarty->assign('USER', array(
+ 'sessid' => &$uiBrowser->sessid,
+ 'userid' => &$uiBrowser->userid,
+ 'login' => &$uiBrowser->login)
+ );
+$uiBrowser->loadStationPrefs($ui_fmask['stationPrefs']);
+$Smarty->assign('STATIONPREFS', $uiBrowser->STATIONPREFS);
+$Smarty->assign_by_ref('_REQUEST', &$_REQUEST);
+
+## retransfer incomplete formdata from SESSION to POST-data #########
+if (is_array($_SESSION['retransferFormData'])){
+ foreach($_SESSION['retransferFormData'] as $k=>$v){
+ $_POST[$k] = $v;
+ }
+ unset($_SESSION['retransferFormData']);
+}
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_conf.php b/livesupport/modules/htmlUI/var/ui_conf.php
index b74fcd6c9..67662e9e3 100755
--- a/livesupport/modules/htmlUI/var/ui_conf.php
+++ b/livesupport/modules/htmlUI/var/ui_conf.php
@@ -1,156 +1,156 @@
-/tmp/scheduler.log 2>&1 &'); ## adjust the path here
-define('UI_SCHEDULER_DAEMON_NAME', 'scheduler'); ## this is just name of scheduler process to grep in process list for it
-
-## Warning/Error level
-define('UI_VERBOSE', FALSE);
-define('UI_WARNING', TRUE);
-define('UI_ERROR', TRUE);
-
-## Local settings
-define('UI_DEFAULT_LANGID', 'en_US');
-#define('UI_UPLOAD_LANGID', $_SESSION['langid']);
-define('UI_UPLOAD_LANGID', UI_DEFAULT_LANGID);
-define('UI_TIMEZONEOFFSET', date('Z'));
-
-## Basic scripts
-define('UI_HANDLER', 'ui_handler.php');
-define('UI_BROWSER', 'ui_browser.php');
-
-## HTML Form stuff
-define('UI_FORM_STANDARD_METHOD', 'POST');
-define('UI_INPUT_STANDARD_SIZE', 50);
-define('UI_INPUT_STANDARD_MAXLENGTH', 255);
-define('UI_TEXTAREA_STANDART_ROWS', 5);
-define('UI_TEXTAREA_STANDART_COLS', 32);
-define('UI_BUTTON_STYLE', 'button');
-define('UI_QFORM_REQUIRED', '../templates/sub/form_required.tpl');
-define('UI_QFORM_REQUIREDNOTE', '../templates/sub/form_requirednote.tpl');
-define('UI_QFORM_ERROR', '../templates/sub/form_error.tpl');
-define('UI_REGEX_URL', '/^(ht|f)tps?:\/\/[^ ]+$/');
-
-## DB ls_pref keys
-define('UI_PL_ACCESSTOKEN_KEY', 'playlistToken');
-define('UI_SCRATCHPAD_KEY', 'djBagContents');
-define('UI_SCRATCHPAD_MAXLENGTH_KEY', 'djBagMaxlength');
-#define('UI_SCRATCHPAD_REGEX', '/^[0-9a-f]{16}:[0-9]{4}-[0-9]{2}-[0-9]{2}$/');
-
-## Session Keys
-define('UI_SCRATCHPAD_SESSNAME', 'SCRATCHPAD');
-define('UI_STATIONINFO_SESSNAME', 'STATIONINFO');
-define('UI_BROWSE_SESSNAME', 'L_BROWSE');
-define('UI_SEARCH_SESSNAME', 'L_SEARCH');
-define('UI_PLAYLIST_SESSNAME', 'PLAYLIST');
-
-## Metadata Keys
-define('UI_MDATA_KEY_TITLE', 'dc:title');
-define('UI_MDATA_KEY_CREATOR', 'dc:creator');
-define('UI_MDATA_KEY_DURATION', 'dcterms:extent');
-define('UI_MDATA_KEY_URL', 'ls:url');
-define('UI_MDATA_KEY_FORMAT', 'dc:format');
-define('UI_MDATA_KEY_DESCRIPTION', 'dc:description');
-define('UI_MDATA_KEY_CHANNELS', 'ls:channels');
-define('UI_MDATA_KEY_SAMPLERATE', 'ls:samplerate');
-define('UI_MDATA_KEY_BITRATE', 'ls:bitrate');
-define('UI_MDATA_KEY_ENCODER', 'ls:encoder');
-define('UI_MDATA_VALUE_FORMAT_FILE', 'File');
-define('UI_MDATA_VALUE_FORMAT_STREAM', 'live stream');
-
-## Search/Browse preferences
-define('UI_SIMPLESEARCH_FILETYPE', 'File');
-define('UI_SIMPLESEARCH_OPERATOR', 'OR');
-define('UI_SIMPLESEARCH_LIMIT', 10);
-define('UI_SIMPLESEARCH_ROWS', 3);
-define('UI_SIMPLESEARCH_CAT1', 'dc:title');
-define('UI_SIMPLESEARCH_OP1', 'partial');
-define('UI_SIMPLESEARCH_CAT2', 'dc:creator');
-define('UI_SIMPLESEARCH_OP2', 'partial');
-define('UI_SIMPLESEARCH_CAT3', 'dc:source');
-define('UI_SIMPLESEARCH_OP3', 'partial');
-
-define('UI_SEARCH_MAX_ROWS', 8);
-define('UI_SEARCH_DEFAULT_LIMIT', 10);
-define('UI_SEARCHRESULTS_DELTA', 4);
-
-define('UI_BROWSERESULTS_DELTA', 4);
-define('UI_BROWSE_DEFAULT_KEY_1', 'dc:type');
-define('UI_BROWSE_DEFAULT_KEY_2', 'dc:creator');
-define('UI_BROWSE_DEFAULT_KEY_3', 'dc:source');
-define('UI_BROWSE_DEFAULT_LIMIT', 10);
-
-## Scheduler / Calendar
-define('UI_SCHEDULER_FIRSTWEEKDAY', 1);
-define('UI_SCHEDULER_DEFAULT_VIEW', 'day');
-define('UI_SCHEDULER_PAUSE_PL2PL', '0 seconds');
-
-## File types
-define('UI_FILETYPE_ANY', 'file');
-define('UI_FILETYPE_PLAYLIST', 'playlist');
-define('UI_FILETYPE_AUDIOCLIP', 'audioClip');
-define('UI_FILETYPE_WEBSTREAM', 'webstream');
-
-## Playlist elements
-define('UI_PL_ELEM_PLAYLIST', 'playlistElement');
-define('UI_PL_ELEM_FADEINFO', 'fadeInfo');
-define('UI_PL_ELEM_FADEIN', 'fadeIn');
-define('UI_PL_ELEM_FADEOUT', 'fadeOut');
-
-
-
-## LS stuff
-require_once dirname(__FILE__).'/../../storageServer/var/conf.php';
-## extent config
-$config = array_merge($config,
- array(
- 'file_types' => array(
- '.mp3',
- '.wav',
- '.ogg'
- ),
- 'stream_types' => array(
- 'application/ogg',
- 'audio/mpeg'
- ),
- 'languages' => array(
- 'ar_JO' => 'Arabic(JO)',
- 'am_AM' => 'Armenian(AM)',
- 'en_GB' => 'English (GB)',
- 'en_US' => 'English (US)',
- 'es_CO' => 'Español (CO)',
- 'cz_CZ' => 'ÄŒesky (CZ)',
- 'de_DE' => 'Deutsch (DE)',
- 'hu_HU' => 'Magyar (HU)',
- 'nl_NL' => 'Nederlands (NL)',
- 'sr_CS' => 'Srpski (CS)',
- 'ru_RU' => 'Russia(RU)'
- ),
- )
-);
-require_once dirname(__FILE__).'/ui_base.inc.php';
-require_once dirname(__FILE__).'/ui_scratchpad.class.php';
-require_once dirname(__FILE__).'/ui_playlist.class.php';
-require_once dirname(__FILE__).'/ui_search.class.php';
-require_once dirname(__FILE__).'/ui_browse.class.php';
-require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
-require_once dirname(__FILE__).'/formmask/generic.inc.php';
-require_once dirname(__FILE__).'/ui_calendar.class.php';
-require_once dirname(__FILE__).'/ui_scheduler.class.php';
-require_once dirname(__FILE__).'/ui_subjects.class.php';
-require_once dirname(__FILE__).'/ui_jscom.php';
-
-## well known classes
-require_once 'DB.php';
-require_once 'HTML/QuickForm.php';
-
-#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);
-#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
-PEAR::setErrorHandling(PEAR_ERROR_RETURN);
-#PEAR::setErrorHandling(PEAR_ERROR_PRINT);
+/tmp/scheduler.log 2>&1 &'); ## adjust the path here
+define('UI_SCHEDULER_DAEMON_NAME', 'scheduler'); ## this is just name of scheduler process to grep in process list for it
+
+## Warning/Error level
+define('UI_VERBOSE', FALSE);
+define('UI_WARNING', TRUE);
+define('UI_ERROR', TRUE);
+
+## Local settings
+define('UI_DEFAULT_LANGID', 'en_US');
+#define('UI_UPLOAD_LANGID', $_SESSION['langid']);
+define('UI_UPLOAD_LANGID', UI_DEFAULT_LANGID);
+define('UI_TIMEZONEOFFSET', date('Z'));
+
+## Basic scripts
+define('UI_HANDLER', 'ui_handler.php');
+define('UI_BROWSER', 'ui_browser.php');
+
+## HTML Form stuff
+define('UI_FORM_STANDARD_METHOD', 'POST');
+define('UI_INPUT_STANDARD_SIZE', 50);
+define('UI_INPUT_STANDARD_MAXLENGTH', 255);
+define('UI_TEXTAREA_STANDART_ROWS', 5);
+define('UI_TEXTAREA_STANDART_COLS', 32);
+define('UI_BUTTON_STYLE', 'button');
+define('UI_QFORM_REQUIRED', '../templates/sub/form_required.tpl');
+define('UI_QFORM_REQUIREDNOTE', '../templates/sub/form_requirednote.tpl');
+define('UI_QFORM_ERROR', '../templates/sub/form_error.tpl');
+define('UI_REGEX_URL', '/^(ht|f)tps?:\/\/[^ ]+$/');
+
+## DB ls_pref keys
+define('UI_PL_ACCESSTOKEN_KEY', 'playlistToken');
+define('UI_SCRATCHPAD_KEY', 'djBagContents');
+define('UI_SCRATCHPAD_MAXLENGTH_KEY', 'djBagMaxlength');
+#define('UI_SCRATCHPAD_REGEX', '/^[0-9a-f]{16}:[0-9]{4}-[0-9]{2}-[0-9]{2}$/');
+
+## Session Keys
+define('UI_SCRATCHPAD_SESSNAME', 'SCRATCHPAD');
+define('UI_STATIONINFO_SESSNAME', 'STATIONINFO');
+define('UI_BROWSE_SESSNAME', 'L_BROWSE');
+define('UI_SEARCH_SESSNAME', 'L_SEARCH');
+define('UI_PLAYLIST_SESSNAME', 'PLAYLIST');
+
+## Metadata Keys
+define('UI_MDATA_KEY_TITLE', 'dc:title');
+define('UI_MDATA_KEY_CREATOR', 'dc:creator');
+define('UI_MDATA_KEY_DURATION', 'dcterms:extent');
+define('UI_MDATA_KEY_URL', 'ls:url');
+define('UI_MDATA_KEY_FORMAT', 'dc:format');
+define('UI_MDATA_KEY_DESCRIPTION', 'dc:description');
+define('UI_MDATA_KEY_CHANNELS', 'ls:channels');
+define('UI_MDATA_KEY_SAMPLERATE', 'ls:samplerate');
+define('UI_MDATA_KEY_BITRATE', 'ls:bitrate');
+define('UI_MDATA_KEY_ENCODER', 'ls:encoder');
+define('UI_MDATA_VALUE_FORMAT_FILE', 'File');
+define('UI_MDATA_VALUE_FORMAT_STREAM', 'live stream');
+
+## Search/Browse preferences
+define('UI_SIMPLESEARCH_FILETYPE', 'File');
+define('UI_SIMPLESEARCH_OPERATOR', 'OR');
+define('UI_SIMPLESEARCH_LIMIT', 10);
+define('UI_SIMPLESEARCH_ROWS', 3);
+define('UI_SIMPLESEARCH_CAT1', 'dc:title');
+define('UI_SIMPLESEARCH_OP1', 'partial');
+define('UI_SIMPLESEARCH_CAT2', 'dc:creator');
+define('UI_SIMPLESEARCH_OP2', 'partial');
+define('UI_SIMPLESEARCH_CAT3', 'dc:source');
+define('UI_SIMPLESEARCH_OP3', 'partial');
+
+define('UI_SEARCH_MAX_ROWS', 8);
+define('UI_SEARCH_DEFAULT_LIMIT', 10);
+define('UI_SEARCHRESULTS_DELTA', 4);
+
+define('UI_BROWSERESULTS_DELTA', 4);
+define('UI_BROWSE_DEFAULT_KEY_1', 'dc:type');
+define('UI_BROWSE_DEFAULT_KEY_2', 'dc:creator');
+define('UI_BROWSE_DEFAULT_KEY_3', 'dc:source');
+define('UI_BROWSE_DEFAULT_LIMIT', 10);
+
+## Scheduler / Calendar
+define('UI_SCHEDULER_FIRSTWEEKDAY', 1);
+define('UI_SCHEDULER_DEFAULT_VIEW', 'day');
+define('UI_SCHEDULER_PAUSE_PL2PL', '0 seconds');
+
+## File types
+define('UI_FILETYPE_ANY', 'file');
+define('UI_FILETYPE_PLAYLIST', 'playlist');
+define('UI_FILETYPE_AUDIOCLIP', 'audioClip');
+define('UI_FILETYPE_WEBSTREAM', 'webstream');
+
+## Playlist elements
+define('UI_PL_ELEM_PLAYLIST', 'playlistElement');
+define('UI_PL_ELEM_FADEINFO', 'fadeInfo');
+define('UI_PL_ELEM_FADEIN', 'fadeIn');
+define('UI_PL_ELEM_FADEOUT', 'fadeOut');
+
+
+
+## LS stuff
+require_once dirname(__FILE__).'/../../storageServer/var/conf.php';
+## extent config
+$config = array_merge($config,
+ array(
+ 'file_types' => array(
+ '.mp3',
+ '.wav',
+ '.ogg'
+ ),
+ 'stream_types' => array(
+ 'application/ogg',
+ 'audio/mpeg'
+ ),
+ 'languages' => array(
+ 'ar_JO' => 'Arabic(JO)',
+ 'am_AM' => 'Armenian(AM)',
+ 'en_GB' => 'English (GB)',
+ 'en_US' => 'English (US)',
+ 'es_CO' => 'Español (CO)',
+ 'cz_CZ' => 'ÄŒesky (CZ)',
+ 'de_DE' => 'Deutsch (DE)',
+ 'hu_HU' => 'Magyar (HU)',
+ 'nl_NL' => 'Nederlands (NL)',
+ 'sr_CS' => 'Srpski (CS)',
+ 'ru_RU' => 'Russia(RU)'
+ ),
+ )
+);
+require_once dirname(__FILE__).'/ui_base.inc.php';
+require_once dirname(__FILE__).'/ui_scratchpad.class.php';
+require_once dirname(__FILE__).'/ui_playlist.class.php';
+require_once dirname(__FILE__).'/ui_search.class.php';
+require_once dirname(__FILE__).'/ui_browse.class.php';
+require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
+require_once dirname(__FILE__).'/formmask/generic.inc.php';
+require_once dirname(__FILE__).'/ui_calendar.class.php';
+require_once dirname(__FILE__).'/ui_scheduler.class.php';
+require_once dirname(__FILE__).'/ui_subjects.class.php';
+require_once dirname(__FILE__).'/ui_jscom.php';
+
+## well known classes
+require_once 'DB.php';
+require_once 'HTML/QuickForm.php';
+
+#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);
+#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
+PEAR::setErrorHandling(PEAR_ERROR_RETURN);
+#PEAR::setErrorHandling(PEAR_ERROR_PRINT);
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_handler.class.php b/livesupport/modules/htmlUI/var/ui_handler.class.php
index d4745e647..3184ada49 100644
--- a/livesupport/modules/htmlUI/var/ui_handler.class.php
+++ b/livesupport/modules/htmlUI/var/ui_handler.class.php
@@ -1,536 +1,536 @@
-uiBase($config);
- }
-
-
- // --- authentication ---
- /**
- * login
- *
- * Login to the storageServer.
- * It set sessid to the cookie with name defined in ../conf.php
- *
- * @param login string, username
- * @param pass string, password
- */
- function login(&$formdata, &$mask)
- {
- #$this->_cleanArray($_SESSION);
-
- if (!$this->_validateForm($formdata, $mask)) {
- $_SESSION['retransferFormData']['login'] = $formdata['login'];
- $this->redirUrl = UI_BROWSER.'?popup[]=login';
- return FALSE;
- }
-
- $sessid = $this->gb->login($formdata['login'], $formdata['pass']);
-
- if (!$sessid || PEAR::isError($sessid)){
- $this->_retMsg('Login failed');
- $_SESSION['retransferFormData']['login'] = $formdata['login'];
- $this->redirUrl = UI_BROWSER.'?popup[]=login';
- return FALSE;
- }
-
- #setcookie($this->config['authCookieName'], $sessid);
- echo "";
- ob_flush();
-
- $id = $this->gb->getObjId($formdata['login'], $this->gb->storId);
-
- if (PEAR::isError($id)) {
- $this->_retMsg('Access to home directory failed.');
- $_SESSION['retransferFormData']['login']=$formdata['login'];
- $this->redirUrl = UI_BROWSER.'?popup[]=login';
- return FALSE;
- }
-
- $this->sessid = $sessid;
- $this->langid = $formdata['langid'];
- $this->redirUrl = UI_BROWSER.'?popup[]=_2SCHEDULER&popup[]=_close';
-
- return TRUE;
- }
-
- /**
- * logout
- *
- * Logut from storageServer, takes sessid from cookie
- *
- * @param $trigger_login boolean, trigger login popup after logout
- *
- */
- function logout($trigger_login = FALSE)
- {
- $this->gb->logout($this->sessid);
- #setcookie($this->config['authCookieName'], '');
- echo "";
- ob_clean();
- session_destroy();
-
- if ($trigger_login)
- $this->redirUrl = UI_BROWSER.'?popup[]=_clear_parent&popup[]=login';
- else $this->redirUrl = UI_BROWSER.'?popup[]=_clear_parent&popup[]=_close';
- }
-
- // --- files ---
- /**
- * uploadFile
- *
- * Provides file upload and store it to the storage
- *
- * @param formdata array, submitted text and file
- * @param id int, destination folder id
- */
- function uploadFile(&$formdata, &$mask, $replace=NULL)
- {
- if ($this->test4audioType($formdata['mediafile']['name']) === FALSE) {
- if (UI_ERROR) $this->_retMsg('$1 uses an unsupported file type.', $formdata['mediafile']['name']);
- $this->redirUrl = UI_BROWSER."?act=editFile&folderId=".$formdata['folderId'];
- return FALSE;
- }
-
- $id = $formdata['id'];
- $folderId = $formdata['folderId'];
-
- if ($this->gb->getFileType($folderId) != 'Folder') {
- $this->_retMsg('Target is not Folder');
- $this->redirUrl = UI_BROWSER."?act=fileList";
- return FALSE;
- }
-
- if (!$this->_validateForm($formdata, $mask)) {
- $this->redirUrl = UI_BROWSER."?act=editFile&id=".$id;
- return FALSE;
- }
-
- $tmpgunid = md5(microtime().$_SERVER['SERVER_ADDR'].rand()."org.mdlf.livesupport");
- $ntmp = $this->gb->bufferDir.'/'.$tmpgunid;
- move_uploaded_file($formdata['mediafile']['tmp_name'], $ntmp);
- chmod($ntmp, 0664);
-
- $r = $this->gb->putFile($folderId, $formdata['mediafile']['name'], $ntmp, NULL, $this->sessid, $replace);
- @unlink($ntmp);
-
- if(PEAR::isError($r)) {
- $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER."?act=editFile&id=".$id;
- return FALSE;
- }
-
- $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['mediafile']['name']);
- $this->transMData($r);
-
- if (UI_UPLOAD_LANGID !== UI_DEFAULT_LANGID) { // set records in default language too
- $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['mediafile']['name'], UI_UPLOAD_LANGID);
- $this->transMData($r, UI_UPLOAD_LANGID);
- }
-
- $this->redirUrl = UI_BROWSER."?act=addFileMData&id=$r";
- if (UI_VERBOSE) $this->_retMsg('Audioclip Data saved');
- return $r;
- }
-
-
- function test4audioType($filename)
- {
- foreach ($this->config['file_types'] as $t) {
- if (preg_match('/'.str_replace('/', '\/', $t).'$/i', $filename))
- return TRUE;
- }
-
- return FALSE;
- }
-
-
- function transMData($id, $langid=UI_DEFAULT_LANGID)
- {
- include dirname(__FILE__).'/formmask/metadata.inc.php';
-
- $ia = $this->gb->analyzeFile($id, $this->sessid);
- $this->_setMdataValue($id, UI_MDATA_KEY_DURATION, $this->gb->_secsToPlTime($ia['playtime_seconds']));
- $this->_setMDataValue($id, UI_MDATA_KEY_FORMAT, UI_MDATA_VALUE_FORMAT_FILE);
-
- // some data from raw audio
- if ($ia['audio']['channels']) $this->_setMDataValue($id, UI_MDATA_KEY_CHANNELS, $ia['audio']['channels']);
- if ($ia['audio']['sample_rate'])$this->_setMDataValue($id, UI_MDATA_KEY_SAMPLERATE, $ia['audio']['sample_rate']);
- if ($ia['audio']['bitrate']) $this->_setMDataValue($id, UI_MDATA_KEY_BITRATE, $ia['audio']['bitrate']);
- if ($ia['audio']['codec']) $this->_setMDataValue($id, UI_MDATA_KEY_ENCODER, $ia['audio']['codec']);
-
- // from id3 Tags
- foreach ($mask['pages'] as $key=>$val) { ## loop main, music, talk
- foreach ($mask['pages'][$key] as $k=>$v) { ## loop throught elements
- if (is_array($v['id3'])) {
- foreach ($v['id3'] as $name) { ## loop throught list of equivalent id3-tags
- $key = strtolower($name);
- if ($ia['comments'][$key][0]) {
- $this->_setMdataValue($id, $v['element'], str_replace("'", "\\'", utf8_encode($ia['comments'][$key][0])), $langid);
- }
- }
- }
- }
- }
- }
-
-
- /**
- * addWebstream
- *
- * Provides file upload and store it to the storage
- *
- * @param formdata array, submitted text and file
- * @param id int, destination folder id
- */
- function addWebstream(&$formdata, &$mask)
- {
- $id = $formdata['id'];
- $folderId = $formdata['folderId'];
-
- if ($this->gb->getFileType($folderId) != 'Folder') {
- $this->_retMsg ('Target is not Folder');
- $this->redirUrl = UI_BROWSER."?act=fileList";
- return FALSE;
- }
- if (!$this->_validateForm($formdata, $mask)) {
- $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
- return FALSE;
- }
-
- $r = $this->gb->storeWebstream($folderId, $formdata['title'], NULL, $this->sessid, NULL, $formdata['url']);
-
- if(PEAR::isError($r)) {
- $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
- return FALSE;
- }
-
- $extent = sprintf('%02d', $formdata['length']['H']).':'.sprintf('%02d', $formdata['length']['i']).':'.sprintf('%02d', $formdata['length']['s']).'.000000';
-
- $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['title']);
- $this->_setMDataValue($r, UI_MDATA_KEY_DURATION, $extent);
- $this->_setMDataValue($r, UI_MDATA_KEY_FORMAT, UI_MDATA_VALUE_FORMAT_STREAM);
-
- $this->redirUrl = UI_BROWSER."?act=addWebstreamMData&id=$r";
- if (UI_VERBOSE) $this->_retMsg('Stream Data saved');
- return $r;
- }
-
-
- function editWebstream(&$formdata, &$mask)
- {
- $id = $formdata['id'];
- if (!$this->_validateForm($formdata, $mask)) {
- $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
- return FALSE;
- }
- $extent = sprintf('%02d', $formdata['length']['H']).':'.sprintf('%02d', $formdata['length']['i']).':'.sprintf('%02d', $formdata['length']['s']).'.000000';
-
- $this->_setMDataValue($id, UI_MDATA_KEY_TITLE, $formdata['title']);
- $this->_setMDataValue($id, UI_MDATA_KEY_URL, $formdata['url']);
- $this->_setMDataValue($id, UI_MDATA_KEY_DURATION, $extent);
-
- $this->redirUrl = UI_BROWSER.'?act=editItem&id='.$formdata['id'];
- if (UI_VERBOSE) $this->_retMsg('Stream Data changed');
- }
-
-
- function editMetaData(&$formdata)
- {
- include dirname(__FILE__).'/formmask/metadata.inc.php';
- $id = $formdata['id'];
- $curr_langid = $formdata['curr_langid'];
- $this->redirUrl = UI_BROWSER."?act=editItem&id=$id&curr_langid=".$formdata['target_langid'];
-
- foreach ($mask['pages'] as $key=>$val) {
- foreach ($mask['pages'][$key] as $k=>$v) {
- $formdata[$key.'___'.$this->_formElementEncode($v['element'])] ? $mData[$this->_formElementDecode($v['element'])] = $formdata[$key.'___'.$this->_formElementEncode($v['element'])] : NULL;
- }
- }
-
- if (!count($mData)) return;
-
- foreach ($mData as $key=>$val) {
- $r = $this->_setMDataValue($id, $key, $val, $curr_langid);
- if (PEAR::isError($r)) {
- $this->_retMsg('Unable to set "$1" to value "$2".', $key, $val);
- }
- }
-
- if (UI_VERBOSE) $this->_retMsg('Metadata saved');
- }
-
-
- /**
- * newFolder
- *
- * Create new folder in the storage
- *
- * @param newname string, name for the new folder
- * @param id int, local id to create folder in
- */
- function newFolder($name, $id)
- {
- $r = $this->gb->createFolder($id, $name, $this->sessid);
- if(PEAR::isError($r))
- $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER.'?act=fileList&id='.$this->id;
- }
-
- /**
- * rename
- *
- * Change the name of file or folder
- *
- * @param newname string, new name for the file or folder
- * @param id int, destination folder id
- */
- function rename($newname, $id)
- {
- $r = $this->gb->renameFile($id, $newname, $this->sessid);
- if(PEAR::isError($r)) $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
- }
-
- /**
- * move
- *
- * Move file to another folder
- * TODO: format of destinantion path should be properly defined
- *
- * @param newPath string, destination relative path
- * @param id int, destination folder id
- */
- function move($newPath, $id)
- {
- $newPath = urldecode($newPath);
- $did = $this->gb->getObjIdFromRelPath($id, $newPath);
- $r = $this->gb->moveFile($id, $did, $this->sessid);
- if(PEAR::isError($r)){
- $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
- }
- else $this->redirUrl = UI_BROWSER."?act=fileList&id=".$did;
- }
-
- /**
- * copy
- *
- * Copy file to another folder
- * TODO: format of destinantion path should be properly defined
- *
- * @param newPath string, destination relative path
- * @param id int, destination folder id
- */
- function copy($newPath, $id)
- {
- $newPath = urldecode($newPath);
- $did = $this->gb->getObjIdFromRelPath($id, $newPath);
- $r = $this->gb->copyFile($id, $did, $this->sessid);
- if(PEAR::isError($r)){
- $this->_retMsg($r->getMessage());
- $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
- }
- else $this->redirUrl = UI_BROWSER."?act=fileList&id=".$did;
- }
-
- /**
- * delete
- *
- * Delete of stored file
- *
- * @param id int, local id of deleted file or folder
- * @param delOverride int, local id od folder which can deleted if not empty
- */
- function delete($id, $delOverride=FALSE)
- {
- #$this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
- $this->redirUrl = UI_BROWSER."?popup[]=_reload_parent&popup[]=_close";
-
- /* no folder support yet
- if (!($delOverride==$id) && (count($this->gb->getObjType($id)=='Folder'?
- $this->gb->listFolder($id, $this->sessid):NULL))) {
- $this->_retMsg("Folder is not empty. You can override this protection by clicking DEL again");
- $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid."&delOverride=$id";
- return FALSE;
- }
- */
-
- if ($this->gb->getFileType($id)=='playlist') {
- $r = $this->gb->deletePlaylist($id, $this->sessid);
- } else {
- $r = $this->gb->deleteFile($id, $this->sessid);
- }
- if(PEAR::isError($r)) {
- $this->_retMsg($r->getMessage());
- return FALSE;
- }
- return TRUE;
- }
-
-
- /**
- * getFile
- *
- * Call access method and show access path.
- * Example only - not really useable.
- * TODO: resource should be released by release method call
- *
- * @param id int, local id of accessed file
- */
- function getFile($id)
- {
- $r = $this->gb->access($id, $this->sessid);
- if(PEAR::isError($r)) $this->_retMsg($r->getMessage());
- else echo $r;
- }
-
- /**
- * getMdata
- *
- * Show file's metadata as XML
- *
- * @param id int, local id of stored file
- */
- function getMdata($id)
- {
- header("Content-type: text/xml");
- $r = $this->gb->getMdata($id, $this->sessid);
- print_r($r);
- }
-
- // --- perms ---
- /**
- * addPerm
- *
- * Add new permission record
- *
- * @param subj int, local user/group id
- * @param permAction string, type of action from set predefined in conf.php
- * @param id int, local id of file/object
- * @param allowDeny char, A or D
- */
- function addPerm($subj, $permAction, $id, $allowDeny)
- {
- if (PEAR::isError(
- $this->gb->addPerm(
- $subj, $permAction, $id, $allowDeny, $this->sessid
- )
- )) {
- $this->_retMsg('Access denied.');
- return FALSE;
- }
- $this->redirUrl = UI_BROWSER.'?act=permissions&id='.$id;
- return TRUE;
- }
-
- /**
- * removePerm
- *
- * Remove permission record
- *
- * @param permid int, local id of permission record
- * @param oid int, local id of object to handle
- */
- function removePerm($permid, $oid)
- {
- if (PEAR::isError($this->gb->removePerm($permid, NULL, NULL, $this->sessid))) {
- $this->_retMsg('Access denied.');
- return FALSE;
- }
- $this->redirUrl = UI_BROWSER.'?act=permissions&id='.$oid;
- return TRUE;
- }
-
-
- function _validateForm(&$formdata, &$mask)
- {
- $form = new HTML_QuickForm('validation', UI_STANDARD_FORM_METHOD, UI_HANDLER);
- $this->_parseArr2Form($form, $mask, 'server');
- if (!$form->validate()) {
- $_SESSION['retransferFormData'] = $_REQUEST;
- return FALSE;
- }
- ## test for uploadet files bacause HTMLQuickForm::validate() ignores them ####
- if (is_array($form->_submitFiles)) {
- foreach ($form->_submitFiles as $key => $val) {
- if ($val['error']) {
-
- switch ($val['error']) {
- case 1: $was_error = TRUE; $this->_retMsg('Uploaded file $1 is bigger than setting in php.ini.', $mask[$key]['label']); break;
- case 2: $was_error = TRUE; $this->_retMsg('Uploaded file $1 is bigger than LiveSupports system setting.', $mask[$key]['label']); break;
- case 3: $was_error = TRUE; $this->_retMsg('Upload of file $1 was incomplete.', $mask[$key]['label']); break;
- case 4: if ($mask[$key]['required']) {$was_error = TRUE; $this->_retMsg('File $1 was not uploaded.', $mask[$key]['label']);} break;
- }
- }
- }
- if ($was_error) {
- $_SESSION['retransferFormData'] = array_merge($_REQUEST, $_FILES);
- $this->_retMsg('Invalid Form Data');
- return FALSE;
- }
- }
- /*
- foreach($mask as $k) {
- if ($k['type']=='file' && $k['required']==TRUE) {
- if ($_FILES[$k['element']]['error']) {
- $_SESSION['retransferFormData'] = array_merge($_REQUEST, $_FILES);
- return FALSE;
- }
- }
- } */
- return TRUE;
- }
-
-
- function changeStationPrefs(&$formdata, &$mask)
- {
- $this->redirUrl = UI_BROWSER;
-
- if ($this->_validateForm($formdata, $mask) == FALSE) {
- $this->_retMsg('Error saving Settings');
- return FALSE;
- }
- foreach($mask as $key=>$val) {
- if ($val['isPref']) {
- if (strlen($formdata[$val['element']])) {
- if (PEAR::isError($this->gb->saveGroupPref($this->sessid, 'StationPrefs', $val['element'], $formdata[$val['element']])))
- $this->_retMsg('Error saving Settings');
- } else {
- $this->gb->delGroupPref($this->sessid, 'StationPrefs', $val['element']);
- }
- }
- if ($val['type'] == 'file' && $formdata[$val['element']]['name']) {
- if (FALSE === @move_uploaded_file($formdata[$val['element']]['tmp_name'], $this->gb->loadGroupPref($this->sessid, 'StationPrefs', 'stationLogoPath')))
- $this->_retMsg('Error uploading Logo');
- return;
- }
- }
- $this->loadStationPrefs($mask, TRUE);
- if (UI_VERBOSE) $this->_retMsg('Settings saved');
- return TRUE;
- }
-}
+uiBase($config);
+ }
+
+
+ // --- authentication ---
+ /**
+ * login
+ *
+ * Login to the storageServer.
+ * It set sessid to the cookie with name defined in ../conf.php
+ *
+ * @param login string, username
+ * @param pass string, password
+ */
+ function login(&$formdata, &$mask)
+ {
+ #$this->_cleanArray($_SESSION);
+
+ if (!$this->_validateForm($formdata, $mask)) {
+ $_SESSION['retransferFormData']['login'] = $formdata['login'];
+ $this->redirUrl = UI_BROWSER.'?popup[]=login';
+ return FALSE;
+ }
+
+ $sessid = $this->gb->login($formdata['login'], $formdata['pass']);
+
+ if (!$sessid || PEAR::isError($sessid)){
+ $this->_retMsg('Login failed');
+ $_SESSION['retransferFormData']['login'] = $formdata['login'];
+ $this->redirUrl = UI_BROWSER.'?popup[]=login';
+ return FALSE;
+ }
+
+ #setcookie($this->config['authCookieName'], $sessid);
+ echo "";
+ ob_flush();
+
+ $id = $this->gb->getObjId($formdata['login'], $this->gb->storId);
+
+ if (PEAR::isError($id)) {
+ $this->_retMsg('Access to home directory failed.');
+ $_SESSION['retransferFormData']['login']=$formdata['login'];
+ $this->redirUrl = UI_BROWSER.'?popup[]=login';
+ return FALSE;
+ }
+
+ $this->sessid = $sessid;
+ $this->langid = $formdata['langid'];
+ $this->redirUrl = UI_BROWSER.'?popup[]=_2SCHEDULER&popup[]=_close';
+
+ return TRUE;
+ }
+
+ /**
+ * logout
+ *
+ * Logut from storageServer, takes sessid from cookie
+ *
+ * @param $trigger_login boolean, trigger login popup after logout
+ *
+ */
+ function logout($trigger_login = FALSE)
+ {
+ $this->gb->logout($this->sessid);
+ #setcookie($this->config['authCookieName'], '');
+ echo "";
+ ob_clean();
+ session_destroy();
+
+ if ($trigger_login)
+ $this->redirUrl = UI_BROWSER.'?popup[]=_clear_parent&popup[]=login';
+ else $this->redirUrl = UI_BROWSER.'?popup[]=_clear_parent&popup[]=_close';
+ }
+
+ // --- files ---
+ /**
+ * uploadFile
+ *
+ * Provides file upload and store it to the storage
+ *
+ * @param formdata array, submitted text and file
+ * @param id int, destination folder id
+ */
+ function uploadFile(&$formdata, &$mask, $replace=NULL)
+ {
+ if ($this->test4audioType($formdata['mediafile']['name']) === FALSE) {
+ if (UI_ERROR) $this->_retMsg('$1 uses an unsupported file type.', $formdata['mediafile']['name']);
+ $this->redirUrl = UI_BROWSER."?act=editFile&folderId=".$formdata['folderId'];
+ return FALSE;
+ }
+
+ $id = $formdata['id'];
+ $folderId = $formdata['folderId'];
+
+ if ($this->gb->getFileType($folderId) != 'Folder') {
+ $this->_retMsg('Target is not Folder');
+ $this->redirUrl = UI_BROWSER."?act=fileList";
+ return FALSE;
+ }
+
+ if (!$this->_validateForm($formdata, $mask)) {
+ $this->redirUrl = UI_BROWSER."?act=editFile&id=".$id;
+ return FALSE;
+ }
+
+ $tmpgunid = md5(microtime().$_SERVER['SERVER_ADDR'].rand()."org.mdlf.livesupport");
+ $ntmp = $this->gb->bufferDir.'/'.$tmpgunid;
+ move_uploaded_file($formdata['mediafile']['tmp_name'], $ntmp);
+ chmod($ntmp, 0664);
+
+ $r = $this->gb->putFile($folderId, $formdata['mediafile']['name'], $ntmp, NULL, $this->sessid, $replace);
+ @unlink($ntmp);
+
+ if(PEAR::isError($r)) {
+ $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER."?act=editFile&id=".$id;
+ return FALSE;
+ }
+
+ $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['mediafile']['name']);
+ $this->transMData($r);
+
+ if (UI_UPLOAD_LANGID !== UI_DEFAULT_LANGID) { // set records in default language too
+ $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['mediafile']['name'], UI_UPLOAD_LANGID);
+ $this->transMData($r, UI_UPLOAD_LANGID);
+ }
+
+ $this->redirUrl = UI_BROWSER."?act=addFileMData&id=$r";
+ if (UI_VERBOSE) $this->_retMsg('Audioclip Data saved');
+ return $r;
+ }
+
+
+ function test4audioType($filename)
+ {
+ foreach ($this->config['file_types'] as $t) {
+ if (preg_match('/'.str_replace('/', '\/', $t).'$/i', $filename))
+ return TRUE;
+ }
+
+ return FALSE;
+ }
+
+
+ function transMData($id, $langid=UI_DEFAULT_LANGID)
+ {
+ include dirname(__FILE__).'/formmask/metadata.inc.php';
+
+ $ia = $this->gb->analyzeFile($id, $this->sessid);
+ $this->_setMdataValue($id, UI_MDATA_KEY_DURATION, $this->gb->_secsToPlTime($ia['playtime_seconds']));
+ $this->_setMDataValue($id, UI_MDATA_KEY_FORMAT, UI_MDATA_VALUE_FORMAT_FILE);
+
+ // some data from raw audio
+ if ($ia['audio']['channels']) $this->_setMDataValue($id, UI_MDATA_KEY_CHANNELS, $ia['audio']['channels']);
+ if ($ia['audio']['sample_rate'])$this->_setMDataValue($id, UI_MDATA_KEY_SAMPLERATE, $ia['audio']['sample_rate']);
+ if ($ia['audio']['bitrate']) $this->_setMDataValue($id, UI_MDATA_KEY_BITRATE, $ia['audio']['bitrate']);
+ if ($ia['audio']['codec']) $this->_setMDataValue($id, UI_MDATA_KEY_ENCODER, $ia['audio']['codec']);
+
+ // from id3 Tags
+ foreach ($mask['pages'] as $key=>$val) { ## loop main, music, talk
+ foreach ($mask['pages'][$key] as $k=>$v) { ## loop throught elements
+ if (is_array($v['id3'])) {
+ foreach ($v['id3'] as $name) { ## loop throught list of equivalent id3-tags
+ $key = strtolower($name);
+ if ($ia['comments'][$key][0]) {
+ $this->_setMdataValue($id, $v['element'], str_replace("'", "\\'", utf8_encode($ia['comments'][$key][0])), $langid);
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ /**
+ * addWebstream
+ *
+ * Provides file upload and store it to the storage
+ *
+ * @param formdata array, submitted text and file
+ * @param id int, destination folder id
+ */
+ function addWebstream(&$formdata, &$mask)
+ {
+ $id = $formdata['id'];
+ $folderId = $formdata['folderId'];
+
+ if ($this->gb->getFileType($folderId) != 'Folder') {
+ $this->_retMsg ('Target is not Folder');
+ $this->redirUrl = UI_BROWSER."?act=fileList";
+ return FALSE;
+ }
+ if (!$this->_validateForm($formdata, $mask)) {
+ $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
+ return FALSE;
+ }
+
+ $r = $this->gb->storeWebstream($folderId, $formdata['title'], NULL, $this->sessid, NULL, $formdata['url']);
+
+ if(PEAR::isError($r)) {
+ $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
+ return FALSE;
+ }
+
+ $extent = sprintf('%02d', $formdata['length']['H']).':'.sprintf('%02d', $formdata['length']['i']).':'.sprintf('%02d', $formdata['length']['s']).'.000000';
+
+ $this->_setMDataValue($r, UI_MDATA_KEY_TITLE, $formdata['title']);
+ $this->_setMDataValue($r, UI_MDATA_KEY_DURATION, $extent);
+ $this->_setMDataValue($r, UI_MDATA_KEY_FORMAT, UI_MDATA_VALUE_FORMAT_STREAM);
+
+ $this->redirUrl = UI_BROWSER."?act=addWebstreamMData&id=$r";
+ if (UI_VERBOSE) $this->_retMsg('Stream Data saved');
+ return $r;
+ }
+
+
+ function editWebstream(&$formdata, &$mask)
+ {
+ $id = $formdata['id'];
+ if (!$this->_validateForm($formdata, $mask)) {
+ $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
+ return FALSE;
+ }
+ $extent = sprintf('%02d', $formdata['length']['H']).':'.sprintf('%02d', $formdata['length']['i']).':'.sprintf('%02d', $formdata['length']['s']).'.000000';
+
+ $this->_setMDataValue($id, UI_MDATA_KEY_TITLE, $formdata['title']);
+ $this->_setMDataValue($id, UI_MDATA_KEY_URL, $formdata['url']);
+ $this->_setMDataValue($id, UI_MDATA_KEY_DURATION, $extent);
+
+ $this->redirUrl = UI_BROWSER.'?act=editItem&id='.$formdata['id'];
+ if (UI_VERBOSE) $this->_retMsg('Stream Data changed');
+ }
+
+
+ function editMetaData(&$formdata)
+ {
+ include dirname(__FILE__).'/formmask/metadata.inc.php';
+ $id = $formdata['id'];
+ $curr_langid = $formdata['curr_langid'];
+ $this->redirUrl = UI_BROWSER."?act=editItem&id=$id&curr_langid=".$formdata['target_langid'];
+
+ foreach ($mask['pages'] as $key=>$val) {
+ foreach ($mask['pages'][$key] as $k=>$v) {
+ $formdata[$key.'___'.$this->_formElementEncode($v['element'])] ? $mData[$this->_formElementDecode($v['element'])] = $formdata[$key.'___'.$this->_formElementEncode($v['element'])] : NULL;
+ }
+ }
+
+ if (!count($mData)) return;
+
+ foreach ($mData as $key=>$val) {
+ $r = $this->_setMDataValue($id, $key, $val, $curr_langid);
+ if (PEAR::isError($r)) {
+ $this->_retMsg('Unable to set "$1" to value "$2".', $key, $val);
+ }
+ }
+
+ if (UI_VERBOSE) $this->_retMsg('Metadata saved');
+ }
+
+
+ /**
+ * newFolder
+ *
+ * Create new folder in the storage
+ *
+ * @param newname string, name for the new folder
+ * @param id int, local id to create folder in
+ */
+ function newFolder($name, $id)
+ {
+ $r = $this->gb->createFolder($id, $name, $this->sessid);
+ if(PEAR::isError($r))
+ $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER.'?act=fileList&id='.$this->id;
+ }
+
+ /**
+ * rename
+ *
+ * Change the name of file or folder
+ *
+ * @param newname string, new name for the file or folder
+ * @param id int, destination folder id
+ */
+ function rename($newname, $id)
+ {
+ $r = $this->gb->renameFile($id, $newname, $this->sessid);
+ if(PEAR::isError($r)) $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
+ }
+
+ /**
+ * move
+ *
+ * Move file to another folder
+ * TODO: format of destinantion path should be properly defined
+ *
+ * @param newPath string, destination relative path
+ * @param id int, destination folder id
+ */
+ function move($newPath, $id)
+ {
+ $newPath = urldecode($newPath);
+ $did = $this->gb->getObjIdFromRelPath($id, $newPath);
+ $r = $this->gb->moveFile($id, $did, $this->sessid);
+ if(PEAR::isError($r)){
+ $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
+ }
+ else $this->redirUrl = UI_BROWSER."?act=fileList&id=".$did;
+ }
+
+ /**
+ * copy
+ *
+ * Copy file to another folder
+ * TODO: format of destinantion path should be properly defined
+ *
+ * @param newPath string, destination relative path
+ * @param id int, destination folder id
+ */
+ function copy($newPath, $id)
+ {
+ $newPath = urldecode($newPath);
+ $did = $this->gb->getObjIdFromRelPath($id, $newPath);
+ $r = $this->gb->copyFile($id, $did, $this->sessid);
+ if(PEAR::isError($r)){
+ $this->_retMsg($r->getMessage());
+ $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
+ }
+ else $this->redirUrl = UI_BROWSER."?act=fileList&id=".$did;
+ }
+
+ /**
+ * delete
+ *
+ * Delete of stored file
+ *
+ * @param id int, local id of deleted file or folder
+ * @param delOverride int, local id od folder which can deleted if not empty
+ */
+ function delete($id, $delOverride=FALSE)
+ {
+ #$this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid;
+ $this->redirUrl = UI_BROWSER."?popup[]=_reload_parent&popup[]=_close";
+
+ /* no folder support yet
+ if (!($delOverride==$id) && (count($this->gb->getObjType($id)=='Folder'?
+ $this->gb->listFolder($id, $this->sessid):NULL))) {
+ $this->_retMsg("Folder is not empty. You can override this protection by clicking DEL again");
+ $this->redirUrl = UI_BROWSER."?act=fileList&id=".$this->pid."&delOverride=$id";
+ return FALSE;
+ }
+ */
+
+ if ($this->gb->getFileType($id)=='playlist') {
+ $r = $this->gb->deletePlaylist($id, $this->sessid);
+ } else {
+ $r = $this->gb->deleteFile($id, $this->sessid);
+ }
+ if(PEAR::isError($r)) {
+ $this->_retMsg($r->getMessage());
+ return FALSE;
+ }
+ return TRUE;
+ }
+
+
+ /**
+ * getFile
+ *
+ * Call access method and show access path.
+ * Example only - not really useable.
+ * TODO: resource should be released by release method call
+ *
+ * @param id int, local id of accessed file
+ */
+ function getFile($id)
+ {
+ $r = $this->gb->access($id, $this->sessid);
+ if(PEAR::isError($r)) $this->_retMsg($r->getMessage());
+ else echo $r;
+ }
+
+ /**
+ * getMdata
+ *
+ * Show file's metadata as XML
+ *
+ * @param id int, local id of stored file
+ */
+ function getMdata($id)
+ {
+ header("Content-type: text/xml");
+ $r = $this->gb->getMdata($id, $this->sessid);
+ print_r($r);
+ }
+
+ // --- perms ---
+ /**
+ * addPerm
+ *
+ * Add new permission record
+ *
+ * @param subj int, local user/group id
+ * @param permAction string, type of action from set predefined in conf.php
+ * @param id int, local id of file/object
+ * @param allowDeny char, A or D
+ */
+ function addPerm($subj, $permAction, $id, $allowDeny)
+ {
+ if (PEAR::isError(
+ $this->gb->addPerm(
+ $subj, $permAction, $id, $allowDeny, $this->sessid
+ )
+ )) {
+ $this->_retMsg('Access denied.');
+ return FALSE;
+ }
+ $this->redirUrl = UI_BROWSER.'?act=permissions&id='.$id;
+ return TRUE;
+ }
+
+ /**
+ * removePerm
+ *
+ * Remove permission record
+ *
+ * @param permid int, local id of permission record
+ * @param oid int, local id of object to handle
+ */
+ function removePerm($permid, $oid)
+ {
+ if (PEAR::isError($this->gb->removePerm($permid, NULL, NULL, $this->sessid))) {
+ $this->_retMsg('Access denied.');
+ return FALSE;
+ }
+ $this->redirUrl = UI_BROWSER.'?act=permissions&id='.$oid;
+ return TRUE;
+ }
+
+
+ function _validateForm(&$formdata, &$mask)
+ {
+ $form = new HTML_QuickForm('validation', UI_STANDARD_FORM_METHOD, UI_HANDLER);
+ $this->_parseArr2Form($form, $mask, 'server');
+ if (!$form->validate()) {
+ $_SESSION['retransferFormData'] = $_REQUEST;
+ return FALSE;
+ }
+ ## test for uploadet files bacause HTMLQuickForm::validate() ignores them ####
+ if (is_array($form->_submitFiles)) {
+ foreach ($form->_submitFiles as $key => $val) {
+ if ($val['error']) {
+
+ switch ($val['error']) {
+ case 1: $was_error = TRUE; $this->_retMsg('Uploaded file $1 is bigger than setting in php.ini.', $mask[$key]['label']); break;
+ case 2: $was_error = TRUE; $this->_retMsg('Uploaded file $1 is bigger than LiveSupports system setting.', $mask[$key]['label']); break;
+ case 3: $was_error = TRUE; $this->_retMsg('Upload of file $1 was incomplete.', $mask[$key]['label']); break;
+ case 4: if ($mask[$key]['required']) {$was_error = TRUE; $this->_retMsg('File $1 was not uploaded.', $mask[$key]['label']);} break;
+ }
+ }
+ }
+ if ($was_error) {
+ $_SESSION['retransferFormData'] = array_merge($_REQUEST, $_FILES);
+ $this->_retMsg('Invalid Form Data');
+ return FALSE;
+ }
+ }
+ /*
+ foreach($mask as $k) {
+ if ($k['type']=='file' && $k['required']==TRUE) {
+ if ($_FILES[$k['element']]['error']) {
+ $_SESSION['retransferFormData'] = array_merge($_REQUEST, $_FILES);
+ return FALSE;
+ }
+ }
+ } */
+ return TRUE;
+ }
+
+
+ function changeStationPrefs(&$formdata, &$mask)
+ {
+ $this->redirUrl = UI_BROWSER;
+
+ if ($this->_validateForm($formdata, $mask) == FALSE) {
+ $this->_retMsg('Error saving Settings');
+ return FALSE;
+ }
+ foreach($mask as $key=>$val) {
+ if ($val['isPref']) {
+ if (strlen($formdata[$val['element']])) {
+ if (PEAR::isError($this->gb->saveGroupPref($this->sessid, 'StationPrefs', $val['element'], $formdata[$val['element']])))
+ $this->_retMsg('Error saving Settings');
+ } else {
+ $this->gb->delGroupPref($this->sessid, 'StationPrefs', $val['element']);
+ }
+ }
+ if ($val['type'] == 'file' && $formdata[$val['element']]['name']) {
+ if (FALSE === @move_uploaded_file($formdata[$val['element']]['tmp_name'], $this->gb->loadGroupPref($this->sessid, 'StationPrefs', 'stationLogoPath')))
+ $this->_retMsg('Error uploading Logo');
+ return;
+ }
+ }
+ $this->loadStationPrefs($mask, TRUE);
+ if (UI_VERBOSE) $this->_retMsg('Settings saved');
+ return TRUE;
+ }
+}
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_schedulerPhpClient.class.php b/livesupport/modules/htmlUI/var/ui_schedulerPhpClient.class.php
index d94bac659..831dcb23a 100644
--- a/livesupport/modules/htmlUI/var/ui_schedulerPhpClient.class.php
+++ b/livesupport/modules/htmlUI/var/ui_schedulerPhpClient.class.php
@@ -1,541 +1,541 @@
-
- * m full method name (include optional prefix)
- * p array of input parameter names
- * t array of input parameter types
- * r array of result element names (not used there at present)
- * e array of error codes/messages (not used there at present)
- *
- */
-$mdefs = array(
- "listMethods" => array('m'=>"system.listMethods", 'p'=>NULL, 't'=>NULL),
- "AddAudioClipToPlaylistMethod" => array(
- 'm'=>'addAudioClipToPlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'audioClipId'/*string*/, 'relativeOffset'/*int*/),
- 't'=>array('string', 'string', 'string', 'int'),
- 'r'=>array('playlistElementId'/*string*/),
- 'e'=>array(
- '301'=>'invalid argument format',
- '302'=>'missing playlist ID argument',
- '303'=>'missing audio clip ID argument',
- '304'=>'missing relative offset argument',
- '305'=>'playlist not found',
- '306'=>'playlist has not been opened for editing',
- '307'=>'audio clip does not exist',
- '308'=>'two audio clips at the same relative offset',
- '320'=>'missing session ID argument',
- )
- ),
- "CreatePlaylistMethod" => array(
- 'm'=>'createPlaylist',
- 'p'=>array('sessionId'/*string*/),
- 't'=>array('string'),
- 'r'=>array('playlist'/*string*/),
- 'e'=>array(
- '201'=>'invalid argument format',
- '202'=>'could not create playlist',
- '220'=>'missing session ID argument',
- )
- ),
- "DeletePlaylistMethod" => array(
- 'm'=>'deletePlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array(),
- 'e'=>array(
- '901'=>'invalid argument format',
- '902'=>'missing playlist ID argument',
- '903'=>'playlist not found',
- '904'=>'playlist is locked',
- '905'=>'playlist could not be deleted',
- '920'=>'missing session ID argument',
- )
- ),
- "DisplayAudioClipMethod" => array(
- 'm'=>'displayAudioClip',
- 'p'=>array('sessionId'/*string*/, 'audioClipId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('audioClip'/*string*/),
- 'e'=>array(
- '601'=>'invalid argument format',
- '602'=>'argument is not an audio clip ID',
- '603'=>'audio clip not found',
- '620'=>'missing session ID argument',
- )
- ),
- "DisplayAudioClipsMethod" => array(
- 'm'=>'displayAudioClips',
- 'p'=>array('sessionId'/*string*/),
- 't'=>array('string'),
- 'r'=>array(array('audioClip'/*string*/)),
- 'e'=>array(
- '1801'=>'invalid argument format',
- '1802'=>'XML-RPC error',
- '1820'=>'missing session ID argument',
- )
- ),
- "DisplayPlaylistMethod" => array(
- 'm'=>'displayPlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('playlist'/*string*/),
- 'e'=>array(
- '1001'=>'invalid argument format',
- '1002'=>'argument is not a playlist ID',
- '1003'=>'playlist not found',
- '1020'=>'missing session ID argument',
- )
- ),
- "DisplayPlaylistsMethod" => array(
- 'm'=>'displayPlaylists',
- 'p'=>array('sessionId'/*string*/),
- 't'=>array('string'),
- 'r'=>array(array('playlist'/*string*/)),
- 'e'=>array(
- '1701'=>'invalid argument format',
- '1702'=>'XML-RPC error',
- '1720'=>'missing session ID argument',
- )
- ),
- "DisplayScheduleMethod" => array(
- 'm'=>'displaySchedule',
- 'p'=>array('sessionId'/*string*/, 'from'/*datetime*/, 'to'/*datetime*/),
- 't'=>array('string', 'dateTime.iso8601', 'dateTime.iso8601'),
- 'r'=>array(array('id'/*int*/, 'playlistId'/*string*/, 'start'/*datetime*/, 'end'/*datetime*/)),
- 'e'=>array(
- '1101'=>'invalid argument format',
- '1102'=>"missing or invalid 'from' argument",
- '1103'=>"missing or invalid 'to' argument",
- '1120'=>'missing session ID argument',
- )
- ),
- "GeneratePlayReportMethod" => array(
- 'm'=>'generatePlayReport',
- 'p'=>array('sessionId'/*string*/, 'from'/*datetime*/, 'to'/*datetime*/),
- 't'=>array('string', 'dateTime.iso8601', 'dateTime.iso8601'),
- 'r'=>array(array('audioClipId'/*string*/, 'timestamp'/*datetime*/)),
- 'e'=>array(
- '1501'=>'invalid argument format',
- '1502'=>"missing or invalid 'from' argument",
- '1503'=>"missing or invalid 'to' argument",
- '1520'=>'missing session ID argument',
- )
- ),
- "GetSchedulerTimeMethod" => array(
- 'm'=>'getSchedulerTime',
- 'p'=>array(),
- 't'=>array(),
- 'r'=>array('schedulerTime'/*datetime*/),
- 'e'=>array(
-)
- ),
- "GetVersionMethod" => array(
- 'm'=>'getVersion',
- 'p'=>array(),
- 't'=>array(),
- 'r'=>array('version'/*string*/),
- 'e'=>array()
- ),
- "LoginMethod" => array(
- 'm'=>'login',
- 'p'=>array('login'/*string*/, 'password'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('sessionId'/*string*/),
- 'e'=>array(
- '2001'=>'invalid argument format',
- '2002'=>'missing login argument',
- '2003'=>'missing password argument',
- '2004'=>'the authentication server reported an error',
- )
- ),
- "LogoutMethod" => array(
- 'm'=>'logout',
- 'p'=>array('sessionId'/*string*/),
- 't'=>array('string'),
- 'r'=>array(),
- 'e'=>array(
- '2101'=>'invalid argument format',
- '2120'=>'missing session ID argument',
- '2104'=>'the authentication server reported an error',
- )
- ),
- "OpenPlaylistForEditingMethod" => array(
- 'm'=>'openPlaylistForEditing',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('playlist'/*string*/),
- 'e'=>array(
- '101'=>'invalid argument format',
- '102'=>'argument is not a playlist ID',
- '104'=>'could not open playlist for editing',
- '120'=>'missing session ID argument',
- )
- ),
- "RemoveAudioClipFromPlaylistMethod" => array(
- 'm'=>'removeAudioClipFromPlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playlistElementId'/*string*/),
- 't'=>array('string', 'string', 'string'),
- 'r'=>array(),
- 'e'=>array(
- '401'=>'invalid argument format',
- '402'=>'missing playlist ID argument',
- '403'=>'missing relative offset argument',
- '404'=>'playlist does not exist',
- '405'=>'playlist has not been opened for editing',
- '406'=>'no audio clip at the specified relative offset',
- '420'=>'missing session ID argument',
- )
- ),
- "RemoveFromScheduleMethod" => array(
- 'm'=>'removeFromSchedule',
- 'p'=>array('sessionId'/*string*/, 'scheduleEntryId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array(),
- 'e'=>array(
- '1201'=>'invalid argument format',
- '1202'=>'missing schedule entry ID argument',
- '1203'=>'schedule entry not found',
- '1220'=>'missing session ID argument',
- )
- ),
- "RescheduleMethod" => array(
- 'm'=>'reschedule',
- 'p'=>array('sessionId'/*string*/, 'scheduleEntryId'/*string*/, 'playtime'/*datetime*/),
- 't'=>array('string', 'string', 'dateTime.iso8601'),
- 'r'=>array(),
- 'e'=>array(
- '1301'=>'invalid argument format',
- '1302'=>'missing schedule entry ID argument',
- '1303'=>'missing playtime argument',
- '1304'=>'schedule entry not found',
- '1305'=>'could not reschedule entry',
- '1320'=>'missing session ID argument',
- )
- ),
- "ResetStorageMethod" => array(
- 'm'=>'resetStorage',
- 'p'=>array(),
- 't'=>array(),
- 'r'=>array(),
- 'e'=>array('3001'=>'storage client reported an error'),
- ),
- "RevertEditedPlaylistMethod" => array(
- 'm'=>'revertEditedPlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array(),
- 'e'=>array(
- '801'=>'invalid argument format',
- '802'=>'argument is not a playlist ID',
- '803'=>'playlist not found',
- '804'=>'could not revert playlist',
- '820'=>'missing session ID argument',
- )
- ),
- "SavePlaylistMethod" => array(
- 'm'=>'savePlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array(),
- 'e'=>array(
- '701'=>'invalid argument format',
- '702'=>'argument is not a playlist ID',
- '703'=>'playlist not found',
- '705'=>'could not save playlist',
- '720'=>'missing session ID argument',
- )
- ),
- "UpdateFadeInFadeOutMethod" => array(
- 'm'=>'updateFadeInFadeOut',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playlistElementId'/*string*/, 'fadeIn'/*int*/, 'fadeOut'/*int*/),
- 't'=>array('string', 'string', 'string', 'int', 'int'),
- 'r'=>array(),
- 'e'=>array(
- '1601'=>'invalid argument format',
- '1602'=>'missing playlist ID argument',
- '1603'=>'missing playlist element ID argument',
- '1604'=>'missing fade in argument',
- '1605'=>'missing fade out argument',
- '1606'=>'playlist does not exist',
- '1607'=>'playlist has not been opened for editing',
- '1608'=>'error executing setFadeInfo() method',
- '1620'=>'missing session ID argument',
- )
- ),
- "UploadPlaylistMethod" => array(
- 'm'=>'uploadPlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playtime'/*datetime*/),
- 't'=>array('string', 'string', 'dateTime.iso8601'),
- 'r'=>array('scheduleEntryId'/*string*/),
- 'e'=>array(
- '1401'=>'invalid argument format',
- '1402'=>'missing playlist ID argument',
- '1403'=>'missing playtime argument',
- '1404'=>'playlist not found',
- '1405'=>'timeframe not aaaaavailable',
- '1406'=>'could not schedule playlist',
- '1420'=>'missing session ID argument',
- )
- ),
- "ValidatePlaylistMethod" => array(
- 'm'=>'validatePlaylist',
- 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('valid'/*bool*/),
- 'e'=>array(
- '501'=>'invalid argument format',
- '502'=>'missing playlist ID argument',
- '503'=>'playlist does not exist',
- '504'=>'playlist has not been opened for editing',
- '520'=>'missing session ID argument',
- )
- ),
- "LoginGB" => array(
- 'm'=>'locstor.login',
- 'p'=>array('login'/*string*/, 'pass'/*string*/),
- 't'=>array('string', 'string'),
- 'r'=>array('sessid'/*string*/),
- 'e'=>array(
- '2001'=>'invalid argument format',
- '2002'=>'missing login argument',
- '2003'=>'missing password argument',
- '2004'=>'the authentication server reported an error',
- )
- ),
- "LogoutGB" => array(
- 'm'=>'locstor.logout',
- 'p'=>array('sessid'/*string*/),
- 't'=>array('string'),
- 'r'=>array('status'/*boolean*/),
- 'e'=>array(
- '2001'=>'invalid argument format',
- '2002'=>'missing login argument',
- '2003'=>'missing password argument',
- '2004'=>'the authentication server reported an error',
- )
- ),
-);
-
-/* ======================================================== class definitions */
-
-class SchedulerPhpClient{
- /**
- * Databases object reference
- */
- var $dbc = NULL;
- /**
- * Array with methods description
- */
- var $mdefs = array();
- /**
- * Confiduration array from ../conf.php
- */
- var $config = array();
- /**
- * XMLRPC client object reference
- */
- var $client = NULL;
- /**
- * Verbosity flag
- */
- var $verbose = FALSE;
- /**
- * XMLRPC debug flag
- */
- var $debug = 0;
- /**
- * Constructor - pelase DON'T CALL IT, use factory method instead
- *
- * @param dbc object, database object reference
- * @param mdefs array, hash array with methods description
- * @param config array, hash array with configuration
- * @param debug int, XMLRPC debug flag
- * @param verbose boolean, verbosity flag
- * @return this
- */
- function SchedulerPhpClient(
- &$dbc, $mdefs, $config, $debug=0, $verbose=FALSE)
- {
- $this->dbc = $dbc;
- $this->mdefs = $mdefs;
- $this->config = $config;
- $this->debug = $debug;
- $this->verbose = $verbose;
- $confPrefix = "scheduler";
- # $confPrefix = "storage";
- $serverPath =
- "http://{$config["{$confPrefix}UrlHost"]}:{$config["{$confPrefix}UrlPort"]}".
- "{$config["{$confPrefix}UrlPath"]}/{$config["{$confPrefix}XMLRPC"]}";
- #$serverPath = "http://localhost:80/livesupportStorageServerCVS/xmlrpc/xrLocStor.php";
- if($this->verbose) echo "serverPath: $serverPath\n";
- $url = parse_url($serverPath);
- $this->client = new XML_RPC_Client($url['path'], $url['host'], $url['port']);
- }
-
- /**
- * Factory, create object instance
- *
- * In fact it doesn't create instance of SchedulerPhpClient, but
- * dynamically extend this class with set of methods based on $mdefs array
- * (using eval function) and instantiate resulting class
- * SchedulerPhpClientCore instead.
- * Each new method in this subclass accepts parameters according to $mdefs
- * array, call wrapper callMethod(methodname, parameters) and return its
- * result.
- *
- * @param dbc object, database object reference
- * @param mdefs array, hash array with methods description
- * @param config array, hash array with configuration
- * @param debug int, XMLRPC debug flag
- * @param verbose boolean, verbosity flag
- * @return object, created object instance
- */
- function &factory(&$dbc, $mdefs, $config, $debug=0, $verbose=FALSE){
- $f = '';
- foreach($mdefs as $fn=>$farr){
- $f .=
- ' function '.$fn.'(){'."\n".
- ' $pars = func_get_args();'."\n".
- ' $r = $this->callMethod("'.$fn.'", $pars);'."\n".
- ' return $r;'."\n".
- ' }'."\n";
- }
- $e =
- "class SchedulerPhpClientCore extends SchedulerPhpClient{\n".
- "$f\n".
- "}\n";
-# echo $e;
- if(FALSE === eval($e)) return $dbc->raiseError("Eval failed");
- $spc =& new SchedulerPhpClientCore(
- $dbc, $mdefs, $config, $debug, $verbose);
- return $spc;
- }
-
- /**
- * XMLRPC methods wrapper
- * Encode XMLRPC request message, send it, receive and decode response.
- *
- * @param method string, method name
- * @param gettedPars array, returned by func_get_args() in called method
- * @return array, PHP hash with response
- */
- function callMethod($method, $gettedPars)
- {
- $parr = array();
- $XML_RPC_val = new XML_RPC_Value;
- foreach($this->mdefs[$method]['p'] as $i=>$p){
- $parr[$p] = new XML_RPC_Value;
- $parr[$p]->addScalar($gettedPars[$i], $this->mdefs[$method]['t'][$i]);
- }
- $XML_RPC_val->addStruct($parr);
- $fullmethod = $this->mdefs[$method]['m'];
- $msg = new XML_RPC_Message($fullmethod, array($XML_RPC_val));
- if($this->verbose){
- echo "parr:\n";
- var_dump($parr);
- echo "message:\n";
- echo $msg->serialize()."\n";
- }
- $this->client->setDebug($this->debug);
- if (!$res = $this->client->send($msg)) {
- return array('error' => array('code' => -1, 'message' => 'Cannot connect to Scheduler'));
- }
- if($res->faultCode() > 0) {
- return array('error' => array('code' => $res->faultCode(), 'message' => $res->faultString())); ## changed by sebastian
- /*
- tomas´ orig. method
- return $this->dbc->raiseError(
- "SchedulerPhpClient::$method:".$res->faultString()." ".
- $res->faultCode()."\n", $res->faultCode()
- );
-
- newer method:
- return PEAR::raiseError(
- "SchedulerPhpClient::$method:".$res->faultString()." ".
- $res->faultCode()."\n", $res->faultCode(),
- PEAR_ERROR_RETURN
- );
- */
- }
- if($this->verbose){
- echo "result:\n";
- echo $res->serialize();
- }
- $val = $res->value();
-# echo"\n"; var_dump($val); exit;
- $resp = XML_RPC_decode($res->value());
- return $resp;
- }
-
-}
-
-/* ======================================================== class definitions */
-
-/**
- * Example of use:
- *
- */
-
-/*
-// db object handling:
-include('conf.php');
-$dbc = DB::connect($config['dsn'], TRUE);
-$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
-$dbc->setErrorHandling(PEAR_ERROR_RETURN);
-
-// scheduler client instantiation:
-$spc =& SchedulerPhpClient::factory($dbc, $mdefs, $config);
-#$spc =& SchedulerPhpClient::factory($dbc, $mdefs, $config, 0, TRUE);
-
-// call of chosen function by name according to key values in $mdefs array:
-// (for testing on storageServer XMLRPC I've changes confPrefix in
-// SchedulerPhpClient constructor from 'scheduler' to 'storage' value)
-#$r = $spc->LoginGB('root', 'q'); var_dump($r);
-#$r = $spc->LogoutGB(''); var_dump($r);
-#$r = $spc->DisplayScheduleMethod($this->Base->sessid, '2005-01-01 00:00:00.000000', '2005-02-01 00:00:00.000000'); var_dump($r);
-$r = $spc->DisplayScheduleMethod($this->Base->sessid, '20040101T00:00:00', '20050401T00:00:00'); var_dump($r);
-#$r = $spc->LoginMethod('root', 'q'); var_dump($r);
-#$r = $spc->LogoutMethod('dummySessionId3-1714636915'); var_dump($r);
-#$r = $spc->listMethods(); var_dump($r);
-#$r = $spc->GetSchedulerTimeMethod(); var_dump($r);
-*/
+
+ *
m full method name (include optional prefix)
+ * p array of input parameter names
+ * t array of input parameter types
+ * r array of result element names (not used there at present)
+ * e array of error codes/messages (not used there at present)
+ *
+ */
+$mdefs = array(
+ "listMethods" => array('m'=>"system.listMethods", 'p'=>NULL, 't'=>NULL),
+ "AddAudioClipToPlaylistMethod" => array(
+ 'm'=>'addAudioClipToPlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'audioClipId'/*string*/, 'relativeOffset'/*int*/),
+ 't'=>array('string', 'string', 'string', 'int'),
+ 'r'=>array('playlistElementId'/*string*/),
+ 'e'=>array(
+ '301'=>'invalid argument format',
+ '302'=>'missing playlist ID argument',
+ '303'=>'missing audio clip ID argument',
+ '304'=>'missing relative offset argument',
+ '305'=>'playlist not found',
+ '306'=>'playlist has not been opened for editing',
+ '307'=>'audio clip does not exist',
+ '308'=>'two audio clips at the same relative offset',
+ '320'=>'missing session ID argument',
+ )
+ ),
+ "CreatePlaylistMethod" => array(
+ 'm'=>'createPlaylist',
+ 'p'=>array('sessionId'/*string*/),
+ 't'=>array('string'),
+ 'r'=>array('playlist'/*string*/),
+ 'e'=>array(
+ '201'=>'invalid argument format',
+ '202'=>'could not create playlist',
+ '220'=>'missing session ID argument',
+ )
+ ),
+ "DeletePlaylistMethod" => array(
+ 'm'=>'deletePlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '901'=>'invalid argument format',
+ '902'=>'missing playlist ID argument',
+ '903'=>'playlist not found',
+ '904'=>'playlist is locked',
+ '905'=>'playlist could not be deleted',
+ '920'=>'missing session ID argument',
+ )
+ ),
+ "DisplayAudioClipMethod" => array(
+ 'm'=>'displayAudioClip',
+ 'p'=>array('sessionId'/*string*/, 'audioClipId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('audioClip'/*string*/),
+ 'e'=>array(
+ '601'=>'invalid argument format',
+ '602'=>'argument is not an audio clip ID',
+ '603'=>'audio clip not found',
+ '620'=>'missing session ID argument',
+ )
+ ),
+ "DisplayAudioClipsMethod" => array(
+ 'm'=>'displayAudioClips',
+ 'p'=>array('sessionId'/*string*/),
+ 't'=>array('string'),
+ 'r'=>array(array('audioClip'/*string*/)),
+ 'e'=>array(
+ '1801'=>'invalid argument format',
+ '1802'=>'XML-RPC error',
+ '1820'=>'missing session ID argument',
+ )
+ ),
+ "DisplayPlaylistMethod" => array(
+ 'm'=>'displayPlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('playlist'/*string*/),
+ 'e'=>array(
+ '1001'=>'invalid argument format',
+ '1002'=>'argument is not a playlist ID',
+ '1003'=>'playlist not found',
+ '1020'=>'missing session ID argument',
+ )
+ ),
+ "DisplayPlaylistsMethod" => array(
+ 'm'=>'displayPlaylists',
+ 'p'=>array('sessionId'/*string*/),
+ 't'=>array('string'),
+ 'r'=>array(array('playlist'/*string*/)),
+ 'e'=>array(
+ '1701'=>'invalid argument format',
+ '1702'=>'XML-RPC error',
+ '1720'=>'missing session ID argument',
+ )
+ ),
+ "DisplayScheduleMethod" => array(
+ 'm'=>'displaySchedule',
+ 'p'=>array('sessionId'/*string*/, 'from'/*datetime*/, 'to'/*datetime*/),
+ 't'=>array('string', 'dateTime.iso8601', 'dateTime.iso8601'),
+ 'r'=>array(array('id'/*int*/, 'playlistId'/*string*/, 'start'/*datetime*/, 'end'/*datetime*/)),
+ 'e'=>array(
+ '1101'=>'invalid argument format',
+ '1102'=>"missing or invalid 'from' argument",
+ '1103'=>"missing or invalid 'to' argument",
+ '1120'=>'missing session ID argument',
+ )
+ ),
+ "GeneratePlayReportMethod" => array(
+ 'm'=>'generatePlayReport',
+ 'p'=>array('sessionId'/*string*/, 'from'/*datetime*/, 'to'/*datetime*/),
+ 't'=>array('string', 'dateTime.iso8601', 'dateTime.iso8601'),
+ 'r'=>array(array('audioClipId'/*string*/, 'timestamp'/*datetime*/)),
+ 'e'=>array(
+ '1501'=>'invalid argument format',
+ '1502'=>"missing or invalid 'from' argument",
+ '1503'=>"missing or invalid 'to' argument",
+ '1520'=>'missing session ID argument',
+ )
+ ),
+ "GetSchedulerTimeMethod" => array(
+ 'm'=>'getSchedulerTime',
+ 'p'=>array(),
+ 't'=>array(),
+ 'r'=>array('schedulerTime'/*datetime*/),
+ 'e'=>array(
+)
+ ),
+ "GetVersionMethod" => array(
+ 'm'=>'getVersion',
+ 'p'=>array(),
+ 't'=>array(),
+ 'r'=>array('version'/*string*/),
+ 'e'=>array()
+ ),
+ "LoginMethod" => array(
+ 'm'=>'login',
+ 'p'=>array('login'/*string*/, 'password'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('sessionId'/*string*/),
+ 'e'=>array(
+ '2001'=>'invalid argument format',
+ '2002'=>'missing login argument',
+ '2003'=>'missing password argument',
+ '2004'=>'the authentication server reported an error',
+ )
+ ),
+ "LogoutMethod" => array(
+ 'm'=>'logout',
+ 'p'=>array('sessionId'/*string*/),
+ 't'=>array('string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '2101'=>'invalid argument format',
+ '2120'=>'missing session ID argument',
+ '2104'=>'the authentication server reported an error',
+ )
+ ),
+ "OpenPlaylistForEditingMethod" => array(
+ 'm'=>'openPlaylistForEditing',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('playlist'/*string*/),
+ 'e'=>array(
+ '101'=>'invalid argument format',
+ '102'=>'argument is not a playlist ID',
+ '104'=>'could not open playlist for editing',
+ '120'=>'missing session ID argument',
+ )
+ ),
+ "RemoveAudioClipFromPlaylistMethod" => array(
+ 'm'=>'removeAudioClipFromPlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playlistElementId'/*string*/),
+ 't'=>array('string', 'string', 'string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '401'=>'invalid argument format',
+ '402'=>'missing playlist ID argument',
+ '403'=>'missing relative offset argument',
+ '404'=>'playlist does not exist',
+ '405'=>'playlist has not been opened for editing',
+ '406'=>'no audio clip at the specified relative offset',
+ '420'=>'missing session ID argument',
+ )
+ ),
+ "RemoveFromScheduleMethod" => array(
+ 'm'=>'removeFromSchedule',
+ 'p'=>array('sessionId'/*string*/, 'scheduleEntryId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '1201'=>'invalid argument format',
+ '1202'=>'missing schedule entry ID argument',
+ '1203'=>'schedule entry not found',
+ '1220'=>'missing session ID argument',
+ )
+ ),
+ "RescheduleMethod" => array(
+ 'm'=>'reschedule',
+ 'p'=>array('sessionId'/*string*/, 'scheduleEntryId'/*string*/, 'playtime'/*datetime*/),
+ 't'=>array('string', 'string', 'dateTime.iso8601'),
+ 'r'=>array(),
+ 'e'=>array(
+ '1301'=>'invalid argument format',
+ '1302'=>'missing schedule entry ID argument',
+ '1303'=>'missing playtime argument',
+ '1304'=>'schedule entry not found',
+ '1305'=>'could not reschedule entry',
+ '1320'=>'missing session ID argument',
+ )
+ ),
+ "ResetStorageMethod" => array(
+ 'm'=>'resetStorage',
+ 'p'=>array(),
+ 't'=>array(),
+ 'r'=>array(),
+ 'e'=>array('3001'=>'storage client reported an error'),
+ ),
+ "RevertEditedPlaylistMethod" => array(
+ 'm'=>'revertEditedPlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '801'=>'invalid argument format',
+ '802'=>'argument is not a playlist ID',
+ '803'=>'playlist not found',
+ '804'=>'could not revert playlist',
+ '820'=>'missing session ID argument',
+ )
+ ),
+ "SavePlaylistMethod" => array(
+ 'm'=>'savePlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array(),
+ 'e'=>array(
+ '701'=>'invalid argument format',
+ '702'=>'argument is not a playlist ID',
+ '703'=>'playlist not found',
+ '705'=>'could not save playlist',
+ '720'=>'missing session ID argument',
+ )
+ ),
+ "UpdateFadeInFadeOutMethod" => array(
+ 'm'=>'updateFadeInFadeOut',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playlistElementId'/*string*/, 'fadeIn'/*int*/, 'fadeOut'/*int*/),
+ 't'=>array('string', 'string', 'string', 'int', 'int'),
+ 'r'=>array(),
+ 'e'=>array(
+ '1601'=>'invalid argument format',
+ '1602'=>'missing playlist ID argument',
+ '1603'=>'missing playlist element ID argument',
+ '1604'=>'missing fade in argument',
+ '1605'=>'missing fade out argument',
+ '1606'=>'playlist does not exist',
+ '1607'=>'playlist has not been opened for editing',
+ '1608'=>'error executing setFadeInfo() method',
+ '1620'=>'missing session ID argument',
+ )
+ ),
+ "UploadPlaylistMethod" => array(
+ 'm'=>'uploadPlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'playtime'/*datetime*/),
+ 't'=>array('string', 'string', 'dateTime.iso8601'),
+ 'r'=>array('scheduleEntryId'/*string*/),
+ 'e'=>array(
+ '1401'=>'invalid argument format',
+ '1402'=>'missing playlist ID argument',
+ '1403'=>'missing playtime argument',
+ '1404'=>'playlist not found',
+ '1405'=>'timeframe not aaaaavailable',
+ '1406'=>'could not schedule playlist',
+ '1420'=>'missing session ID argument',
+ )
+ ),
+ "ValidatePlaylistMethod" => array(
+ 'm'=>'validatePlaylist',
+ 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('valid'/*bool*/),
+ 'e'=>array(
+ '501'=>'invalid argument format',
+ '502'=>'missing playlist ID argument',
+ '503'=>'playlist does not exist',
+ '504'=>'playlist has not been opened for editing',
+ '520'=>'missing session ID argument',
+ )
+ ),
+ "LoginGB" => array(
+ 'm'=>'locstor.login',
+ 'p'=>array('login'/*string*/, 'pass'/*string*/),
+ 't'=>array('string', 'string'),
+ 'r'=>array('sessid'/*string*/),
+ 'e'=>array(
+ '2001'=>'invalid argument format',
+ '2002'=>'missing login argument',
+ '2003'=>'missing password argument',
+ '2004'=>'the authentication server reported an error',
+ )
+ ),
+ "LogoutGB" => array(
+ 'm'=>'locstor.logout',
+ 'p'=>array('sessid'/*string*/),
+ 't'=>array('string'),
+ 'r'=>array('status'/*boolean*/),
+ 'e'=>array(
+ '2001'=>'invalid argument format',
+ '2002'=>'missing login argument',
+ '2003'=>'missing password argument',
+ '2004'=>'the authentication server reported an error',
+ )
+ ),
+);
+
+/* ======================================================== class definitions */
+
+class SchedulerPhpClient{
+ /**
+ * Databases object reference
+ */
+ var $dbc = NULL;
+ /**
+ * Array with methods description
+ */
+ var $mdefs = array();
+ /**
+ * Confiduration array from ../conf.php
+ */
+ var $config = array();
+ /**
+ * XMLRPC client object reference
+ */
+ var $client = NULL;
+ /**
+ * Verbosity flag
+ */
+ var $verbose = FALSE;
+ /**
+ * XMLRPC debug flag
+ */
+ var $debug = 0;
+ /**
+ * Constructor - pelase DON'T CALL IT, use factory method instead
+ *
+ * @param dbc object, database object reference
+ * @param mdefs array, hash array with methods description
+ * @param config array, hash array with configuration
+ * @param debug int, XMLRPC debug flag
+ * @param verbose boolean, verbosity flag
+ * @return this
+ */
+ function SchedulerPhpClient(
+ &$dbc, $mdefs, $config, $debug=0, $verbose=FALSE)
+ {
+ $this->dbc = $dbc;
+ $this->mdefs = $mdefs;
+ $this->config = $config;
+ $this->debug = $debug;
+ $this->verbose = $verbose;
+ $confPrefix = "scheduler";
+ # $confPrefix = "storage";
+ $serverPath =
+ "http://{$config["{$confPrefix}UrlHost"]}:{$config["{$confPrefix}UrlPort"]}".
+ "{$config["{$confPrefix}UrlPath"]}/{$config["{$confPrefix}XMLRPC"]}";
+ #$serverPath = "http://localhost:80/livesupportStorageServerCVS/xmlrpc/xrLocStor.php";
+ if($this->verbose) echo "serverPath: $serverPath\n";
+ $url = parse_url($serverPath);
+ $this->client = new XML_RPC_Client($url['path'], $url['host'], $url['port']);
+ }
+
+ /**
+ * Factory, create object instance
+ *
+ * In fact it doesn't create instance of SchedulerPhpClient, but
+ * dynamically extend this class with set of methods based on $mdefs array
+ * (using eval function) and instantiate resulting class
+ * SchedulerPhpClientCore instead.
+ * Each new method in this subclass accepts parameters according to $mdefs
+ * array, call wrapper callMethod(methodname, parameters) and return its
+ * result.
+ *
+ * @param dbc object, database object reference
+ * @param mdefs array, hash array with methods description
+ * @param config array, hash array with configuration
+ * @param debug int, XMLRPC debug flag
+ * @param verbose boolean, verbosity flag
+ * @return object, created object instance
+ */
+ function &factory(&$dbc, $mdefs, $config, $debug=0, $verbose=FALSE){
+ $f = '';
+ foreach($mdefs as $fn=>$farr){
+ $f .=
+ ' function '.$fn.'(){'."\n".
+ ' $pars = func_get_args();'."\n".
+ ' $r = $this->callMethod("'.$fn.'", $pars);'."\n".
+ ' return $r;'."\n".
+ ' }'."\n";
+ }
+ $e =
+ "class SchedulerPhpClientCore extends SchedulerPhpClient{\n".
+ "$f\n".
+ "}\n";
+# echo $e;
+ if(FALSE === eval($e)) return $dbc->raiseError("Eval failed");
+ $spc =& new SchedulerPhpClientCore(
+ $dbc, $mdefs, $config, $debug, $verbose);
+ return $spc;
+ }
+
+ /**
+ * XMLRPC methods wrapper
+ * Encode XMLRPC request message, send it, receive and decode response.
+ *
+ * @param method string, method name
+ * @param gettedPars array, returned by func_get_args() in called method
+ * @return array, PHP hash with response
+ */
+ function callMethod($method, $gettedPars)
+ {
+ $parr = array();
+ $XML_RPC_val = new XML_RPC_Value;
+ foreach($this->mdefs[$method]['p'] as $i=>$p){
+ $parr[$p] = new XML_RPC_Value;
+ $parr[$p]->addScalar($gettedPars[$i], $this->mdefs[$method]['t'][$i]);
+ }
+ $XML_RPC_val->addStruct($parr);
+ $fullmethod = $this->mdefs[$method]['m'];
+ $msg = new XML_RPC_Message($fullmethod, array($XML_RPC_val));
+ if($this->verbose){
+ echo "parr:\n";
+ var_dump($parr);
+ echo "message:\n";
+ echo $msg->serialize()."\n";
+ }
+ $this->client->setDebug($this->debug);
+ if (!$res = $this->client->send($msg)) {
+ return array('error' => array('code' => -1, 'message' => 'Cannot connect to Scheduler'));
+ }
+ if($res->faultCode() > 0) {
+ return array('error' => array('code' => $res->faultCode(), 'message' => $res->faultString())); ## changed by sebastian
+ /*
+ tomas´ orig. method
+ return $this->dbc->raiseError(
+ "SchedulerPhpClient::$method:".$res->faultString()." ".
+ $res->faultCode()."\n", $res->faultCode()
+ );
+
+ newer method:
+ return PEAR::raiseError(
+ "SchedulerPhpClient::$method:".$res->faultString()." ".
+ $res->faultCode()."\n", $res->faultCode(),
+ PEAR_ERROR_RETURN
+ );
+ */
+ }
+ if($this->verbose){
+ echo "result:\n";
+ echo $res->serialize();
+ }
+ $val = $res->value();
+# echo"\n"; var_dump($val); exit;
+ $resp = XML_RPC_decode($res->value());
+ return $resp;
+ }
+
+}
+
+/* ======================================================== class definitions */
+
+/**
+ * Example of use:
+ *
+ */
+
+/*
+// db object handling:
+include('conf.php');
+$dbc = DB::connect($config['dsn'], TRUE);
+$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
+$dbc->setErrorHandling(PEAR_ERROR_RETURN);
+
+// scheduler client instantiation:
+$spc =& SchedulerPhpClient::factory($dbc, $mdefs, $config);
+#$spc =& SchedulerPhpClient::factory($dbc, $mdefs, $config, 0, TRUE);
+
+// call of chosen function by name according to key values in $mdefs array:
+// (for testing on storageServer XMLRPC I've changes confPrefix in
+// SchedulerPhpClient constructor from 'scheduler' to 'storage' value)
+#$r = $spc->LoginGB('root', 'q'); var_dump($r);
+#$r = $spc->LogoutGB(''); var_dump($r);
+#$r = $spc->DisplayScheduleMethod($this->Base->sessid, '2005-01-01 00:00:00.000000', '2005-02-01 00:00:00.000000'); var_dump($r);
+$r = $spc->DisplayScheduleMethod($this->Base->sessid, '20040101T00:00:00', '20050401T00:00:00'); var_dump($r);
+#$r = $spc->LoginMethod('root', 'q'); var_dump($r);
+#$r = $spc->LogoutMethod('dummySessionId3-1714636915'); var_dump($r);
+#$r = $spc->listMethods(); var_dump($r);
+#$r = $spc->GetSchedulerTimeMethod(); var_dump($r);
+*/
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_scratchpad.class.php b/livesupport/modules/htmlUI/var/ui_scratchpad.class.php
index c90d6822a..930c456dd 100755
--- a/livesupport/modules/htmlUI/var/ui_scratchpad.class.php
+++ b/livesupport/modules/htmlUI/var/ui_scratchpad.class.php
@@ -1,153 +1,153 @@
-Base =& $uiBase;
- $this->items =& $_SESSION[UI_SCRATCHPAD_SESSNAME]['content'];
- $this->order =& $_SESSION[UI_SCRATCHPAD_SESSNAME]['order'];
- $this->reloadUrl = UI_BROWSER.'?popup[]=_reload_parent&popup[]=_close';
- }
-
- function setReload()
- {
- $this->Base->redirUrl = $this->reloadUrl;
- }
-
- function &get()
- {
- if (!is_array($this->items))
- $this->_load();
- #print_r($this->items);
- return $this->items;
- }
-
- function _load()
- {
- $this->items = array();
- $spData = $this->Base->gb->loadPref($this->Base->sessid, UI_SCRATCHPAD_KEY);
- if (!PEAR::isError($spData)) {
- ## ScratchPad found in DB
- $arr = explode(' ', $spData);
- /*
- ## Akos old format #####################################
- foreach($arr as $val) {
- if (preg_match(UI_SCRATCHPAD_REGEX, $val)) {
- list ($gunid, $date) = explode(':', $val);
- if ($this->Base->gb->_idFromGunid($gunid) != FALSE) {
- $res[] = array_merge($this->Base->_getMetaInfo($this->Base->gb->_idFromGunid($gunid)), array('added' => $date));
- }
- }
- }
- */
-
- ## new format ##########################################
- foreach($arr as $gunid) {
- if (preg_match('/[0-9]{1,20}/', $gunid)) {
- if ($this->Base->gb->_idFromGunid($this->Base->_toHex($gunid)) != FALSE) {
- if ($i = $this->Base->_getMetaInfo($this->Base->gb->_idFromGunid($this->Base->_toHex($gunid))))
- $this->items[] = $i;
- }
- }
- }
- }
- }
-
-
- function save()
- {
- foreach($this->items as $val) {
- #$str .= $val['gunid'].':'.$val['added'].' '; ## new format ###
- $str .= $this->Base->_toInt8($val['gunid']).' '; ## Akos´ old format ###
- }
- $this->Base->gb->savePref($this->Base->sessid, UI_SCRATCHPAD_KEY, $str);
- }
-
-
- function addItem($ids)
- {
- if(!$this->Base->STATIONPREFS[UI_SCRATCHPAD_MAXLENGTH_KEY]) {
- if (UI_WARNING) $this->Base->_retMsg('ScratchPad length is not set in System Preferences, so it cannot be used.');
- return false;
- }
- if (!$ids) {
- if (UI_WARNING) $this->Base->_retMsg('No Item(s) selected');
- return FALSE;
- }
- if (!is_array($ids))
- $ids = array($ids);
-
- $sp = $this->get();
- foreach ($ids as $id) {
- $item = $this->Base->_getMetaInfo($id);
-
- foreach ($sp as $key=>$val) {
- if ($val['id'] == $item['id']) {
- unset($sp[$key]);
- if (UI_VERBOSE) $this->Base->_retMsg('Entry $1 was already on the ScratchPad. It has been moved to the top of the list.', $item['title'], $val['added']);
- } else {
- #$this->Base->incAccessCounter($id);
- }
- }
- $sp = array_merge(array($item), is_array($sp) ? $sp : NULL);
- }
-
- for ($n=0; $n<$this->Base->STATIONPREFS[UI_SCRATCHPAD_MAXLENGTH_KEY]; $n++) {
- if (is_array($sp[$n])) $this->items[$n] = $sp[$n];
- }
- ksort($this->items);
- }
-
-
- function removeItems($ids)
- {
- if (!$ids) {
- if (UI_WARNING) $this->Base->_retMsg('No Item(s) selected');
- return FALSE;
- }
- if (!is_array($ids))
- $ids = array($ids);
-
- foreach ($ids as $id) {
- $sp =& $this->get();
- foreach ($sp as $key=>$val) {
- if ($val['id'] === $id) {
- unset ($sp[$key]);
- #$this->Base->decAccessCounter($id);
- }
- }
- }
-
- return TRUE;
- }
-
-
- function reOrder($by)
- {
- if (count($this->items) == 0)
- return FALSE;
-
- foreach ($this->items as $key=>$val) {
- $s[$key] = $val[$by];
- }
- $curr = $this->order[$by];
- $this->order = array();
- (is_null($curr) || $curr=='DESC') ? $this->order[$by] = 'ASC' : $this->order[$by] = 'DESC';
- switch($this->order[$by]) {
- case "ASC": asort($s); break;
- case "DESC": arsort($s); break;
- }
- foreach ($s as $key=>$val) {
- $res[] = $this->items[$key];
- }
- $this->items = $res;
- }
-
-
- function reLoadM()
- {
- foreach($this->items as $key=>$val)
- $this->items[$key] = $this->Base->_getMetaInfo($val['id']);
- }
-}
+Base =& $uiBase;
+ $this->items =& $_SESSION[UI_SCRATCHPAD_SESSNAME]['content'];
+ $this->order =& $_SESSION[UI_SCRATCHPAD_SESSNAME]['order'];
+ $this->reloadUrl = UI_BROWSER.'?popup[]=_reload_parent&popup[]=_close';
+ }
+
+ function setReload()
+ {
+ $this->Base->redirUrl = $this->reloadUrl;
+ }
+
+ function &get()
+ {
+ if (!is_array($this->items))
+ $this->_load();
+ #print_r($this->items);
+ return $this->items;
+ }
+
+ function _load()
+ {
+ $this->items = array();
+ $spData = $this->Base->gb->loadPref($this->Base->sessid, UI_SCRATCHPAD_KEY);
+ if (!PEAR::isError($spData)) {
+ ## ScratchPad found in DB
+ $arr = explode(' ', $spData);
+ /*
+ ## Akos old format #####################################
+ foreach($arr as $val) {
+ if (preg_match(UI_SCRATCHPAD_REGEX, $val)) {
+ list ($gunid, $date) = explode(':', $val);
+ if ($this->Base->gb->_idFromGunid($gunid) != FALSE) {
+ $res[] = array_merge($this->Base->_getMetaInfo($this->Base->gb->_idFromGunid($gunid)), array('added' => $date));
+ }
+ }
+ }
+ */
+
+ ## new format ##########################################
+ foreach($arr as $gunid) {
+ if (preg_match('/[0-9]{1,20}/', $gunid)) {
+ if ($this->Base->gb->_idFromGunid($this->Base->_toHex($gunid)) != FALSE) {
+ if ($i = $this->Base->_getMetaInfo($this->Base->gb->_idFromGunid($this->Base->_toHex($gunid))))
+ $this->items[] = $i;
+ }
+ }
+ }
+ }
+ }
+
+
+ function save()
+ {
+ foreach($this->items as $val) {
+ #$str .= $val['gunid'].':'.$val['added'].' '; ## new format ###
+ $str .= $this->Base->_toInt8($val['gunid']).' '; ## Akos´ old format ###
+ }
+ $this->Base->gb->savePref($this->Base->sessid, UI_SCRATCHPAD_KEY, $str);
+ }
+
+
+ function addItem($ids)
+ {
+ if(!$this->Base->STATIONPREFS[UI_SCRATCHPAD_MAXLENGTH_KEY]) {
+ if (UI_WARNING) $this->Base->_retMsg('ScratchPad length is not set in System Preferences, so it cannot be used.');
+ return false;
+ }
+ if (!$ids) {
+ if (UI_WARNING) $this->Base->_retMsg('No Item(s) selected');
+ return FALSE;
+ }
+ if (!is_array($ids))
+ $ids = array($ids);
+
+ $sp = $this->get();
+ foreach ($ids as $id) {
+ $item = $this->Base->_getMetaInfo($id);
+
+ foreach ($sp as $key=>$val) {
+ if ($val['id'] == $item['id']) {
+ unset($sp[$key]);
+ if (UI_VERBOSE) $this->Base->_retMsg('Entry $1 was already on the ScratchPad. It has been moved to the top of the list.', $item['title'], $val['added']);
+ } else {
+ #$this->Base->incAccessCounter($id);
+ }
+ }
+ $sp = array_merge(array($item), is_array($sp) ? $sp : NULL);
+ }
+
+ for ($n=0; $n<$this->Base->STATIONPREFS[UI_SCRATCHPAD_MAXLENGTH_KEY]; $n++) {
+ if (is_array($sp[$n])) $this->items[$n] = $sp[$n];
+ }
+ ksort($this->items);
+ }
+
+
+ function removeItems($ids)
+ {
+ if (!$ids) {
+ if (UI_WARNING) $this->Base->_retMsg('No Item(s) selected');
+ return FALSE;
+ }
+ if (!is_array($ids))
+ $ids = array($ids);
+
+ foreach ($ids as $id) {
+ $sp =& $this->get();
+ foreach ($sp as $key=>$val) {
+ if ($val['id'] === $id) {
+ unset ($sp[$key]);
+ #$this->Base->decAccessCounter($id);
+ }
+ }
+ }
+
+ return TRUE;
+ }
+
+
+ function reOrder($by)
+ {
+ if (count($this->items) == 0)
+ return FALSE;
+
+ foreach ($this->items as $key=>$val) {
+ $s[$key] = $val[$by];
+ }
+ $curr = $this->order[$by];
+ $this->order = array();
+ (is_null($curr) || $curr=='DESC') ? $this->order[$by] = 'ASC' : $this->order[$by] = 'DESC';
+ switch($this->order[$by]) {
+ case "ASC": asort($s); break;
+ case "DESC": arsort($s); break;
+ }
+ foreach ($s as $key=>$val) {
+ $res[] = $this->items[$key];
+ }
+ $this->items = $res;
+ }
+
+
+ function reLoadM()
+ {
+ foreach($this->items as $key=>$val)
+ $this->items[$key] = $this->Base->_getMetaInfo($val['id']);
+ }
+}
?>
\ No newline at end of file
diff --git a/livesupport/modules/htmlUI/var/ui_smartyExtensions.inc.php b/livesupport/modules/htmlUI/var/ui_smartyExtensions.inc.php
index ef90d0f41..276ec9325 100644
--- a/livesupport/modules/htmlUI/var/ui_smartyExtensions.inc.php
+++ b/livesupport/modules/htmlUI/var/ui_smartyExtensions.inc.php
@@ -1,102 +1,102 @@
-register_object('UIBROWSER', $uiBrowser);
-$Smarty->register_object('BROWSE', $uiBrowser->BROWSE);
-$Smarty->register_object('SEARCH', $uiBrowser->SEARCH);
-$Smarty->assign_by_ref ('PL', $uiBrowser->PLAYLIST);
-$Smarty->assign_by_ref ('SCHEDULER', $uiBrowser->SCHEDULER);
-$Smarty->assign_by_ref ('SCRATCHPAD', $uiBrowser->SCRATCHPAD);
-$Smarty->assign_by_ref ('SUBJECTS', $uiBrowser->SUBJECTS);
-$Smarty->assign_by_ref ('JSCOM', $jscom);
-
-
-$Smarty->register_function('str_repeat', 'S_str_repeat');
-$Smarty->register_function('tra', 'S_tra');
-$Smarty->register_function('getHour', 'S_getHour');
-$Smarty->register_function('getMinute', 'S_getMinute');
-$Smarty->register_function('getSecond', 'S_getSecond');
-$Smarty->register_function('niceTime', 'S_niceTime');
-
-// --- Smarty Extensions ---
-/**
- * str_repeat
- *
- * Repeate given string.
- *
- * @param str string, string to repeate
- * @param count numeric, how often to repeate (converted to type integer)
- * @return string, repeated string
- */
-function S_str_repeat($param)
-{
- extract($param);
- return str_repeat($str, intval($count));
-
-}
-
-/**
- * tra
- *
- * Translate given string.
- *
- * @param void array, array of strings to be outputted translated
- */
-function S_tra($in)
-{
- global $uiBrowser;
- foreach($in as $val) $param[] = $val;
-
- echo tra($param[0], $param[1], $param[2], $param[3], $param[4], $param[5], $param[6], $param[7], $param[8], $param[9]);
-}
-
-function S_getHour($param)
-{
- ## input format is HH:MM:SS.dddddd
- extract ($param);
- list ($h, $m, $s) = explode (':', $time);
- $curr = mktime($h, $m ,$s);
- if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
-
- return strftime("%H", $curr);
-}
-
-function S_getMinute($param)
-{
- ## input format is HH:MM:SS.dddddd
- extract ($param);
- list ($h, $m, $s) = explode (':', $time);
- $curr = mktime($h, $m ,$s);
- if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
-
- return strftime("%M", $curr);
-}
-
-function S_getSecond($param)
-{
- ## input format is HH:MM:SS.dddddd
- extract ($param);
- list ($h, $m, $s) = explode (':', $time);
- $curr = mktime($h, $m ,$s);
- if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
-
- return strftime("%S", $curr);
-}
-
-function S_niceTime($param)
-{
- extract($param);
-
- if (strpos($in, '.')) list ($in, $lost) = explode('.', $in);
- $in = str_replace(' ', '', $in);
-
- if (preg_match('/^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($h, $i, $s) = explode(':', $in);
- elseif (preg_match('/^[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($i, $s) = explode(':', $in);
- else $s = $in;
-
- if ($all || $h > 0) $H = sprintf('%02d', $h).':';
- else $H = ' ';
- $I = sprintf('%02d', $i).':';
- $S = sprintf('%02d', $s);
-
- return $H.$I.$S;
-}
+register_object('UIBROWSER', $uiBrowser);
+$Smarty->register_object('BROWSE', $uiBrowser->BROWSE);
+$Smarty->register_object('SEARCH', $uiBrowser->SEARCH);
+$Smarty->assign_by_ref ('PL', $uiBrowser->PLAYLIST);
+$Smarty->assign_by_ref ('SCHEDULER', $uiBrowser->SCHEDULER);
+$Smarty->assign_by_ref ('SCRATCHPAD', $uiBrowser->SCRATCHPAD);
+$Smarty->assign_by_ref ('SUBJECTS', $uiBrowser->SUBJECTS);
+$Smarty->assign_by_ref ('JSCOM', $jscom);
+
+
+$Smarty->register_function('str_repeat', 'S_str_repeat');
+$Smarty->register_function('tra', 'S_tra');
+$Smarty->register_function('getHour', 'S_getHour');
+$Smarty->register_function('getMinute', 'S_getMinute');
+$Smarty->register_function('getSecond', 'S_getSecond');
+$Smarty->register_function('niceTime', 'S_niceTime');
+
+// --- Smarty Extensions ---
+/**
+ * str_repeat
+ *
+ * Repeate given string.
+ *
+ * @param str string, string to repeate
+ * @param count numeric, how often to repeate (converted to type integer)
+ * @return string, repeated string
+ */
+function S_str_repeat($param)
+{
+ extract($param);
+ return str_repeat($str, intval($count));
+
+}
+
+/**
+ * tra
+ *
+ * Translate given string.
+ *
+ * @param void array, array of strings to be outputted translated
+ */
+function S_tra($in)
+{
+ global $uiBrowser;
+ foreach($in as $val) $param[] = $val;
+
+ echo tra($param[0], $param[1], $param[2], $param[3], $param[4], $param[5], $param[6], $param[7], $param[8], $param[9]);
+}
+
+function S_getHour($param)
+{
+ ## input format is HH:MM:SS.dddddd
+ extract ($param);
+ list ($h, $m, $s) = explode (':', $time);
+ $curr = mktime($h, $m ,$s);
+ if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
+
+ return strftime("%H", $curr);
+}
+
+function S_getMinute($param)
+{
+ ## input format is HH:MM:SS.dddddd
+ extract ($param);
+ list ($h, $m, $s) = explode (':', $time);
+ $curr = mktime($h, $m ,$s);
+ if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
+
+ return strftime("%M", $curr);
+}
+
+function S_getSecond($param)
+{
+ ## input format is HH:MM:SS.dddddd
+ extract ($param);
+ list ($h, $m, $s) = explode (':', $time);
+ $curr = mktime($h, $m ,$s);
+ if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
+
+ return strftime("%S", $curr);
+}
+
+function S_niceTime($param)
+{
+ extract($param);
+
+ if (strpos($in, '.')) list ($in, $lost) = explode('.', $in);
+ $in = str_replace(' ', '', $in);
+
+ if (preg_match('/^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($h, $i, $s) = explode(':', $in);
+ elseif (preg_match('/^[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($i, $s) = explode(':', $in);
+ else $s = $in;
+
+ if ($all || $h > 0) $H = sprintf('%02d', $h).':';
+ else $H = ' ';
+ $I = sprintf('%02d', $i).':';
+ $S = sprintf('%02d', $s);
+
+ return $H.$I.$S;
+}
?>
\ No newline at end of file
diff --git a/livesupport/modules/playlistExecutor/bin/autogen.sh b/livesupport/modules/playlistExecutor/bin/autogen.sh
index 3bd6e3a5d..53b468b55 100755
--- a/livesupport/modules/playlistExecutor/bin/autogen.sh
+++ b/livesupport/modules/playlistExecutor/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.6 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/playlistExecutor/bin/gen_coverage_data.sh b/livesupport/modules/playlistExecutor/bin/gen_coverage_data.sh
index 7c2131645..1dd5a1712 100755
--- a/livesupport/modules/playlistExecutor/bin/gen_coverage_data.sh
+++ b/livesupport/modules/playlistExecutor/bin/gen_coverage_data.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/bin/gen_coverage_data.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/playlistExecutor/etc/Makefile.in b/livesupport/modules/playlistExecutor/etc/Makefile.in
index 25c071ba4..37f262d52 100644
--- a/livesupport/modules/playlistExecutor/etc/Makefile.in
+++ b/livesupport/modules/playlistExecutor/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: fgerlits $
-# Version : $Revision: 1.21 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/playlistExecutor/etc/configure.ac b/livesupport/modules/playlistExecutor/etc/configure.ac
index 54bc3852c..1c4722224 100644
--- a/livesupport/modules/playlistExecutor/etc/configure.ac
+++ b/livesupport/modules/playlistExecutor/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.11 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(PlaylistExecutor, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.11 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../src/AudioPlayerFactory.cxx)
diff --git a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerEventListener.h b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerEventListener.h
index 75478bd72..ebb8b1a32 100644
--- a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerEventListener.h
+++ b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerEventListener.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerEventListener.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* An event listener interface, for catching events of an audio player.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see AudioPlayerInterface
*/
class AudioPlayerEventListener
diff --git a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerFactory.h b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerFactory.h
index 6485a7046..9c49d621a 100644
--- a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerFactory.h
+++ b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerFactory.h,v $
------------------------------------------------------------------------------*/
@@ -86,8 +86,8 @@ using namespace LiveSupport::Core;
* For the DTD and details of the gstreamerPlayer configuration
* element, see the GstreamerPlayer documentation.
*
- * @author $Author: maroy $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
* @see GstreamerPlayer
*/
class AudioPlayerFactory :
diff --git a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h
index 3c57423cb..ff1d520ad 100644
--- a/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h
+++ b/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h,v $
------------------------------------------------------------------------------*/
@@ -68,8 +68,8 @@ using namespace LiveSupport::Core;
/**
* A generic interface for playing audio files.
*
- * @author $Author: maroy $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class AudioPlayerInterface
{
diff --git a/livesupport/modules/playlistExecutor/src/AudioPlayerFactory.cxx b/livesupport/modules/playlistExecutor/src/AudioPlayerFactory.cxx
index e3e4c6c10..da61fc4ca 100644
--- a/livesupport/modules/playlistExecutor/src/AudioPlayerFactory.cxx
+++ b/livesupport/modules/playlistExecutor/src/AudioPlayerFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/AudioPlayerFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx b/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx
index e3fde96c7..38b5d3961 100644
--- a/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx
+++ b/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.h b/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.h
index 78d552761..8056e38fb 100644
--- a/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.h
+++ b/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace PlaylistExecutor {
/**
* Unit test for the AudioPlayerFactory class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
* @see AudioPlayerFactory
*/
class AudioPlayerFactoryGstreamerTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/modules/playlistExecutor/src/GstreamerPlayer.cxx b/livesupport/modules/playlistExecutor/src/GstreamerPlayer.cxx
index 20bf16929..fdd056ff3 100644
--- a/livesupport/modules/playlistExecutor/src/GstreamerPlayer.cxx
+++ b/livesupport/modules/playlistExecutor/src/GstreamerPlayer.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/GstreamerPlayer.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/GstreamerPlayer.h b/livesupport/modules/playlistExecutor/src/GstreamerPlayer.h
index 616624a57..32dc8cd7a 100644
--- a/livesupport/modules/playlistExecutor/src/GstreamerPlayer.h
+++ b/livesupport/modules/playlistExecutor/src/GstreamerPlayer.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/GstreamerPlayer.h,v $
------------------------------------------------------------------------------*/
@@ -85,8 +85,8 @@ using namespace LiveSupport::Core;
*
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.10 $
+ * @author $Author$
+ * @version $Revision$
*/
class GstreamerPlayer : virtual public Configurable,
virtual public AudioPlayerInterface
diff --git a/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.cxx b/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.cxx
index 7263f814b..68159bcaf 100644
--- a/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.cxx
+++ b/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.h b/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.h
index 4ecb61e62..6e34de786 100644
--- a/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.h
+++ b/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/GstreamerPlayerTest.h,v $
------------------------------------------------------------------------------*/
@@ -57,8 +57,8 @@ namespace PlaylistExecutor {
/**
* Unit test for the GstreamerPlayer class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.10 $
+ * @author $Author$
+ * @version $Revision$
* @see GstreamerPlayer
*/
class GstreamerPlayerTest : public CPPUNIT_NS::TestFixture,
diff --git a/livesupport/modules/playlistExecutor/src/TestEventListener.h b/livesupport/modules/playlistExecutor/src/TestEventListener.h
index e108cbd5a..c5a150943 100644
--- a/livesupport/modules/playlistExecutor/src/TestEventListener.h
+++ b/livesupport/modules/playlistExecutor/src/TestEventListener.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/TestEventListener.h,v $
------------------------------------------------------------------------------*/
@@ -61,8 +61,8 @@ using namespace LiveSupport::Core;
/**
* A simple event listener, used for testing.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class TestEventListener : public AudioPlayerEventListener
{
diff --git a/livesupport/modules/playlistExecutor/src/TestRunner.cxx b/livesupport/modules/playlistExecutor/src/TestRunner.cxx
index 64b3e5792..d4fff51d1 100644
--- a/livesupport/modules/playlistExecutor/src/TestRunner.cxx
+++ b/livesupport/modules/playlistExecutor/src/TestRunner.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/TestRunner.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.cxx b/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.cxx
index d1fd38ea2..07c93f980 100644
--- a/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.cxx
+++ b/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.h b/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.h
index 2dd28863d..3cf85c45b 100644
--- a/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.h
+++ b/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/TwoGstreamerPlayersTest.h,v $
------------------------------------------------------------------------------*/
@@ -58,8 +58,8 @@ namespace PlaylistExecutor {
* Unit test for the GstreamerPlayer class, two see if two audio players,
* playing on two different sound cards work correctly.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see GstreamerPlayer
*/
class TwoGstreamerPlayersTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/modules/schedulerClient/bin/autogen.sh b/livesupport/modules/schedulerClient/bin/autogen.sh
index 1f0169226..ca915f54c 100755
--- a/livesupport/modules/schedulerClient/bin/autogen.sh
+++ b/livesupport/modules/schedulerClient/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.6 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/schedulerClient/bin/gen_coverage_data.sh b/livesupport/modules/schedulerClient/bin/gen_coverage_data.sh
index 6e56fcbd9..841b7d81f 100755
--- a/livesupport/modules/schedulerClient/bin/gen_coverage_data.sh
+++ b/livesupport/modules/schedulerClient/bin/gen_coverage_data.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/bin/gen_coverage_data.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/schedulerClient/etc/Makefile.in b/livesupport/modules/schedulerClient/etc/Makefile.in
index 3f2af67a7..5152cf50f 100644
--- a/livesupport/modules/schedulerClient/etc/Makefile.in
+++ b/livesupport/modules/schedulerClient/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: fgerlits $
-# Version : $Revision: 1.10 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/schedulerClient/etc/configure.ac b/livesupport/modules/schedulerClient/etc/configure.ac
index 16331aa6d..2c4705b13 100644
--- a/livesupport/modules/schedulerClient/etc/configure.ac
+++ b/livesupport/modules/schedulerClient/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.5 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(StorageClient, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.5 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../include/LiveSupport/SchedulerClient/SchedulerClientFactory.h)
diff --git a/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientFactory.h b/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientFactory.h
index 3f6660070..5891d4c14 100644
--- a/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientFactory.h
+++ b/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientFactory.h,v $
------------------------------------------------------------------------------*/
@@ -90,8 +90,8 @@ using namespace LiveSupport::Core;
*
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemonXmlRpcClient
*/
class SchedulerClientFactory : virtual public Configurable
diff --git a/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientInterface.h b/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientInterface.h
index 71053129e..55b31d93d 100644
--- a/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientInterface.h
+++ b/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientInterface.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/include/LiveSupport/SchedulerClient/SchedulerClientInterface.h,v $
------------------------------------------------------------------------------*/
@@ -70,8 +70,8 @@ using namespace LiveSupport::Core;
/**
* An interface to access the scheduler daemon as a client.
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class SchedulerClientInterface
{
diff --git a/livesupport/modules/schedulerClient/src/SchedulerClientFactory.cxx b/livesupport/modules/schedulerClient/src/SchedulerClientFactory.cxx
index fb83c908c..6b84efd13 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerClientFactory.cxx
+++ b/livesupport/modules/schedulerClient/src/SchedulerClientFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerClientFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.cxx b/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.cxx
index b26237d67..532d64cf1 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.cxx
+++ b/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.h b/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.h
index 689419942..efbd25af0 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.h
+++ b/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerClientFactoryTest.h,v $
------------------------------------------------------------------------------*/
@@ -61,8 +61,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the SchedulerClientFactoryTest class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerClientFactoryTest
*/
class SchedulerClientFactoryTest : public BaseTestMethod
diff --git a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx
index ddb569ba4..6a6242103 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx
+++ b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.h b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.h
index 67aeea28f..399a2cd3e 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.h
+++ b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.h,v $
------------------------------------------------------------------------------*/
@@ -93,8 +93,8 @@ using namespace LiveSupport::Core;
*
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class SchedulerDaemonXmlRpcClient :
virtual public Configurable,
diff --git a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.cxx b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.cxx
index 5b458900d..1f8edf07c 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.cxx
+++ b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.h b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.h
index e6f1b05ea..6e7c829e2 100644
--- a/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.h
+++ b/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClientTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the SchedulerDaemonXmlRpcClient class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemonXmlRpcClient
*/
class SchedulerDaemonXmlRpcClientTest : public BaseTestMethod
diff --git a/livesupport/modules/schedulerClient/src/TestRunner.cxx b/livesupport/modules/schedulerClient/src/TestRunner.cxx
index 3b4838c59..cb8b88e2e 100644
--- a/livesupport/modules/schedulerClient/src/TestRunner.cxx
+++ b/livesupport/modules/schedulerClient/src/TestRunner.cxx
@@ -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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/TestRunner.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/bin/autogen.sh b/livesupport/modules/storage/bin/autogen.sh
index be04d1ddf..0e59eb14a 100755
--- a/livesupport/modules/storage/bin/autogen.sh
+++ b/livesupport/modules/storage/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.6 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storage/bin/gen_coverage_data.sh b/livesupport/modules/storage/bin/gen_coverage_data.sh
index 21b639911..52098fa94 100755
--- a/livesupport/modules/storage/bin/gen_coverage_data.sh
+++ b/livesupport/modules/storage/bin/gen_coverage_data.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/bin/gen_coverage_data.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storage/etc/Makefile.in b/livesupport/modules/storage/etc/Makefile.in
index 74288cf1a..7c5843900 100644
--- a/livesupport/modules/storage/etc/Makefile.in
+++ b/livesupport/modules/storage/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.24 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/storage/etc/configure.ac b/livesupport/modules/storage/etc/configure.ac
index ae95f2c63..2ffc79607 100644
--- a/livesupport/modules/storage/etc/configure.ac
+++ b/livesupport/modules/storage/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.6 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(Storage, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.6 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../src/StorageClientFactory.cxx)
diff --git a/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientFactory.h b/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientFactory.h
index 615d7ee45..4e0aeee7f 100644
--- a/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientFactory.h
+++ b/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientFactory.h,v $
------------------------------------------------------------------------------*/
@@ -98,8 +98,8 @@ using namespace LiveSupport::Core;
*
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
* @see TestStorageClient
* @see WebStorageClient
*/
diff --git a/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientInterface.h b/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientInterface.h
index c75a8bef7..b3cf39b00 100644
--- a/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientInterface.h
+++ b/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientInterface.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.18 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/include/LiveSupport/Storage/StorageClientInterface.h,v $
------------------------------------------------------------------------------*/
@@ -65,8 +65,8 @@ using namespace Core;
/**
* An interface for storage clients.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.18 $
+ * @author $Author$
+ * @version $Revision$
*/
class StorageClientInterface
{
diff --git a/livesupport/modules/storage/src/StorageClientFactory.cxx b/livesupport/modules/storage/src/StorageClientFactory.cxx
index 2919d861e..5f8119c4a 100644
--- a/livesupport/modules/storage/src/StorageClientFactory.cxx
+++ b/livesupport/modules/storage/src/StorageClientFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/StorageClientFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/StorageClientFactoryTest.cxx b/livesupport/modules/storage/src/StorageClientFactoryTest.cxx
index 6e2919195..fbe115329 100644
--- a/livesupport/modules/storage/src/StorageClientFactoryTest.cxx
+++ b/livesupport/modules/storage/src/StorageClientFactoryTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/StorageClientFactoryTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/StorageClientFactoryTest.h b/livesupport/modules/storage/src/StorageClientFactoryTest.h
index 2ff30ed05..2bc08511b 100644
--- a/livesupport/modules/storage/src/StorageClientFactoryTest.h
+++ b/livesupport/modules/storage/src/StorageClientFactoryTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/StorageClientFactoryTest.h,v $
------------------------------------------------------------------------------*/
@@ -57,8 +57,8 @@ namespace Storage {
/**
* Unit test for the StorageClientFactory class.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
* @see StorageClientFactory
*/
class StorageClientFactoryTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/modules/storage/src/TestRunner.cxx b/livesupport/modules/storage/src/TestRunner.cxx
index 2649d9c6f..6169a023d 100644
--- a/livesupport/modules/storage/src/TestRunner.cxx
+++ b/livesupport/modules/storage/src/TestRunner.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestRunner.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/TestStorageClient.cxx b/livesupport/modules/storage/src/TestStorageClient.cxx
index 7db536950..0d7263ef0 100644
--- a/livesupport/modules/storage/src/TestStorageClient.cxx
+++ b/livesupport/modules/storage/src/TestStorageClient.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.42 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClient.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/TestStorageClient.h b/livesupport/modules/storage/src/TestStorageClient.h
index 147bdfa55..8bce3a1e0 100644
--- a/livesupport/modules/storage/src/TestStorageClient.h
+++ b/livesupport/modules/storage/src/TestStorageClient.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.37 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClient.h,v $
------------------------------------------------------------------------------*/
@@ -85,8 +85,8 @@ using namespace LiveSupport::Core;
* <!ATTLIST testStorage tempFiles CDATA #REQUIRED >
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.37 $
+ * @author $Author$
+ * @version $Revision$
*/
class TestStorageClient :
virtual public Configurable,
diff --git a/livesupport/modules/storage/src/TestStorageClientTest.cxx b/livesupport/modules/storage/src/TestStorageClientTest.cxx
index 5e022d092..b574806b6 100644
--- a/livesupport/modules/storage/src/TestStorageClientTest.cxx
+++ b/livesupport/modules/storage/src/TestStorageClientTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.29 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClientTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/TestStorageClientTest.h b/livesupport/modules/storage/src/TestStorageClientTest.h
index 1409e2bcb..4b282c023 100644
--- a/livesupport/modules/storage/src/TestStorageClientTest.h
+++ b/livesupport/modules/storage/src/TestStorageClientTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClientTest.h,v $
------------------------------------------------------------------------------*/
@@ -57,8 +57,8 @@ namespace Storage {
/**
* Unit test for the UploadPlaylistMetohd class.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.12 $
+ * @author $Author$
+ * @version $Revision$
* @see TestStorageClient
*/
class TestStorageClientTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/modules/storage/src/WebStorageClient.cxx b/livesupport/modules/storage/src/WebStorageClient.cxx
index 992bba1fd..106560b72 100644
--- a/livesupport/modules/storage/src/WebStorageClient.cxx
+++ b/livesupport/modules/storage/src/WebStorageClient.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.49 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/WebStorageClient.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/WebStorageClient.h b/livesupport/modules/storage/src/WebStorageClient.h
index 64f2d576b..7f18b6195 100644
--- a/livesupport/modules/storage/src/WebStorageClient.h
+++ b/livesupport/modules/storage/src/WebStorageClient.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.33 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/WebStorageClient.h,v $
------------------------------------------------------------------------------*/
@@ -99,8 +99,8 @@ using namespace LiveSupport::Core;
* <!ATTLIST location path CDATA #REQUIRED >
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.33 $
+ * @author $Author$
+ * @version $Revision$
*/
class WebStorageClient :
virtual public Configurable,
diff --git a/livesupport/modules/storage/src/WebStorageClientTest.cxx b/livesupport/modules/storage/src/WebStorageClientTest.cxx
index 67ff42b05..dae96ba7b 100644
--- a/livesupport/modules/storage/src/WebStorageClientTest.cxx
+++ b/livesupport/modules/storage/src/WebStorageClientTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.45 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/WebStorageClientTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storage/src/WebStorageClientTest.h b/livesupport/modules/storage/src/WebStorageClientTest.h
index c1874acf4..e8d4d9500 100644
--- a/livesupport/modules/storage/src/WebStorageClientTest.h
+++ b/livesupport/modules/storage/src/WebStorageClientTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/WebStorageClientTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the UploadPlaylistMetohd class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.12 $
+ * @author $Author$
+ * @version $Revision$
* @see WebStorageClient
*/
class WebStorageClientTest : public BaseTestMethod
diff --git a/livesupport/modules/storageAdmin/bin/autogen.sh b/livesupport/modules/storageAdmin/bin/autogen.sh
index 6e418c3e6..877ab52b0 100755
--- a/livesupport/modules/storageAdmin/bin/autogen.sh
+++ b/livesupport/modules/storageAdmin/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageAdmin/bin/backup.sh b/livesupport/modules/storageAdmin/bin/backup.sh
index ea2167b55..62084709b 100755
--- a/livesupport/modules/storageAdmin/bin/backup.sh
+++ b/livesupport/modules/storageAdmin/bin/backup.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/bin/backup.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageAdmin/bin/dumpDbSchema.sh b/livesupport/modules/storageAdmin/bin/dumpDbSchema.sh
index 0668d0ee6..94f3d34d4 100755
--- a/livesupport/modules/storageAdmin/bin/dumpDbSchema.sh
+++ b/livesupport/modules/storageAdmin/bin/dumpDbSchema.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/bin/dumpDbSchema.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageAdmin/bin/import.sh b/livesupport/modules/storageAdmin/bin/import.sh
index 3c84ae5ba..b0ad78620 100755
--- a/livesupport/modules/storageAdmin/bin/import.sh
+++ b/livesupport/modules/storageAdmin/bin/import.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/bin/import.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageAdmin/bin/restore.sh b/livesupport/modules/storageAdmin/bin/restore.sh
index 33ec3ac17..44dc3926a 100755
--- a/livesupport/modules/storageAdmin/bin/restore.sh
+++ b/livesupport/modules/storageAdmin/bin/restore.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/bin/restore.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageAdmin/etc/Makefile.in b/livesupport/modules/storageAdmin/etc/Makefile.in
index ed9204888..fc372d3cb 100644
--- a/livesupport/modules/storageAdmin/etc/Makefile.in
+++ b/livesupport/modules/storageAdmin/etc/Makefile.in
@@ -21,7 +21,7 @@
#
#
# Author : Author$
-# Version : $Revision: 1.5 $
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/storageAdmin/etc/configure.ac b/livesupport/modules/storageAdmin/etc/configure.ac
index 3076c09ec..9886013f6 100644
--- a/livesupport/modules/storageAdmin/etc/configure.ac
+++ b/livesupport/modules/storageAdmin/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.2 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(StorageAdmin, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.2 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../var/getStorPath.php)
diff --git a/livesupport/modules/storageAdmin/var/backup.php b/livesupport/modules/storageAdmin/var/backup.php
index 4f4278571..2c9872473 100644
--- a/livesupport/modules/storageAdmin/var/backup.php
+++ b/livesupport/modules/storageAdmin/var/backup.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/var/backup.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageAdmin/var/conf.php b/livesupport/modules/storageAdmin/var/conf.php
index 515ebd439..8d45125ff 100644
--- a/livesupport/modules/storageAdmin/var/conf.php
+++ b/livesupport/modules/storageAdmin/var/conf.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/var/conf.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageAdmin/var/getStorPath.php b/livesupport/modules/storageAdmin/var/getStorPath.php
index 39128b5ab..74d57825f 100644
--- a/livesupport/modules/storageAdmin/var/getStorPath.php
+++ b/livesupport/modules/storageAdmin/var/getStorPath.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/var/getStorPath.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageAdmin/var/import.php b/livesupport/modules/storageAdmin/var/import.php
index 0cd41a440..78faac2a3 100644
--- a/livesupport/modules/storageAdmin/var/import.php
+++ b/livesupport/modules/storageAdmin/var/import.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/var/import.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageAdmin/var/restore.php b/livesupport/modules/storageAdmin/var/restore.php
index 60f2b5826..a35ad291a 100644
--- a/livesupport/modules/storageAdmin/var/restore.php
+++ b/livesupport/modules/storageAdmin/var/restore.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageAdmin/var/restore.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/bin/autogen.sh b/livesupport/modules/storageServer/bin/autogen.sh
index 7c4badd69..ed238a857 100755
--- a/livesupport/modules/storageServer/bin/autogen.sh
+++ b/livesupport/modules/storageServer/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/createDatabase.sh b/livesupport/modules/storageServer/bin/createDatabase.sh
index 354cf3b6b..e250bd24a 100755
--- a/livesupport/modules/storageServer/bin/createDatabase.sh
+++ b/livesupport/modules/storageServer/bin/createDatabase.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/createDatabase.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/getUrl.sh b/livesupport/modules/storageServer/bin/getUrl.sh
index bc134ea25..1ac6d73f6 100755
--- a/livesupport/modules/storageServer/bin/getUrl.sh
+++ b/livesupport/modules/storageServer/bin/getUrl.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/getUrl.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/resetStorage.sh b/livesupport/modules/storageServer/bin/resetStorage.sh
index 0f3013ed3..ce78b9aad 100755
--- a/livesupport/modules/storageServer/bin/resetStorage.sh
+++ b/livesupport/modules/storageServer/bin/resetStorage.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/resetStorage.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/runPhpTest.sh b/livesupport/modules/storageServer/bin/runPhpTest.sh
index 0cb33fe87..dfdb7a2cd 100755
--- a/livesupport/modules/storageServer/bin/runPhpTest.sh
+++ b/livesupport/modules/storageServer/bin/runPhpTest.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.1 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/runPhpTest.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/setupDirs.sh b/livesupport/modules/storageServer/bin/setupDirs.sh
index 69f709d59..12beac54c 100755
--- a/livesupport/modules/storageServer/bin/setupDirs.sh
+++ b/livesupport/modules/storageServer/bin/setupDirs.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.5 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/setupDirs.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/bin/xrCli.sh b/livesupport/modules/storageServer/bin/xrCli.sh
index b5de67a67..0a94be87b 100755
--- a/livesupport/modules/storageServer/bin/xrCli.sh
+++ b/livesupport/modules/storageServer/bin/xrCli.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.1 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/bin/xrCli.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/etc/Makefile.in b/livesupport/modules/storageServer/etc/Makefile.in
index 3cde5e3f9..0876b0452 100644
--- a/livesupport/modules/storageServer/etc/Makefile.in
+++ b/livesupport/modules/storageServer/etc/Makefile.in
@@ -19,8 +19,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.6 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/storageServer/etc/configure.ac b/livesupport/modules/storageServer/etc/configure.ac
index b14c77e3b..723781182 100644
--- a/livesupport/modules/storageServer/etc/configure.ac
+++ b/livesupport/modules/storageServer/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: tomas $
-dnl Version : $Revision: 1.4 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(StorageServer, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.4 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../var/BasicStor.php)
diff --git a/livesupport/modules/storageServer/var/AccessRecur.php b/livesupport/modules/storageServer/var/AccessRecur.php
index d708c6d63..c0c09d811 100644
--- a/livesupport/modules/storageServer/var/AccessRecur.php
+++ b/livesupport/modules/storageServer/var/AccessRecur.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/AccessRecur.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/BasicStor.php b/livesupport/modules/storageServer/var/BasicStor.php
index 0405ee1d3..0ea024519 100644
--- a/livesupport/modules/storageServer/var/BasicStor.php
+++ b/livesupport/modules/storageServer/var/BasicStor.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.59 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/BasicStor.php,v $
------------------------------------------------------------------------------*/
@@ -52,8 +52,8 @@ require_once "Transport.php";
*
* Core of LiveSupport file storage module
*
- * @author $Author: tomas $
- * @version $Revision: 1.59 $
+ * @author $Author$
+ * @version $Revision$
* @see Alib
*/
class BasicStor extends Alib{
diff --git a/livesupport/modules/storageServer/var/DataEngine.php b/livesupport/modules/storageServer/var/DataEngine.php
index 8a823754f..fe2127361 100644
--- a/livesupport/modules/storageServer/var/DataEngine.php
+++ b/livesupport/modules/storageServer/var/DataEngine.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/DataEngine.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/GreenBox.php b/livesupport/modules/storageServer/var/GreenBox.php
index 8ca6b3f30..63c873c46 100644
--- a/livesupport/modules/storageServer/var/GreenBox.php
+++ b/livesupport/modules/storageServer/var/GreenBox.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.66 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/GreenBox.php,v $
------------------------------------------------------------------------------*/
@@ -34,8 +34,8 @@ require_once "BasicStor.php";
*
* LiveSupport file storage module
*
- * @author $Author: tomas $
- * @version $Revision: 1.66 $
+ * @author $Author$
+ * @version $Revision$
* @see BasicStor
*/
class GreenBox extends BasicStor{
diff --git a/livesupport/modules/storageServer/var/LocStor.php b/livesupport/modules/storageServer/var/LocStor.php
index d9a3047c2..3b9f9700e 100644
--- a/livesupport/modules/storageServer/var/LocStor.php
+++ b/livesupport/modules/storageServer/var/LocStor.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.42 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/LocStor.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/MetaData.php b/livesupport/modules/storageServer/var/MetaData.php
index fe822e1a2..6f1a0bfaa 100644
--- a/livesupport/modules/storageServer/var/MetaData.php
+++ b/livesupport/modules/storageServer/var/MetaData.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.35 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/MetaData.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/Playlist.php b/livesupport/modules/storageServer/var/Playlist.php
index 51c336e38..5ba3af0fc 100644
--- a/livesupport/modules/storageServer/var/Playlist.php
+++ b/livesupport/modules/storageServer/var/Playlist.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/Playlist.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/Prefs.php b/livesupport/modules/storageServer/var/Prefs.php
index 294a37e4f..6daef8646 100644
--- a/livesupport/modules/storageServer/var/Prefs.php
+++ b/livesupport/modules/storageServer/var/Prefs.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/Prefs.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/RawMediaData.php b/livesupport/modules/storageServer/var/RawMediaData.php
index 33a44c039..08825f8f0 100644
--- a/livesupport/modules/storageServer/var/RawMediaData.php
+++ b/livesupport/modules/storageServer/var/RawMediaData.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/RawMediaData.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/StoredFile.php b/livesupport/modules/storageServer/var/StoredFile.php
index 5b6a8f8ad..52b64a4f7 100644
--- a/livesupport/modules/storageServer/var/StoredFile.php
+++ b/livesupport/modules/storageServer/var/StoredFile.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.28 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/StoredFile.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/Transport.php b/livesupport/modules/storageServer/var/Transport.php
index 23254ff36..709fb6f96 100644
--- a/livesupport/modules/storageServer/var/Transport.php
+++ b/livesupport/modules/storageServer/var/Transport.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/Transport.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/Validator.php b/livesupport/modules/storageServer/var/Validator.php
index d2c654174..5fa81fb23 100644
--- a/livesupport/modules/storageServer/var/Validator.php
+++ b/livesupport/modules/storageServer/var/Validator.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/Validator.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/XmlParser.php b/livesupport/modules/storageServer/var/XmlParser.php
index 78e15f9d1..6fb8aff3b 100644
--- a/livesupport/modules/storageServer/var/XmlParser.php
+++ b/livesupport/modules/storageServer/var/XmlParser.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/XmlParser.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/audioClipFormat.php b/livesupport/modules/storageServer/var/audioClipFormat.php
index 8e685678a..38c50a8a5 100644
--- a/livesupport/modules/storageServer/var/audioClipFormat.php
+++ b/livesupport/modules/storageServer/var/audioClipFormat.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/audioClipFormat.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/conf.php b/livesupport/modules/storageServer/var/conf.php
index 76c7780b7..0a7c4921c 100644
--- a/livesupport/modules/storageServer/var/conf.php
+++ b/livesupport/modules/storageServer/var/conf.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.23 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/conf.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/index.php b/livesupport/modules/storageServer/var/index.php
index 850bb5ca3..f768e9ddb 100644
--- a/livesupport/modules/storageServer/var/index.php
+++ b/livesupport/modules/storageServer/var/index.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/index.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/getGname.php b/livesupport/modules/storageServer/var/install/getGname.php
index 22a819ef4..c925c6157 100644
--- a/livesupport/modules/storageServer/var/install/getGname.php
+++ b/livesupport/modules/storageServer/var/install/getGname.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/getGname.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/getPwd.php b/livesupport/modules/storageServer/var/install/getPwd.php
index 13aae770a..b8049eae5 100644
--- a/livesupport/modules/storageServer/var/install/getPwd.php
+++ b/livesupport/modules/storageServer/var/install/getPwd.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/getPwd.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/getWwwRoot.php b/livesupport/modules/storageServer/var/install/getWwwRoot.php
index 4d1f76da5..b4291c907 100644
--- a/livesupport/modules/storageServer/var/install/getWwwRoot.php
+++ b/livesupport/modules/storageServer/var/install/getWwwRoot.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/getWwwRoot.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/getXrUrl.php b/livesupport/modules/storageServer/var/install/getXrUrl.php
index 10cedf2a3..b366a3b08 100644
--- a/livesupport/modules/storageServer/var/install/getXrUrl.php
+++ b/livesupport/modules/storageServer/var/install/getXrUrl.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/getXrUrl.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/index.php b/livesupport/modules/storageServer/var/install/index.php
index cb503b091..100c7b24e 100644
--- a/livesupport/modules/storageServer/var/install/index.php
+++ b/livesupport/modules/storageServer/var/install/index.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/index.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/install.php b/livesupport/modules/storageServer/var/install/install.php
index 587425514..9a33d048f 100644
--- a/livesupport/modules/storageServer/var/install/install.php
+++ b/livesupport/modules/storageServer/var/install/install.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.18 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/install.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/install/uninstall.php b/livesupport/modules/storageServer/var/install/uninstall.php
index 584b76f77..883e1e6e9 100644
--- a/livesupport/modules/storageServer/var/install/uninstall.php
+++ b/livesupport/modules/storageServer/var/install/uninstall.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/uninstall.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/playlistFormat.php b/livesupport/modules/storageServer/var/playlistFormat.php
index 00b372a66..1b5aaf032 100644
--- a/livesupport/modules/storageServer/var/playlistFormat.php
+++ b/livesupport/modules/storageServer/var/playlistFormat.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/playlistFormat.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/tests/index.php b/livesupport/modules/storageServer/var/tests/index.php
index 65c153c03..31da3b538 100644
--- a/livesupport/modules/storageServer/var/tests/index.php
+++ b/livesupport/modules/storageServer/var/tests/index.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/tests/index.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/tests/transTest.php b/livesupport/modules/storageServer/var/tests/transTest.php
index b80b9d3bf..a0e51d19d 100644
--- a/livesupport/modules/storageServer/var/tests/transTest.php
+++ b/livesupport/modules/storageServer/var/tests/transTest.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/tests/transTest.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/tests/transTest.sh b/livesupport/modules/storageServer/var/tests/transTest.sh
index 9114646b2..dc50c4a68 100755
--- a/livesupport/modules/storageServer/var/tests/transTest.sh
+++ b/livesupport/modules/storageServer/var/tests/transTest.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/tests/transTest.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/var/tests/webstreamTest.php b/livesupport/modules/storageServer/var/tests/webstreamTest.php
index d1884e401..420fb13f7 100644
--- a/livesupport/modules/storageServer/var/tests/webstreamTest.php
+++ b/livesupport/modules/storageServer/var/tests/webstreamTest.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/tests/webstreamTest.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/webstreamFormat.php b/livesupport/modules/storageServer/var/webstreamFormat.php
index 36361ef99..ad65ccaea 100644
--- a/livesupport/modules/storageServer/var/webstreamFormat.php
+++ b/livesupport/modules/storageServer/var/webstreamFormat.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/webstreamFormat.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/XR_LocStor.php b/livesupport/modules/storageServer/var/xmlrpc/XR_LocStor.php
index 4db69218d..f87efd0c2 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/XR_LocStor.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/XR_LocStor.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.25 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/XR_LocStor.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/index.php b/livesupport/modules/storageServer/var/xmlrpc/index.php
index 57a0bba2d..6fc9deee2 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/index.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/index.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/index.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/put.php b/livesupport/modules/storageServer/var/xmlrpc/put.php
index 1f2997853..ca9c1f107 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/put.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/put.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/put.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/schedulerPhpClient.php b/livesupport/modules/storageServer/var/xmlrpc/schedulerPhpClient.php
index 5540a21fd..87405603d 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/schedulerPhpClient.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/schedulerPhpClient.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/schedulerPhpClient.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/simpleGet.php b/livesupport/modules/storageServer/var/xmlrpc/simpleGet.php
index b423aa00d..c48df9b0c 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/simpleGet.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/simpleGet.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/simpleGet.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh b/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh
index a21e7c396..fe2edbd12 100755
--- a/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh
+++ b/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh
@@ -22,8 +22,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: tomas $
-# Version : $Revision: 1.28 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php b/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php
index fb5a2b71b..627053aa1 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.27 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/storageServer/var/xmlrpc/xr_cli_test.php b/livesupport/modules/storageServer/var/xmlrpc/xr_cli_test.php
index 29260d894..d9ad218aa 100644
--- a/livesupport/modules/storageServer/var/xmlrpc/xr_cli_test.php
+++ b/livesupport/modules/storageServer/var/xmlrpc/xr_cli_test.php
@@ -22,8 +22,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: tomas $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/xr_cli_test.php,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/bin/autogen.sh b/livesupport/modules/widgets/bin/autogen.sh
index 6ee7e57b9..69a3e450b 100755
--- a/livesupport/modules/widgets/bin/autogen.sh
+++ b/livesupport/modules/widgets/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/modules/widgets/etc/Makefile.in b/livesupport/modules/widgets/etc/Makefile.in
index 8529e3ae5..b0cc21183 100644
--- a/livesupport/modules/widgets/etc/Makefile.in
+++ b/livesupport/modules/widgets/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: fgerlits $
-# Version : $Revision: 1.23 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/modules/widgets/etc/configure.ac b/livesupport/modules/widgets/etc/configure.ac
index 38fd8cbe0..34a2ccec7 100644
--- a/livesupport/modules/widgets/etc/configure.ac
+++ b/livesupport/modules/widgets/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.3 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(Widgets, 1.0, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.3 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../include/LiveSupport/Widgets/ImageButton.h)
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/BlueBin.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/BlueBin.h
index 7a9b8eb0b..dcff0f2da 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/BlueBin.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/BlueBin.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/BlueBin.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* A container holding exactly one child, habing a light blue border to it.
*
- * @author $Author: maroy $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
*/
class BlueBin : public Gtk::Bin
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/Button.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/Button.h
index 302a60dc2..021e91029 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/Button.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/Button.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/Button.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* A button holding a text.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class Button : public Gtk::Button
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ButtonImages.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ButtonImages.h
index 644098464..c69e46d4d 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ButtonImages.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ButtonImages.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ButtonImages.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Widgets {
/**
* A helper class to hold a set of images related to buttons.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class ButtonImages
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/Colors.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/Colors.h
index 1f928ffde..e93963409 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/Colors.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/Colors.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/Colors.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ namespace Widgets {
* The definitions of the colors can be found in doc/gui/styleguide.pdf;
* the last two colors were taken from doc/gui/designs/livemode.gif.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class Colors
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ComboBoxText.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ComboBoxText.h
index ff24c5f59..a7910feec 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ComboBoxText.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ComboBoxText.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ComboBoxText.h,v $
------------------------------------------------------------------------------*/
@@ -66,8 +66,8 @@ using namespace LiveSupport::Core;
/**
* A combo box holding text entries.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
*/
class ComboBoxText : public Gtk::ComboBoxText
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerBitmaps.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerBitmaps.h
index 137529aef..e1851f826 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerBitmaps.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerBitmaps.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerBitmaps.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Widgets {
/**
* A helper class to hold a set of corner bitmaps.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class CornerBitmaps
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerImages.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerImages.h
index 9199961b4..78a2b3eba 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerImages.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerImages.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/CornerImages.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Widgets {
/**
* A helper class to hold a set of corner images.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class CornerImages
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/DialogWindow.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/DialogWindow.h
index 62b42ab15..15ea450db 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/DialogWindow.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/DialogWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/DialogWindow.h,v $
------------------------------------------------------------------------------*/
@@ -76,8 +76,8 @@ using namespace LiveSupport::Core;
* it is the responsibility of the caller to delete it (or it can be
* reused a few times first).
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class DialogWindow : public WhiteWindow,
public LocalizedObject
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h
index 6d84499c1..b5bb56500 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* A container, holding a Gtk::Entry as its only child.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class EntryBin : public BlueBin
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ImageButton.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ImageButton.h
index 1990f587c..ccf09c6c4 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ImageButton.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ImageButton.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ImageButton.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Widgets {
* The button is fixed in size, which is determined by the images used
* to represent it.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class ImageButton : public Gtk::Button
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/MetadataComboBoxText.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/MetadataComboBoxText.h
index 605ccd0bd..260fe8cdd 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/MetadataComboBoxText.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/MetadataComboBoxText.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/MetadataComboBoxText.h,v $
------------------------------------------------------------------------------*/
@@ -60,8 +60,8 @@ using namespace LiveSupport::Core;
/**
* A combo box holding all possible metadata type entries.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class MetadataComboBoxText : public ComboBoxText
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/Notebook.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/Notebook.h
index 3b2458bd7..4d34c8af7 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/Notebook.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/Notebook.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/Notebook.h,v $
------------------------------------------------------------------------------*/
@@ -69,8 +69,8 @@ using namespace LiveSupport::Core;
*
* After adding pages to a Notebook object, call the function pagesAdded().
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class Notebook : public Gtk::Alignment
{
@@ -79,8 +79,8 @@ class Notebook : public Gtk::Alignment
* A container class, holding all that is needed to represent
* a page in the notepad.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class Page
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/OperatorComboBoxText.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/OperatorComboBoxText.h
index 6743e5bde..f9d0a4174 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/OperatorComboBoxText.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/OperatorComboBoxText.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/OperatorComboBoxText.h,v $
------------------------------------------------------------------------------*/
@@ -60,8 +60,8 @@ using namespace LiveSupport::Core;
/**
* A combo box holding all possible search operator entries.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class OperatorComboBoxText : public ComboBoxText,
public LocalizedObject
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/PlayableTreeModelColumnRecord.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/PlayableTreeModelColumnRecord.h
index c8a66a811..68f667c82 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/PlayableTreeModelColumnRecord.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/PlayableTreeModelColumnRecord.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/PlayableTreeModelColumnRecord.h,v $
------------------------------------------------------------------------------*/
@@ -58,8 +58,8 @@ namespace Widgets {
* A basic column record class for tree models with colorable rows and a
* (usually invisible) column of type Ptr::Ref.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class PlayableTreeModelColumnRecord : public ZebraTreeModelColumnRecord
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/WhiteWindow.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/WhiteWindow.h
index 24d307a5a..ea7f9fac1 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/WhiteWindow.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/WhiteWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.16 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/WhiteWindow.h,v $
------------------------------------------------------------------------------*/
@@ -93,8 +93,8 @@ using namespace LiveSupport::Core;
* }
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.16 $
+ * @author $Author$
+ * @version $Revision$
* @see WidgetFactory
* @see WidgetFactory#getWhiteWindowCorners
*/
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/WidgetFactory.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/WidgetFactory.h
index 0113c1706..46b253f4c 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/WidgetFactory.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/WidgetFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.25 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/WidgetFactory.h,v $
------------------------------------------------------------------------------*/
@@ -91,8 +91,8 @@ class ZebraTreeView;
*
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.25 $
+ * @author $Author$
+ * @version $Revision$
*/
class WidgetFactory :
virtual public Configurable
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraCellRenderer.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraCellRenderer.h
index 650f8fa7b..801a42026 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraCellRenderer.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraCellRenderer.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraCellRenderer.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Widgets {
* This is not used anywhere at the moment, but it's left in here because
* we will probably need (something like) this later.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class ZebraCellRenderer : public Gtk::CellRendererText
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeModelColumnRecord.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeModelColumnRecord.h
index 034c996f8..614c2e6eb 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeModelColumnRecord.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeModelColumnRecord.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeModelColumnRecord.h,v $
------------------------------------------------------------------------------*/
@@ -56,8 +56,8 @@ namespace Widgets {
/**
* A basic column record class for tree models with colorable rows.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class ZebraTreeModelColumnRecord : public Gtk::TreeModelColumnRecord
{
diff --git a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeView.h b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeView.h
index 83e35f54c..22cda4ca8 100644
--- a/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeView.h
+++ b/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeView.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/ZebraTreeView.h,v $
------------------------------------------------------------------------------*/
@@ -91,8 +91,8 @@ using namespace LiveSupport::Core;
* 2) added to a TreeViewColumn using a constructor or pack_start() etc;
* 3) connected with a TreeModelColumn using set_renderer().
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class ZebraTreeView : public Gtk::TreeView
{
diff --git a/livesupport/modules/widgets/src/BlueBin.cxx b/livesupport/modules/widgets/src/BlueBin.cxx
index 638fc2a36..e319547be 100644
--- a/livesupport/modules/widgets/src/BlueBin.cxx
+++ b/livesupport/modules/widgets/src/BlueBin.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/BlueBin.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/Button.cxx b/livesupport/modules/widgets/src/Button.cxx
index 62a934274..20e4bfab5 100644
--- a/livesupport/modules/widgets/src/Button.cxx
+++ b/livesupport/modules/widgets/src/Button.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/Button.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/ButtonImages.cxx b/livesupport/modules/widgets/src/ButtonImages.cxx
index 49a335e9b..7c3a4b6a5 100644
--- a/livesupport/modules/widgets/src/ButtonImages.cxx
+++ b/livesupport/modules/widgets/src/ButtonImages.cxx
@@ -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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ButtonImages.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/Colors.cxx b/livesupport/modules/widgets/src/Colors.cxx
index 16db459d2..77e8856c7 100644
--- a/livesupport/modules/widgets/src/Colors.cxx
+++ b/livesupport/modules/widgets/src/Colors.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/Colors.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/ComboBoxText.cxx b/livesupport/modules/widgets/src/ComboBoxText.cxx
index bede2c056..83d6a56b9 100644
--- a/livesupport/modules/widgets/src/ComboBoxText.cxx
+++ b/livesupport/modules/widgets/src/ComboBoxText.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ComboBoxText.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/CornerImages.cxx b/livesupport/modules/widgets/src/CornerImages.cxx
index d300a80c4..2a626233d 100644
--- a/livesupport/modules/widgets/src/CornerImages.cxx
+++ b/livesupport/modules/widgets/src/CornerImages.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/CornerImages.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/DialogWindow.cxx b/livesupport/modules/widgets/src/DialogWindow.cxx
index 803945ed4..915a5dbf0 100644
--- a/livesupport/modules/widgets/src/DialogWindow.cxx
+++ b/livesupport/modules/widgets/src/DialogWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/DialogWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/EntryBin.cxx b/livesupport/modules/widgets/src/EntryBin.cxx
index 37b86f813..2f7254612 100644
--- a/livesupport/modules/widgets/src/EntryBin.cxx
+++ b/livesupport/modules/widgets/src/EntryBin.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/EntryBin.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/ImageButton.cxx b/livesupport/modules/widgets/src/ImageButton.cxx
index 68bf01de4..9dab2cba5 100644
--- a/livesupport/modules/widgets/src/ImageButton.cxx
+++ b/livesupport/modules/widgets/src/ImageButton.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ImageButton.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/MessageWindow.cxx b/livesupport/modules/widgets/src/MessageWindow.cxx
index a3591cfea..8e2953883 100644
--- a/livesupport/modules/widgets/src/MessageWindow.cxx
+++ b/livesupport/modules/widgets/src/MessageWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/MessageWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/MessageWindow.h b/livesupport/modules/widgets/src/MessageWindow.h
index 47cb462e3..a48688fb8 100644
--- a/livesupport/modules/widgets/src/MessageWindow.h
+++ b/livesupport/modules/widgets/src/MessageWindow.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/MessageWindow.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
* A message window, displaying a single line of message, with an OK
* button.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class MessageWindow : public WhiteWindow
{
diff --git a/livesupport/modules/widgets/src/MetadataComboBoxText.cxx b/livesupport/modules/widgets/src/MetadataComboBoxText.cxx
index e1b969edb..22281d295 100644
--- a/livesupport/modules/widgets/src/MetadataComboBoxText.cxx
+++ b/livesupport/modules/widgets/src/MetadataComboBoxText.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/MetadataComboBoxText.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/Notebook.cxx b/livesupport/modules/widgets/src/Notebook.cxx
index 57da583d6..c2a0a30bc 100644
--- a/livesupport/modules/widgets/src/Notebook.cxx
+++ b/livesupport/modules/widgets/src/Notebook.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/Notebook.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/OperatorComboBoxText.cxx b/livesupport/modules/widgets/src/OperatorComboBoxText.cxx
index 6b8b52e85..51db0c249 100644
--- a/livesupport/modules/widgets/src/OperatorComboBoxText.cxx
+++ b/livesupport/modules/widgets/src/OperatorComboBoxText.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/OperatorComboBoxText.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/TestWindow.cxx b/livesupport/modules/widgets/src/TestWindow.cxx
index d2b03e06c..b631d4f0b 100644
--- a/livesupport/modules/widgets/src/TestWindow.cxx
+++ b/livesupport/modules/widgets/src/TestWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.20 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/TestWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/TestWindow.h b/livesupport/modules/widgets/src/TestWindow.h
index 219063f11..02a632692 100644
--- a/livesupport/modules/widgets/src/TestWindow.h
+++ b/livesupport/modules/widgets/src/TestWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/TestWindow.h,v $
------------------------------------------------------------------------------*/
@@ -72,8 +72,8 @@ using namespace LiveSupport::Core;
/**
* A window, enabling interactive testing of UI components.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.13 $
+ * @author $Author$
+ * @version $Revision$
*/
class TestWindow : public WhiteWindow
{
diff --git a/livesupport/modules/widgets/src/WhiteWindow.cxx b/livesupport/modules/widgets/src/WhiteWindow.cxx
index 632222712..38b436bd3 100644
--- a/livesupport/modules/widgets/src/WhiteWindow.cxx
+++ b/livesupport/modules/widgets/src/WhiteWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.19 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/WhiteWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/WidgetFactory.cxx b/livesupport/modules/widgets/src/WidgetFactory.cxx
index 3861d1c8b..125711733 100644
--- a/livesupport/modules/widgets/src/WidgetFactory.cxx
+++ b/livesupport/modules/widgets/src/WidgetFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.30 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/WidgetFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/ZebraCellRenderer.cxx b/livesupport/modules/widgets/src/ZebraCellRenderer.cxx
index 653f51237..7c518764c 100644
--- a/livesupport/modules/widgets/src/ZebraCellRenderer.cxx
+++ b/livesupport/modules/widgets/src/ZebraCellRenderer.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraCellRenderer.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/ZebraTreeView.cxx b/livesupport/modules/widgets/src/ZebraTreeView.cxx
index cbb869c26..449a818de 100644
--- a/livesupport/modules/widgets/src/ZebraTreeView.cxx
+++ b/livesupport/modules/widgets/src/ZebraTreeView.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.18 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraTreeView.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/modules/widgets/src/main.cxx b/livesupport/modules/widgets/src/main.cxx
index c5a8f73e6..c2cf6f966 100644
--- a/livesupport/modules/widgets/src/main.cxx
+++ b/livesupport/modules/widgets/src/main.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/main.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/bin/autogen.sh b/livesupport/products/gLiveSupport/bin/autogen.sh
index 1eb6abf65..ae415946f 100755
--- a/livesupport/products/gLiveSupport/bin/autogen.sh
+++ b/livesupport/products/gLiveSupport/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.10 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/gLiveSupport/bin/gLiveSupport.sh b/livesupport/products/gLiveSupport/bin/gLiveSupport.sh
index c4a46272d..58ae623e1 100755
--- a/livesupport/products/gLiveSupport/bin/gLiveSupport.sh
+++ b/livesupport/products/gLiveSupport/bin/gLiveSupport.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.4 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/bin/gLiveSupport.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/gLiveSupport/bin/gLiveSupport_devenv.sh b/livesupport/products/gLiveSupport/bin/gLiveSupport_devenv.sh
index 78d01c2fd..2778bc768 100755
--- a/livesupport/products/gLiveSupport/bin/gLiveSupport_devenv.sh
+++ b/livesupport/products/gLiveSupport/bin/gLiveSupport_devenv.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/bin/gLiveSupport_devenv.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/gLiveSupport/bin/gen_coverage_data.sh b/livesupport/products/gLiveSupport/bin/gen_coverage_data.sh
index 4c8ba5f55..c9585f1dd 100755
--- a/livesupport/products/gLiveSupport/bin/gen_coverage_data.sh
+++ b/livesupport/products/gLiveSupport/bin/gen_coverage_data.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/bin/gen_coverage_data.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/gLiveSupport/etc/Makefile.in b/livesupport/products/gLiveSupport/etc/Makefile.in
index ab428ec6e..1488f2d98 100644
--- a/livesupport/products/gLiveSupport/etc/Makefile.in
+++ b/livesupport/products/gLiveSupport/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.53 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/products/gLiveSupport/etc/configure.ac b/livesupport/products/gLiveSupport/etc/configure.ac
index d0f463b42..bd1fa4f8b 100644
--- a/livesupport/products/gLiveSupport/etc/configure.ac
+++ b/livesupport/products/gLiveSupport/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.11 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(gLiveSupport, 0.1, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.11 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../src/main.cxx)
diff --git a/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.cxx b/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.cxx
index 9bc0fb8ad..65221a19e 100644
--- a/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.cxx
+++ b/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.h b/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.h
index 4c7ef4d57..b31fb7302 100644
--- a/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.h
+++ b/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AdvancedSearchEntry.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* A Gtk::VBox with one or more search input fields in it.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class AdvancedSearchEntry : public Gtk::VBox,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/AdvancedSearchItem.cxx b/livesupport/products/gLiveSupport/src/AdvancedSearchItem.cxx
index 460fae4c3..30f9ce112 100644
--- a/livesupport/products/gLiveSupport/src/AdvancedSearchItem.cxx
+++ b/livesupport/products/gLiveSupport/src/AdvancedSearchItem.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AdvancedSearchItem.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/AdvancedSearchItem.h b/livesupport/products/gLiveSupport/src/AdvancedSearchItem.h
index 695638497..1a2d6087d 100644
--- a/livesupport/products/gLiveSupport/src/AdvancedSearchItem.h
+++ b/livesupport/products/gLiveSupport/src/AdvancedSearchItem.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AdvancedSearchItem.h,v $
------------------------------------------------------------------------------*/
@@ -72,8 +72,8 @@ using namespace LiveSupport::Widgets;
/**
* A single search input field.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class AdvancedSearchItem : public Gtk::HBox,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/AudioPlayerTest.cxx b/livesupport/products/gLiveSupport/src/AudioPlayerTest.cxx
index d9a95762a..57d756170 100644
--- a/livesupport/products/gLiveSupport/src/AudioPlayerTest.cxx
+++ b/livesupport/products/gLiveSupport/src/AudioPlayerTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AudioPlayerTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/AudioPlayerTest.h b/livesupport/products/gLiveSupport/src/AudioPlayerTest.h
index 999fa866e..11f0871ac 100644
--- a/livesupport/products/gLiveSupport/src/AudioPlayerTest.h
+++ b/livesupport/products/gLiveSupport/src/AudioPlayerTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/AudioPlayerTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Testing audio playback from the storage.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see AudioPlayerFactory
*/
class AudioPlayerTest : public BaseTestMethod
diff --git a/livesupport/products/gLiveSupport/src/BrowseEntry.cxx b/livesupport/products/gLiveSupport/src/BrowseEntry.cxx
index 57e2854fd..e7f220e42 100644
--- a/livesupport/products/gLiveSupport/src/BrowseEntry.cxx
+++ b/livesupport/products/gLiveSupport/src/BrowseEntry.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/BrowseEntry.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/BrowseEntry.h b/livesupport/products/gLiveSupport/src/BrowseEntry.h
index 36fada061..6a410cd0c 100644
--- a/livesupport/products/gLiveSupport/src/BrowseEntry.h
+++ b/livesupport/products/gLiveSupport/src/BrowseEntry.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/BrowseEntry.h,v $
------------------------------------------------------------------------------*/
@@ -65,8 +65,8 @@ using namespace LiveSupport::Core;
/**
* A Gtk::HBox with one or more search input fields in it.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class BrowseEntry : public Gtk::HBox,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/BrowseItem.cxx b/livesupport/products/gLiveSupport/src/BrowseItem.cxx
index 800408167..e00d15560 100644
--- a/livesupport/products/gLiveSupport/src/BrowseItem.cxx
+++ b/livesupport/products/gLiveSupport/src/BrowseItem.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/BrowseItem.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/BrowseItem.h b/livesupport/products/gLiveSupport/src/BrowseItem.h
index 1fa754d94..43be57b14 100644
--- a/livesupport/products/gLiveSupport/src/BrowseItem.h
+++ b/livesupport/products/gLiveSupport/src/BrowseItem.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/BrowseItem.h,v $
------------------------------------------------------------------------------*/
@@ -79,8 +79,8 @@ using namespace LiveSupport::Widgets;
* of all search conditions selected in BrowseItem objects to the left of
* this one.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class BrowseItem : public Gtk::VBox,
public LocalizedObject
@@ -108,8 +108,8 @@ class BrowseItem : public Gtk::VBox,
* The columns model needed by Gtk::TreeView.
* Lists one clip per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public ZebraTreeModelColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/CuePlayer.cxx b/livesupport/products/gLiveSupport/src/CuePlayer.cxx
index 705cf15d7..ddbca0d1c 100644
--- a/livesupport/products/gLiveSupport/src/CuePlayer.cxx
+++ b/livesupport/products/gLiveSupport/src/CuePlayer.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/CuePlayer.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/CuePlayer.h b/livesupport/products/gLiveSupport/src/CuePlayer.h
index a25ddd59e..85a3443e7 100644
--- a/livesupport/products/gLiveSupport/src/CuePlayer.h
+++ b/livesupport/products/gLiveSupport/src/CuePlayer.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/CuePlayer.h,v $
------------------------------------------------------------------------------*/
@@ -68,8 +68,8 @@ using namespace LiveSupport::Widgets;
* A box displaying a play/pause and a stop button, which control the cue
* (preview) audio player.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class CuePlayer : public Gtk::HBox,
public PlaylistExecutor::AudioPlayerEventListener
diff --git a/livesupport/products/gLiveSupport/src/GLiveSupport.cxx b/livesupport/products/gLiveSupport/src/GLiveSupport.cxx
index 63615f98b..59b238b1b 100644
--- a/livesupport/products/gLiveSupport/src/GLiveSupport.cxx
+++ b/livesupport/products/gLiveSupport/src/GLiveSupport.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.77 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/GLiveSupport.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/GLiveSupport.h b/livesupport/products/gLiveSupport/src/GLiveSupport.h
index 1660e96e4..24f622084 100644
--- a/livesupport/products/gLiveSupport/src/GLiveSupport.h
+++ b/livesupport/products/gLiveSupport/src/GLiveSupport.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.49 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/GLiveSupport.h,v $
------------------------------------------------------------------------------*/
@@ -102,8 +102,8 @@ class MasterPanelWindow;
* schedulerClientFactory
elements see their
* respective documentation.
*
- * @author $Author: maroy $
- * @version $Revision: 1.49 $
+ * @author $Author$
+ * @version $Revision$
* @see LocalizedObject#getBundle(const xmlpp::Element &)
* @see AuthenticationClientFactory
* @see StorageClientFactory
diff --git a/livesupport/products/gLiveSupport/src/GLiveSupportTest.cxx b/livesupport/products/gLiveSupport/src/GLiveSupportTest.cxx
index ebf34ceb7..aa2268774 100644
--- a/livesupport/products/gLiveSupport/src/GLiveSupportTest.cxx
+++ b/livesupport/products/gLiveSupport/src/GLiveSupportTest.cxx
@@ -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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/GLiveSupportTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/GLiveSupportTest.h b/livesupport/products/gLiveSupport/src/GLiveSupportTest.h
index 1bd59d9de..85575fae4 100644
--- a/livesupport/products/gLiveSupport/src/GLiveSupportTest.h
+++ b/livesupport/products/gLiveSupport/src/GLiveSupportTest.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/GLiveSupportTest.h,v $
------------------------------------------------------------------------------*/
@@ -65,8 +65,8 @@ using namespace LiveSupport::Core;
/**
* Testing the GLiveSupport class
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
* @see GLiveSupport
*/
class GLiveSupportTest : public BaseTestMethod
diff --git a/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx b/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx
index 88ef11c63..517e8fa39 100644
--- a/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.21 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/LiveModeWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/LiveModeWindow.h b/livesupport/products/gLiveSupport/src/LiveModeWindow.h
index 70d6fe14e..c213322d5 100644
--- a/livesupport/products/gLiveSupport/src/LiveModeWindow.h
+++ b/livesupport/products/gLiveSupport/src/LiveModeWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/LiveModeWindow.h,v $
------------------------------------------------------------------------------*/
@@ -73,8 +73,8 @@ using namespace LiveSupport::Widgets;
* The LiveMode window, showing recent and relevant audio clips and
* playlists.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class LiveModeWindow : public WhiteWindow, public LocalizedObject
{
@@ -86,8 +86,8 @@ class LiveModeWindow : public WhiteWindow, public LocalizedObject
* The columns model needed by Gtk::TreeView.
* Lists one clip per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public PlayableTreeModelColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/LoginWindow.cxx b/livesupport/products/gLiveSupport/src/LoginWindow.cxx
index bd82b3a2b..a700fe183 100644
--- a/livesupport/products/gLiveSupport/src/LoginWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/LoginWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/LoginWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/LoginWindow.h b/livesupport/products/gLiveSupport/src/LoginWindow.h
index ba732d517..0c3549e33 100644
--- a/livesupport/products/gLiveSupport/src/LoginWindow.h
+++ b/livesupport/products/gLiveSupport/src/LoginWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/LoginWindow.h,v $
------------------------------------------------------------------------------*/
@@ -76,8 +76,8 @@ using namespace LiveSupport::Widgets;
/**
* A window, handling user login.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class LoginWindow : public WhiteWindow, public LocalizedObject
{
diff --git a/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx b/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx
index e370fd985..7e73ee8b4 100644
--- a/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx
+++ b/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.h b/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.h
index 427679057..751890f3f 100644
--- a/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.h
+++ b/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelUserInfoWidget.h,v $
------------------------------------------------------------------------------*/
@@ -68,8 +68,8 @@ using namespace LiveSupport::Core;
*
* This widget handles login and login info display.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class MasterPanelUserInfoWidget : public Gtk::Table,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx
index c9dae9453..f3939345d 100644
--- a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.44 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/MasterPanelWindow.h b/livesupport/products/gLiveSupport/src/MasterPanelWindow.h
index 9f194680a..882ccd0bb 100644
--- a/livesupport/products/gLiveSupport/src/MasterPanelWindow.h
+++ b/livesupport/products/gLiveSupport/src/MasterPanelWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.21 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelWindow.h,v $
------------------------------------------------------------------------------*/
@@ -91,8 +91,8 @@ using namespace LiveSupport::Widgets;
* +--------------------------------------------------+
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.21 $
+ * @author $Author$
+ * @version $Revision$
*/
class MasterPanelWindow : public Gtk::Window, public LocalizedObject
{
diff --git a/livesupport/products/gLiveSupport/src/NowPlaying.cxx b/livesupport/products/gLiveSupport/src/NowPlaying.cxx
index a1202f1a1..2f806b9cd 100644
--- a/livesupport/products/gLiveSupport/src/NowPlaying.cxx
+++ b/livesupport/products/gLiveSupport/src/NowPlaying.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/NowPlaying.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/NowPlaying.h b/livesupport/products/gLiveSupport/src/NowPlaying.h
index 20a0e3df1..10830a59d 100644
--- a/livesupport/products/gLiveSupport/src/NowPlaying.h
+++ b/livesupport/products/gLiveSupport/src/NowPlaying.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/NowPlaying.h,v $
------------------------------------------------------------------------------*/
@@ -65,8 +65,8 @@ using namespace LiveSupport::Widgets;
/**
* The box displaying "now playing" in the master panel.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class NowPlaying : public Gtk::HBox,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.cxx b/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.cxx
index bceaf5af1..8495a866b 100644
--- a/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.h b/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.h
index ece1b84ef..d9de71660 100644
--- a/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.h
+++ b/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SchedulePlaylistWindow.h,v $
------------------------------------------------------------------------------*/
@@ -86,8 +86,8 @@ using namespace LiveSupport::Core;
* +-------------------------------------------------+
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class SchedulePlaylistWindow : public WhiteWindow,
public LocalizedObject
diff --git a/livesupport/products/gLiveSupport/src/SchedulerWindow.cxx b/livesupport/products/gLiveSupport/src/SchedulerWindow.cxx
index 2b4c62eac..044c9d318 100644
--- a/livesupport/products/gLiveSupport/src/SchedulerWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/SchedulerWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SchedulerWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/SchedulerWindow.h b/livesupport/products/gLiveSupport/src/SchedulerWindow.h
index 35f000ed9..e82336dbe 100644
--- a/livesupport/products/gLiveSupport/src/SchedulerWindow.h
+++ b/livesupport/products/gLiveSupport/src/SchedulerWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SchedulerWindow.h,v $
------------------------------------------------------------------------------*/
@@ -88,8 +88,8 @@ using namespace LiveSupport::Core;
* +-------------------------------------------------+
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
*/
class SchedulerWindow : public WhiteWindow, public LocalizedObject
{
@@ -100,8 +100,8 @@ class SchedulerWindow : public WhiteWindow, public LocalizedObject
* The columns model needed by Gtk::TreeView.
* Lists one scheduled item per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public Gtk::TreeModel::ColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/ScratchpadWindow.cxx b/livesupport/products/gLiveSupport/src/ScratchpadWindow.cxx
index 396be618d..f359a30ff 100644
--- a/livesupport/products/gLiveSupport/src/ScratchpadWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/ScratchpadWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.30 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/ScratchpadWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/ScratchpadWindow.h b/livesupport/products/gLiveSupport/src/ScratchpadWindow.h
index 84b249291..34e77af31 100644
--- a/livesupport/products/gLiveSupport/src/ScratchpadWindow.h
+++ b/livesupport/products/gLiveSupport/src/ScratchpadWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/ScratchpadWindow.h,v $
------------------------------------------------------------------------------*/
@@ -72,8 +72,8 @@ using namespace LiveSupport::Widgets;
* The Scratchpad window, showing recent and relevant audio clips and
* playlists.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.12 $
+ * @author $Author$
+ * @version $Revision$
*/
class ScratchpadWindow : public WhiteWindow,
public LocalizedObject
@@ -86,8 +86,8 @@ class ScratchpadWindow : public WhiteWindow,
* The columns model needed by Gtk::TreeView.
* Lists one clip per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.12 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public PlayableTreeModelColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/SearchWindow.cxx b/livesupport/products/gLiveSupport/src/SearchWindow.cxx
index 87dad3ba1..297006a1c 100644
--- a/livesupport/products/gLiveSupport/src/SearchWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/SearchWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.22 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SearchWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/SearchWindow.h b/livesupport/products/gLiveSupport/src/SearchWindow.h
index 21da9e2ed..02a907b4f 100644
--- a/livesupport/products/gLiveSupport/src/SearchWindow.h
+++ b/livesupport/products/gLiveSupport/src/SearchWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SearchWindow.h,v $
------------------------------------------------------------------------------*/
@@ -72,8 +72,8 @@ using namespace LiveSupport::Widgets;
/**
* The Search/Browse window.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class SearchWindow : public WhiteWindow, public LocalizedObject
{
@@ -191,8 +191,8 @@ class SearchWindow : public WhiteWindow, public LocalizedObject
* The columns model needed by Gtk::TreeView.
* Lists one clip per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.15 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public PlayableTreeModelColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.cxx b/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.cxx
index 5331a1279..5637fe824 100644
--- a/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.cxx
+++ b/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.30 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.h b/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.h
index d8bbb73f5..96b3625a0 100644
--- a/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.h
+++ b/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/SimplePlaylistManagementWindow.h,v $
------------------------------------------------------------------------------*/
@@ -87,8 +87,8 @@ using namespace LiveSupport::Widgets;
* +----------------------------------------------+
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.14 $
+ * @author $Author$
+ * @version $Revision$
*/
class SimplePlaylistManagementWindow : public WhiteWindow,
public LocalizedObject
@@ -259,8 +259,8 @@ class SimplePlaylistManagementWindow : public WhiteWindow,
* The columns model needed by Gtk::TreeView.
* Lists one playlist entry per row.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.14 $
+ * @author $Author$
+ * @version $Revision$
*/
class ModelColumns : public ZebraTreeModelColumnRecord
{
diff --git a/livesupport/products/gLiveSupport/src/TestRunner.cxx b/livesupport/products/gLiveSupport/src/TestRunner.cxx
index feaa5f53b..d932d4765 100644
--- a/livesupport/products/gLiveSupport/src/TestRunner.cxx
+++ b/livesupport/products/gLiveSupport/src/TestRunner.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/TestRunner.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/gLiveSupport/src/UploadFileWindow.h b/livesupport/products/gLiveSupport/src/UploadFileWindow.h
index 1436a5e8d..9e05db3dc 100644
--- a/livesupport/products/gLiveSupport/src/UploadFileWindow.h
+++ b/livesupport/products/gLiveSupport/src/UploadFileWindow.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/UploadFileWindow.h,v $
------------------------------------------------------------------------------*/
@@ -87,8 +87,8 @@ using namespace LiveSupport::Widgets;
* +---------------------------------------+
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.9 $
+ * @author $Author$
+ * @version $Revision$
*/
class UploadFileWindow : public WhiteWindow, public LocalizedObject
{
diff --git a/livesupport/products/gLiveSupport/src/main.cxx b/livesupport/products/gLiveSupport/src/main.cxx
index cc0ff20f8..56605acc5 100644
--- a/livesupport/products/gLiveSupport/src/main.cxx
+++ b/livesupport/products/gLiveSupport/src/main.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/main.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/bin/autogen.sh b/livesupport/products/scheduler/bin/autogen.sh
index bb9a182e9..ef4ce4bf8 100755
--- a/livesupport/products/scheduler/bin/autogen.sh
+++ b/livesupport/products/scheduler/bin/autogen.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.6 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/autogen.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/createDatabase.sh b/livesupport/products/scheduler/bin/createDatabase.sh
index d9f5dab0d..1db59fdb5 100755
--- a/livesupport/products/scheduler/bin/createDatabase.sh
+++ b/livesupport/products/scheduler/bin/createDatabase.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/createDatabase.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/createOdbcDataSource.sh b/livesupport/products/scheduler/bin/createOdbcDataSource.sh
index b30d28657..89cdc515b 100755
--- a/livesupport/products/scheduler/bin/createOdbcDataSource.sh
+++ b/livesupport/products/scheduler/bin/createOdbcDataSource.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.2 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/createOdbcDataSource.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/gen_coverage_data.sh b/livesupport/products/scheduler/bin/gen_coverage_data.sh
index d56db6226..b32a844ae 100755
--- a/livesupport/products/scheduler/bin/gen_coverage_data.sh
+++ b/livesupport/products/scheduler/bin/gen_coverage_data.sh
@@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/gen_coverage_data.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/run_tests.sh b/livesupport/products/scheduler/bin/run_tests.sh
index 6c8c262a8..1d7a61313 100755
--- a/livesupport/products/scheduler/bin/run_tests.sh
+++ b/livesupport/products/scheduler/bin/run_tests.sh
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.1 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/run_tests.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/scheduler.sh b/livesupport/products/scheduler/bin/scheduler.sh
index b20cabe9a..a9fe038ad 100755
--- a/livesupport/products/scheduler/bin/scheduler.sh
+++ b/livesupport/products/scheduler/bin/scheduler.sh
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: maroy $
-# Version : $Revision: 1.4 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/scheduler.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/bin/scheduler_devenv.sh b/livesupport/products/scheduler/bin/scheduler_devenv.sh
index 62a7e01cf..8f3b42e44 100755
--- a/livesupport/products/scheduler/bin/scheduler_devenv.sh
+++ b/livesupport/products/scheduler/bin/scheduler_devenv.sh
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: fgerlits $
-# Version : $Revision: 1.3 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/bin/scheduler_devenv.sh,v $
#-------------------------------------------------------------------------------
diff --git a/livesupport/products/scheduler/etc/Makefile.in b/livesupport/products/scheduler/etc/Makefile.in
index d129fcdd7..c8c2ae372 100644
--- a/livesupport/products/scheduler/etc/Makefile.in
+++ b/livesupport/products/scheduler/etc/Makefile.in
@@ -20,8 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
-# Author : $Author: fgerlits $
-# Version : $Revision: 1.69 $
+# Author : $Author$
+# Version : $Revision$
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/etc/Makefile.in,v $
#
# @configure_input@
diff --git a/livesupport/products/scheduler/etc/configure.ac b/livesupport/products/scheduler/etc/configure.ac
index a218cb5c2..011c8c094 100644
--- a/livesupport/products/scheduler/etc/configure.ac
+++ b/livesupport/products/scheduler/etc/configure.ac
@@ -20,8 +20,8 @@ dnl along with LiveSupport; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
dnl
-dnl Author : $Author: maroy $
-dnl Version : $Revision: 1.12 $
+dnl Author : $Author$
+dnl Version : $Revision$
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/etc/configure.ac,v $
dnl-----------------------------------------------------------------------------
@@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
AC_INIT(Scheduler, 0.1, bugs@campware.org)
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
-AC_REVISION($Revision: 1.12 $)
+AC_REVISION($Revision$)
AC_CONFIG_SRCDIR(../src/main.cxx)
diff --git a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.cxx b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.cxx
index 02c0723e7..c27287498 100644
--- a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.17 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.h b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.h
index acc44e4b9..9fed7bb8e 100644
--- a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.h
+++ b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -105,8 +105,8 @@ using namespace LiveSupport::Core;
* 320 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.10 $
+ * @author $Author$
+ * @version $Revision$
*/
class AddAudioClipToPlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.cxx b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.cxx
index 77b484c14..5897837f5 100644
--- a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.16 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h
index d24e25ae5..9dbf54e28 100644
--- a/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the AddAudioClipToPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see AddAudioClipToPlaylistMethod
*/
class AddAudioClipToPlaylistMethodTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/BaseTestMethod.cxx b/livesupport/products/scheduler/src/BaseTestMethod.cxx
index 22d24ba81..0cec4657e 100644
--- a/livesupport/products/scheduler/src/BaseTestMethod.cxx
+++ b/livesupport/products/scheduler/src/BaseTestMethod.cxx
@@ -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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/BaseTestMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/BaseTestMethod.h b/livesupport/products/scheduler/src/BaseTestMethod.h
index 579d25c76..ad422112a 100644
--- a/livesupport/products/scheduler/src/BaseTestMethod.h
+++ b/livesupport/products/scheduler/src/BaseTestMethod.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/BaseTestMethod.h,v $
------------------------------------------------------------------------------*/
@@ -62,8 +62,8 @@ namespace Scheduler {
* Make sure to call BaseTestMethod::configure() before running the
* test cases.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class BaseTestMethod : public LiveSupport::Core::BaseTestMethod
{
diff --git a/livesupport/products/scheduler/src/CreatePlaylistMethod.cxx b/livesupport/products/scheduler/src/CreatePlaylistMethod.cxx
index a3500f449..e8a9b9aa0 100644
--- a/livesupport/products/scheduler/src/CreatePlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/CreatePlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.15 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/CreatePlaylistMethod.h b/livesupport/products/scheduler/src/CreatePlaylistMethod.h
index f3bd2337e..b96a8f99a 100644
--- a/livesupport/products/scheduler/src/CreatePlaylistMethod.h
+++ b/livesupport/products/scheduler/src/CreatePlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -92,8 +92,8 @@ using namespace LiveSupport::Core;
* 220 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.9 $
+ * @author $Author$
+ * @version $Revision$
*/
class CreatePlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/CreatePlaylistMethodTest.cxx b/livesupport/products/scheduler/src/CreatePlaylistMethodTest.cxx
index 9d3842aa2..8c5bc71d9 100644
--- a/livesupport/products/scheduler/src/CreatePlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/CreatePlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.16 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h b/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h
index 68638a035..1d586e196 100644
--- a/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the CreatePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
* @see CreatePlaylistMethod
*/
class CreatePlaylistMethodTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipMethod.cxx b/livesupport/products/scheduler/src/DisplayAudioClipMethod.cxx
index 529c4b345..62b2b36f6 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipMethod.cxx
+++ b/livesupport/products/scheduler/src/DisplayAudioClipMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipMethod.h b/livesupport/products/scheduler/src/DisplayAudioClipMethod.h
index 273f42732..135a2b838 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipMethod.h
+++ b/livesupport/products/scheduler/src/DisplayAudioClipMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethod.h,v $
------------------------------------------------------------------------------*/
@@ -95,8 +95,8 @@ using namespace LiveSupport::Core;
* 620 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class DisplayAudioClipMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.cxx b/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.cxx
index 4235b5c61..8c6fc965b 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.cxx
+++ b/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h b/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h
index f8db9888f..4c020ab44 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h
+++ b/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the DisplayAudioClipMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayAudioClipMethod
*/
class DisplayAudioClipMethodTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.cxx b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.cxx
index 3d81aa1a4..3058db6ac 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.cxx
+++ b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h
index b9d361011..a50537aab 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h
+++ b/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethod.h,v $
------------------------------------------------------------------------------*/
@@ -97,8 +97,8 @@ using namespace LiveSupport::Core;
* 1820 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class DisplayAudioClipsMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.cxx b/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.cxx
index fab8926a8..fadc1ebe2 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.cxx
+++ b/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h b/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h
index 5f5576208..afd1428c8 100644
--- a/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h
+++ b/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the DisplayAudioClipsMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayAudioClipsMethod
*/
class DisplayAudioClipsMethodTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistMethod.cxx b/livesupport/products/scheduler/src/DisplayPlaylistMethod.cxx
index e1e574645..1d35efc9b 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/DisplayPlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistMethod.h b/livesupport/products/scheduler/src/DisplayPlaylistMethod.h
index af52f290b..0c37c3e74 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistMethod.h
+++ b/livesupport/products/scheduler/src/DisplayPlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -95,8 +95,8 @@ using namespace LiveSupport::Core;
* 1020 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
*/
class DisplayPlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.cxx b/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.cxx
index 4144922ed..86756777c 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h b/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h
index d07caacb9..0bcc6bb4c 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the DisplayPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayPlaylistMethod
*/
class DisplayPlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.cxx b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.cxx
index eb79f41a0..95603cc44 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.cxx
+++ b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h
index b5842f079..061d44ecb 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h
+++ b/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethod.h,v $
------------------------------------------------------------------------------*/
@@ -97,8 +97,8 @@ using namespace LiveSupport::Core;
* 1720 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class DisplayPlaylistsMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.cxx b/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.cxx
index ade01076d..be40c3e45 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.cxx
+++ b/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h b/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h
index ef066f8e7..ab9460e93 100644
--- a/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h
+++ b/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the DisplayPlaylistsMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayPlaylistsMethod
*/
class DisplayPlaylistsMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/DisplayScheduleMethod.cxx b/livesupport/products/scheduler/src/DisplayScheduleMethod.cxx
index 2ce5fd0c1..6ad21f24e 100644
--- a/livesupport/products/scheduler/src/DisplayScheduleMethod.cxx
+++ b/livesupport/products/scheduler/src/DisplayScheduleMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayScheduleMethod.h b/livesupport/products/scheduler/src/DisplayScheduleMethod.h
index 19c8f7de1..0d6536545 100644
--- a/livesupport/products/scheduler/src/DisplayScheduleMethod.h
+++ b/livesupport/products/scheduler/src/DisplayScheduleMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethod.h,v $
------------------------------------------------------------------------------*/
@@ -106,8 +106,8 @@ using namespace LiveSupport::Core;
* 1120 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class DisplayScheduleMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/DisplayScheduleMethodTest.cxx b/livesupport/products/scheduler/src/DisplayScheduleMethodTest.cxx
index 4ca96a00a..c5dab56fc 100644
--- a/livesupport/products/scheduler/src/DisplayScheduleMethodTest.cxx
+++ b/livesupport/products/scheduler/src/DisplayScheduleMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h b/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h
index 19956c14a..3d8b50c18 100644
--- a/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h
+++ b/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the DisplayScheduleMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayScheduleMethod
*/
class DisplayScheduleMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/GeneratePlayReportMethod.cxx b/livesupport/products/scheduler/src/GeneratePlayReportMethod.cxx
index 87d7b16fa..bb51b8d9b 100644
--- a/livesupport/products/scheduler/src/GeneratePlayReportMethod.cxx
+++ b/livesupport/products/scheduler/src/GeneratePlayReportMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GeneratePlayReportMethod.h b/livesupport/products/scheduler/src/GeneratePlayReportMethod.h
index ccd403b54..ab1111e4f 100644
--- a/livesupport/products/scheduler/src/GeneratePlayReportMethod.h
+++ b/livesupport/products/scheduler/src/GeneratePlayReportMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethod.h,v $
------------------------------------------------------------------------------*/
@@ -103,8 +103,8 @@ using namespace LiveSupport::Core;
* 1520 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
*/
class GeneratePlayReportMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.cxx b/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.cxx
index 6a897f114..38546a367 100644
--- a/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.cxx
+++ b/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h b/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h
index 0e3474508..1c95bbbf9 100644
--- a/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h
+++ b/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the GeneratePlayReportMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see GeneratePlayReportMethod
*/
class GeneratePlayReportMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx b/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx
index 4468e6d5d..a8f4310a2 100644
--- a/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx
+++ b/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GetSchedulerTimeMethod.h b/livesupport/products/scheduler/src/GetSchedulerTimeMethod.h
index 0c75d72e8..231e30c51 100644
--- a/livesupport/products/scheduler/src/GetSchedulerTimeMethod.h
+++ b/livesupport/products/scheduler/src/GetSchedulerTimeMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethod.h,v $
------------------------------------------------------------------------------*/
@@ -85,8 +85,8 @@ using namespace LiveSupport::Core;
*
* This method does not generate any fault responses.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
*/
class GetSchedulerTimeMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx b/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx
index d5512aec0..ba23b69bf 100644
--- a/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx
+++ b/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.h b/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.h
index e8cd4d5ad..6cf462d82 100644
--- a/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.h
+++ b/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetSchedulerTimeMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -60,8 +60,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the getSchedulerTime XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class GetSchedulerTimeMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/GetVersionMethod.cxx b/livesupport/products/scheduler/src/GetVersionMethod.cxx
index b7b17fe4e..bc1705918 100644
--- a/livesupport/products/scheduler/src/GetVersionMethod.cxx
+++ b/livesupport/products/scheduler/src/GetVersionMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetVersionMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GetVersionMethod.h b/livesupport/products/scheduler/src/GetVersionMethod.h
index 38d76ac58..5811bfca2 100644
--- a/livesupport/products/scheduler/src/GetVersionMethod.h
+++ b/livesupport/products/scheduler/src/GetVersionMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetVersionMethod.h,v $
------------------------------------------------------------------------------*/
@@ -79,8 +79,8 @@ using namespace LiveSupport::Core;
*
* There are no possible internal error condititons for this function.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
*/
class GetVersionMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/GetVersionMethodTest.cxx b/livesupport/products/scheduler/src/GetVersionMethodTest.cxx
index 5dc6483f8..e92820743 100644
--- a/livesupport/products/scheduler/src/GetVersionMethodTest.cxx
+++ b/livesupport/products/scheduler/src/GetVersionMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetVersionMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/GetVersionMethodTest.h b/livesupport/products/scheduler/src/GetVersionMethodTest.h
index 2330e1202..e535522ca 100644
--- a/livesupport/products/scheduler/src/GetVersionMethodTest.h
+++ b/livesupport/products/scheduler/src/GetVersionMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GetVersionMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the GetVersionMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
* @see GetVersionMethod
*/
class GetVersionMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/LoginMethod.cxx b/livesupport/products/scheduler/src/LoginMethod.cxx
index 13342108f..d3e172133 100644
--- a/livesupport/products/scheduler/src/LoginMethod.cxx
+++ b/livesupport/products/scheduler/src/LoginMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/LoginMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/LoginMethod.h b/livesupport/products/scheduler/src/LoginMethod.h
index 2322ee37a..b5a4b0694 100644
--- a/livesupport/products/scheduler/src/LoginMethod.h
+++ b/livesupport/products/scheduler/src/LoginMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/LoginMethod.h,v $
------------------------------------------------------------------------------*/
@@ -88,8 +88,8 @@ using namespace LiveSupport::Core;
* 2004 - the authentication server reported an error
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class LoginMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/LogoutMethod.cxx b/livesupport/products/scheduler/src/LogoutMethod.cxx
index c76525360..b7119f521 100644
--- a/livesupport/products/scheduler/src/LogoutMethod.cxx
+++ b/livesupport/products/scheduler/src/LogoutMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/LogoutMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/LogoutMethod.h b/livesupport/products/scheduler/src/LogoutMethod.h
index a0e95da39..effbd8ee9 100644
--- a/livesupport/products/scheduler/src/LogoutMethod.h
+++ b/livesupport/products/scheduler/src/LogoutMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/LogoutMethod.h,v $
------------------------------------------------------------------------------*/
@@ -80,8 +80,8 @@ using namespace LiveSupport::Core;
* 2104 - the authentication server reported an error
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class LogoutMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.cxx b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.cxx
index 6ea2d7544..be7ccfae3 100644
--- a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.cxx
+++ b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.18 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h
index 384715802..9c50a2902 100644
--- a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h
+++ b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethod.h,v $
------------------------------------------------------------------------------*/
@@ -95,8 +95,8 @@ using namespace LiveSupport::Core;
* 104 - could not open playlist for editing
* 120 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.11 $
+ * @author $Author$
+ * @version $Revision$
*/
class OpenPlaylistForEditingMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.cxx b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.cxx
index 27f818d95..2130047df 100644
--- a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.cxx
+++ b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.17 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h
index 8063f90d7..8b6a4551c 100644
--- a/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h
+++ b/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the OpenPlaylistForEditingMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
* @see OpenPlaylistForEditingMethod
*/
class OpenPlaylistForEditingMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/PlayLogFactory.cxx b/livesupport/products/scheduler/src/PlayLogFactory.cxx
index 6f3e11943..561e81a5d 100644
--- a/livesupport/products/scheduler/src/PlayLogFactory.cxx
+++ b/livesupport/products/scheduler/src/PlayLogFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlayLogFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PlayLogFactory.h b/livesupport/products/scheduler/src/PlayLogFactory.h
index f1d84ca0a..79f0d83b2 100644
--- a/livesupport/products/scheduler/src/PlayLogFactory.h
+++ b/livesupport/products/scheduler/src/PlayLogFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlayLogFactory.h,v $
------------------------------------------------------------------------------*/
@@ -85,8 +85,8 @@ using namespace LiveSupport::Core;
* For details on the <postgreslPlayLog> element, see the
* PostgresqlPlayLog documentation.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see PostgresqlPlayLog
*/
class PlayLogFactory : virtual public Configurable,
diff --git a/livesupport/products/scheduler/src/PlayLogInterface.h b/livesupport/products/scheduler/src/PlayLogInterface.h
index 5d441d041..4ef51f152 100644
--- a/livesupport/products/scheduler/src/PlayLogInterface.h
+++ b/livesupport/products/scheduler/src/PlayLogInterface.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlayLogInterface.h,v $
------------------------------------------------------------------------------*/
@@ -69,8 +69,8 @@ using namespace LiveSupport::Core;
/**
* The generic interface for the component scheduling events.
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
*/
class PlayLogInterface : virtual public Installable
{
diff --git a/livesupport/products/scheduler/src/PlaylistEvent.cxx b/livesupport/products/scheduler/src/PlaylistEvent.cxx
index 72eec6213..03e95f235 100644
--- a/livesupport/products/scheduler/src/PlaylistEvent.cxx
+++ b/livesupport/products/scheduler/src/PlaylistEvent.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEvent.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PlaylistEvent.h b/livesupport/products/scheduler/src/PlaylistEvent.h
index 9e6872a28..874de2105 100644
--- a/livesupport/products/scheduler/src/PlaylistEvent.h
+++ b/livesupport/products/scheduler/src/PlaylistEvent.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEvent.h,v $
------------------------------------------------------------------------------*/
@@ -71,8 +71,8 @@ using namespace LiveSupport::Storage;
/**
* A scheduled event for playing a playlist.
*
- * @author $Author: maroy $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class PlaylistEvent : public virtual ScheduledEventInterface
{
diff --git a/livesupport/products/scheduler/src/PlaylistEventContainer.cxx b/livesupport/products/scheduler/src/PlaylistEventContainer.cxx
index 2b4d5452e..92c7745b2 100644
--- a/livesupport/products/scheduler/src/PlaylistEventContainer.cxx
+++ b/livesupport/products/scheduler/src/PlaylistEventContainer.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventContainer.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PlaylistEventContainer.h b/livesupport/products/scheduler/src/PlaylistEventContainer.h
index eef6a9e5a..3b2573e0b 100644
--- a/livesupport/products/scheduler/src/PlaylistEventContainer.h
+++ b/livesupport/products/scheduler/src/PlaylistEventContainer.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventContainer.h,v $
------------------------------------------------------------------------------*/
@@ -72,8 +72,8 @@ using namespace LiveSupport::Storage;
/**
* An event container holding the scheduled playlists.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
*/
class PlaylistEventContainer : public virtual EventContainerInterface
{
diff --git a/livesupport/products/scheduler/src/PlaylistEventContainerTest.cxx b/livesupport/products/scheduler/src/PlaylistEventContainerTest.cxx
index 0ef0805df..1e6c3593f 100644
--- a/livesupport/products/scheduler/src/PlaylistEventContainerTest.cxx
+++ b/livesupport/products/scheduler/src/PlaylistEventContainerTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventContainerTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PlaylistEventContainerTest.h b/livesupport/products/scheduler/src/PlaylistEventContainerTest.h
index e8dd1edb4..af1d95862 100644
--- a/livesupport/products/scheduler/src/PlaylistEventContainerTest.h
+++ b/livesupport/products/scheduler/src/PlaylistEventContainerTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventContainerTest.h,v $
------------------------------------------------------------------------------*/
@@ -76,8 +76,8 @@ using namespace LiveSupport::Storage;
/**
* Unit test for the PlaylistEventContainer class
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see PlaylistEventContainer
*/
class PlaylistEventContainerTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/PlaylistEventTest.cxx b/livesupport/products/scheduler/src/PlaylistEventTest.cxx
index 8369c1af4..e01355f76 100644
--- a/livesupport/products/scheduler/src/PlaylistEventTest.cxx
+++ b/livesupport/products/scheduler/src/PlaylistEventTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PlaylistEventTest.h b/livesupport/products/scheduler/src/PlaylistEventTest.h
index d011d6471..7b15fb9b1 100644
--- a/livesupport/products/scheduler/src/PlaylistEventTest.h
+++ b/livesupport/products/scheduler/src/PlaylistEventTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PlaylistEventTest.h,v $
------------------------------------------------------------------------------*/
@@ -70,8 +70,8 @@ using namespace LiveSupport::PlaylistExecutor;
/**
* Unit test for the PlaylistEvent class
*
- * @author $Author: maroy $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
* @see PlaylistEvent
*/
class PlaylistEventTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/PostgresqlPlayLog.cxx b/livesupport/products/scheduler/src/PostgresqlPlayLog.cxx
index b7bf1c76a..98e625300 100644
--- a/livesupport/products/scheduler/src/PostgresqlPlayLog.cxx
+++ b/livesupport/products/scheduler/src/PostgresqlPlayLog.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLog.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PostgresqlPlayLog.h b/livesupport/products/scheduler/src/PostgresqlPlayLog.h
index c624585cf..0ea0383d3 100644
--- a/livesupport/products/scheduler/src/PostgresqlPlayLog.h
+++ b/livesupport/products/scheduler/src/PostgresqlPlayLog.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLog.h,v $
------------------------------------------------------------------------------*/
@@ -80,8 +80,8 @@ using namespace LiveSupport::Core;
* <!ELEMENT postgresqlPlayLog EMPTY >
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class PostgresqlPlayLog : public Configurable,
public PlayLogInterface
diff --git a/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx b/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx
index 184404b11..021ce22f6 100644
--- a/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx
+++ b/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PostgresqlPlayLogTest.h b/livesupport/products/scheduler/src/PostgresqlPlayLogTest.h
index b4d46901c..86fbd7fa6 100644
--- a/livesupport/products/scheduler/src/PostgresqlPlayLogTest.h
+++ b/livesupport/products/scheduler/src/PostgresqlPlayLogTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLogTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the PostgresqlPlayLog class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see PostgresqlPlayLog
*/
class PostgresqlPlayLogTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/PostgresqlSchedule.cxx b/livesupport/products/scheduler/src/PostgresqlSchedule.cxx
index 9ecb0a8c1..fff9ea85f 100644
--- a/livesupport/products/scheduler/src/PostgresqlSchedule.cxx
+++ b/livesupport/products/scheduler/src/PostgresqlSchedule.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlSchedule.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PostgresqlSchedule.h b/livesupport/products/scheduler/src/PostgresqlSchedule.h
index 9b7bd1167..ba83b6190 100644
--- a/livesupport/products/scheduler/src/PostgresqlSchedule.h
+++ b/livesupport/products/scheduler/src/PostgresqlSchedule.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlSchedule.h,v $
------------------------------------------------------------------------------*/
@@ -80,8 +80,8 @@ using namespace LiveSupport::Core;
* <!ELEMENT postgresqlSchedule EMPTY >
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.10 $
+ * @author $Author$
+ * @version $Revision$
*/
class PostgresqlSchedule : public Configurable,
public ScheduleInterface
diff --git a/livesupport/products/scheduler/src/PostgresqlScheduleTest.cxx b/livesupport/products/scheduler/src/PostgresqlScheduleTest.cxx
index eedc65c5e..b14dd464d 100644
--- a/livesupport/products/scheduler/src/PostgresqlScheduleTest.cxx
+++ b/livesupport/products/scheduler/src/PostgresqlScheduleTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlScheduleTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/PostgresqlScheduleTest.h b/livesupport/products/scheduler/src/PostgresqlScheduleTest.h
index 0d366be9b..49bd4a9aa 100644
--- a/livesupport/products/scheduler/src/PostgresqlScheduleTest.h
+++ b/livesupport/products/scheduler/src/PostgresqlScheduleTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlScheduleTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the PostgresqlSchedule class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
* @see PostgresqlSchedule
*/
class PostgresqlScheduleTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.cxx b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.cxx
index 743989125..c2bb69247 100644
--- a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h
index 70616fa91..fdc541281 100644
--- a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h
+++ b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -93,8 +93,8 @@ using namespace LiveSupport::Core;
* 406 - no audio clip at the specified relative offset
* 420 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class RemoveAudioClipFromPlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.cxx b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.cxx
index e804fa3be..b3b6dc60a 100644
--- a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h
index 6f98e78f7..fd12163ce 100644
--- a/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the RemoveAudioClipFromPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see RemoveAudioClipFromPlaylistMethod
*/
class RemoveAudioClipFromPlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.cxx b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.cxx
index c513acbcd..a983e60f3 100644
--- a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.cxx
+++ b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h
index bcf73c154..ccd5164cb 100644
--- a/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h
+++ b/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethod.h,v $
------------------------------------------------------------------------------*/
@@ -90,8 +90,8 @@ using namespace LiveSupport::Core;
* 1220 - missing session ID argument
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class RemoveFromScheduleMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.cxx b/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.cxx
index f34dec9fc..6446c35ba 100644
--- a/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.cxx
+++ b/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h b/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h
index b748e1a53..921717383 100644
--- a/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h
+++ b/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the RemoveFromScheduleMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
* @see RemoveFromScheduleMethod
*/
class RemoveFromScheduleMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/RescheduleMethod.cxx b/livesupport/products/scheduler/src/RescheduleMethod.cxx
index 5da0e3f6b..494363086 100644
--- a/livesupport/products/scheduler/src/RescheduleMethod.cxx
+++ b/livesupport/products/scheduler/src/RescheduleMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RescheduleMethod.h b/livesupport/products/scheduler/src/RescheduleMethod.h
index ac3b6ff53..84791d138 100644
--- a/livesupport/products/scheduler/src/RescheduleMethod.h
+++ b/livesupport/products/scheduler/src/RescheduleMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethod.h,v $
------------------------------------------------------------------------------*/
@@ -93,8 +93,8 @@ using namespace LiveSupport::Core;
* 1320 - missing session ID argument
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class RescheduleMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/RescheduleMethodTest.cxx b/livesupport/products/scheduler/src/RescheduleMethodTest.cxx
index 3632db448..6cfe6f2aa 100644
--- a/livesupport/products/scheduler/src/RescheduleMethodTest.cxx
+++ b/livesupport/products/scheduler/src/RescheduleMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RescheduleMethodTest.h b/livesupport/products/scheduler/src/RescheduleMethodTest.h
index 49aeeb3ed..1fbe3efcf 100644
--- a/livesupport/products/scheduler/src/RescheduleMethodTest.h
+++ b/livesupport/products/scheduler/src/RescheduleMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the RescheduleMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
* @see RescheduleMethod
*/
class RescheduleMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/ResetStorageMethod.cxx b/livesupport/products/scheduler/src/ResetStorageMethod.cxx
index e2dc8311e..64beeebd5 100644
--- a/livesupport/products/scheduler/src/ResetStorageMethod.cxx
+++ b/livesupport/products/scheduler/src/ResetStorageMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ResetStorageMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/ResetStorageMethod.h b/livesupport/products/scheduler/src/ResetStorageMethod.h
index 9db540fe1..6620175e7 100644
--- a/livesupport/products/scheduler/src/ResetStorageMethod.h
+++ b/livesupport/products/scheduler/src/ResetStorageMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.1 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ResetStorageMethod.h,v $
------------------------------------------------------------------------------*/
@@ -74,8 +74,8 @@ using namespace LiveSupport::Core;
* 3001 - storage client reported an error
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class ResetStorageMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/ResetStorageMethodTest.cxx b/livesupport/products/scheduler/src/ResetStorageMethodTest.cxx
index 452242802..029098b61 100644
--- a/livesupport/products/scheduler/src/ResetStorageMethodTest.cxx
+++ b/livesupport/products/scheduler/src/ResetStorageMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ResetStorageMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/ResetStorageMethodTest.h b/livesupport/products/scheduler/src/ResetStorageMethodTest.h
index d395fd21e..cad179992 100644
--- a/livesupport/products/scheduler/src/ResetStorageMethodTest.h
+++ b/livesupport/products/scheduler/src/ResetStorageMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ResetStorageMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -59,8 +59,8 @@ namespace Scheduler {
/**
* Unit test for the ResetStorageMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see ResetStorageMethod
*/
class ResetStorageMethodTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.cxx b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.cxx
index 9ad2ec3fe..6bbc3c419 100644
--- a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h
index d038b1249..8d62b392b 100644
--- a/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h
+++ b/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -89,8 +89,8 @@ using namespace LiveSupport::Core;
* 804 - could not revert playlist
* 820 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class RevertEditedPlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.cxx b/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.cxx
index e209afeb4..3dd6a46f1 100644
--- a/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h b/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h
index ce04b698e..080c0c38c 100644
--- a/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the RevertEditedPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see RevertEditedPlaylistMethod
*/
class RevertEditedPlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.cxx b/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.cxx
index 5e5dd483d..ae7ae275c 100644
--- a/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.14 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.h b/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.h
index 6e5b95af9..e92118bbd 100644
--- a/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcAddAudioClipToPlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the AddAudioClipToPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see AddAudioClipToPlaylistMethod
*/
class RpcAddAudioClipToPlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcCreatePlaylistTest.cxx b/livesupport/products/scheduler/src/RpcCreatePlaylistTest.cxx
index 753893034..6aba5c822 100644
--- a/livesupport/products/scheduler/src/RpcCreatePlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcCreatePlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcCreatePlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcCreatePlaylistTest.h b/livesupport/products/scheduler/src/RpcCreatePlaylistTest.h
index 30cbbf248..ce0df2b71 100644
--- a/livesupport/products/scheduler/src/RpcCreatePlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcCreatePlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcCreatePlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the CreatePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see CreatePlaylistMethod
*/
class RpcCreatePlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.cxx b/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.cxx
index 6d6d3a355..7e84ffb37 100644
--- a/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.cxx
+++ b/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.h b/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.h
index aaad48d72..c56cdba36 100644
--- a/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.h
+++ b/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayAudioClipTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the DisplayAudioClipMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayAudioClipMethod
*/
class RpcDisplayAudioClipTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.cxx b/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.cxx
index 94827914a..9b2e8d56f 100644
--- a/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.cxx
+++ b/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.h b/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.h
index 9c51088fc..a2865282d 100644
--- a/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.h
+++ b/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayAudioClipsTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the DisplayAudioClipsMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see RpcDisplayAudioClips
*/
class RpcDisplayAudioClipsTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.cxx b/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.cxx
index bb3d09d7f..145bcf9a4 100644
--- a/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.h b/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.h
index d99ad1a97..5c67527ab 100644
--- a/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayPlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the displayPlaylist XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcDisplayPlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.cxx b/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.cxx
index 9ada562fa..0c90454aa 100644
--- a/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.cxx
+++ b/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.h b/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.h
index 090a258ed..5a8a95c44 100644
--- a/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.h
+++ b/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayPlaylistsTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the DisplayPlaylistsMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.4 $
+ * @author $Author$
+ * @version $Revision$
* @see DisplayPlaylistsMethod
*/
class RpcDisplayPlaylistsTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcDisplayScheduleTest.cxx b/livesupport/products/scheduler/src/RpcDisplayScheduleTest.cxx
index 94b3fbbf0..89f762608 100644
--- a/livesupport/products/scheduler/src/RpcDisplayScheduleTest.cxx
+++ b/livesupport/products/scheduler/src/RpcDisplayScheduleTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayScheduleTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcDisplayScheduleTest.h b/livesupport/products/scheduler/src/RpcDisplayScheduleTest.h
index 7464977dc..9168ae0e6 100644
--- a/livesupport/products/scheduler/src/RpcDisplayScheduleTest.h
+++ b/livesupport/products/scheduler/src/RpcDisplayScheduleTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcDisplayScheduleTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the displaySchedule XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcDisplayScheduleTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.cxx b/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.cxx
index 502682ea6..ca8e87f5e 100644
--- a/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.cxx
+++ b/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.h b/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.h
index 75264b43b..eb11fef7d 100644
--- a/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.h
+++ b/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGeneratePlayReportTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the GeneratePlayReportMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see GeneratePlayReportMethod
*/
class RpcGeneratePlayReportTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.cxx b/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.cxx
index 4bc9b96df..f53220271 100644
--- a/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.cxx
+++ b/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.h b/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.h
index 411bc23fa..61c7a2230 100644
--- a/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.h
+++ b/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGetSchedulerTimeTest.h,v $
------------------------------------------------------------------------------*/
@@ -60,8 +60,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the getSchedulerTime XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcGetSchedulerTimeTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcGetVersionTest.cxx b/livesupport/products/scheduler/src/RpcGetVersionTest.cxx
index f0c9a0502..410e3e331 100644
--- a/livesupport/products/scheduler/src/RpcGetVersionTest.cxx
+++ b/livesupport/products/scheduler/src/RpcGetVersionTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGetVersionTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcGetVersionTest.h b/livesupport/products/scheduler/src/RpcGetVersionTest.h
index 1589cf5ac..0dc8ae113 100644
--- a/livesupport/products/scheduler/src/RpcGetVersionTest.h
+++ b/livesupport/products/scheduler/src/RpcGetVersionTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcGetVersionTest.h,v $
------------------------------------------------------------------------------*/
@@ -58,8 +58,8 @@ namespace Scheduler {
/**
* Unit test to test the getVersion XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcGetVersionTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.cxx b/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.cxx
index 7fc64c588..a56808029 100644
--- a/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.cxx
+++ b/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.h b/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.h
index 3fe351baa..7deabb49d 100644
--- a/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.h
+++ b/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcOpenPlaylistForEditingTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the OpenPlaylistForEditingMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see OpenPlaylistForEditingMethod
*/
class RpcOpenPlaylistForEditingTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.cxx b/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.cxx
index 43ffcddef..07c57dd10 100644
--- a/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.h b/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.h
index a06a21b71..effddc160 100644
--- a/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRemoveAudioClipFromPlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the RemoveAudioClipFromPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see RemoveAudioClipFromPlaylistMethod
*/
class RpcRemoveAudioClipFromPlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.cxx b/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.cxx
index ffb3d28db..5e63882e5 100644
--- a/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.cxx
+++ b/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.h b/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.h
index cf17ec489..b2bbf1ec9 100644
--- a/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.h
+++ b/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRemoveFromScheduleTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the removeFromSchedule XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcRemoveFromScheduleTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcRescheduleTest.cxx b/livesupport/products/scheduler/src/RpcRescheduleTest.cxx
index d39b18912..a8e37beaa 100644
--- a/livesupport/products/scheduler/src/RpcRescheduleTest.cxx
+++ b/livesupport/products/scheduler/src/RpcRescheduleTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.9 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRescheduleTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcRescheduleTest.h b/livesupport/products/scheduler/src/RpcRescheduleTest.h
index e36b47e53..6ceeee6c8 100644
--- a/livesupport/products/scheduler/src/RpcRescheduleTest.h
+++ b/livesupport/products/scheduler/src/RpcRescheduleTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRescheduleTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the removeFromSchedule XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcRescheduleTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.cxx b/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.cxx
index c5d0a21a8..f1518e1c4 100644
--- a/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.h b/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.h
index 5d20197f3..33cf97715 100644
--- a/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcRevertEditedPlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the RevertEditedPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see RevertEditedPlaylistMethod
*/
class RpcRevertEditedPlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcSavePlaylistTest.cxx b/livesupport/products/scheduler/src/RpcSavePlaylistTest.cxx
index f952c6ac1..7e9660f88 100644
--- a/livesupport/products/scheduler/src/RpcSavePlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcSavePlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcSavePlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcSavePlaylistTest.h b/livesupport/products/scheduler/src/RpcSavePlaylistTest.h
index 218d01425..c9c8fbf30 100644
--- a/livesupport/products/scheduler/src/RpcSavePlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcSavePlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcSavePlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the SavePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see SavePlaylistMethod
*/
class RpcSavePlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.cxx b/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.cxx
index 2c78395cb..68fc2598f 100644
--- a/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.cxx
+++ b/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.h b/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.h
index b01088dda..b1bd54b70 100644
--- a/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.h
+++ b/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcUpdateFadeInFadeOutTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the UpdateFadeInFadeOutMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see UpdateFadeInFadeOutMethod
*/
class RpcUpdateFadeInFadeOutTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcUploadPlaylistTest.cxx b/livesupport/products/scheduler/src/RpcUploadPlaylistTest.cxx
index ec5ff29a3..41b8424ae 100644
--- a/livesupport/products/scheduler/src/RpcUploadPlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcUploadPlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcUploadPlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcUploadPlaylistTest.h b/livesupport/products/scheduler/src/RpcUploadPlaylistTest.h
index a16db2f48..3ea20b626 100644
--- a/livesupport/products/scheduler/src/RpcUploadPlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcUploadPlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcUploadPlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test to test the uploadPlaylist XML-RPC call.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class RpcUploadPlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/RpcValidatePlaylistTest.cxx b/livesupport/products/scheduler/src/RpcValidatePlaylistTest.cxx
index 50243d134..ac87c836e 100644
--- a/livesupport/products/scheduler/src/RpcValidatePlaylistTest.cxx
+++ b/livesupport/products/scheduler/src/RpcValidatePlaylistTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcValidatePlaylistTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/RpcValidatePlaylistTest.h b/livesupport/products/scheduler/src/RpcValidatePlaylistTest.h
index 8fcd2f542..ef0d7a180 100644
--- a/livesupport/products/scheduler/src/RpcValidatePlaylistTest.h
+++ b/livesupport/products/scheduler/src/RpcValidatePlaylistTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RpcValidatePlaylistTest.h,v $
------------------------------------------------------------------------------*/
@@ -63,8 +63,8 @@ using namespace LiveSupport::Core;
/**
* Unit test for the ValidatePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see ValidatePlaylistMethod
*/
class RpcValidatePlaylistTest : public BaseTestMethod
diff --git a/livesupport/products/scheduler/src/SavePlaylistMethod.cxx b/livesupport/products/scheduler/src/SavePlaylistMethod.cxx
index 790bf2075..ffad6cb35 100644
--- a/livesupport/products/scheduler/src/SavePlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/SavePlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/SavePlaylistMethod.h b/livesupport/products/scheduler/src/SavePlaylistMethod.h
index dadb8fd75..0cf118d52 100644
--- a/livesupport/products/scheduler/src/SavePlaylistMethod.h
+++ b/livesupport/products/scheduler/src/SavePlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.7 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -90,8 +90,8 @@ using namespace LiveSupport::Core;
* 705 - could not save playlist
* 720 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.7 $
+ * @author $Author$
+ * @version $Revision$
*/
class SavePlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/SavePlaylistMethodTest.cxx b/livesupport/products/scheduler/src/SavePlaylistMethodTest.cxx
index da32deebe..9fca6c62f 100644
--- a/livesupport/products/scheduler/src/SavePlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/SavePlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.10 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/SavePlaylistMethodTest.h b/livesupport/products/scheduler/src/SavePlaylistMethodTest.h
index da67716b7..f0b4db491 100644
--- a/livesupport/products/scheduler/src/SavePlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/SavePlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the SavePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see SavePlaylistMethod
*/
class SavePlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/ScheduleFactory.cxx b/livesupport/products/scheduler/src/ScheduleFactory.cxx
index c377767e2..a2d5bc705 100644
--- a/livesupport/products/scheduler/src/ScheduleFactory.cxx
+++ b/livesupport/products/scheduler/src/ScheduleFactory.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ScheduleFactory.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/ScheduleFactory.h b/livesupport/products/scheduler/src/ScheduleFactory.h
index 54fe47d69..7ec72e6bd 100644
--- a/livesupport/products/scheduler/src/ScheduleFactory.h
+++ b/livesupport/products/scheduler/src/ScheduleFactory.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ScheduleFactory.h,v $
------------------------------------------------------------------------------*/
@@ -85,8 +85,8 @@ using namespace LiveSupport::Core;
* For details on the <postgreslSchedule> element, see the
* PostgresqlSchedule documentation.
*
- * @author $Author: maroy $
- * @version $Revision: 1.3 $
+ * @author $Author$
+ * @version $Revision$
* @see PostgresqlSchedule
*/
class ScheduleFactory : virtual public Configurable,
diff --git a/livesupport/products/scheduler/src/ScheduleInterface.h b/livesupport/products/scheduler/src/ScheduleInterface.h
index d3c8899ba..c5877a424 100644
--- a/livesupport/products/scheduler/src/ScheduleInterface.h
+++ b/livesupport/products/scheduler/src/ScheduleInterface.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.8 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ScheduleInterface.h,v $
------------------------------------------------------------------------------*/
@@ -69,8 +69,8 @@ using namespace LiveSupport::Core;
/**
* The generic interface for the component scheduling events.
*
- * @author $Author: maroy $
- * @version $Revision: 1.8 $
+ * @author $Author$
+ * @version $Revision$
*/
class ScheduleInterface : virtual public Installable
{
diff --git a/livesupport/products/scheduler/src/SchedulerDaemon.cxx b/livesupport/products/scheduler/src/SchedulerDaemon.cxx
index d50072c47..a6b064211 100644
--- a/livesupport/products/scheduler/src/SchedulerDaemon.cxx
+++ b/livesupport/products/scheduler/src/SchedulerDaemon.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.31 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SchedulerDaemon.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/SchedulerDaemon.h b/livesupport/products/scheduler/src/SchedulerDaemon.h
index 642f0a5c7..69cbe19be 100644
--- a/livesupport/products/scheduler/src/SchedulerDaemon.h
+++ b/livesupport/products/scheduler/src/SchedulerDaemon.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.22 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SchedulerDaemon.h,v $
------------------------------------------------------------------------------*/
@@ -166,8 +166,8 @@ using namespace LiveSupport::PlaylistExecutor;
* xmlRpcDaemon) >
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.22 $
+ * @author $Author$
+ * @version $Revision$
* @see ConnectionManagerFactory
* @see AuthenticationClientFactory
* @see StorageClientFactory
diff --git a/livesupport/products/scheduler/src/SchedulerDaemonTest.cxx b/livesupport/products/scheduler/src/SchedulerDaemonTest.cxx
index 9b13e7490..cf7e2e3e8 100644
--- a/livesupport/products/scheduler/src/SchedulerDaemonTest.cxx
+++ b/livesupport/products/scheduler/src/SchedulerDaemonTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SchedulerDaemonTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/SchedulerDaemonTest.h b/livesupport/products/scheduler/src/SchedulerDaemonTest.h
index 1c080a43c..34f0cb9d0 100644
--- a/livesupport/products/scheduler/src/SchedulerDaemonTest.h
+++ b/livesupport/products/scheduler/src/SchedulerDaemonTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.2 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SchedulerDaemonTest.h,v $
------------------------------------------------------------------------------*/
@@ -60,8 +60,8 @@ using namespace LiveSupport;
/**
* Unit test for the SchedulerDaemon class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.2 $
+ * @author $Author$
+ * @version $Revision$
* @see SchedulerDaemon
*/
class SchedulerDaemonTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/SignalDispatcher.cxx b/livesupport/products/scheduler/src/SignalDispatcher.cxx
index 664ac5b60..0e7d67c3a 100644
--- a/livesupport/products/scheduler/src/SignalDispatcher.cxx
+++ b/livesupport/products/scheduler/src/SignalDispatcher.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.3 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SignalDispatcher.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/SignalDispatcher.h b/livesupport/products/scheduler/src/SignalDispatcher.h
index bc363f110..d7eecb323 100644
--- a/livesupport/products/scheduler/src/SignalDispatcher.h
+++ b/livesupport/products/scheduler/src/SignalDispatcher.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SignalDispatcher.h,v $
------------------------------------------------------------------------------*/
@@ -67,8 +67,8 @@ namespace Scheduler {
* A class to dispatch signals.
* See http://www.cs.wustl.edu/~schmidt/signal-patterns.html for details.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
*/
class SignalDispatcher
{
diff --git a/livesupport/products/scheduler/src/SignalHandler.h b/livesupport/products/scheduler/src/SignalHandler.h
index 86c05c644..2964ff852 100644
--- a/livesupport/products/scheduler/src/SignalHandler.h
+++ b/livesupport/products/scheduler/src/SignalHandler.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SignalHandler.h,v $
------------------------------------------------------------------------------*/
@@ -57,8 +57,8 @@ namespace Scheduler {
* Register subclasses of this class at SignalDispatcher.
* See http://www.cs.wustl.edu/~schmidt/signal-patterns.html for details.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
* @see SignalDispatcher
*/
class SignalHandler
diff --git a/livesupport/products/scheduler/src/TestRunner.cxx b/livesupport/products/scheduler/src/TestRunner.cxx
index 4b48b754b..66138bc12 100644
--- a/livesupport/products/scheduler/src/TestRunner.cxx
+++ b/livesupport/products/scheduler/src/TestRunner.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/TestRunner.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.cxx b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.cxx
index 75f159b0d..881a3e22f 100644
--- a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.cxx
+++ b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h
index 5e190d176..d5ff50550 100644
--- a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h
+++ b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethod.h,v $
------------------------------------------------------------------------------*/
@@ -97,8 +97,8 @@ using namespace LiveSupport::Core;
* 1608 - error executing setFadeInfo() method
* 1620 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class UpdateFadeInFadeOutMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.cxx b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.cxx
index 900145aac..c6cb448e3 100644
--- a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.cxx
+++ b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h
index b84be25fc..bbcaa821d 100644
--- a/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h
+++ b/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the UpdateFadeInFadeOutMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see UpdateFadeInFadeOutMethod
*/
class UpdateFadeInFadeOutMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/UploadPlaylistMethod.cxx b/livesupport/products/scheduler/src/UploadPlaylistMethod.cxx
index b1ec60def..e087caa44 100644
--- a/livesupport/products/scheduler/src/UploadPlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/UploadPlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.16 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/UploadPlaylistMethod.h b/livesupport/products/scheduler/src/UploadPlaylistMethod.h
index ffd01ad9d..634c6d8bd 100644
--- a/livesupport/products/scheduler/src/UploadPlaylistMethod.h
+++ b/livesupport/products/scheduler/src/UploadPlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.11 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -101,8 +101,8 @@ using namespace LiveSupport::Core;
* 1420 - missing session ID argument
*
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.11 $
+ * @author $Author$
+ * @version $Revision$
*/
class UploadPlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/UploadPlaylistMethodTest.cxx b/livesupport/products/scheduler/src/UploadPlaylistMethodTest.cxx
index 96caf9b02..6f47042c7 100644
--- a/livesupport/products/scheduler/src/UploadPlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/UploadPlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h b/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h
index a306ed902..106ed2ca3 100644
--- a/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.6 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -65,8 +65,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the UploadPlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.6 $
+ * @author $Author$
+ * @version $Revision$
* @see UploadPlaylistMethod
*/
class UploadPlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/ValidatePlaylistMethod.cxx b/livesupport/products/scheduler/src/ValidatePlaylistMethod.cxx
index 70c0eb182..aa222b44e 100644
--- a/livesupport/products/scheduler/src/ValidatePlaylistMethod.cxx
+++ b/livesupport/products/scheduler/src/ValidatePlaylistMethod.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.13 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethod.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/ValidatePlaylistMethod.h b/livesupport/products/scheduler/src/ValidatePlaylistMethod.h
index d988369e7..d5ed7045a 100644
--- a/livesupport/products/scheduler/src/ValidatePlaylistMethod.h
+++ b/livesupport/products/scheduler/src/ValidatePlaylistMethod.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: fgerlits $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethod.h,v $
------------------------------------------------------------------------------*/
@@ -94,8 +94,8 @@ using namespace LiveSupport::Core;
* 504 - playlist has not been opened for editing
* 520 - missing session ID argument
*
- * @author $Author: fgerlits $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class ValidatePlaylistMethod : public XmlRpc::XmlRpcServerMethod
{
diff --git a/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.cxx b/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.cxx
index 6b3dcdffb..80bd9a2fd 100644
--- a/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.cxx
+++ b/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.12 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h b/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h
index 0817f975f..6fdc7d931 100644
--- a/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h
+++ b/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h,v $
------------------------------------------------------------------------------*/
@@ -64,8 +64,8 @@ using namespace LiveSupport::Authentication;
/**
* Unit test for the ValidatePlaylistMethod class.
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
* @see ValidatePlaylistMethod
*/
class ValidatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
diff --git a/livesupport/products/scheduler/src/XmlRpcDaemon.cxx b/livesupport/products/scheduler/src/XmlRpcDaemon.cxx
index cacfcf973..7c149d5da 100644
--- a/livesupport/products/scheduler/src/XmlRpcDaemon.cxx
+++ b/livesupport/products/scheduler/src/XmlRpcDaemon.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/XmlRpcDaemon.cxx,v $
------------------------------------------------------------------------------*/
diff --git a/livesupport/products/scheduler/src/XmlRpcDaemon.h b/livesupport/products/scheduler/src/XmlRpcDaemon.h
index ad81ba806..126af6800 100644
--- a/livesupport/products/scheduler/src/XmlRpcDaemon.h
+++ b/livesupport/products/scheduler/src/XmlRpcDaemon.h
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.5 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/XmlRpcDaemon.h,v $
------------------------------------------------------------------------------*/
@@ -118,8 +118,8 @@ using namespace LiveSupport::Core;
*
*
*
- * @author $Author: maroy $
- * @version $Revision: 1.5 $
+ * @author $Author$
+ * @version $Revision$
*/
class XmlRpcDaemon
{
diff --git a/livesupport/products/scheduler/src/XmlRpcDaemonShutdownSignalHandler.h b/livesupport/products/scheduler/src/XmlRpcDaemonShutdownSignalHandler.h
index 845bafcb4..360592e43 100644
--- a/livesupport/products/scheduler/src/XmlRpcDaemonShutdownSignalHandler.h
+++ b/livesupport/products/scheduler/src/XmlRpcDaemonShutdownSignalHandler.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$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/XmlRpcDaemonShutdownSignalHandler.h,v $
------------------------------------------------------------------------------*/
@@ -58,8 +58,8 @@ namespace Scheduler {
/**
* Signal handler to shut down an XmlRpcDaemon.
*
- * @author $Author: maroy $
- * @version $Revision: 1.1 $
+ * @author $Author$
+ * @version $Revision$
* @see XmlRpcDaemon
*/
class XmlRpcDaemonShutdownSignalHandler : public SignalHandler
diff --git a/livesupport/products/scheduler/src/main.cxx b/livesupport/products/scheduler/src/main.cxx
index 60f7bd7c6..a05a1223c 100644
--- a/livesupport/products/scheduler/src/main.cxx
+++ b/livesupport/products/scheduler/src/main.cxx
@@ -21,8 +21,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Author : $Author: maroy $
- Version : $Revision: 1.4 $
+ Author : $Author$
+ Version : $Revision$
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/main.cxx,v $
------------------------------------------------------------------------------*/