diff options
Diffstat (limited to 'jsScuttle.php')
-rw-r--r-- | jsScuttle.php | 148 |
1 files changed, 0 insertions, 148 deletions
diff --git a/jsScuttle.php b/jsScuttle.php deleted file mode 100644 index 0e8b96a..0000000 --- a/jsScuttle.php +++ /dev/null @@ -1,148 +0,0 @@ -<?php -header('Content-Type: text/javascript'); -require_once('header.inc.php'); -require_once('functions.inc.php'); -$player_root = ROOT .'includes/player/'; -?> - -function _playerAdd(anchor) { - var url = anchor.href; - var code = '<object type="application/x-shockwave-flash" data="<?php echo $player_root ?>musicplayer_f6.swf?song_url=' + url +'&b_bgcolor=ffffff&b_fgcolor=000000&b_colors=0000ff,0000ff,ff0000,ff0000&buttons=<?php echo $player_root ?>load.swf,<?php echo $player_root ?>play.swf,<?php echo $player_root ?>stop.swf,<?php echo $player_root ?>error.swf" width="14" height="14">'; - var code = code + '<param name="movie" value="<?php echo $player_root ?>musicplayer.swf?song_url=' + url +'&b_bgcolor=ffffff&b_fgcolor=000000&b_colors=0000ff,0000ff,ff0000,ff0000&buttons=<?php echo $player_root ?>load.swf,<?php echo $player_root ?>play.swf,<?php echo $player_root ?>stop.swf,<?php echo $player_root ?>error.swf" />'; - var code = code + '</object>'; - anchor.parentNode.innerHTML = code +' '+ anchor.parentNode.innerHTML; -} - -String.prototype.trim = function() { - return this.replace(/^\s+|\s+$/g, ''); -}; - -var deleted = false; -function deleteBookmark(ele, input){ - var confirmDelete = "<span><?php echo T_('Are you sure?') ?> <a href=\"#\" onclick=\"deleteConfirmed(this, " + input + ", \'\'); return false;\"><?php echo T_('Yes'); ?></a> - <a href=\"#\" onclick=\"deleteCancelled(this); return false;\"><?php echo T_('No'); ?></a></span>"; - ele.style.display = 'none'; - ele.parentNode.innerHTML = ele.parentNode.innerHTML + confirmDelete; -} - -function deleteCancelled(ele) { - var del = previousElement(ele.parentNode); - del.style.display = 'inline'; - ele.parentNode.parentNode.removeChild(ele.parentNode); - return false; -} - -function deleteConfirmed(ele, input, response) { - //if (deleted == false) { - deleted = ele.parentNode.parentNode.parentNode.parentNode; - //} - var post = deleted; - post.className = 'xfolkentry deleted'; - if (response != '') { - post.style.display = 'none'; - deleted = false; - } else { - loadXMLDoc('<?php echo ROOT; ?>ajaxDelete.php?id=' + input); - post.style.display = 'none'; - } -} - -function previousElement(ele) { - ele = ele.previousSibling; - while (ele.nodeType != 1) { - ele = ele.previousSibling; - } - return ele; -} - -function isAvailable(input, response){ - var usernameField = document.getElementById("username"); - var username = usernameField.value; - username = username.toLowerCase(); - username = username.trim(); - var availability = document.getElementById("availability"); - if (username != '') { - usernameField.style.backgroundImage = 'url(<?php echo ROOT; ?>images/loading.gif)'; - if (response != '') { - usernameField.style.backgroundImage = 'none'; - if (response == 'true') { - availability.className = 'available'; - availability.innerHTML = '<?php echo T_('Available'); ?>'; - } else { - availability.className = 'not-available'; - availability.innerHTML = '<?php echo T_('Not Available'); ?>'; - } - } else { - loadXMLDoc('<?php echo ROOT; ?>ajaxIsAvailable.php?username=' + username); - } - } -} - -function useAddress(ele) { - var address = ele.value; - if (address != '') { - if (address.indexOf(':') < 0) { - address = 'http:\/\/' + address; - } - getTitle(address, null); - ele.value = address; - } -} - -function getTitle(input, response){ - var title = document.getElementById('titleField'); - if (title.value == '') { - title.style.backgroundImage = 'url(<?php echo ROOT; ?>images/loading.gif)'; - if (response != null) { - title.style.backgroundImage = 'none'; - title.value = response; - } else if (input.indexOf('http') > -1) { - loadXMLDoc('<?php echo ROOT; ?>ajaxGetTitle.php?url=' + input); - } else { - return false; - } - } -} - -var xmlhttp; -function loadXMLDoc(url) { - // Native - if (window.XMLHttpRequest) { - xmlhttp = new XMLHttpRequest(); - xmlhttp.onreadystatechange = processStateChange; - xmlhttp.open("GET", url, true); - xmlhttp.send(null); - // ActiveX - } else if (window.ActiveXObject) { - xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); - if (xmlhttp) { - xmlhttp.onreadystatechange = processStateChange; - xmlhttp.open("GET", url, true); - xmlhttp.send(); - } - } -} - -function processStateChange() { - if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { - response = xmlhttp.responseXML.documentElement; - method = response.getElementsByTagName('method')[0].firstChild.data; - result = response.getElementsByTagName('result')[0].firstChild.data; - eval(method + '(\'\', result)'); - } -} - -function playerLoad() { - var anchors = document.getElementsByTagName('a'); - var anchors_length = anchors.length; - for (var i = 0; i < anchors_length; i++) { - if (anchors[i].className == 'taggedlink' && anchors[i].href.match(/\.mp3$/i)) { - _playerAdd(anchors[i]); - } - } -} - -function addAnchor(anchorForm, where) { - var whereZone = document.getElementById(where); - whereZone.value = whereZone.value + anchorForm; - document.getElementById(where).focus(); -} |