# HG changeset patch # User dan@fuhry # Date 1181788434 14400 # Node ID 0417a5a0c7be786d85ec8ee15710677109f1ccd5 Initial repository population diff -r 000000000000 -r 0417a5a0c7be decir/bbcode.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/bbcode.php Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,98 @@ +\\1', $text); + + // Italicized text + $text = preg_replace("/\[i:$bbcode_uid\](.*?)\[\/i:$bbcode_uid\]/is", '\\1', $text); + + // Uunderlined text + $text = preg_replace("/\[u:$bbcode_uid\](.*?)\[\/u:$bbcode_uid\]/is", '\\1', $text); + + // Colored text + $text = preg_replace("/\[color=\#([A-F0-9]*){3,6}:$bbcode_uid\](.*?)\[\/color:$bbcode_uid\]/is", '\\2', $text); + + // Quotes + $text = preg_replace("/\[quote:$bbcode_uid\](.*?)\[\/quote:$bbcode_uid\]/is", '
\\1', $text); + + // Newlines + $text = str_replace("\n", "
\\1', $text); + + return $text; +} + +function decir_bbcode_strip_code($text, $uid, &$code_secs) +{ + preg_match_all("/\[code:$uid\](.*?)\[\/code:$uid\]/is", $text, $matches); + foreach ( $matches[1] as $i => $m ) + { + $text = str_replace_once($m, "{CODE_SECTION|$i:$uid}", $text); + $code_secs[$i] = $m; + } + return $text; +} + +function decir_bbcode_restore_code($text, $uid, $code_secs) +{ + foreach ( $code_secs as $i => $code ) + { + $text = str_replace("{CODE_SECTION|$i:$uid}", $code, $text); + } + return $text; +} + +function bbcode_strip_uid($bbcode, $uid) +{ + // BBcode tags with attributes + $bbcode = preg_replace("/\[([a-z]+?):{$uid}=([^\]]+?)\](.*?)\[\/\\1:{$uid}\]/is", '[\\1=\\2]\\3[/\\1]', $bbcode); + + // BBcode tags without attributes + $bbcode = preg_replace("/\[([a-z]+?):{$uid}\](.*?)\[\/\\1:{$uid}\]/is", '[\\1]\\2[/\\1]', $bbcode); + + return $bbcode; +} + diff -r 000000000000 -r 0417a5a0c7be decir/common.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/common.php Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,45 @@ +This script cannot be run outside of Enano.'); +} + +require('constants.php'); + +$html = ' + + '; + +$template->add_header($html); + +?> diff -r 000000000000 -r 0417a5a0c7be decir/constants.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/constants.php Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,25 @@ + diff -r 000000000000 -r 0417a5a0c7be decir/forum_index.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/forum_index.php Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,87 @@ +header(); + +// Not much left now but to just do it... +$q = $db->sql_query('SELECT f.forum_id,f.forum_type,f.forum_name,f.forum_desc,f.num_topics,f.num_posts, + p.post_id,t.topic_id,t.topic_title,u.username,u.user_level,p.timestamp FROM '.table_prefix.'decir_forums AS f + LEFT JOIN '.table_prefix.'decir_topics AS t + ON (t.forum_id=f.forum_id) + LEFT JOIN '.table_prefix.'decir_posts AS p + ON (p.topic_id=t.topic_id) + LEFT JOIN '.table_prefix.'users AS u + ON (u.user_id=f.last_post_user OR f.last_post_user IS NULL) + WHERE ( t.topic_id=f.last_post_topic AND p.post_id=f.last_post_id ) OR ( f.last_post_topic IS NULL AND f.last_post_id IS NULL ) + GROUP BY f.parent,f.forum_id + ORDER BY f.forum_order;'); + +if (!$q) + $db->_die(); + +echo '
Forum | +Topics | +Posts | +Last post | +|
---|---|---|---|---|
<icon> | '
+ . $row['forum_name'] . ' ' . $row['forum_desc'].' |
+ ' . $row['num_topics'] . ' | +' . $row['num_posts'] . ' | +
+
+ ' . $row['topic_title'] . ' + ' . date('d M Y h:i a', $row['timestamp']) . ' + by ' . $row['username'] . ' + + |
+
' . $row['forum_name'] . ' | This board has no forums. | '; +} +if ( $cat_open ) + echo ''; +echo '
The administrator has flagged the page "' . $_SERVER['REQUEST_URI'] . '" so that it cannot be accessed from the web. Perhaps this is because this is a cache or includes directory and only needs to be accessed by scripts.
HTTP error: 403 Forbidden
'; +$template->footer(); +$db->close(); diff -r 000000000000 -r 0417a5a0c7be decir/install.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/install.php Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,61 @@ +auth_level < USER_LEVEL_ADMIN ) +{ + header('Location: ' . makeUrlComplete('Special', 'Login/' . $paths->page, 'level=9', true)); + exit; +} + +if ( $v = getConfig('decir_version') ) +{ + $mode = 'upgrade'; + $upg_ver = $v; +} +else +{ + $mode = 'install'; +} + +$page = ( isset($_POST['step']) && in_array($_POST['step'], array('welcome', 'install', 'finish')) ) ? $_POST['step'] : 'welcome'; + +$template->header(); + +switch($page) +{ + case 'welcome': + ?> +Before you can use your forum, we'll need to run a few database queries to get the forum set up.
+ + + + footer(); + diff -r 000000000000 -r 0417a5a0c7be decir/install.sql --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/install.sql Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,51 @@ +CREATE TABLE decir_forums( + forum_id int(12) unsigned NOT NULL auto_increment, + forum_type tinyint(2) unsigned NOT NULL DEFAULT 1, + forum_name varchar(255) NOT NULL, + forum_desc text NOT NULL, + parent int(12) unsigned NOT NULL DEFAULT 0, + forum_order int(12) unsigned NOT NULL DEFAULT 1, + last_post_id int(18) unsigned, + last_post_topic int(12) unsigned, + last_post_user int(12) unsigned, + num_topics int(15) unsigned, + num_posts int(18) unsigned, + forum_extra text, + PRIMARY KEY ( forum_id ) +); +CREATE TABLE decir_topics( + topic_id int(15) unsigned NOT NULL auto_increment, + forum_id int(12) unsigned NOT NULL, + topic_title varchar(255) NOT NULL, + topic_icon tinyint(3) unsigned NOT NULL, + topic_starter int(12) unsigned NOT NULL, + topic_type tinyint(2) unsigned NOT NULL DEFAULT 1, + topic_locked tinyint(1) unsigned NOT NULL DEFAULT 0, + topic_moved tinyint(1) unsigned NOT NULL DEFAULT 0, + timestamp int(11) unsigned NOT NULL, + PRIMARY KEY ( topic_id ) +); +CREATE TABLE decir_posts( + post_id bigint(18) unsigned NOT NULL auto_increment, + topic_id bigint(15) unsigned NOT NULL, + poster_id int(12) unsigned NOT NULL, + poster_name varchar(255) NOT NULL, + timestamp int(11) unsigned NOT NULL, + last_edited_by int(12) unsigned DEFAULT NULL, + edit_count int(5) unsigned, + edit_reason varchar(255), + PRIMARY KEY ( post_id ) +); +CREATE TABLE decir_posts_text( + post_id bigint(18) unsigned NOT NULL, + post_text longtext NOT NULL, + bbcode_uid varchar(10) NOT NULL, + PRIMARY KEY ( post_id ) +); +CREATE TABLE decir_hits( + hit_id bigint(21) unsigned NOT NULL auto_increment, + user_id int(12) unsigned NOT NULL DEFAULT 1, + topic_id bigint(15) unsigned NOT NULL, + timestamp int(11) unsigned NOT NULL, + PRIMARY KEY ( hit_id ) +); diff -r 000000000000 -r 0417a5a0c7be decir/js/bbcedit.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/js/bbcedit.css Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,54 @@ +input.bbcbutton { + font-family: arial, sans-serif; + font-size: 8pt; + border: 1px solid #000000; + padding: 2px; + margin-right: 2px; + margin-bottom: 2px; +} + +fieldset { + border-color: #000000; + border-style: solid; + border-width: 1px; +} + +fieldset legend { + font-size: 8pt; + font-family: arial, sans-serif; +} + +input.clicksmiley { + padding-right: 1px; + padding-bottom: 1px; + border-width: 0; + padding: 0; + background-color: transparent; +} + +input.clicksmiley:active { + padding-right: 0px; + padding-bottom: 0px; + padding-left: 1px; + padding-top: 1px; +} + +.sizepick_td { + font-family: arial, sans-serif; + border: 1px solid #CCCCCC; + padding: 3px; + max-width: 75px; + clip: rect(0px,75px,auto,0px); + overflow: hidden; + white-space: nowrap; + cursor: pointer; +} +pre.code { + border: 1px dotted #cccccc; + background-color: #F0F0F0; + padding: 10px; + white-space: nowrap; + color: #00AA00; + font-family: deja vu sans mono, courier new, monospace; +} + diff -r 000000000000 -r 0417a5a0c7be decir/js/bbcedit.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/js/bbcedit.js Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,632 @@ +// Client detection from MediaWiki +var clientPC = navigator.userAgent.toLowerCase(); // Get client info +var is_gecko = ((clientPC.indexOf('gecko')!=-1) && (clientPC.indexOf('spoofer')==-1) + && (clientPC.indexOf('khtml') == -1) && (clientPC.indexOf('netscape/7.0')==-1)); +var is_safari = ((clientPC.indexOf('applewebkit')!=-1) && (clientPC.indexOf('spoofer')==-1)); +var is_khtml = (navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled )); +if (clientPC.indexOf('opera') != -1) { + var is_opera = true; + var is_opera_preseven = (window.opera && !document.childNodes); + var is_opera_seven = (window.opera && document.childNodes); +} + +var $_GET=new Object(); +var aParams=document.location.search.substr(1).split('&'); +for ( i = 0; i < aParams.length; i++ ) { + var aParam=aParams[i].split('='); + var sParamName=aParam[0]; + var sParamValue=aParam[1]; + $_GET[sParamName]=sParamValue; +} + +// List of BBcode buttons + +var buttons = [ + { + 'start' : '[b]', + 'end' : '[/b]', + 'desc' : 'Bold', + 'style' : { 'fontWeight' : 'bold' } + }, + { + 'start' : '[i]', + 'end' : '[/i]', + 'desc' : 'Italics', + 'style' : { 'fontStyle' : 'italic' } + }, + { + 'start' : '[u]', + 'end' : '[/u]', + 'desc' : 'Underline', + 'style' : { 'textDecoration' : 'underline' } + }, + { + 'start' : '[color=black]', + 'end' : '[/color]', + 'custom': true, + 'func' : function() { openColorPicker(this); }, + 'desc' : 'Color', + 'style' : { 'color' : 'red' } + }, + { + 'start' : '[size=1]', + 'end' : '[/size]', + 'custom': true, + 'func' : function() { openSizePicker(this); }, + 'desc' : 'Size' + }, + { + 'start' : '[code]', + 'end' : '[/code]', + 'desc' : 'Code', + 'style' : { 'fontFamily' : 'courier new, monospace' } + }, + { + 'start' : '[quote]', + 'end' : '[/quote]', + 'desc' : 'Quote' + } + ]; + +// List of valid smilies +var smilies = { + 'O:-)' : 'face-angel.png', + 'O:)' : 'face-angel.png', + 'O=)' : 'face-angel.png', + ':-)' : 'face-smile.png', + ':)' : 'face-smile.png', + '=)' : 'face-smile-big.png', + ':-(' : 'face-sad.png', + ':(' : 'face-sad.png', + ';(' : 'face-sad.png', + ':-O' : 'face-surprise.png', + ';-)' : 'face-wink.png', + ';)' : 'face-wink.png', + '8-)' : 'face-glasses.png', + '8)' : 'face-glasses.png', + ':-D' : 'face-grin.png', + ':D' : 'face-grin.png', + '=D' : 'face-grin.png', + ':-*' : 'face-kiss.png', + ':*' : 'face-kiss.png', + '=*' : 'face-kiss.png', + ':\'(' : 'face-crying.png', + ':-|' : 'face-plain.png', + ':-\\' : 'face-plain.png', + ':-/' : 'face-plain.png', + ':joke:' : 'face-plain.png', + ']:->' : 'face-devil-grin.png', + ':kiss:' : 'face-kiss.png', + ':-P' : 'face-tongue-out.png', + ':P' : 'face-tongue-out.png', + ':-p' : 'face-tongue-out.png', + ':p' : 'face-tongue-out.png', + ':-X' : 'face-sick.png', + ':X' : 'face-sick.png', + ':sick:' : 'face-sick.png', + ':-]' : 'face-oops.png', + ':]' : 'face-oops.png', + ':oops:' : 'face-oops.png', + ':-[' : 'face-embarassed.png', + ':[' : 'face-embarassed.png' +}; + +function initBBCodeControls() +{ + txtars = getElementsByClassName(document, 'textarea', 'bbcode'); + for ( i = 0; i < txtars.length; i++ ) + { + convertTextAreaToBBCode(txtars[i]); + } +} + +var smileycache = { 'td' : [], 'img' : [] }; + +function convertTextAreaToBBCode(txtarea) +{ + var pn = txtarea.parentNode; + + var loadingDiv = document.createElement('div'); + loadingDiv.appendChild(document.createTextNode('Initializing editor...')); + pn.appendChild(loadingDiv); + + if(!IE) + { + + var smileybox = document.createElement('div'); + smileybox.style.cssFloat = 'left'; // Mozilla + smileybox.style.styleFloat = 'left'; // IE + smileybox.style.marginRight = '10px'; + smileybox.style.maxWidth = '220px'; + smileybox.style.maxHeight = '300px'; + smileybox.style.clip = 'rect(0px,auto,auto,0px)'; + smileybox.style.overflow = 'auto'; + + var fl = document.createElement('fieldset'); + var lb = document.createElement('legend'); + lb.appendChild(document.createTextNode('Smilies')); + fl.appendChild(lb); + var used = []; + + var scriptPath = ''; // REMOVE FOR ENANO IMPLEMENTATION! + + var frm = document.createElement('form'); + frm.action='javascript:void(0)'; + frm.onsubmit = function(){return false;}; + + var tbl = document.createElement('table'); + tbl.border = '0'; + tbl.cellspacing = '0'; + tbl.cellpadding = '0'; + tbl.width = '100%'; + + var tr = document.createElement('tr'); + var tick = -1; + var apd = false; + + for ( var i in smilies ) + { + apd = false; + if ( in_array(smilies[i], used) ) + continue; + used.push(smilies[i]); + + tick++; + if ( tick == 3 ) + { + tick = 0; + tbl.appendChild(tr); + tr = document.createElement('tr'); + apd = true; + } + + var smile = i.replace(/\\/g, '\\\\'); + + var td = document.createElement('td'); + td.style.textAlign = 'center'; + td.style.padding = '0'; + + var img = ( IE ) ? new Image() : document.createElement('input'); + img.type = 'image'; + img.className = 'clicksmiley'; + img.src = scriptPath + '/images/smilies/' + smilies[i]; + img.style.cursor = 'pointer'; + img.style.margin = '2px'; + img.onclick = insertSmiley; + img.title = i; + img.alt = i; + if (IE) + { + // This IE bug (yet another) is stupid BEYOND reason. + setTimeout('smileycache.td['+smileycache.td.length+'].appendChild(smileycache.img['+smileycache.img.length+']);', 20); + smileycache.img[smileycache.img.length] = img; + smileycache.td[smileycache.td.length] = td; + } + else + { + td.appendChild(img); + } + tr.appendChild(td); + } + + if (!apd) + tbl.appendChild(tr); + + frm.appendChild(tbl); + fl.appendChild(frm); + + smileybox.appendChild(fl); + pn.insertBefore(smileybox, txtarea); + + } + else + { + var div = document.createElement('div'); + var html = ''; + div.innerHTML = html; + pn.appendChild(div, txtarea); + } + + var toolbar = document.createElement('div'); + for ( j = 0; j < buttons.length; j++ ) + { + var btn = document.createElement('input'); + btn.type='button'; + btn.className = 'bbcbutton'; + btn.value = buttons[j].desc; + if ( buttons[j].custom ) + btn.onclick = buttons[j].func; + else + btn.onclick = BBCodeClickHandler; + if ( buttons[j].style ) + { + for ( var k in buttons[j].style ) + { + btn.style[k] = buttons[j].style[k]; + } + } + toolbar.appendChild(btn); + } + + pn.insertBefore(toolbar, txtarea); + pn.removeChild(loadingDiv); +} + +function insertSmiley() +{ + var imgid = this.src; + imgid = imgid.split('/'); + imgid = imgid[imgid.length-1]; + emot = array_search(imgid, smilies) + ' '; + var o = this.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.nextSibling.firstChild; + formatBBCode(o, emot, "", ""); + return false; +} + +function BBCodeClickHandler() +{ + var obj = false; + for ( i = 0; i < buttons.length; i++ ) + { + if ( buttons[i]['desc'] == this.value ) + { + obj = buttons[i]; + break; + } + } + if(!obj) + return false; + formatBBCode(this, obj['start'], obj['end'], obj['desc']); + return true; +} + +// +// COLOR PICKER +// + +function openColorPicker(parent) +{ + var off = fetch_offset(parent); + var dim = fetch_dimensions(parent); + var top = off['top'] + dim['h'] - 1; + var left = off['left']; + + var div = document.createElement('div'); + div.style.border = '1px solid #000000'; + div.style.padding = '10px'; + div.style.position = 'absolute'; + div.style.top = top + 'px'; + div.style.left = left + 'px'; + div.style.backgroundColor = '#ffffff'; + + var cwheel = document.createElement('div'); + cwheel.id = 'color_wheel'; + + var cinput = document.createElement('input'); + cinput.size = '7'; + cinput.id = 'color_val'; + cinput.value = '#ff0000'; + + var btni = document.createElement('input'); + btni.type = 'button'; + btni.value = 'Insert'; + btni.onclick = finishColorPicker; + + var btnc = document.createElement('input'); + btnc.type = 'button'; + btnc.value = 'Cancel'; + btnc.onclick = closeColorPicker; + + div.appendChild(cwheel); + div.appendChild(cinput); + div.appendChild(btni); + div.appendChild(btnc); + + parent.parentNode.appendChild(div); + + $jq('#color_wheel').farbtastic('#color_val'); +} + +function finishColorPicker() +{ + parent = this.parentNode; + input = parent.getElementsByTagName('input')[0]; + color = input.value; + formatBBCode(parent, '[color=' + color + ']', '[/color]', 'Colored text'); + parent.parentNode.removeChild(parent); +} + +function closeColorPicker() +{ + parent = this.parentNode; + parent.parentNode.removeChild(parent); +} + +// +// SIZE PICKER +// + +function openSizePicker(parent) +{ + + var off = fetch_offset(parent); + var dim = fetch_dimensions(parent); + var top = off['top'] + dim['h'] - 1; + var left = off['left']; + + var div = document.createElement('div'); + div.style.border = '1px solid #000000'; + div.style.padding = '3px'; + div.style.position = 'absolute'; + div.style.top = top + 'px'; + div.style.left = left + 'px'; + div.style.backgroundColor = '#ffffff'; + div.style.width = '130px'; + //div.style.maxHeight = '400px'; + div.style.clip = 'rect(0px,auto,auto,0px)'; + div.style.overflow = 'hidden'; + + var tbl = document.createElement('table'); + tbl.border = '0'; + tbl.cellspacing = '0'; + tbl.cellpadding = '0'; + tbl.style.maxWidth = '75px'; + tbl.style.clip = 'rect(0px,75px,auto,0px)'; + tbl.style.overflow = 'hidden'; + + var i = 0; + + for ( i = 0.5; i <= 4; i=i+0.5 ) + { + var tr = document.createElement('tr'); + var td = document.createElement('td'); + td.innerHTML = i; + tr.appendChild(td); + var td = document.createElement('td'); + td.className = 'sizepick_td'; + td.style.fontSize = i + 'em'; + td.innerHTML = 'The quick brown fox jumps over the lazy dog.'; + td.onclick = function() { sizePickClickHandler(this); } + tr.appendChild(td); + tbl.appendChild(tr); + } + + var a = document.createElement('a'); + a.href='#'; + a.onclick = function() { this.parentNode.parentNode.removeChild(this.parentNode); return false; }; + a.appendChild(document.createTextNode('Close size picker')); + + div.appendChild(tbl); + div.appendChild(a); + parent.parentNode.appendChild(div); + +} + +function sizePickClickHandler(parent) +{ + size = parent.style.fontSize.substr(0, parent.style.fontSize.length - 2); + formatBBCode(parent.parentNode.parentNode.parentNode, '[size=' + size + ']', '[/size]', 'Large/small text'); + parent.parentNode.parentNode.parentNode.parentNode.removeChild(parent.parentNode.parentNode.parentNode); +} + +// +// HTML RENDERER +// + +function htmlspecialchars(text) +{ + text = text.replace(//g, '>'); + return text; +} + +function render_bbcode(text) +{ + // Smilies + for(var i in smilies) + { + if ( text.indexOf(i) > -1 ) + { + while ( text.indexOf(i) > -1 ) + { + text = text.replace(i, ''); + } + } + } + + // Destroy (X|HT)ML tags + text = htmlspecialchars(text); + text = text.replace(/ /g, ' '); + + // Bold text + text = text.replace(/\[b\]([\w\W]+?)\[\/b\]/g, '$1'); + + // Italicized text + text = text.replace(/\[i\]([\w\W]+?)\[\/i\]/g, '$1'); + + // Underlined text + text = text.replace(/\[u\]([\w\W]+?)\[\/u\]/g, '$1'); + + // Quotes + text = text.replace(/\[quote\]([\w\W]+?)\[\/quote\]/g, '$1'); + + // Colored text + text = text.replace(/\[color=#([0-9A-Fa-f]+?)\]([\w\W]*?)\[\/color\]/g, '$2'); + + // Sized text + text = text.replace(/\[size=([0-9\.]+?)\]([\w\W]*?)\[\/size\]/g, '$2'); + + // Newlines + var nlre = new RegExp(unescape('%0A'), 'g'); + text = text.replace(nlre, '
$1'); + text = text.replace(/
([\s]+)/gi, ''); + text = text.replace(/([\s]+)<\/pre>/gi, ''); + + return text; +} + +function rawhtmlcode(text) +{ + var ret = ''; + for ( var i = 0; i < text.length; i++ ) + { + chr = text.charCodeAt(i); + chr = '' + chr + ';'; + ret += chr; + } + return ret; +} + +// Preview function +function makePreview(obj) +{ + obj = document.getElementById(obj); + var bbcode = obj.value; + var body = document.getElementsByTagName('body')[0]; + var div = document.createElement('div'); + div.style.border = '1px solid #000'; + div.style.padding = '10px'; + div.innerHTML = render_bbcode(bbcode); + //body.insertBefore(div, body.firstChild); + body.appendChild(div); +} + +function fetch_offset(obj) { + var left_offset = obj.offsetLeft; + var top_offset = obj.offsetTop; + while ((obj = obj.offsetParent) != null) { + left_offset += obj.offsetLeft; + top_offset += obj.offsetTop; + } + return { 'left' : left_offset, 'top' : top_offset }; +} + +function fetch_dimensions(o) { + var w = o.offsetWidth; + var h = o.offsetHeight; + return { 'w' : w, 'h' : h }; +} + +function getElementsByClassName(parent, type, cls) { + if(!type) + type = '*'; + if(!parent) + parent = document; + ret = new Array(); + el = parent.getElementsByTagName(type); + for ( var i in el ) + { + if(el[i].className) + { + if(el[i].className.indexOf(' ') > 0) + { + classes = el[i].className.split(' '); + } + else + { + classes = new Array(); + classes.push(el[i].className); + } + if ( in_array(cls, classes) ) + ret.push(el[i]); + } + } + return ret; +} + +function in_array(needle, haystack) +{ + for( var i in haystack ) + { + if(haystack[i] == needle) + return true; + } + return false; +} + +function array_search(needle, haystack) +{ + for( var i in haystack ) + { + if(haystack[i] == needle) + return i; + } + return false; +} + +document.getElementsByClassName = function(type, cls) { + return getElementsByClassName(document, type, cls); +} + +// Function adapted from MediaWiki/phpBB +function formatBBCode(parent, tagOpen, tagClose, sampleText) +{ + var txtarea = parent.parentNode.nextSibling; + + // IE + if (document.selection && !is_gecko) { + var theSelection = document.selection.createRange().text; + if (!theSelection) + theSelection=sampleText; + txtarea.focus(); + if (theSelection.charAt(theSelection.length - 1) == " ") { // exclude ending space char, if any + theSelection = theSelection.substring(0, theSelection.length - 1); + document.selection.createRange().text = tagOpen + theSelection + tagClose + " "; + } else { + document.selection.createRange().text = tagOpen + theSelection + tagClose; + } + + // Mozilla + } else if(txtarea.selectionStart || txtarea.selectionStart == '0') { + var replaced = false; + var startPos = txtarea.selectionStart; + var endPos = txtarea.selectionEnd; + if (endPos-startPos) + replaced = true; + var scrollTop = txtarea.scrollTop; + var myText = (txtarea.value).substring(startPos, endPos); + if (!myText) + myText=sampleText; + if (myText.charAt(myText.length - 1) == " ") { // exclude ending space char, if any + subst = tagOpen + myText.substring(0, (myText.length - 1)) + tagClose + " "; + } else { + subst = tagOpen + myText + tagClose; + } + txtarea.value = txtarea.value.substring(0, startPos) + subst + + txtarea.value.substring(endPos, txtarea.value.length); + txtarea.focus(); + //set new selection + if (replaced) { + var cPos = startPos+(tagOpen.length+myText.length+tagClose.length); + txtarea.selectionStart = cPos; + txtarea.selectionEnd = cPos; + } else { + txtarea.selectionStart = startPos+tagOpen.length; + txtarea.selectionEnd = startPos+tagOpen.length+myText.length; + } + txtarea.scrollTop = scrollTop; + + // All other browsers get no toolbar. + } + // reposition cursor if possible + if (txtarea.createTextRange) + txtarea.caretPos = document.selection.createRange().duplicate(); +} + +addOnloadHook(initBBCodeControls); + diff -r 000000000000 -r 0417a5a0c7be decir/js/colorpick/farbtastic.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/js/colorpick/farbtastic.css Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,33 @@ +.farbtastic { + position: relative; +} +.farbtastic * { + position: absolute; + cursor: crosshair; +} +.farbtastic, .farbtastic .wheel { + width: 195px; + height: 195px; +} +.farbtastic .color, .farbtastic .overlay { + top: 47px; + left: 47px; + width: 101px; + height: 101px; +} +.farbtastic .wheel { + background: url(wheel.png) no-repeat; + width: 195px; + height: 195px; +} +.farbtastic .overlay { + background: url(mask.png) no-repeat; +} +.farbtastic .marker { + width: 17px; + height: 17px; + margin: -8px 0 0 -8px; + overflow: hidden; + background: url(marker.png) no-repeat; +} + diff -r 000000000000 -r 0417a5a0c7be decir/js/colorpick/farbtastic.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/js/colorpick/farbtastic.js Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,331 @@ +// $Id: farbtastic.js,v 1.2 2007/01/08 22:53:01 unconed Exp $ +// Farbtastic 1.2 + +// This code has been modified to not break Dynano + +jQuery.fn.farbtastic = function (callback) { + $jq.farbtastic(this, callback); + return this; +}; + +jQuery.farbtastic = function (container, callback) { + var container = $jq(container).get(0); + return container.farbtastic || (container.farbtastic = new jQuery._farbtastic(container, callback)); +} + +jQuery._farbtastic = function (container, callback) { + // Store farbtastic object + var fb = this; + + // Insert markup + $jq(container).html(''); + var e = $jq('.farbtastic', container); + fb.wheel = $jq('.wheel', container).get(0); + // Dimensions + fb.radius = 84; + fb.square = 100; + fb.width = 194; + + // Fix background PNGs in IE6 + if (navigator.appVersion.match(/MSIE [0-6]\./)) { + $jq('*', e).each(function () { + if (this.currentStyle.backgroundImage != 'none') { + var image = this.currentStyle.backgroundImage; + image = this.currentStyle.backgroundImage.substring(5, image.length - 2); + $jq(this).css({ + 'backgroundImage': 'none', + 'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='" + image + "')" + }); + } + }); + } + + /** + * Link to the given element(s) or callback. + */ + fb.linkTo = function (callback) { + // Unbind previous nodes + if (typeof fb.callback == 'object') { + $jq(fb.callback).unbind('keyup', fb.updateValue); + } + + // Reset color + fb.color = null; + + // Bind callback or elements + if (typeof callback == 'function') { + fb.callback = callback; + } + else if (typeof callback == 'object' || typeof callback == 'string') { + fb.callback = $jq(callback); + fb.callback.bind('keyup', fb.updateValue); + if (fb.callback.get(0).value) { + fb.setColor(fb.callback.get(0).value); + } + } + return this; + } + fb.updateValue = function (event) { + if (this.value && this.value != fb.color) { + fb.setColor(this.value); + } + } + + /** + * Change color with HTML syntax #123456 + */ + fb.setColor = function (color) { + var unpack = fb.unpack(color); + if (fb.color != color && unpack) { + fb.color = color; + fb.rgb = unpack; + fb.hsl = fb.RGBToHSL(fb.rgb); + fb.updateDisplay(); + } + return this; + } + + /** + * Change color with HSL triplet [0..1, 0..1, 0..1] + */ + fb.setHSL = function (hsl) { + fb.hsl = hsl; + fb.rgb = fb.HSLToRGB(hsl); + fb.color = fb.pack(fb.rgb); + fb.updateDisplay(); + return this; + } + + ///////////////////////////////////////////////////// + + /** + * Retrieve the coordinates of the given event relative to the center + * of the widget. + */ + fb.widgetCoords = function (event) { + var x, y; + var el = event.target || event.srcElement; + var reference = fb.wheel; + + if (typeof event.offsetX != 'undefined') { + // Use offset coordinates and find common offsetParent + var pos = { x: event.offsetX, y: event.offsetY }; + + // Send the coordinates upwards through the offsetParent chain. + var e = el; + while (e) { + e.mouseX = pos.x; + e.mouseY = pos.y; + pos.x += e.offsetLeft; + pos.y += e.offsetTop; + e = e.offsetParent; + } + + // Look for the coordinates starting from the wheel widget. + var e = reference; + var offset = { x: 0, y: 0 } + while (e) { + if (typeof e.mouseX != 'undefined') { + x = e.mouseX - offset.x; + y = e.mouseY - offset.y; + break; + } + offset.x += e.offsetLeft; + offset.y += e.offsetTop; + e = e.offsetParent; + } + + // Reset stored coordinates + e = el; + while (e) { + e.mouseX = undefined; + e.mouseY = undefined; + e = e.offsetParent; + } + } + else { + // Use absolute coordinates + var pos = fb.absolutePosition(reference); + x = (event.pageX || 0*(event.clientX + $jq('html').get(0).scrollLeft)) - pos.x; + y = (event.pageY || 0*(event.clientY + $jq('html').get(0).scrollTop)) - pos.y; + } + // Subtract distance to middle + return { x: x - fb.width / 2, y: y - fb.width / 2 }; + } + + /** + * Mousedown handler + */ + fb.mousedown = function (event) { + // Capture mouse + if (!document.dragging) { + $jq(document).bind('mousemove', fb.mousemove).bind('mouseup', fb.mouseup); + document.dragging = true; + } + + // Check which area is being dragged + var pos = fb.widgetCoords(event); + fb.circleDrag = Math.max(Math.abs(pos.x), Math.abs(pos.y)) * 2 > fb.square; + + // Process + fb.mousemove(event); + return false; + } + + /** + * Mousemove handler + */ + fb.mousemove = function (event) { + // Get coordinates relative to color picker center + var pos = fb.widgetCoords(event); + + // Set new HSL parameters + if (fb.circleDrag) { + var hue = Math.atan2(pos.x, -pos.y) / 6.28; + if (hue < 0) hue += 1; + fb.setHSL([hue, fb.hsl[1], fb.hsl[2]]); + } + else { + var sat = Math.max(0, Math.min(1, -(pos.x / fb.square) + .5)); + var lum = Math.max(0, Math.min(1, -(pos.y / fb.square) + .5)); + fb.setHSL([fb.hsl[0], sat, lum]); + } + return false; + } + + /** + * Mouseup handler + */ + fb.mouseup = function () { + // Uncapture mouse + $jq(document).unbind('mousemove', fb.mousemove); + $jq(document).unbind('mouseup', fb.mouseup); + document.dragging = false; + } + + /** + * Update the markers and styles + */ + fb.updateDisplay = function () { + // Markers + var angle = fb.hsl[0] * 6.28; + $jq('.h-marker', e).css({ + left: Math.round(Math.sin(angle) * fb.radius + fb.width / 2) + 'px', + top: Math.round(-Math.cos(angle) * fb.radius + fb.width / 2) + 'px' + }); + + $jq('.sl-marker', e).css({ + left: Math.round(fb.square * (.5 - fb.hsl[1]) + fb.width / 2) + 'px', + top: Math.round(fb.square * (.5 - fb.hsl[2]) + fb.width / 2) + 'px' + }); + + // Saturation/Luminance gradient + $jq('.color', e).css('backgroundColor', fb.pack(fb.HSLToRGB([fb.hsl[0], 1, 0.5]))); + + // Linked elements or callback + if (typeof fb.callback == 'object') { + // Set background/foreground color + $jq(fb.callback).css({ + backgroundColor: fb.color, + color: fb.hsl[2] > 0.5 ? '#000' : '#fff' + }); + + // Change linked value + $jq(fb.callback).each(function() { + if (this.value && this.value != fb.color) { + this.value = fb.color; + } + }); + } + else if (typeof fb.callback == 'function') { + fb.callback.call(fb, fb.color); + } + } + + /** + * Get absolute position of element + */ + fb.absolutePosition = function (el) { + var r = { x: el.offsetLeft, y: el.offsetTop }; + // Resolve relative to offsetParent + if (el.offsetParent) { + var tmp = fb.absolutePosition(el.offsetParent); + r.x += tmp.x; + r.y += tmp.y; + } + return r; + }; + + /* Various color utility functions */ + fb.pack = function (rgb) { + var r = Math.round(rgb[0] * 255); + var g = Math.round(rgb[1] * 255); + var b = Math.round(rgb[2] * 255); + return '#' + (r < 16 ? '0' : '') + r.toString(16) + + (g < 16 ? '0' : '') + g.toString(16) + + (b < 16 ? '0' : '') + b.toString(16); + } + + fb.unpack = function (color) { + if (color.length == 7) { + return [parseInt('0x' + color.substring(1, 3)) / 255, + parseInt('0x' + color.substring(3, 5)) / 255, + parseInt('0x' + color.substring(5, 7)) / 255]; + } + else if (color.length == 4) { + return [parseInt('0x' + color.substring(1, 2)) / 15, + parseInt('0x' + color.substring(2, 3)) / 15, + parseInt('0x' + color.substring(3, 4)) / 15]; + } + } + + fb.HSLToRGB = function (hsl) { + var m1, m2, r, g, b; + var h = hsl[0], s = hsl[1], l = hsl[2]; + m2 = (l <= 0.5) ? l * (s + 1) : l + s - l*s; + m1 = l * 2 - m2; + return [this.hueToRGB(m1, m2, h+0.33333), + this.hueToRGB(m1, m2, h), + this.hueToRGB(m1, m2, h-0.33333)]; + } + + fb.hueToRGB = function (m1, m2, h) { + h = (h < 0) ? h + 1 : ((h > 1) ? h - 1 : h); + if (h * 6 < 1) return m1 + (m2 - m1) * h * 6; + if (h * 2 < 1) return m2; + if (h * 3 < 2) return m1 + (m2 - m1) * (0.66666 - h) * 6; + return m1; + } + + fb.RGBToHSL = function (rgb) { + var min, max, delta, h, s, l; + var r = rgb[0], g = rgb[1], b = rgb[2]; + min = Math.min(r, Math.min(g, b)); + max = Math.max(r, Math.max(g, b)); + delta = max - min; + l = (min + max) / 2; + s = 0; + if (l > 0 && l < 1) { + s = delta / (l < 0.5 ? (2 * l) : (2 - 2 * l)); + } + h = 0; + if (delta > 0) { + if (max == r && max != g) h += (g - b) / delta; + if (max == g && max != b) h += (2 + (b - r) / delta); + if (max == b && max != r) h += (4 + (r - g) / delta); + h /= 6; + } + return [h, s, l]; + } + + // Install mousedown handler (the others are set on the document on-demand) + $jq('*', e).mousedown(fb.mousedown); + + // Init color + fb.setColor('#000000'); + + // Set linked elements/callback + if (callback) { + fb.linkTo(callback); + } +} diff -r 000000000000 -r 0417a5a0c7be decir/js/colorpick/jquery.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decir/js/colorpick/jquery.js Wed Jun 13 22:33:54 2007 -0400 @@ -0,0 +1,2246 @@ +/* prevent execution of jQuery if included more than once */ +if(typeof window.jQuery == "undefined") { +/* + * jQuery 1.1.2 - New Wave Javascript + * + * Copyright (c) 2007 John Resig (jquery.com) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * $Date: 2007-02-28 12:03:00 -0500 (Wed, 28 Feb 2007) $ + * $Rev: 1465 $ + */ + +// Global undefined variable +window.undefined = window.undefined; +var jQuery = function(a,c) { + // If the context is global, return a new object + if ( window == this ) + return new jQuery(a,c); + + // Make sure that a selection was provided + a = a || document; + + // HANDLE: $(function) + // Shortcut for document ready + if ( jQuery.isFunction(a) ) + return new jQuery(document)[ jQuery.fn.ready ? "ready" : "load" ]( a ); + + // Handle HTML strings + if ( typeof a == "string" ) { + // HANDLE: $(html) -> $(array) + var m = /^[^<]*(<(.|\s)+>)[^>]*$/.exec(a); + if ( m ) + a = jQuery.clean( [ m[1] ] ); + + // HANDLE: $(expr) + else + return new jQuery( c ).find( a ); + } + + return this.setArray( + // HANDLE: $(array) + a.constructor == Array && a || + + // HANDLE: $(arraylike) + // Watch for when an array-like object is passed as the selector + (a.jquery || a.length && a != window && !a.nodeType && a[0] != undefined && a[0].nodeType) && jQuery.makeArray( a ) || + + // HANDLE: $(*) + [ a ] ); +}; + +// Map over the $ in case of overwrite +if ( typeof $ != "undefined" ) + jQuery._$ = $; + +// Map the jQuery namespace to the '$' one +var $jq = jQuery; + +jQuery.fn = jQuery.prototype = { + jquery: "1.1.2", + + size: function() { + return this.length; + }, + + length: 0, + + get: function( num ) { + return num == undefined ? + + // Return a 'clean' array + jQuery.makeArray( this ) : + + // Return just the object + this[num]; + }, + pushStack: function( a ) { + var ret = jQuery(a); + ret.prevObject = this; + return ret; + }, + setArray: function( a ) { + this.length = 0; + [].push.apply( this, a ); + return this; + }, + each: function( fn, args ) { + return jQuery.each( this, fn, args ); + }, + index: function( obj ) { + var pos = -1; + this.each(function(i){ + if ( this == obj ) pos = i; + }); + return pos; + }, + + attr: function( key, value, type ) { + var obj = key; + + // Look for the case where we're accessing a style value + if ( key.constructor == String ) + if ( value == undefined ) + return this.length && jQuery[ type || "attr" ]( this[0], key ) || undefined; + else { + obj = {}; + obj[ key ] = value; + } + + // Check to see if we're setting style values + return this.each(function(index){ + // Set all the styles + for ( var prop in obj ) + jQuery.attr( + type ? this.style : this, + prop, jQuery.prop(this, obj[prop], type, index, prop) + ); + }); + }, + + css: function( key, value ) { + return this.attr( key, value, "curCSS" ); + }, + + text: function(e) { + if ( typeof e == "string" ) + return this.empty().append( document.createTextNode( e ) ); + + var t = ""; + jQuery.each( e || this, function(){ + jQuery.each( this.childNodes, function(){ + if ( this.nodeType != 8 ) + t += this.nodeType != 1 ? + this.nodeValue : jQuery.fn.text([ this ]); + }); + }); + return t; + }, + + wrap: function() { + // The elements to wrap the target around + var a = jQuery.clean(arguments); + + // Wrap each of the matched elements individually + return this.each(function(){ + // Clone the structure that we're using to wrap + var b = a[0].cloneNode(true); + + // Insert it before the element to be wrapped + this.parentNode.insertBefore( b, this ); + + // Find the deepest point in the wrap structure + while ( b.firstChild ) + b = b.firstChild; + + // Move the matched element to within the wrap structure + b.appendChild( this ); + }); + }, + append: function() { + return this.domManip(arguments, true, 1, function(a){ + this.appendChild( a ); + }); + }, + prepend: function() { + return this.domManip(arguments, true, -1, function(a){ + this.insertBefore( a, this.firstChild ); + }); + }, + before: function() { + return this.domManip(arguments, false, 1, function(a){ + this.parentNode.insertBefore( a, this ); + }); + }, + after: function() { + return this.domManip(arguments, false, -1, function(a){ + this.parentNode.insertBefore( a, this.nextSibling ); + }); + }, + end: function() { + return this.prevObject || jQuery([]); + }, + find: function(t) { + return this.pushStack( jQuery.map( this, function(a){ + return jQuery.find(t,a); + }), t ); + }, + clone: function(deep) { + return this.pushStack( jQuery.map( this, function(a){ + var a = a.cloneNode( deep != undefined ? deep : true ); + a.$events = null; // drop $events expando to avoid firing incorrect events + return a; + }) ); + }, + + filter: function(t) { + return this.pushStack( + jQuery.isFunction( t ) && + jQuery.grep(this, function(el, index){ + return t.apply(el, [index]) + }) || + + jQuery.multiFilter(t,this) ); + }, + + not: function(t) { + return this.pushStack( + t.constructor == String && + jQuery.multiFilter(t, this, true) || + + jQuery.grep(this, function(a) { + return ( t.constructor == Array || t.jquery ) + ? jQuery.inArray( a, t ) < 0 + : a != t; + }) + ); + }, + + add: function(t) { + return this.pushStack( jQuery.merge( + this.get(), + t.constructor == String ? + jQuery(t).get() : + t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ? + t : [t] ) + ); + }, + is: function(expr) { + return expr ? jQuery.filter(expr,this).r.length > 0 : false; + }, + + val: function( val ) { + return val == undefined ? + ( this.length ? this[0].value : null ) : + this.attr( "value", val ); + }, + + html: function( val ) { + return val == undefined ? + ( this.length ? this[0].innerHTML : null ) : + this.empty().append( val ); + }, + domManip: function(args, table, dir, fn){ + var clone = this.length > 1; + var a = jQuery.clean(args); + if ( dir < 0 ) + a.reverse(); + + return this.each(function(){ + var obj = this; + + if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") ) + obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody")); + + jQuery.each( a, function(){ + fn.apply( obj, [ clone ? this.cloneNode(true) : this ] ); + }); + + }); + } +}; + +jQuery.extend = jQuery.fn.extend = function() { + // copy reference to target object + var target = arguments[0], + a = 1; + + // extend jQuery itself if only one argument is passed + if ( arguments.length == 1 ) { + target = this; + a = 0; + } + var prop; + while (prop = arguments[a++]) + // Extend the base object + for ( var i in prop ) target[i] = prop[i]; + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function() { + if ( jQuery._$ ) + $ = jQuery._$; + return jQuery; + }, + + // This may seem like some crazy code, but trust me when I say that this + // is the only cross-browser way to do this. --John + isFunction: function( fn ) { + return !!fn && typeof fn != "string" && !fn.nodeName && + typeof fn[0] == "undefined" && /function/i.test( fn + "" ); + }, + + // check if an element is in a XML document + isXMLDoc: function(elem) { + return elem.tagName && elem.ownerDocument && !elem.ownerDocument.body; + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase(); + }, + // args is for internal usage only + each: function( obj, fn, args ) { + if ( obj.length == undefined ) + for ( var i in obj ) + fn.apply( obj[i], args || [i, obj[i]] ); + else + for ( var i = 0, ol = obj.length; i < ol; i++ ) + if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break; + return obj; + }, + + prop: function(elem, value, type, index, prop){ + // Handle executable functions + if ( jQuery.isFunction( value ) ) + value = value.call( elem, [index] ); + + // exclude the following css properties to add px + var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i; + + // Handle passing in a number to a CSS property + return value && value.constructor == Number && type == "curCSS" && !exclude.test(prop) ? + value + "px" : + value; + }, + + className: { + // internal only, use addClass("class") + add: function( elem, c ){ + jQuery.each( c.split(/\s+/), function(i, cur){ + if ( !jQuery.className.has( elem.className, cur ) ) + elem.className += ( elem.className ? " " : "" ) + cur; + }); + }, + + // internal only, use removeClass("class") + remove: function( elem, c ){ + elem.className = c ? + jQuery.grep( elem.className.split(/\s+/), function(cur){ + return !jQuery.className.has( c, cur ); + }).join(" ") : ""; + }, + + // internal only, use is(".class") + has: function( t, c ) { + t = t.className || t; + // escape regex characters + c = c.replace(/([\.\\\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"); + return t && new RegExp("(^|\\s)" + c + "(\\s|$)").test( t ); + } + }, + swap: function(e,o,f) { + for ( var i in o ) { + e.style["old"+i] = e.style[i]; + e.style[i] = o[i]; + } + f.apply( e, [] ); + for ( var i in o ) + e.style[i] = e.style["old"+i]; + }, + + css: function(e,p) { + if ( p == "height" || p == "width" ) { + var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"]; + + jQuery.each( d, function(){ + old["padding" + this] = 0; + old["border" + this + "Width"] = 0; + }); + + jQuery.swap( e, old, function() { + if (jQuery.css(e,"display") != "none") { + oHeight = e.offsetHeight; + oWidth = e.offsetWidth; + } else { + e = jQuery(e.cloneNode(true)) + .find(":radio").removeAttr("checked").end() + .css({ + visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0" + }).appendTo(e.parentNode)[0]; + + var parPos = jQuery.css(e.parentNode,"position"); + if ( parPos == "" || parPos == "static" ) + e.parentNode.style.position = "relative"; + + oHeight = e.clientHeight; + oWidth = e.clientWidth; + + if ( parPos == "" || parPos == "static" ) + e.parentNode.style.position = "static"; + + e.parentNode.removeChild(e); + } + }); + + return p == "height" ? oHeight : oWidth; + } + + return jQuery.curCSS( e, p ); + }, + + curCSS: function(elem, prop, force) { + var ret; + + if (prop == "opacity" && jQuery.browser.msie) + return jQuery.attr(elem.style, "opacity"); + + if (prop == "float" || prop == "cssFloat") + prop = jQuery.browser.msie ? "styleFloat" : "cssFloat"; + + if (!force && elem.style[prop]) + ret = elem.style[prop]; + + else if (document.defaultView && document.defaultView.getComputedStyle) { + + if (prop == "cssFloat" || prop == "styleFloat") + prop = "float"; + + prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase(); + var cur = document.defaultView.getComputedStyle(elem, null); + + if ( cur ) + ret = cur.getPropertyValue(prop); + else if ( prop == "display" ) + ret = "none"; + else + jQuery.swap(elem, { display: "block" }, function() { + var c = document.defaultView.getComputedStyle(this, ""); + ret = c && c.getPropertyValue(prop) || ""; + }); + + } else if (elem.currentStyle) { + + var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();}); + ret = elem.currentStyle[prop] || elem.currentStyle[newProp]; + + } + + return ret; + }, + + clean: function(a) { + var r = []; + + jQuery.each( a, function(i,arg){ + if ( !arg ) return; + + if ( arg.constructor == Number ) + arg = arg.toString(); + + // Convert html string into DOM nodes + if ( typeof arg == "string" ) { + // Trim whitespace, otherwise indexOf won't work as expected + var s = jQuery.trim(arg), div = document.createElement("div"), tb = []; + + var wrap = + // option or optgroup + !s.indexOf("", ""] || + + (!s.indexOf("", ""] || + + !s.indexOf(" ", ""] || + + // matched above + (!s.indexOf(" ", " "] || + + [0,"",""]; + + // Go to html and back, then peel off extra wrappers + div.innerHTML = wrap[1] + s + wrap[2]; + + // Move to the right depth + while ( wrap[0]-- ) + div = div.firstChild; + + // Remove IE's autoinserted from table fragments + if ( jQuery.browser.msie ) { + + // String was a, *may* have spurious + if ( !s.indexOf("
or + else if ( wrap[1] == "
" && s.indexOf("= 0 ; --n ) + if ( jQuery.nodeName(tb[n], "tbody") && !tb[n].childNodes.length ) + tb[n].parentNode.removeChild(tb[n]); + + } + + arg = []; + for (var i=0, l=div.childNodes.length; i
m[3]-0", + nth: "m[3]-0==i", + eq: "m[3]-0==i", + first: "i==0", + last: "i==r.length-1", + even: "i%2==0", + odd: "i%2", + + // Child Checks + "nth-child": "jQuery.nth(a.parentNode.firstChild,m[3],'nextSibling',a)==a", + "first-child": "jQuery.nth(a.parentNode.firstChild,1,'nextSibling')==a", + "last-child": "jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a", + "only-child": "jQuery.sibling(a.parentNode.firstChild).length==1", + + // Parent Checks + parent: "a.firstChild", + empty: "!a.firstChild", + + // Text Check + contains: "jQuery.fn.text.apply([a]).indexOf(m[3])>=0", + + // Visibility + visible: 'a.type!="hidden"&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"', + hidden: 'a.type=="hidden"||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"', + + // Form attributes + enabled: "!a.disabled", + disabled: "a.disabled", + checked: "a.checked", + selected: "a.selected||jQuery.attr(a,'selected')", + + // Form elements + text: "a.type=='text'", + radio: "a.type=='radio'", + checkbox: "a.type=='checkbox'", + file: "a.type=='file'", + password: "a.type=='password'", + submit: "a.type=='submit'", + image: "a.type=='image'", + reset: "a.type=='reset'", + button: 'a.type=="button"||jQuery.nodeName(a,"button")', + input: "/input|select|textarea|button/i.test(a.nodeName)" + }, + ".": "jQuery.className.has(a,m[2])", + "@": { + "=": "z==m[4]", + "!=": "z!=m[4]", + "^=": "z&&!z.indexOf(m[4])", + "$=": "z&&z.substr(z.length - m[4].length,m[4].length)==m[4]", + "*=": "z&&z.indexOf(m[4])>=0", + "": "z", + _resort: function(m){ + return ["", m[1], m[3], m[2], m[5]]; + }, + _prefix: "z=a[m[3]];if(!z||/href|src/.test(m[3]))z=jQuery.attr(a,m[3]);" + }, + "[": "jQuery.find(m[2],a).length" + }, + + // The regular expressions that power the parsing engine + parse: [ + // Match: [@value='test'], [@foo] + /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*) *('?"?)(.*?)\4 *\]/i, + + // Match: [div], [div p] + /^(\[)\s*(.*?(\[.*?\])?[^[]*?)\s*\]/, + + // Match: :contains('foo') + /^(:)([a-z0-9_-]*)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/i, + + // Match: :even, :last-chlid + /^([:.#]*)([a-z0-9_*-]*)/i + ], + + token: [ + /^(\/?\.\.)/, "a.parentNode", + /^(>|\/)/, "jQuery.sibling(a.firstChild)", + /^(\+)/, "jQuery.nth(a,2,'nextSibling')", + /^(~)/, function(a){ + var s = jQuery.sibling(a.parentNode.firstChild); + return s.slice(jQuery.inArray(a,s) + 1); + } + ], + + multiFilter: function( expr, elems, not ) { + var old, cur = []; + + while ( expr && expr != old ) { + old = expr; + var f = jQuery.filter( expr, elems, not ); + expr = f.t.replace(/^\s*,\s*/, "" ); + cur = not ? elems = f.r : jQuery.merge( cur, f.r ); + } + + return cur; + }, + find: function( t, context ) { + // Quickly handle non-string expressions + if ( typeof t != "string" ) + return [ t ]; + + // Make sure that the context is a DOM Element + if ( context && !context.nodeType ) + context = null; + + // Set the correct context (if none is provided) + context = context || document; + + // Handle the common XPath // expression + if ( !t.indexOf("//") ) { + context = context.documentElement; + t = t.substr(2,t.length); + + // And the / root expression + } else if ( !t.indexOf("/") ) { + context = context.documentElement; + t = t.substr(1,t.length); + if ( t.indexOf("/") >= 1 ) + t = t.substr(t.indexOf("/"),t.length); + } + + // Initialize the search + var ret = [context], done = [], last = null; + + // Continue while a selector expression exists, and while + // we're no longer looping upon ourselves + while ( t && last != t ) { + var r = []; + last = t; + + t = jQuery.trim(t).replace( /^\/\//i, "" ); + + var foundToken = false; + + // An attempt at speeding up child selectors that + // point to a specific element tag + var re = /^[\/>]\s*([a-z0-9*-]+)/i; + var m = re.exec(t); + + if ( m ) { + // Perform our own iteration and filter + jQuery.each( ret, function(){ + for ( var c = this.firstChild; c; c = c.nextSibling ) + if ( c.nodeType == 1 && ( jQuery.nodeName(c, m[1]) || m[1] == "*" ) ) + r.push( c ); + }); + + ret = r; + t = t.replace( re, "" ); + if ( t.indexOf(" ") == 0 ) continue; + foundToken = true; + } else { + // Look for pre-defined expression tokens + for ( var i = 0; i < jQuery.token.length; i += 2 ) { + // Attempt to match each, individual, token in + // the specified order + var re = jQuery.token[i]; + var m = re.exec(t); + + // If the token match was found + if ( m ) { + // Map it against the token's handler + r = ret = jQuery.map( ret, jQuery.isFunction( jQuery.token[i+1] ) ? + jQuery.token[i+1] : + function(a){ return eval(jQuery.token[i+1]); }); + + // And remove the token + t = jQuery.trim( t.replace( re, "" ) ); + foundToken = true; + break; + } + } + } + + // See if there's still an expression, and that we haven't already + // matched a token + if ( t && !foundToken ) { + // Handle multiple expressions + if ( !t.indexOf(",") ) { + // Clean the result set + if ( ret[0] == context ) ret.shift(); + + // Merge the result sets + jQuery.merge( done, ret ); + + // Reset the context + r = ret = [context]; + + // Touch up the selector string + t = " " + t.substr(1,t.length); + + } else { + // Optomize for the case nodeName#idName + var re2 = /^([a-z0-9_-]+)(#)([a-z0-9\\*_-]*)/i; + var m = re2.exec(t); + + // Re-organize the results, so that they're consistent + if ( m ) { + m = [ 0, m[2], m[3], m[1] ]; + + } else { + // Otherwise, do a traditional filter check for + // ID, class, and element selectors + re2 = /^([#.]?)([a-z0-9\\*_-]*)/i; + m = re2.exec(t); + } + + // Try to do a global search by ID, where we can + if ( m[1] == "#" && ret[ret.length-1].getElementById ) { + // Optimization for HTML document case + var oid = ret[ret.length-1].getElementById(m[2]); + + // Do a quick check for the existence of the actual ID attribute + // to avoid selecting by the name attribute in IE + if ( jQuery.browser.msie && oid && oid.id != m[2] ) + oid = jQuery('[@id="'+m[2]+'"]', ret[ret.length-1])[0]; + + // Do a quick check for node name (where applicable) so + // that div#foo searches will be really fast + ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : []; + + } else { + // Pre-compile a regular expression to handle class searches + if ( m[1] == "." ) + var rec = new RegExp("(^|\\s)" + m[2] + "(\\s|$)"); + + // We need to find all descendant elements, it is more + // efficient to use getAll() when we are already further down + // the tree - we try to recognize that here + jQuery.each( ret, function(){ + // Grab the tag name being searched for + var tag = m[1] != "" || m[0] == "" ? "*" : m[2]; + + // Handle IE7 being really dumb about