*** empty log message ***

This commit is contained in:
sebastian 2005-03-03 22:11:09 +00:00
parent 10aa25755c
commit 0c4775349b
3 changed files with 33 additions and 12 deletions

View File

@ -297,6 +297,12 @@ $ui_fmask = array(
'element' => 'folderId', 'element' => 'folderId',
'type' => 'hidden' 'type' => 'hidden'
), ),
array(
'element' => 'title',
'type' => 'text',
'label' => 'Title',
'required' => TRUE
),
array( array(
'element' => 'url', 'element' => 'url',
'type' => 'text', 'type' => 'text',

View File

@ -44,11 +44,21 @@
function showData() function showData()
{ {
{/literal}
{if $editItem.id && $editItem.type == 'file'}
alert('Sorry, function temporary disabled');
return false;
{/if}
{literal}
document.getElementById('div_Data').style.visibility='visible'; document.getElementById('div_Data').style.visibility='visible';
document.getElementById('div_Data').style.height=''; document.getElementById('div_Data').style.height='';
document.getElementById('div_MData').style.visibility='hidden'; document.getElementById('div_MData').style.visibility='hidden';
document.getElementById('div_MData').style.height='0'; document.getElementById('div_MData').style.height='0';
} }
{/literal}
{if $editItem.id}
{literal}
function showMData() function showMData()
{ {
document.getElementById('div_MData').style.visibility='visible'; document.getElementById('div_MData').style.visibility='visible';
@ -56,12 +66,16 @@ function showMData()
document.getElementById('div_Data').style.visibility='hidden'; document.getElementById('div_Data').style.visibility='hidden';
document.getElementById('div_Data').style.height='0'; document.getElementById('div_Data').style.height='0';
} }
{/literal}
{if $editItem.id}
document.getElementById('div_Data').style.visibility='hidden'; document.getElementById('div_Data').style.visibility='hidden';
document.getElementById('div_Data').style.height='0'; document.getElementById('div_Data').style.height='0';
{/literal}
{else} {else}
{literal}
function showMData()
{
alert ('First Data');
}
{/literal}
document.getElementById('div_MData').style.visibility='hidden'; document.getElementById('div_MData').style.visibility='hidden';
document.getElementById('div_MData').style.height='0'; document.getElementById('div_MData').style.height='0';
{/if} {/if}

View File

@ -167,7 +167,7 @@ class uiHandler extends uiBase {
$this->transMData($r); $this->transMData($r);
$this->redirUrl = UI_BROWSER."?act=editFile&id=$r"; $this->redirUrl = UI_BROWSER."?act=editFile&id=$r";
$this->_retMsg('File saved'); $this->_retMsg('Audioclip Data saved');
return $r; return $r;
} }
@ -214,17 +214,17 @@ class uiHandler extends uiBase {
$this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id; $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
return FALSE; return FALSE;
} }
$r = $this->gb->storeWebstream($folderId, date('Y-m-d H:i:s'), NULL, $this->sessid, NULL, $formdata['url']); $r = $this->gb->storeWebstream($folderId, $formdata['title'], NULL, $this->sessid, NULL, $formdata['url']);
if(PEAR::isError($r)) { if(PEAR::isError($r)) {
$this->_retMsg($r->getMessage()); $this->_retMsg($r->getMessage());
$this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id; $this->redirUrl = UI_BROWSER."?act=editWebstream&id=".$id;
return FALSE; return FALSE;
} }
$length = $this->_twoDigits($formdata['length']['H']).':'.$this->_twoDigits($formdata['length']['i']).':'.$this->_twoDigits($formdata['length']['s']).'.000000'; $length = $this->_twoDigits($formdata['length']['H']).':'.$this->_twoDigits($formdata['length']['i']).':'.$this->_twoDigits($formdata['length']['s']).'.000000';
$this->gb->setMDataValue($r, UI_MDATA_KEY_TITLE, $this->sessid, $data['title']); $this->gb->setMDataValue($r, UI_MDATA_KEY_TITLE, $this->sessid, $formdata['title']);
$this->gb->setMDataValue($r, UI_MDATA_KEY_DURATION, $this->sessid, $length); $this->gb->setMDataValue($r, UI_MDATA_KEY_DURATION, $this->sessid, $length);
$this->redirUrl = UI_BROWSER."?act=editWebstream&id=$r"; $this->redirUrl = UI_BROWSER."?act=editWebstream&id=$r";
$this->_retMsg('Stream saved'); $this->_retMsg('Stream Data saved');
return $r; return $r;
} }
@ -237,9 +237,10 @@ class uiHandler extends uiBase {
return FALSE; return FALSE;
} }
$length = $this->_twoDigits($formdata['length']['H']).':'.$this->_twoDigits($formdata['length']['i']).':'.$this->_twoDigits($formdata['length']['s']).'.000000'; $length = $this->_twoDigits($formdata['length']['H']).':'.$this->_twoDigits($formdata['length']['i']).':'.$this->_twoDigits($formdata['length']['s']).'.000000';
$this->gb->setMDataValue($id, UI_MDATA_KEY_TITLE, $this->sessid, $formdata['title']);
$this->gb->setMDataValue($id, UI_MDATA_KEY_URL, $this->sessid, $formdata['url']); $this->gb->setMDataValue($id, UI_MDATA_KEY_URL, $this->sessid, $formdata['url']);
$this->gb->setMDataValue($id, UI_MDATA_KEY_DURATION, $this->sessid, $length); $this->gb->setMDataValue($id, UI_MDATA_KEY_DURATION, $this->sessid, $length);
$this->_retMsg('Stream changed'); $this->_retMsg('Stream Data changed');
$this->redirUrl = UI_BROWSER.'?act=editWebstream&id='.$formdata['id']; $this->redirUrl = UI_BROWSER.'?act=editWebstream&id='.$formdata['id'];
} }