@ -0,0 +1,16 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<widget xmlns="http://www.w3.org/ns/widgets" |
||||
xmlns:ub="http://uniboard.mnemis.com/widgets" |
||||
id="http://www.example.net/widgets/helloworld" |
||||
version="1.0" |
||||
width="200" |
||||
height="700" |
||||
ub:resizable="true"> |
||||
|
||||
<name>Rich Note</name> |
||||
<description>Allows the teacher to attach a rich note to the page.</description> |
||||
<preference name="skin" |
||||
value="uniboard"/> |
||||
<content src="index.html"/> |
||||
</widget> |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 5.8 KiB |
@ -0,0 +1,31 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
||||
"http://www.w3.org/TR/html4/loose.dtd"> |
||||
|
||||
<html> |
||||
|
||||
<head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||||
<title>Template</title> |
||||
|
||||
<!--Styles--> |
||||
<link rel="stylesheet" type="text/css" href="styles/master.css"> |
||||
<link rel="stylesheet" type="text/css" href="styles/wcontainer.css"> |
||||
<link rel="stylesheet" type="text/css" href="styles/app.css"> |
||||
<!--Scripts--> |
||||
<script type="text/javascript" src="scripts/jquery144.js"></script> |
||||
<script type="text/javascript" src="scripts/ext.js"></script> |
||||
<script type="text/javascript" src="scripts/wcontainer.js"></script> |
||||
<!-- <script type="text/javascript" src="scripts/tpl.js"></script> --> |
||||
<script type="text/javascript" src="scripts/app.js"></script> |
||||
|
||||
<!-- Load TinyMCE --> |
||||
<script type="text/javascript" src="tinymcejq/jquery.tinymce.js"></script> |
||||
<!-- /TinyMCE --> |
||||
|
||||
|
||||
</head> |
||||
|
||||
<body> |
||||
<div id="ub-widget"></div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,147 @@ |
||||
// uniboard = {
|
||||
// preference : function(){},
|
||||
// setPreference : function(){}
|
||||
// }
|
||||
|
||||
$(document).ready(function() |
||||
{ |
||||
var tinyContainer; |
||||
var w = new wcontainer( "#ub-widget" ); |
||||
var _super_modeView = w.modeView; |
||||
var _super_modeEdit = w.modeEdit; |
||||
var _super_modeSplash = w.modeSplash; |
||||
|
||||
function _init() |
||||
{ |
||||
w.setSplashContent( '<img src="custom_icon.png" alt="Click">' ); |
||||
w.setEditContent('<textarea style="width: 100%; height: 100%;">'+(window.uniboard.preference("text") || 'Type a note here')+'</textarea>'); |
||||
w.elements.containerEdit.find( "textarea" ).tinymce( |
||||
{ |
||||
script_url : 'tinymcejq/tiny_mce.js', |
||||
width: w.getWidth(),
|
||||
height: w.getHeight(), |
||||
plugins : "table,advhr,advimage,inlinepopups,media,searchreplace,paste,advlist", |
||||
|
||||
theme : "advanced", |
||||
theme_advanced_buttons1 : "formatselect,fontselect,fontsizeselect,|,forecolor,backcolor", |
||||
theme_advanced_buttons2 : "bold,italic,underline,|,bullist,numlist,|,outdent,indent,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink", |
||||
theme_advanced_buttons3 : "", |
||||
theme_advanced_toolbar_location : "top", |
||||
theme_advanced_toolbar_align : "left", |
||||
theme_advanced_statusbar_location : "bottom", |
||||
theme_advanced_resizing : false, |
||||
|
||||
// Drop lists for link/image/media/template dialogs
|
||||
template_external_list_url : "lists/template_list.js", |
||||
external_link_list_url : "lists/link_list.js", |
||||
external_image_list_url : "lists/image_list.js", |
||||
media_external_list_url : "lists/media_list.js", |
||||
|
||||
setup : function(ed)
|
||||
{ |
||||
ed.onKeyUp.add(function(ed, e)
|
||||
{ |
||||
if (window.uniboard) |
||||
{ |
||||
window.uniboard.setPreference("text", ed.getContent()); |
||||
} |
||||
}); |
||||
}, |
||||
|
||||
// Replace values for the template plugin
|
||||
template_replace_values : { |
||||
username : "Some User", |
||||
staffid : "991234" |
||||
} |
||||
}); |
||||
w.modeView(); // init view mode
|
||||
w.modeEdit(); // init edit mode
|
||||
if (window.uniboard.preference("state") == 'view') // back to view mode if last state was it
|
||||
w.modeView(); |
||||
if (window.uniboard.preference("is_splash") == '1') |
||||
w.modeSplash(true); |
||||
w.allowResize = true; |
||||
}; |
||||
|
||||
w.onViewMode = function() |
||||
{ |
||||
var html = this.elements.containerEdit.find( "textarea" ).val(); |
||||
this.setViewContent( html ); |
||||
}; |
||||
|
||||
w.getSize = function () |
||||
{ |
||||
return {w: this.getWidth(), h:this.getHeight()}; |
||||
}; |
||||
|
||||
w.getWidth = function() |
||||
{ |
||||
var res = 360; |
||||
if (window.uniboard && window.uniboard.preference("width")) |
||||
res = parseInt(window.uniboard.preference("width")); |
||||
return res; |
||||
}; |
||||
w.getHeight = function() |
||||
{ |
||||
var res = 230; |
||||
if (window.uniboard && window.uniboard.preference("height")) |
||||
res = parseInt(window.uniboard.preference("height")); |
||||
return res; |
||||
}; |
||||
|
||||
w.viewSize = function() |
||||
{ |
||||
return this.getSize(); |
||||
}; |
||||
w.editSize = function() |
||||
{ |
||||
return this.getSize(); |
||||
}; |
||||
|
||||
window.onresize = function(){ |
||||
if (!w.allowResize) |
||||
return; |
||||
winwidth = window.innerWidth - 46; |
||||
winheight = window.innerHeight - 45; |
||||
if(winwidth <= w.minWidth) |
||||
window.resizeTo(w.minWidth,winheight); |
||||
if(winwidth > w.maxWidth) |
||||
window.resizeTo(w.maxWidth,winheight); |
||||
if(winheight <= w.minHeight) |
||||
window.resizeTo(winwidth,w.minHeight); |
||||
if(winheight > w.maxHeight) |
||||
window.resizeTo(winwidth,w.maxHeight); |
||||
w.elements.container.width(winwidth); |
||||
w.elements.container.height(winheight); |
||||
tinyMCE.activeEditor.theme.resizeTo(winwidth, winheight-98); |
||||
if(window.uniboard) |
||||
{ |
||||
window.uniboard.setPreference("width", winwidth); |
||||
window.uniboard.setPreference("height", winheight-33); |
||||
} |
||||
}; |
||||
|
||||
w.modeView = function() |
||||
{ |
||||
if (w.allowResize) |
||||
window.uniboard.setPreference("state", "view"); |
||||
return _super_modeView.call(this); |
||||
} |
||||
|
||||
w.modeEdit = function() |
||||
{ |
||||
if (w.allowResize) |
||||
window.uniboard.setPreference("state", "edit"); |
||||
return _super_modeEdit.call(this); |
||||
} |
||||
|
||||
w.modeSplash = function (enable) |
||||
{ |
||||
if (enable == undefined) |
||||
enable = true; |
||||
window.uniboard.setPreference("is_splash", (w.allowResize && enable)?1:0); |
||||
return _super_modeSplash.call(this, enable); |
||||
} |
||||
|
||||
_init(); |
||||
}); |
@ -0,0 +1,59 @@ |
||||
Array.prototype.shuffle = function( b ) |
||||
{ |
||||
var i = this.length, j, t; |
||||
while( i ) |
||||
{ |
||||
j = Math.floor( ( i-- ) * Math.random() ); |
||||
t = b && typeof this[i].shuffle!=='undefined' ? this[i].shuffle() : this[i]; |
||||
this[i] = this[j]; |
||||
this[j] = t; |
||||
} |
||||
return this; |
||||
}; |
||||
|
||||
Array.prototype.copy = function() |
||||
{ |
||||
var copy = new Array(); |
||||
for( var i = 0; i < this.length; i++ ){ |
||||
copy[i] = this[i]; |
||||
} |
||||
return copy; |
||||
} |
||||
|
||||
|
||||
String.prototype.copy = function() |
||||
{ |
||||
return this.substring( 0, this.length ); |
||||
}; |
||||
|
||||
String.prototype.trim = function( ext ) |
||||
{ |
||||
var chars = [ |
||||
" ", "\t", "\n", "\r" |
||||
]; |
||||
|
||||
var s = this.copy(); |
||||
|
||||
if( arguments.length > 0 ){ |
||||
for( var i in ext ){ |
||||
chars.push( ext[i] ); |
||||
} |
||||
} |
||||
|
||||
while( chars.indexOf( s.charAt( 0 ) ) != -1 ){ |
||||
s = s.substring( 1, s.length ); |
||||
} |
||||
while( chars.indexOf( s.charAt( s.length-1 ) ) != -1 ){ |
||||
s = s.substring( 0, s.length-1 ); |
||||
} |
||||
return s; |
||||
}; |
||||
|
||||
String.prototype.replaceAll = function( search, replace ) |
||||
{ |
||||
var s = this.copy(); |
||||
while( s.indexOf( search ) != -1 ){ |
||||
s = s.replace( search, replace ); |
||||
} |
||||
return s; |
||||
}; |
@ -0,0 +1,167 @@ |
||||
/*! |
||||
* jQuery JavaScript Library v1.4.4 |
||||
* http://jquery.com/
|
||||
* |
||||
* Copyright 2010, John Resig |
||||
* Dual licensed under the MIT or GPL Version 2 licenses. |
||||
* http://jquery.org/license
|
||||
* |
||||
* Includes Sizzle.js |
||||
* http://sizzlejs.com/
|
||||
* Copyright 2010, The Dojo Foundation |
||||
* Released under the MIT, BSD, and GPL Licenses. |
||||
* |
||||
* Date: Thu Nov 11 19:04:53 2010 -0500 |
||||
*/ |
||||
(function(E,B){function ka(a,b,d){if(d===B&&a.nodeType===1){d=a.getAttribute("data-"+b);if(typeof d==="string"){try{d=d==="true"?true:d==="false"?false:d==="null"?null:!c.isNaN(d)?parseFloat(d):Ja.test(d)?c.parseJSON(d):d}catch(e){}c.data(a,b,d)}else d=B}return d}function U(){return false}function ca(){return true}function la(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ka(a){var b,d,e,f,h,l,k,o,x,r,A,C=[];f=[];h=c.data(this,this.nodeType?"events":"__events__");if(typeof h==="function")h= |
||||
h.events;if(!(a.liveFired===this||!h||!h.live||a.button&&a.type==="click")){if(a.namespace)A=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var J=h.live.slice(0);for(k=0;k<J.length;k++){h=J[k];h.origType.replace(X,"")===a.type?f.push(h.selector):J.splice(k--,1)}f=c(a.target).closest(f,a.currentTarget);o=0;for(x=f.length;o<x;o++){r=f[o];for(k=0;k<J.length;k++){h=J[k];if(r.selector===h.selector&&(!A||A.test(h.namespace))){l=r.elem;e=null;if(h.preType==="mouseenter"|| |
||||
h.preType==="mouseleave"){a.type=h.preType;e=c(a.relatedTarget).closest(h.selector)[0]}if(!e||e!==l)C.push({elem:l,handleObj:h,level:r.level})}}}o=0;for(x=C.length;o<x;o++){f=C[o];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;a.handleObj=f.handleObj;A=f.handleObj.origHandler.apply(f.elem,arguments);if(A===false||a.isPropagationStopped()){d=f.level;if(A===false)b=false;if(a.isImmediatePropagationStopped())break}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(La, |
||||
"`").replace(Ma,"&")}function ma(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Na.test(b))return c.filter(b,e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function na(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this, |
||||
e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var l in e[h])c.event.add(this,h,e[h][l],e[h][l].data)}}})}function Oa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function oa(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?Pa:Qa,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a, |
||||
"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function da(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Ra.test(a)?e(a,h):da(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?e(a,""):c.each(b,function(f,h){da(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(pa.concat.apply([],pa.slice(0,b)),function(){d[this]=a});return d}function qa(a){if(!ea[a]){var b=c("<"+ |
||||
a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";ea[a]=d}return ea[a]}function fa(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var t=E.document,c=function(){function a(){if(!b.isReady){try{t.documentElement.doScroll("left")}catch(j){setTimeout(a,1);return}b.ready()}}var b=function(j,s){return new b.fn.init(j,s)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,l=/\S/,k=/^\s+/,o=/\s+$/,x=/\W/,r=/\d/,A=/^<(\w+)\s*\/?>(?:<\/\1>)?$/, |
||||
C=/^[\],:{}\s]*$/,J=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,I=/(?:^|:|,)(?:\s*\[)+/g,L=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,i=/(msie) ([\w.]+)/,n=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,q=[],u,y=Object.prototype.toString,F=Object.prototype.hasOwnProperty,M=Array.prototype.push,N=Array.prototype.slice,O=String.prototype.trim,D=Array.prototype.indexOf,R={};b.fn=b.prototype={init:function(j, |
||||
s){var v,z,H;if(!j)return this;if(j.nodeType){this.context=this[0]=j;this.length=1;return this}if(j==="body"&&!s&&t.body){this.context=t;this[0]=t.body;this.selector="body";this.length=1;return this}if(typeof j==="string")if((v=h.exec(j))&&(v[1]||!s))if(v[1]){H=s?s.ownerDocument||s:t;if(z=A.exec(j))if(b.isPlainObject(s)){j=[t.createElement(z[1])];b.fn.attr.call(j,s,true)}else j=[H.createElement(z[1])];else{z=b.buildFragment([v[1]],[H]);j=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this, |
||||
j)}else{if((z=t.getElementById(v[2]))&&z.parentNode){if(z.id!==v[2])return f.find(j);this.length=1;this[0]=z}this.context=t;this.selector=j;return this}else if(!s&&!x.test(j)){this.selector=j;this.context=t;j=t.getElementsByTagName(j);return b.merge(this,j)}else return!s||s.jquery?(s||f).find(j):b(s).find(j);else if(b.isFunction(j))return f.ready(j);if(j.selector!==B){this.selector=j.selector;this.context=j.context}return b.makeArray(j,this)},selector:"",jquery:"1.4.4",length:0,size:function(){return this.length}, |
||||
toArray:function(){return N.call(this,0)},get:function(j){return j==null?this.toArray():j<0?this.slice(j)[0]:this[j]},pushStack:function(j,s,v){var z=b();b.isArray(j)?M.apply(z,j):b.merge(z,j);z.prevObject=this;z.context=this.context;if(s==="find")z.selector=this.selector+(this.selector?" ":"")+v;else if(s)z.selector=this.selector+"."+s+"("+v+")";return z},each:function(j,s){return b.each(this,j,s)},ready:function(j){b.bindReady();if(b.isReady)j.call(t,b);else q&&q.push(j);return this},eq:function(j){return j=== |
||||
-1?this.slice(j):this.slice(j,+j+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(j){return this.pushStack(b.map(this,function(s,v){return j.call(s,v,s)}))},end:function(){return this.prevObject||b(null)},push:M,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var j,s,v,z,H,G=arguments[0]||{},K=1,Q=arguments.length,ga=false; |
||||
if(typeof G==="boolean"){ga=G;G=arguments[1]||{};K=2}if(typeof G!=="object"&&!b.isFunction(G))G={};if(Q===K){G=this;--K}for(;K<Q;K++)if((j=arguments[K])!=null)for(s in j){v=G[s];z=j[s];if(G!==z)if(ga&&z&&(b.isPlainObject(z)||(H=b.isArray(z)))){if(H){H=false;v=v&&b.isArray(v)?v:[]}else v=v&&b.isPlainObject(v)?v:{};G[s]=b.extend(ga,v,z)}else if(z!==B)G[s]=z}return G};b.extend({noConflict:function(j){E.$=e;if(j)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(j){j===true&&b.readyWait--; |
||||
if(!b.readyWait||j!==true&&!b.isReady){if(!t.body)return setTimeout(b.ready,1);b.isReady=true;if(!(j!==true&&--b.readyWait>0))if(q){var s=0,v=q;for(q=null;j=v[s++];)j.call(t,b);b.fn.trigger&&b(t).trigger("ready").unbind("ready")}}},bindReady:function(){if(!p){p=true;if(t.readyState==="complete")return setTimeout(b.ready,1);if(t.addEventListener){t.addEventListener("DOMContentLoaded",u,false);E.addEventListener("load",b.ready,false)}else if(t.attachEvent){t.attachEvent("onreadystatechange",u);E.attachEvent("onload", |
||||
b.ready);var j=false;try{j=E.frameElement==null}catch(s){}t.documentElement.doScroll&&j&&a()}}},isFunction:function(j){return b.type(j)==="function"},isArray:Array.isArray||function(j){return b.type(j)==="array"},isWindow:function(j){return j&&typeof j==="object"&&"setInterval"in j},isNaN:function(j){return j==null||!r.test(j)||isNaN(j)},type:function(j){return j==null?String(j):R[y.call(j)]||"object"},isPlainObject:function(j){if(!j||b.type(j)!=="object"||j.nodeType||b.isWindow(j))return false;if(j.constructor&& |
||||
!F.call(j,"constructor")&&!F.call(j.constructor.prototype,"isPrototypeOf"))return false;for(var s in j);return s===B||F.call(j,s)},isEmptyObject:function(j){for(var s in j)return false;return true},error:function(j){throw j;},parseJSON:function(j){if(typeof j!=="string"||!j)return null;j=b.trim(j);if(C.test(j.replace(J,"@").replace(w,"]").replace(I,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(j):(new Function("return "+j))();else b.error("Invalid JSON: "+j)},noop:function(){},globalEval:function(j){if(j&& |
||||
l.test(j)){var s=t.getElementsByTagName("head")[0]||t.documentElement,v=t.createElement("script");v.type="text/javascript";if(b.support.scriptEval)v.appendChild(t.createTextNode(j));else v.text=j;s.insertBefore(v,s.firstChild);s.removeChild(v)}},nodeName:function(j,s){return j.nodeName&&j.nodeName.toUpperCase()===s.toUpperCase()},each:function(j,s,v){var z,H=0,G=j.length,K=G===B||b.isFunction(j);if(v)if(K)for(z in j){if(s.apply(j[z],v)===false)break}else for(;H<G;){if(s.apply(j[H++],v)===false)break}else if(K)for(z in j){if(s.call(j[z], |
||||
z,j[z])===false)break}else for(v=j[0];H<G&&s.call(v,H,v)!==false;v=j[++H]);return j},trim:O?function(j){return j==null?"":O.call(j)}:function(j){return j==null?"":j.toString().replace(k,"").replace(o,"")},makeArray:function(j,s){var v=s||[];if(j!=null){var z=b.type(j);j.length==null||z==="string"||z==="function"||z==="regexp"||b.isWindow(j)?M.call(v,j):b.merge(v,j)}return v},inArray:function(j,s){if(s.indexOf)return s.indexOf(j);for(var v=0,z=s.length;v<z;v++)if(s[v]===j)return v;return-1},merge:function(j, |
||||
s){var v=j.length,z=0;if(typeof s.length==="number")for(var H=s.length;z<H;z++)j[v++]=s[z];else for(;s[z]!==B;)j[v++]=s[z++];j.length=v;return j},grep:function(j,s,v){var z=[],H;v=!!v;for(var G=0,K=j.length;G<K;G++){H=!!s(j[G],G);v!==H&&z.push(j[G])}return z},map:function(j,s,v){for(var z=[],H,G=0,K=j.length;G<K;G++){H=s(j[G],G,v);if(H!=null)z[z.length]=H}return z.concat.apply([],z)},guid:1,proxy:function(j,s,v){if(arguments.length===2)if(typeof s==="string"){v=j;j=v[s];s=B}else if(s&&!b.isFunction(s)){v= |
||||
s;s=B}if(!s&&j)s=function(){return j.apply(v||this,arguments)};if(j)s.guid=j.guid=j.guid||s.guid||b.guid++;return s},access:function(j,s,v,z,H,G){var K=j.length;if(typeof s==="object"){for(var Q in s)b.access(j,Q,s[Q],z,H,v);return j}if(v!==B){z=!G&&z&&b.isFunction(v);for(Q=0;Q<K;Q++)H(j[Q],s,z?v.call(j[Q],Q,H(j[Q],s)):v,G);return j}return K?H(j[0],s):B},now:function(){return(new Date).getTime()},uaMatch:function(j){j=j.toLowerCase();j=L.exec(j)||g.exec(j)||i.exec(j)||j.indexOf("compatible")<0&&n.exec(j)|| |
||||
[];return{browser:j[1]||"",version:j[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(j,s){R["[object "+s+"]"]=s.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=m.version}if(b.browser.webkit)b.browser.safari=true;if(D)b.inArray=function(j,s){return D.call(s,j)};if(!/\s/.test("\u00a0")){k=/^[\s\xA0]+/;o=/[\s\xA0]+$/}f=b(t);if(t.addEventListener)u=function(){t.removeEventListener("DOMContentLoaded",u, |
||||
false);b.ready()};else if(t.attachEvent)u=function(){if(t.readyState==="complete"){t.detachEvent("onreadystatechange",u);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=t.documentElement,b=t.createElement("script"),d=t.createElement("div"),e="script"+c.now();d.style.display="none";d.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],l=t.createElement("select"), |
||||
k=l.appendChild(t.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:k.selected,deleteExpando:true,optDisabled:false,checkClone:false, |
||||
scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};l.disabled=true;c.support.optDisabled=!k.disabled;b.type="text/javascript";try{b.appendChild(t.createTextNode("window."+e+"=1;"))}catch(o){}a.insertBefore(b,a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}try{delete b.test}catch(x){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function r(){c.support.noCloneEvent= |
||||
false;d.detachEvent("onclick",r)});d.cloneNode(true).fireEvent("onclick")}d=t.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=t.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var r=t.createElement("div");r.style.width=r.style.paddingLeft="1px";t.body.appendChild(r);c.boxModel=c.support.boxModel=r.offsetWidth===2;if("zoom"in r.style){r.style.display="inline";r.style.zoom= |
||||
1;c.support.inlineBlockNeedsLayout=r.offsetWidth===2;r.style.display="";r.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=r.offsetWidth!==2}r.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var A=r.getElementsByTagName("td");c.support.reliableHiddenOffsets=A[0].offsetHeight===0;A[0].style.display="";A[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&A[0].offsetHeight===0;r.innerHTML="";t.body.removeChild(r).style.display= |
||||
"none"});a=function(r){var A=t.createElement("div");r="on"+r;var C=r in A;if(!C){A.setAttribute(r,"return;");C=typeof A[r]==="function"}return C};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();var ra={},Ja=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?ra:a;var e=a.nodeType,f=e?a[c.expando]:null,h= |
||||
c.cache;if(!(e&&!f&&typeof b==="string"&&d===B)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==B)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?ra:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando); |
||||
else if(d)delete f[e];else for(var l in a)delete a[l]}},acceptData:function(a){if(a.nodeName){var b=c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){var d=null;if(typeof a==="undefined"){if(this.length){var e=this[0].attributes,f;d=c.data(this[0]);for(var h=0,l=e.length;h<l;h++){f=e[h].name;if(f.indexOf("data-")===0){f=f.substr(5);ka(this[0],f,d[f])}}}return d}else if(typeof a==="object")return this.each(function(){c.data(this, |
||||
a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(b===B){d=this.triggerHandler("getData"+k[1]+"!",[k[0]]);if(d===B&&this.length){d=c.data(this[0],a);d=ka(this[0],a,d)}return d===B&&k[1]?this.data(k[0]):d}else return this.each(function(){var o=c(this),x=[k[0],b];o.triggerHandler("setData"+k[1]+"!",x);c.data(this,a,b);o.triggerHandler("changeData"+k[1]+"!",x)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e= |
||||
c.data(a,b);if(!d)return e||[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===B)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this, |
||||
a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var sa=/[\n\t]/g,ha=/\s+/,Sa=/\r/g,Ta=/^(?:href|src|style)$/,Ua=/^(?:button|input)$/i,Va=/^(?:button|input|object|select|textarea)$/i,Wa=/^a(?:rea)?$/i,ta=/^(?:radio|checkbox)$/i;c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan", |
||||
colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(x){var r=c(this);r.addClass(a.call(this,x,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType=== |
||||
1)if(f.className){for(var h=" "+f.className+" ",l=f.className,k=0,o=b.length;k<o;k++)if(h.indexOf(" "+b[k]+" ")<0)l+=" "+b[k];f.className=c.trim(l)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(o){var x=c(this);x.removeClass(a.call(this,o,x.attr("class")))});if(a&&typeof a==="string"||a===B)for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(sa," "), |
||||
l=0,k=b.length;l<k;l++)h=h.replace(" "+b[l]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,l=c(this),k=b,o=a.split(ha);f=o[h++];){k=e?k:!l.hasClass(f);l[k?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this, |
||||
"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(sa," ").indexOf(a)>-1)return true;return false},val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one"; |
||||
if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var l=f[h];if(l.selected&&(c.support.optDisabled?!l.disabled:l.getAttribute("disabled")===null)&&(!l.parentNode.disabled||!c.nodeName(l.parentNode,"optgroup"))){a=c(l).val();if(b)return a;d.push(a)}}return d}if(ta.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Sa,"")}return B}var k=c.isFunction(a);return this.each(function(o){var x=c(this),r=a;if(this.nodeType===1){if(k)r= |
||||
a.call(this,o,x.val());if(r==null)r="";else if(typeof r==="number")r+="";else if(c.isArray(r))r=c.map(r,function(C){return C==null?"":C+""});if(c.isArray(r)&&ta.test(this.type))this.checked=c.inArray(x.val(),r)>=0;else if(c.nodeName(this,"select")){var A=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),A)>=0});if(!A.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true}, |
||||
attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return B;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==B;b=e&&c.props[b]||b;var h=Ta.test(b);if((b in a||a[b]!==B)&&e&&!h){if(f){b==="type"&&Ua.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&& |
||||
b.specified?b.value:Va.test(a.nodeName)||Wa.test(a.nodeName)&&a.href?0:B;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return B;a=!c.support.hrefNormalized&&e&&h?a.getAttribute(b,2):a.getAttribute(b);return a===null?B:a}});var X=/\.(.*)$/,ia=/^(?:textarea|input|select)$/i,La=/\./g,Ma=/ /g,Xa=/[^\w\s.|`]/g,Ya=function(a){return a.replace(Xa,"\\$&")},ua={focusin:0,focusout:0}; |
||||
c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;else if(!d)return;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var l=a.nodeType?"events":"__events__",k=h[l],o=h.handle;if(typeof k==="function"){o=k.handle;k=k.events}else if(!k){a.nodeType||(h[l]=h=function(){});h.events=k={}}if(!o)h.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem, |
||||
arguments):B};o.elem=a;b=b.split(" ");for(var x=0,r;l=b[x++];){h=f?c.extend({},f):{handler:d,data:e};if(l.indexOf(".")>-1){r=l.split(".");l=r.shift();h.namespace=r.slice(0).sort().join(".")}else{r=[];h.namespace=""}h.type=l;if(!h.guid)h.guid=d.guid;var A=k[l],C=c.event.special[l]||{};if(!A){A=k[l]=[];if(!C.setup||C.setup.call(a,e,r,o)===false)if(a.addEventListener)a.addEventListener(l,o,false);else a.attachEvent&&a.attachEvent("on"+l,o)}if(C.add){C.add.call(a,h);if(!h.handler.guid)h.handler.guid= |
||||
d.guid}A.push(h);c.event.global[l]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,l=0,k,o,x,r,A,C,J=a.nodeType?"events":"__events__",w=c.data(a),I=w&&w[J];if(w&&I){if(typeof I==="function"){w=I;I=I.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in I)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[l++];){r=f;k=f.indexOf(".")<0;o=[];if(!k){o=f.split(".");f=o.shift();x=RegExp("(^|\\.)"+ |
||||
c.map(o.slice(0).sort(),Ya).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(A=I[f])if(d){r=c.event.special[f]||{};for(h=e||0;h<A.length;h++){C=A[h];if(d.guid===C.guid){if(k||x.test(C.namespace)){e==null&&A.splice(h--,1);r.remove&&r.remove.call(a,C)}if(e!=null)break}}if(A.length===0||e!=null&&A.length===1){if(!r.teardown||r.teardown.call(a,o)===false)c.removeEvent(a,f,w.handle);delete I[f]}}else for(h=0;h<A.length;h++){C=A[h];if(k||x.test(C.namespace)){c.event.remove(a,r,C.handler,h);A.splice(h--,1)}}}if(c.isEmptyObject(I)){if(b= |
||||
w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,J);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType=== |
||||
8)return B;a.result=B;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){var l;e=a.target;var k=f.replace(X,""),o=c.nodeName(e,"a")&&k=== |
||||
"click",x=c.event.special[k]||{};if((!x._default||x._default.call(d,a)===false)&&!o&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[k]){if(l=e["on"+k])e["on"+k]=null;c.event.triggered=true;e[k]()}}catch(r){}if(l)e["on"+k]=l;c.event.triggered=false}}},handle:function(a){var b,d,e,f;d=[];var h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+ |
||||
d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var l=d.length;f<l;f++){var k=d[f];if(b||e.test(k.namespace)){a.handler=k.handler;a.data=k.data;a.handleObj=k;k=k.handler.apply(this,h);if(k!==B){a.result=k;if(k===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), |
||||
fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||t;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=t.documentElement;d=t.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop|| |
||||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==B)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ka,guid:a.handler.guid}))},remove:function(a){c.event.remove(this, |
||||
Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=t.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp= |
||||
c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ca;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ca;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ca;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U}; |
||||
var va=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},wa=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?wa:va,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?wa:va)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!== |
||||
"form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=B;return la("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=B;return la("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V, |
||||
xa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ia.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=xa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===B||f===e))if(e!=null||f){a.type="change";a.liveFired= |
||||
B;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",xa(a))}},setup:function(){if(this.type=== |
||||
"file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ia.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ia.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}t.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){ua[b]++===0&&t.addEventListener(a,d,true)},teardown:function(){--ua[b]=== |
||||
0&&t.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=B}var l=b==="one"?c.proxy(f,function(o){c(this).unbind(o,l);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var k=this.length;h<k;h++)c.event.add(this[h],d,l,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d, |
||||
a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d= |
||||
1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var ya={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var l,k=0,o,x,r=h||this.selector;h=h?this:c(this.context);if(typeof d=== |
||||
"object"&&!d.preventDefault){for(l in d)h[b](l,e,d[l],r);return this}if(c.isFunction(e)){f=e;e=B}for(d=(d||"").split(" ");(l=d[k++])!=null;){o=X.exec(l);x="";if(o){x=o[0];l=l.replace(X,"")}if(l==="hover")d.push("mouseenter"+x,"mouseleave"+x);else{o=l;if(l==="focus"||l==="blur"){d.push(ya[l]+x);l+=x}else l=(ya[l]||l)+x;if(b==="live"){x=0;for(var A=h.length;x<A;x++)c.event.add(h[x],"live."+Y(l,r),{data:e,selector:r,handler:f,origType:l,origHandler:f,preType:o})}else h.unbind("live."+Y(l,r),f)}}return this}}); |
||||
c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}}); |
||||
(function(){function a(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1&&!q){y.sizcache=n;y.sizset=p}if(y.nodeName.toLowerCase()===i){F=y;break}y=y[g]}m[p]=F}}}function b(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1){if(!q){y.sizcache=n;y.sizset=p}if(typeof i!=="string"){if(y===i){F=true;break}}else if(k.filter(i, |
||||
[y]).length>0){F=y;break}}y=y[g]}m[p]=F}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,l=true;[0,0].sort(function(){l=false;return 0});var k=function(g,i,n,m){n=n||[];var p=i=i||t;if(i.nodeType!==1&&i.nodeType!==9)return[];if(!g||typeof g!=="string")return n;var q,u,y,F,M,N=true,O=k.isXML(i),D=[],R=g;do{d.exec("");if(q=d.exec(R)){R=q[3];D.push(q[1]);if(q[2]){F=q[3]; |
||||
break}}}while(q);if(D.length>1&&x.exec(g))if(D.length===2&&o.relative[D[0]])u=L(D[0]+D[1],i);else for(u=o.relative[D[0]]?[i]:k(D.shift(),i);D.length;){g=D.shift();if(o.relative[g])g+=D.shift();u=L(g,u)}else{if(!m&&D.length>1&&i.nodeType===9&&!O&&o.match.ID.test(D[0])&&!o.match.ID.test(D[D.length-1])){q=k.find(D.shift(),i,O);i=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]}if(i){q=m?{expr:D.pop(),set:C(m)}:k.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&i.parentNode?i.parentNode:i,O);u=q.expr?k.filter(q.expr, |
||||
q.set):q.set;if(D.length>0)y=C(u);else N=false;for(;D.length;){q=M=D.pop();if(o.relative[M])q=D.pop();else M="";if(q==null)q=i;o.relative[M](y,q,O)}}else y=[]}y||(y=u);y||k.error(M||g);if(f.call(y)==="[object Array]")if(N)if(i&&i.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&k.contains(i,y[g])))n.push(u[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&n.push(u[g]);else n.push.apply(n,y);else C(y,n);if(F){k(F,p,n,m);k.uniqueSort(n)}return n};k.uniqueSort=function(g){if(w){h= |
||||
l;g.sort(w);if(h)for(var i=1;i<g.length;i++)g[i]===g[i-1]&&g.splice(i--,1)}return g};k.matches=function(g,i){return k(g,null,null,i)};k.matchesSelector=function(g,i){return k(i,null,null,[g]).length>0};k.find=function(g,i,n){var m;if(!g)return[];for(var p=0,q=o.order.length;p<q;p++){var u,y=o.order[p];if(u=o.leftMatch[y].exec(g)){var F=u[1];u.splice(1,1);if(F.substr(F.length-1)!=="\\"){u[1]=(u[1]||"").replace(/\\/g,"");m=o.find[y](u,i,n);if(m!=null){g=g.replace(o.match[y],"");break}}}}m||(m=i.getElementsByTagName("*")); |
||||
return{set:m,expr:g}};k.filter=function(g,i,n,m){for(var p,q,u=g,y=[],F=i,M=i&&i[0]&&k.isXML(i[0]);g&&i.length;){for(var N in o.filter)if((p=o.leftMatch[N].exec(g))!=null&&p[2]){var O,D,R=o.filter[N];D=p[1];q=false;p.splice(1,1);if(D.substr(D.length-1)!=="\\"){if(F===y)y=[];if(o.preFilter[N])if(p=o.preFilter[N](p,F,n,y,m,M)){if(p===true)continue}else q=O=true;if(p)for(var j=0;(D=F[j])!=null;j++)if(D){O=R(D,p,j,F);var s=m^!!O;if(n&&O!=null)if(s)q=true;else F[j]=false;else if(s){y.push(D);q=true}}if(O!== |
||||
B){n||(F=y);g=g.replace(o.match[N],"");if(!q)return[];break}}}if(g===u)if(q==null)k.error(g);else break;u=g}return F};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var o=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+\-]*)\))?/, |
||||
POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,i){var n=typeof i==="string",m=n&&!/\W/.test(i);n=n&&!m;if(m)i=i.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=n||q&&q.nodeName.toLowerCase()=== |
||||
i?q||false:q===i}n&&k.filter(i,g,true)},">":function(g,i){var n,m=typeof i==="string",p=0,q=g.length;if(m&&!/\W/.test(i))for(i=i.toLowerCase();p<q;p++){if(n=g[p]){n=n.parentNode;g[p]=n.nodeName.toLowerCase()===i?n:false}}else{for(;p<q;p++)if(n=g[p])g[p]=m?n.parentNode:n.parentNode===i;m&&k.filter(i,g,true)}},"":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=i=i.toLowerCase();q=a}q("parentNode",i,p,g,m,n)},"~":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m= |
||||
i=i.toLowerCase();q=a}q("previousSibling",i,p,g,m,n)}},find:{ID:function(g,i,n){if(typeof i.getElementById!=="undefined"&&!n)return(g=i.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,i){if(typeof i.getElementsByName!=="undefined"){for(var n=[],m=i.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&n.push(m[p]);return n.length===0?null:n}},TAG:function(g,i){return i.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,i,n,m,p,q){g=" "+g[1].replace(/\\/g, |
||||
"")+" ";if(q)return g;q=0;for(var u;(u=i[q])!=null;q++)if(u)if(p^(u.className&&(" "+u.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))n||m.push(u);else if(n)i[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var i=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=i[1]+(i[2]||1)-0;g[3]=i[3]-0}g[0]=e++;return g},ATTR:function(g,i,n, |
||||
m,p,q){i=g[1].replace(/\\/g,"");if(!q&&o.attrMap[i])g[1]=o.attrMap[i];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,i,n,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,i);else{g=k.filter(g[3],i,n,true^p);n||m.push.apply(m,g);return false}else if(o.match.POS.test(g[0])||o.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled=== |
||||
true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,i,n){return!!k(n[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"=== |
||||
g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,i){return i===0},last:function(g,i,n,m){return i===m.length-1},even:function(g,i){return i%2===0},odd:function(g,i){return i%2===1},lt:function(g,i,n){return i<n[3]-0},gt:function(g,i,n){return i>n[3]-0},nth:function(g,i,n){return n[3]- |
||||
0===i},eq:function(g,i,n){return n[3]-0===i}},filter:{PSEUDO:function(g,i,n,m){var p=i[1],q=o.filters[p];if(q)return q(g,n,i,m);else if(p==="contains")return(g.textContent||g.innerText||k.getText([g])||"").indexOf(i[3])>=0;else if(p==="not"){i=i[3];n=0;for(m=i.length;n<m;n++)if(i[n]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,i){var n=i[1],m=g;switch(n){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(n=== |
||||
"first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":n=i[2];var p=i[3];if(n===1&&p===0)return true;var q=i[0],u=g.parentNode;if(u&&(u.sizcache!==q||!g.nodeIndex)){var y=0;for(m=u.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++y;u.sizcache=q}m=g.nodeIndex-p;return n===0?m===0:m%n===0&&m/n>=0}},ID:function(g,i){return g.nodeType===1&&g.getAttribute("id")===i},TAG:function(g,i){return i==="*"&&g.nodeType===1||g.nodeName.toLowerCase()=== |
||||
i},CLASS:function(g,i){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(i)>-1},ATTR:function(g,i){var n=i[1];n=o.attrHandle[n]?o.attrHandle[n](g):g[n]!=null?g[n]:g.getAttribute(n);var m=n+"",p=i[2],q=i[4];return n==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&n!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,i,n,m){var p=o.setFilters[i[2]]; |
||||
if(p)return p(g,n,i,m)}}},x=o.match.POS,r=function(g,i){return"\\"+(i-0+1)},A;for(A in o.match){o.match[A]=RegExp(o.match[A].source+/(?![^\[]*\])(?![^\(]*\))/.source);o.leftMatch[A]=RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[A].source.replace(/\\(\d+)/g,r))}var C=function(g,i){g=Array.prototype.slice.call(g,0);if(i){i.push.apply(i,g);return i}return g};try{Array.prototype.slice.call(t.documentElement.childNodes,0)}catch(J){C=function(g,i){var n=0,m=i||[];if(f.call(g)==="[object Array]")Array.prototype.push.apply(m, |
||||
g);else if(typeof g.length==="number")for(var p=g.length;n<p;n++)m.push(g[n]);else for(;g[n];n++)m.push(g[n]);return m}}var w,I;if(t.documentElement.compareDocumentPosition)w=function(g,i){if(g===i){h=true;return 0}if(!g.compareDocumentPosition||!i.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(i)&4?-1:1};else{w=function(g,i){var n,m,p=[],q=[];n=g.parentNode;m=i.parentNode;var u=n;if(g===i){h=true;return 0}else if(n===m)return I(g,i);else if(n){if(!m)return 1}else return-1; |
||||
for(;u;){p.unshift(u);u=u.parentNode}for(u=m;u;){q.unshift(u);u=u.parentNode}n=p.length;m=q.length;for(u=0;u<n&&u<m;u++)if(p[u]!==q[u])return I(p[u],q[u]);return u===n?I(g,q[u],-1):I(p[u],i,1)};I=function(g,i,n){if(g===i)return n;for(g=g.nextSibling;g;){if(g===i)return-1;g=g.nextSibling}return 1}}k.getText=function(g){for(var i="",n,m=0;g[m];m++){n=g[m];if(n.nodeType===3||n.nodeType===4)i+=n.nodeValue;else if(n.nodeType!==8)i+=k.getText(n.childNodes)}return i};(function(){var g=t.createElement("div"), |
||||
i="script"+(new Date).getTime(),n=t.documentElement;g.innerHTML="<a name='"+i+"'/>";n.insertBefore(g,n.firstChild);if(t.getElementById(i)){o.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:B:[]};o.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}n.removeChild(g); |
||||
n=g=null})();(function(){var g=t.createElement("div");g.appendChild(t.createComment(""));if(g.getElementsByTagName("*").length>0)o.find.TAG=function(i,n){var m=n.getElementsByTagName(i[1]);if(i[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")o.attrHandle.href=function(i){return i.getAttribute("href",2)};g=null})();t.querySelectorAll&& |
||||
function(){var g=k,i=t.createElement("div");i.innerHTML="<p class='TEST'></p>";if(!(i.querySelectorAll&&i.querySelectorAll(".TEST").length===0)){k=function(m,p,q,u){p=p||t;m=m.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!u&&!k.isXML(p))if(p.nodeType===9)try{return C(p.querySelectorAll(m),q)}catch(y){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var F=p.getAttribute("id"),M=F||"__sizzle__";F||p.setAttribute("id",M);try{return C(p.querySelectorAll("#"+M+" "+m),q)}catch(N){}finally{F|| |
||||
p.removeAttribute("id")}}return g(m,p,q,u)};for(var n in g)k[n]=g[n];i=null}}();(function(){var g=t.documentElement,i=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,n=false;try{i.call(t.documentElement,"[test!='']:sizzle")}catch(m){n=true}if(i)k.matchesSelector=function(p,q){q=q.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(p))try{if(n||!o.match.PSEUDO.test(q)&&!/!=/.test(q))return i.call(p,q)}catch(u){}return k(q,null,null,[p]).length>0}})();(function(){var g= |
||||
t.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){o.order.splice(1,0,"CLASS");o.find.CLASS=function(i,n,m){if(typeof n.getElementsByClassName!=="undefined"&&!m)return n.getElementsByClassName(i[1])};g=null}}})();k.contains=t.documentElement.contains?function(g,i){return g!==i&&(g.contains?g.contains(i):true)}:t.documentElement.compareDocumentPosition? |
||||
function(g,i){return!!(g.compareDocumentPosition(i)&16)}:function(){return false};k.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var L=function(g,i){for(var n,m=[],p="",q=i.nodeType?[i]:i;n=o.match.PSEUDO.exec(g);){p+=n[0];g=g.replace(o.match.PSEUDO,"")}g=o.relative[g]?g+"*":g;n=0;for(var u=q.length;n<u;n++)k(g,q[n],m);return k.filter(p,m)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=k.getText;c.isXMLDoc=k.isXML; |
||||
c.contains=k.contains})();var Za=/Until$/,$a=/^(?:parents|prevUntil|prevAll)/,ab=/,/,Na=/^.[^:#\[\.,]*$/,bb=Array.prototype.slice,cb=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var l=0;l<d;l++)if(b[l]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})}, |
||||
not:function(a){return this.pushStack(ma(this,a,false),"not",a)},filter:function(a){return this.pushStack(ma(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){var d=[],e,f,h=this[0];if(c.isArray(a)){var l,k={},o=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:o})}h= |
||||
h.parentNode;o++}}return d}l=cb.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(l?l.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context): |
||||
c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a, |
||||
2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a, |
||||
b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Za.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||ab.test(e))&&$a.test(a))f=f.reverse();return this.pushStack(f,a,bb.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===B||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&& |
||||
e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var za=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,Aa=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Ba=/<([\w:]+)/,db=/<tbody/i,eb=/<|&#?\w+;/,Ca=/<(?:script|object|embed|option|style)/i,Da=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/\=([^="'>\s]+\/)>/g,P={option:[1, |
||||
"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};P.optgroup=P.option;P.tbody=P.tfoot=P.colgroup=P.caption=P.thead;P.th=P.td;if(!c.support.htmlSerialize)P._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= |
||||
c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==B)return this.empty().append((this[0]&&this[0].ownerDocument||t).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, |
||||
wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, |
||||
prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, |
||||
this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); |
||||
return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(za,"").replace(fb,'="$1">').replace($,"")],e)[0]}else return this.cloneNode(true)});if(a===true){na(this,b);na(this.find("*"),b.find("*"))}return b},html:function(a){if(a===B)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(za,""):null; |
||||
else if(typeof a==="string"&&!Ca.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!P[(Ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Aa,"<$1></$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d= |
||||
c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){var e,f,h,l=a[0],k=[];if(!c.support.checkClone&&arguments.length===3&&typeof l==="string"&&Da.test(l))return this.each(function(){c(this).domManip(a, |
||||
b,d,true)});if(c.isFunction(l))return this.each(function(x){var r=c(this);a[0]=l.call(this,x,b?r.html():B);r.domManip(a,b,d)});if(this[0]){e=l&&l.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);h=e.fragment;if(f=h.childNodes.length===1?h=h.firstChild:h.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var o=this.length;f<o;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")): |
||||
this[f]:this[f],f>0||e.cacheable||this.length>1?h.cloneNode(true):h)}k.length&&c.each(k,Oa)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:t;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===t&&!Ca.test(a[0])&&(c.support.checkClone||!Da.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append", |
||||
prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=d.length;f<h;f++){var l=(f>0?this.clone(true):this).get();c(d[f])[b](l);e=e.concat(l)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||t;if(typeof b.createElement==="undefined")b=b.ownerDocument|| |
||||
b[0]&&b[0].ownerDocument||t;for(var f=[],h=0,l;(l=a[h])!=null;h++){if(typeof l==="number")l+="";if(l){if(typeof l==="string"&&!eb.test(l))l=b.createTextNode(l);else if(typeof l==="string"){l=l.replace(Aa,"<$1></$2>");var k=(Ba.exec(l)||["",""])[1].toLowerCase(),o=P[k]||P._default,x=o[0],r=b.createElement("div");for(r.innerHTML=o[1]+l+o[2];x--;)r=r.lastChild;if(!c.support.tbody){x=db.test(l);k=k==="table"&&!x?r.firstChild&&r.firstChild.childNodes:o[1]==="<table>"&&!x?r.childNodes:[];for(o=k.length- |
||||
1;o>=0;--o)c.nodeName(k[o],"tbody")&&!k[o].childNodes.length&&k[o].parentNode.removeChild(k[o])}!c.support.leadingWhitespace&&$.test(l)&&r.insertBefore(b.createTextNode($.exec(l)[0]),r.firstChild);l=r.childNodes}if(l.nodeType)f.push(l);else f=c.merge(f,l)}}if(d)for(h=0;f[h];h++)if(e&&c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script")))); |
||||
d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,l=0,k;(k=a[l])!=null;l++)if(!(k.nodeName&&c.noData[k.nodeName.toLowerCase()]))if(d=k[c.expando]){if((b=e[d])&&b.events)for(var o in b.events)f[o]?c.event.remove(k,o):c.removeEvent(k,o,b.handle);if(h)delete k[c.expando];else k.removeAttribute&&k.removeAttribute(c.expando);delete e[d]}}});var Ea=/alpha\([^)]*\)/i,gb=/opacity=([^)]*)/,hb=/-([a-z])/ig,ib=/([A-Z])/g,Fa=/^-?\d+(?:px)?$/i, |
||||
jb=/^-?\d/,kb={position:"absolute",visibility:"hidden",display:"block"},Pa=["Left","Right"],Qa=["Top","Bottom"],W,Ga,aa,lb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===B)return this;return c.access(this,a,b,true,function(d,e,f){return f!==B?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true, |
||||
zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),l=a.style,k=c.cssHooks[h];b=c.cssProps[h]||h;if(d!==B){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!k||!("set"in k)||(d=k.set(a,d))!==B)try{l[b]=d}catch(o){}}}else{if(k&&"get"in k&&(f=k.get(a,false,e))!==B)return f;return l[b]}}},css:function(a,b,d){var e,f=c.camelCase(b), |
||||
h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==B)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=e[f]},camelCase:function(a){return a.replace(hb,lb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=oa(d,b,f);else c.swap(d,kb,function(){h=oa(d,b,f)});if(h<=0){h=W(d,b,b);if(h==="0px"&&aa)h=aa(d,b,b); |
||||
if(h!=null)return h===""||h==="auto"?"0px":h}if(h<0||h==null){h=d.style[b];return h===""||h==="auto"?"0px":h}return typeof h==="string"?h:h+"px"}},set:function(d,e){if(Fa.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return gb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f= |
||||
d.filter||"";d.filter=Ea.test(f)?f.replace(Ea,e):d.filter+" "+e}};if(t.defaultView&&t.defaultView.getComputedStyle)Ga=function(a,b,d){var e;d=d.replace(ib,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return B;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};if(t.documentElement.currentStyle)aa=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],h=a.style;if(!Fa.test(f)&&jb.test(f)){d=h.left; |
||||
e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f===""?"auto":f};W=Ga||aa;if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var mb=c.now(),nb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, |
||||
ob=/^(?:select|textarea)/i,pb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,qb=/^(?:GET|HEAD)$/,Ra=/\[\]$/,T=/\=\?(&|$)/,ja=/\?/,rb=/([?&])_=[^&]*/,sb=/^(\w+:)?\/\/([^\/?#]+)/,tb=/%20/g,ub=/#.*$/,Ha=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ha)return Ha.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b=== |
||||
"object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(l,k){if(k==="success"||k==="notmodified")h.html(f?c("<div>").append(l.responseText.replace(nb,"")).find(f):l.responseText);d&&h.each(d,[l.responseText,k,l])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&& |
||||
!this.disabled&&(this.checked||ob.test(this.nodeName)||pb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})}, |
||||
getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html", |
||||
script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),l=qb.test(h);b.url=b.url.replace(ub,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ja.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data|| |
||||
!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+mb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var k=E[d];E[d]=function(m){if(c.isFunction(k))k(m);else{E[d]=B;try{delete E[d]}catch(p){}}f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);r&&r.removeChild(A)}}if(b.dataType==="script"&&b.cache===null)b.cache= |
||||
false;if(b.cache===false&&l){var o=c.now(),x=b.url.replace(rb,"$1_="+o);b.url=x+(x===b.url?(ja.test(b.url)?"&":"?")+"_="+o:"")}if(b.data&&l)b.url+=(ja.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");o=(o=sb.exec(b.url))&&(o[1]&&o[1].toLowerCase()!==location.protocol||o[2].toLowerCase()!==location.host);if(b.dataType==="script"&&h==="GET"&&o){var r=t.getElementsByTagName("head")[0]||t.documentElement,A=t.createElement("script");if(b.scriptCharset)A.charset=b.scriptCharset; |
||||
A.src=b.url;if(!d){var C=false;A.onload=A.onreadystatechange=function(){if(!C&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){C=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);A.onload=A.onreadystatechange=null;r&&A.parentNode&&r.removeChild(A)}}}r.insertBefore(A,r.firstChild);return B}var J=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!l||a&&a.contentType)w.setRequestHeader("Content-Type", |
||||
b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}o||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(I){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&& |
||||
c.triggerGlobal(b,"ajaxSend",[w,b]);var L=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){J||c.handleComplete(b,w,e,f);J=true;if(w)w.onreadystatechange=c.noop}else if(!J&&w&&(w.readyState===4||m==="timeout")){J=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d|| |
||||
c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&Function.prototype.call.call(g,w);L("abort")}}catch(i){}b.async&&b.timeout>0&&setTimeout(function(){w&&!J&&L("timeout")},b.timeout);try{w.send(l||b.data==null?null:b.data)}catch(n){c.handleError(b,w,null,n);c.handleComplete(b,w,e,f)}b.async||L();return w}},param:function(a,b){var d=[],e=function(h,l){l=c.isFunction(l)?l():l;d[d.length]= |
||||
encodeURIComponent(h)+"="+encodeURIComponent(l)};if(b===B)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)da(f,a[f],b,e);return d.join("&").replace(tb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess", |
||||
[b,a])},handleComplete:function(a,b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"), |
||||
e=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}}); |
||||
if(E.ActiveXObject)c.ajaxSettings.xhr=function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var ea={},vb=/^(?:toggle|show|hide)$/,wb=/^([+\-]=)?([\d+.\-]+)(.*)$/,ba,pa=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show", |
||||
3),a,b,d);else{d=0;for(var e=this.length;d<e;d++){a=this[d];b=a.style.display;if(!c.data(a,"olddisplay")&&b==="none")b=a.style.display="";b===""&&c.css(a,"display")==="none"&&c.data(a,"olddisplay",qa(a.nodeName))}for(d=0;d<e;d++){a=this[d];b=a.style.display;if(b===""||b==="none")a.style.display=c.data(a,"olddisplay")||""}return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay", |
||||
d)}for(a=0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b, |
||||
d,e);if(c.isEmptyObject(a))return this.each(f.complete);return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),l,k=this.nodeType===1,o=k&&c(this).is(":hidden"),x=this;for(l in a){var r=c.camelCase(l);if(l!==r){a[r]=a[l];delete a[l];l=r}if(a[l]==="hide"&&o||a[l]==="show"&&!o)return h.complete.call(this);if(k&&(l==="height"||l==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(qa(this.nodeName)=== |
||||
"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[l])){(h.specialEasing=h.specialEasing||{})[l]=a[l][1];a[l]=a[l][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(A,C){var J=new c.fx(x,h,A);if(vb.test(C))J[C==="toggle"?o?"show":"hide":C](a);else{var w=wb.exec(C),I=J.cur()||0;if(w){var L=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(x,A,(L||1)+g);I=(L|| |
||||
1)/J.cur()*I;c.style(x,A,I+g)}if(w[1])L=(w[1]==="-="?-1:1)*L+I;J.custom(I,L,g)}else J.custom(I,C,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b, |
||||
d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a* |
||||
Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(l){return f.step(l)} |
||||
var f=this,h=c.fx;this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;e.elem=this.elem;if(e()&&c.timers.push(e)&&!ba)ba=setInterval(h.tick,h.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true; |
||||
this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(k,o){f.style["overflow"+o]=h.overflow[k]})}this.options.hide&&c(this.elem).hide();if(this.options.hide|| |
||||
this.options.show)for(var l in this.options.curAnim)c.style(this.elem,l,this.options.orig[l]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a= |
||||
c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(ba);ba=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a=== |
||||
b.elem}).length};var xb=/^t(?:able|d|h)$/i,Ia=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in t.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(l){c.offset.setOffset(this,a,l)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=fa(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&& |
||||
h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(x){c.offset.setOffset(this,a,x)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d,e=b.offsetParent,f=b.ownerDocument,h=f.documentElement,l=f.body;d=(f=f.defaultView)?f.getComputedStyle(b,null):b.currentStyle; |
||||
for(var k=b.offsetTop,o=b.offsetLeft;(b=b.parentNode)&&b!==l&&b!==h;){if(c.offset.supportsFixedPosition&&d.position==="fixed")break;d=f?f.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;o-=b.scrollLeft;if(b===e){k+=b.offsetTop;o+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&xb.test(b.nodeName))){k+=parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}e=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"){k+= |
||||
parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}d=d}if(d.position==="relative"||d.position==="static"){k+=l.offsetTop;o+=l.offsetLeft}if(c.offset.supportsFixedPosition&&d.position==="fixed"){k+=Math.max(h.scrollTop,l.scrollTop);o+=Math.max(h.scrollLeft,l.scrollLeft)}return{top:k,left:o}};c.offset={initialize:function(){var a=t.body,b=t.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px", |
||||
height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells= |
||||
f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a, |
||||
"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),l=c.css(a,"top"),k=c.css(a,"left"),o=e==="absolute"&&c.inArray("auto",[l,k])>-1;e={};var x={};if(o)x=f.position();l=o?x.top:parseInt(l,10)||0;k=o?x.left:parseInt(k,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+l;if(b.left!=null)e.left=b.left-h.left+k;"using"in b?b.using.call(a, |
||||
e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Ia.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||t.body;a&&!Ia.test(a.nodeName)&& |
||||
c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==B)return this.each(function(){if(h=fa(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=fa(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase(); |
||||
c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(l){var k=c(this);k[d](e.call(this,l,k[d]()))});if(c.isWindow(f))return f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b];else if(f.nodeType===9)return Math.max(f.documentElement["client"+ |
||||
b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]);else if(e===B){f=c.css(f,d);var h=parseFloat(f);return c.isNaN(h)?f:h}else return this.css(d,typeof e==="string"?e:e+"px")}})})(window); |
@ -0,0 +1,41 @@ |
||||
function Tpl( obj ) |
||||
{ |
||||
var templates = {}; |
||||
this.load = function( obj ) |
||||
{ |
||||
templates = obj; |
||||
}; |
||||
|
||||
this.get = function( name ) |
||||
{ |
||||
return templates[name]; |
||||
}; |
||||
|
||||
this.getParsed = function( name, obj ) |
||||
{ |
||||
var s = templates[name]; |
||||
for( var i in obj ){ |
||||
s = s.replaceAll( "{"+i+"}", obj[i] ); |
||||
} |
||||
return s; |
||||
}; |
||||
|
||||
this.getParsedMulti = function( nao ) // nao = names and objects array
|
||||
{ |
||||
var html = ""; |
||||
for( var i = 0; i < nao.length; i++ ) |
||||
{ |
||||
if( nao[i].length > 1 ){ |
||||
html += this.getParsed( nao[i][0], nao[i][1] ); |
||||
} |
||||
else{ |
||||
html += this.get( nao[i][0] ); |
||||
} |
||||
} |
||||
return html; |
||||
}; |
||||
|
||||
if( arguments.length > 0 ){ |
||||
this.load( obj ); |
||||
} |
||||
} |
@ -0,0 +1,315 @@ |
||||
// if use the "view/edit" button or rely on the api instead
|
||||
var isSankore = false; |
||||
// whether to do window.resize or not (window = widget area)
|
||||
var isBrowser = ( typeof( widget ) == "undefined" ); |
||||
|
||||
function wcontainer( containerID ) |
||||
{ |
||||
// some protecred variables
|
||||
var thisInstance = this; |
||||
var editMode = false; |
||||
var data = {}; // see setData and getData
|
||||
this.allowResize = false; |
||||
this.maxWidth = 1000; // set to 0 for no max width restriction
|
||||
this.minWidth = 50; |
||||
this.maxHeight = 800; // set to 0 for no max width restriction
|
||||
this.minHeight = 50; |
||||
|
||||
// links to the elements of the widget
|
||||
this.elements = {}; |
||||
|
||||
/* |
||||
============ |
||||
create |
||||
============ |
||||
- creates html base, inits this.elements, assings events |
||||
*/ |
||||
this.create = function( containerID ) |
||||
{ |
||||
var html =
|
||||
'<div id="mp_setup">' + |
||||
'<div class="viewmode">' + |
||||
'<button>Edit</button>' + |
||||
'</div>' + |
||||
'<div class="editmode">' + |
||||
'<button>View</button>' + |
||||
'</div>' + |
||||
'</div>' + |
||||
'<div id="mp_content">' + |
||||
'<div class="viewmode" id="mp_view">' + |
||||
'</div>' + |
||||
'<div class="editmode" id="mp_edit">' + |
||||
'</div>' + |
||||
'</div>'; |
||||
|
||||
var container = $( containerID ); |
||||
|
||||
container.append( html ); |
||||
this.elements.edit = container.find( ".editmode" ); |
||||
this.elements.view = container.find( ".viewmode" ); |
||||
|
||||
this.elements.container = container; |
||||
this.elements.subcontainer = container.find( "#mp_content" ); |
||||
this.elements.setup = container.find( "#mp_setup" ); |
||||
this.elements.splash = $( "<div>" ); |
||||
|
||||
this.elements.containerView = this.elements.subcontainer.find( ".viewmode" ); |
||||
this.elements.containerEdit = this.elements.subcontainer.find( ".editmode" ); |
||||
|
||||
|
||||
|
||||
|
||||
container.find( ".viewmode button" ).click( function(){ |
||||
thisInstance.modeEdit(); |
||||
} ); |
||||
|
||||
container.find( ".editmode button" ).click( function(){ |
||||
thisInstance.modeView(); |
||||
} ); |
||||
|
||||
}; |
||||
|
||||
this.setSplashContent = function( html ) |
||||
{ |
||||
this.elements.container.find( "#mp_setup .viewmode" ).append( |
||||
'<button class="hideAll">Hide</button>' |
||||
); |
||||
this.elements.container.find( "#mp_setup .editmode" ).append( |
||||
'<button class="hideAll">Hide</button>' |
||||
); |
||||
this.elements.container.after(
|
||||
'<div id="mp_splash">'+ html +'</div>' |
||||
); |
||||
|
||||
this.elements.splash = $( "#mp_splash" ); |
||||
this.elements.splash.hide(); |
||||
this.elements.splash.click( function() |
||||
{ |
||||
winstance.modeSplash( false ); |
||||
}); |
||||
|
||||
this.elements.setup.find( "button.hideAll" ).click( function() |
||||
{ |
||||
winstance.modeSplash(); |
||||
}); |
||||
}; |
||||
|
||||
|
||||
/* |
||||
=============== |
||||
setViewContent |
||||
=============== |
||||
- assigns custom html to the viewmode container |
||||
*/ |
||||
this.setViewContent = function( html ) |
||||
{ |
||||
this.elements.container.find( "#mp_content .viewmode" ).html( html ); |
||||
}; |
||||
this.getViewContent = function() |
||||
{ |
||||
return this.elements.container.find( "#mp_content .viewmode" ).html(); |
||||
}; |
||||
|
||||
/* |
||||
=============== |
||||
setEditContent |
||||
=============== |
||||
- assigns custom html to the editmode container |
||||
*/ |
||||
this.setEditContent = function( html ) |
||||
{ |
||||
this.elements.container.find( "#mp_content .editmode" ).html( html ); |
||||
}; |
||||
this.getEditContent = function( html ) |
||||
{ |
||||
return this.elements.container.find( "#mp_content .editmode" ).html(); |
||||
}; |
||||
|
||||
|
||||
|
||||
/* |
||||
========================= |
||||
modeEdit and modeView |
||||
========================= |
||||
- switch the widget betweed modes |
||||
* for customization extend onEditMode and onViewMode |
||||
*/ |
||||
this.modeEdit = function() |
||||
{ |
||||
this.onEditMode(); |
||||
editMode = true; |
||||
this.elements.edit.removeClass( "hide" ); |
||||
this.elements.view.addClass( "hide" ); |
||||
|
||||
this.adjustSize(); |
||||
}; |
||||
this.modeView = function() |
||||
{ |
||||
this.onViewMode(); |
||||
editMode = false; |
||||
this.elements.edit.addClass( "hide" ); |
||||
this.elements.view.removeClass( "hide" ); |
||||
|
||||
this.adjustSize(); |
||||
}; |
||||
this.modeSplash = function( enable ) |
||||
{ |
||||
if( arguments.length < 1 ){ |
||||
var enable = true; |
||||
} |
||||
if( enable ){ |
||||
this.allowResize = false; |
||||
this.elements.container.hide(); |
||||
this.elements.splash.show(); |
||||
// hack, need to work out
|
||||
this.adjustSize( 190, 110, true ); |
||||
} |
||||
else{ |
||||
this.elements.container.show(); |
||||
this.elements.splash.hide(); |
||||
this.adjustSize(); |
||||
this.allowResize = true; |
||||
} |
||||
}; |
||||
|
||||
|
||||
|
||||
/* |
||||
================ |
||||
adjustSize |
||||
================ |
||||
- changes the widget size (window and container) |
||||
*/ |
||||
this.adjustSize = function( width, height, override ) |
||||
{ |
||||
if( arguments.length < 3 ){ |
||||
var override = false; |
||||
} |
||||
|
||||
// retrieve the arguments
|
||||
if( arguments.length < 2 ) |
||||
{ |
||||
var s = ( editMode )? this.editSize() : this.viewSize(); |
||||
var width = s.w; |
||||
var height = s.h; |
||||
} |
||||
|
||||
// check for validity
|
||||
if( width + height == 0 ) |
||||
return; |
||||
|
||||
// add view/edit bar height
|
||||
if( !isSankore && !override ){ |
||||
height += $( this.elements.container ).find( "#mp_setup" ).outerHeight(); |
||||
} |
||||
|
||||
if( !override ) |
||||
{ |
||||
// apply min and max restrictions
|
||||
width = Math.max( this.minWidth, width ); |
||||
height = Math.max( this.minHeight, height ); |
||||
if( this.maxWidth ){ |
||||
width = Math.min( width, this.maxWidth ); |
||||
} |
||||
} |
||||
|
||||
// if viewed as a widget, resize the window
|
||||
if( !isBrowser ) |
||||
{ |
||||
// dw and dh are paddings+margins+borders
|
||||
var dw = this.getData( "dw" ); |
||||
var dh = this.getData( "dh" ); |
||||
|
||||
if( override ) dw = dh = 0; |
||||
|
||||
if( width == 0 ){ |
||||
width = widget.width; |
||||
} |
||||
if( height == 0 ){ |
||||
height = widget.height; |
||||
} |
||||
window.resizeTo( width + dw, height + dh ); |
||||
} |
||||
|
||||
// resize the container
|
||||
var params = {}; |
||||
if( width != 0 ){ |
||||
params.width = width; |
||||
} |
||||
if( height != 0 ){ |
||||
params.height = height; |
||||
} |
||||
console.log( params ); |
||||
this.elements.container.animate( params ); |
||||
|
||||
}; |
||||
|
||||
/* |
||||
====================== |
||||
setData and getData |
||||
====================== |
||||
- store some data inside |
||||
*/ |
||||
this.setData = function( name, value ){ |
||||
data[name] = value; |
||||
}; |
||||
this.getData = function( name ){ |
||||
if( typeof( data[name] ) == "undefined" ){ |
||||
return null; |
||||
} else return data[name]; |
||||
}; |
||||
|
||||
this.viewSizeDefault = function(){ |
||||
return { |
||||
w: this.elements.containerView.outerWidth(), |
||||
h: this.elements.containerView.outerHeight() |
||||
}; |
||||
}; |
||||
this.editSizeDefault = function(){ |
||||
return { |
||||
w: this.elements.containerEdit.outerWidth(), |
||||
h: this.elements.containerEdit.outerHeight() |
||||
}; |
||||
}; |
||||
|
||||
|
||||
// redefinable methods
|
||||
|
||||
/* |
||||
========================== |
||||
onEditMode and onViewMode |
||||
========================== |
||||
- these are called when the mode is being changed |
||||
*/ |
||||
this.onEditMode = function(){ |
||||
//
|
||||
}; |
||||
this.onViewMode = function(){ |
||||
//
|
||||
}; |
||||
|
||||
/* |
||||
====================== |
||||
viewSize and editSize |
||||
====================== |
||||
- calculate container size for the adjustSize method |
||||
* they are likely to be redefined for each particular widget |
||||
*/ |
||||
this.viewSize = function(){ |
||||
return this.viewSizeDefault(); |
||||
}; |
||||
this.editSize = function(){ |
||||
return this.editSizeDefault(); |
||||
}; |
||||
|
||||
// constructor end
|
||||
|
||||
// if the constructor was called with a parameter,
|
||||
// call create() automatically
|
||||
if( arguments.length > 0 ){ |
||||
this.create( containerID ); |
||||
} |
||||
this.setData( "dw", this.elements.container.outerWidth( true ) - this.elements.container.width() ); |
||||
this.setData( "dh", this.elements.container.outerHeight( true ) - this.elements.container.height() ); |
||||
window.winstance = thisInstance; |
||||
} |
@ -0,0 +1,60 @@ |
||||
/* custom */ |
||||
|
||||
#mp_view{ |
||||
font-size: 12pt; |
||||
} |
||||
|
||||
#mp_view h3{ |
||||
margin: 0px; padding: 0px; |
||||
margin-bottom: 0.5em; |
||||
font-weight: normal; |
||||
} |
||||
|
||||
|
||||
#mp_edit #quiz_elements{ |
||||
width: 300px; |
||||
float: left; |
||||
} |
||||
|
||||
#mp_edit #quiz_options{ |
||||
width: 200px; |
||||
float: left; |
||||
} |
||||
|
||||
#mp_edit hr{ |
||||
clear: left; |
||||
visibility: hidden; |
||||
} |
||||
|
||||
#mp_edit button.add{ |
||||
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAA8UlEQVR42u2UsQqCUBSG3XsLtwYfJIKKxoZaXYIeoGgtiIiGpvCVakhyiaApFDWMhmo43V9MbuTioN7hfPDBgXsv/lx/1TSGYRiGYXJjzKylMbeiWDGrEUqE2XgvgpiVCTU9RwSVCjVyfIJKhRo6AcFKQv2UWtIUgcwk1J9Flx8PWXtvWlyfqZPLg/q2H4tZXsPewm8v7s/pToNjmNoTYdp7NxazvIa9hYeqj1fbrFfU2LkEs9Zwpuha1YQ6Lu0rHtw5BASTWzEk9eRM+V9f1w4JKvVLaNk3gkqFaopATZVCyeUvo9R5y19NqRmGYRhF+QAs9wHg1SFRcQAAAABJRU5ErkJggg==") no-repeat scroll 0 0 transparent; |
||||
height: 37px; |
||||
line-height: 37px; |
||||
overflow: hidden; |
||||
padding-left: 37px; |
||||
width: auto; |
||||
border-width: 0px; |
||||
cursor: pointer; |
||||
float: left; |
||||
clear: both; |
||||
} |
||||
|
||||
#mp_edit button.delete{ |
||||
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAABZUlEQVR42pWQv0vEMBTHq+Dg6qSDiDiIo4P/g4OTcKvgJrjrIug/4OLo4iZOguPJuZ2t3qWXtknTJE2bpL07xB84CK7ny6EHNxp4kITP9/ve93nefw4Og8sYP33RGEkSdXb//uNuez0K/WaCn79p3PUp7mx5ACLO8LDMaa0EURkJdwhCa3EUtGiCXnMem1LRoeTkwAPlEUAvlRZFpbk1KiUgfuRpb6AEFdbwt74VN2XJVjzf9+dFhk9NwWylpQRR6e5aUW41r+B9awxfncyNEJoTWXQOUN9qwV0BVNVaPAwUWZ4KGYbBRpqg+0ISC26yMiIHWEGxMk8bEzDq+ptRL2hnNHQhBbgZN/uvYDySYL290Wg06+FecMcIei8AhPYu6JUp+Ql0MOPQBvQqFZyG2251bcnjT5e6NuJaa7oILjMFT45dBhB8QA0Kme671TVynjStERfGsKWp0AwfgqBldXZW13ThB0DfO0e4Gr5QAAAAAElFTkSuQmCC") no-repeat scroll 0 50% transparent; |
||||
background-position: 3px 5px; |
||||
height: 18px; width: 18px; |
||||
line-height: 18px; |
||||
overflow: hidden; |
||||
padding-left: 11px; |
||||
border-width: 0px; |
||||
color: #aaa; |
||||
cursor: pointer; |
||||
display: block; |
||||
float: left; |
||||
clear: left; |
||||
} |
||||
|
||||
#mp_edit input.option{ |
||||
display: block; |
||||
float: left; |
||||
} |
@ -0,0 +1,43 @@ |
||||
body{ |
||||
background-color: #fff; |
||||
margin: 0px; padding: 0px; |
||||
font-family: arial; |
||||
font-size: 11pt; |
||||
color: #000; |
||||
overflow: hidden; |
||||
} |
||||
|
||||
|
||||
h1{ |
||||
font-size:18px; |
||||
margin-bottom:20px; |
||||
margin-top:0px; |
||||
} |
||||
#ub-widget{ |
||||
background-color: white; |
||||
padding: 20px; |
||||
border: 3px solid #aaaaaa; |
||||
word-wrap: break-word; |
||||
} |
||||
|
||||
.inputbox{ |
||||
width:50px; |
||||
} |
||||
|
||||
button{ |
||||
width: 80px; |
||||
font-family: arial; |
||||
font-size: 13px; |
||||
} |
||||
|
||||
input.percent, textarea.percent{ |
||||
width: 100%; |
||||
margin: 0px; padding: 0px; |
||||
border-width: 0px; |
||||
} |
||||
.inputwrap{ |
||||
border-style: solid; |
||||
border-width: 1px; |
||||
border-color: #dbdfe6; |
||||
border-top-color: #abadb3; |
||||
} |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,37 @@ |
||||
/* frame */ |
||||
|
||||
#mp_setup{ |
||||
text-align: right; |
||||
} |
||||
|
||||
#mp_content{ |
||||
margin-top: 5px; |
||||
} |
||||
|
||||
.viewmode{ |
||||
/* empty */ |
||||
} |
||||
.editmode{ |
||||
/* empty */ |
||||
} |
||||
.hide{ |
||||
display: none; |
||||
} |
||||
|
||||
button.hideAll{ |
||||
background-color: transparent; |
||||
color: transparent; |
||||
border-width: 0px; |
||||
background-image: url( "stick-but-minimize.png" ); |
||||
background-repeat: no-repeat; |
||||
cursor: pointer; |
||||
|
||||
overflow: hidden; |
||||
font-size: 1px; |
||||
width: 25px; |
||||
height: 25px; |
||||
} |
||||
|
||||
#mp_splash{ |
||||
|
||||
} |
@ -0,0 +1 @@ |
||||
(function(b){var e,d,a=[],c=window;b.fn.tinymce=function(j){var p=this,g,k,h,m,i,l="",n="";if(!p.length){return p}if(!j){return tinyMCE.get(p[0].id)}function o(){var r=[],q=0;if(f){f();f=null}p.each(function(t,u){var s,w=u.id,v=j.oninit;if(!w){u.id=w=tinymce.DOM.uniqueId()}s=new tinymce.Editor(w,j);r.push(s);if(v){s.onInit.add(function(){var x,y=v;if(++q==r.length){if(tinymce.is(y,"string")){x=(y.indexOf(".")===-1)?null:tinymce.resolve(y.replace(/\.\w+$/,""));y=tinymce.resolve(y)}y.apply(x||tinymce,r)}})}});b.each(r,function(t,s){s.render()})}if(!c.tinymce&&!d&&(g=j.script_url)){d=1;h=g.substring(0,g.lastIndexOf("/"));if(/_(src|dev)\.js/g.test(g)){n="_src"}m=g.lastIndexOf("?");if(m!=-1){l=g.substring(m+1)}c.tinyMCEPreInit=c.tinyMCEPreInit||{base:h,suffix:n,query:l};if(g.indexOf("gzip")!=-1){i=j.language||"en";g=g+(/\?/.test(g)?"&":"?")+"js=true&core=true&suffix="+escape(n)+"&themes="+escape(j.theme)+"&plugins="+escape(j.plugins)+"&languages="+i;if(!c.tinyMCE_GZ){tinyMCE_GZ={start:function(){tinymce.suffix=n;function q(r){tinymce.ScriptLoader.markDone(tinyMCE.baseURI.toAbsolute(r))}q("langs/"+i+".js");q("themes/"+j.theme+"/editor_template"+n+".js");q("themes/"+j.theme+"/langs/"+i+".js");b.each(j.plugins.split(","),function(s,r){if(r){q("plugins/"+r+"/editor_plugin"+n+".js");q("plugins/"+r+"/langs/"+i+".js")}})},end:function(){}}}}b.ajax({type:"GET",url:g,dataType:"script",cache:true,success:function(){tinymce.dom.Event.domLoaded=1;d=2;if(j.script_loaded){j.script_loaded()}o();b.each(a,function(q,r){r()})}})}else{if(d===1){a.push(o)}else{o()}}return p};b.extend(b.expr[":"],{tinymce:function(g){return g.id&&!!tinyMCE.get(g.id)}});function f(){function i(l){if(l==="remove"){this.each(function(n,o){var m=h(o);if(m){m.remove()}})}this.find("span.mceEditor,div.mceEditor").each(function(n,o){var m=tinyMCE.get(o.id.replace(/_parent$/,""));if(m){m.remove()}})}function k(n){var m=this,l;if(n!==e){i.call(m);m.each(function(p,q){var o;if(o=tinyMCE.get(q.id)){o.setContent(n)}})}else{if(m.length>0){if(l=tinyMCE.get(m[0].id)){return l.getContent()}}}}function h(m){var l=null;(m)&&(m.id)&&(c.tinymce)&&(l=tinyMCE.get(m.id));return l}function g(l){return !!((l)&&(l.length)&&(c.tinymce)&&(l.is(":tinymce")))}var j={};b.each(["text","html","val"],function(n,l){var o=j[l]=b.fn[l],m=(l==="text");b.fn[l]=function(s){var p=this;if(!g(p)){return o.apply(p,arguments)}if(s!==e){k.call(p.filter(":tinymce"),s);o.apply(p.not(":tinymce"),arguments);return p}else{var r="";var q=arguments;(m?p:p.eq(0)).each(function(u,v){var t=h(v);r+=t?(m?t.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):t.getContent()):o.apply(b(v),q)});return r}}});b.each(["append","prepend"],function(n,m){var o=j[m]=b.fn[m],l=(m==="prepend");b.fn[m]=function(q){var p=this;if(!g(p)){return o.apply(p,arguments)}if(q!==e){p.filter(":tinymce").each(function(s,t){var r=h(t);r&&r.setContent(l?q+r.getContent():r.getContent()+q)});o.apply(p.not(":tinymce"),arguments);return p}}});b.each(["remove","replaceWith","replaceAll","empty"],function(m,l){var n=j[l]=b.fn[l];b.fn[l]=function(){i.call(this,l);return n.apply(this,arguments)}});j.attr=b.fn.attr;b.fn.attr=function(n,q,o){var m=this;if((!n)||(n!=="value")||(!g(m))){return j.attr.call(m,n,q,o)}if(q!==e){k.call(m.filter(":tinymce"),q);j.attr.call(m.not(":tinymce"),n,q,o);return m}else{var p=m[0],l=h(p);return l?l.getContent():j.attr.call(b(p),n,q,o)}}}})(jQuery); |
@ -0,0 +1,170 @@ |
||||
tinyMCE.addI18n({en:{ |
||||
common:{ |
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?", |
||||
apply:"Apply", |
||||
insert:"Insert", |
||||
update:"Update", |
||||
cancel:"Cancel", |
||||
close:"Close", |
||||
browse:"Browse", |
||||
class_name:"Class", |
||||
not_set:"-- Not set --", |
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?", |
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.", |
||||
popup_blocked:"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.", |
||||
invalid_data:"Error: Invalid values entered, these are marked in red.", |
||||
more_colors:"More colors" |
||||
}, |
||||
contextmenu:{ |
||||
align:"Alignment", |
||||
left:"Left", |
||||
center:"Center", |
||||
right:"Right", |
||||
full:"Full" |
||||
}, |
||||
insertdatetime:{ |
||||
date_fmt:"%Y-%m-%d", |
||||
time_fmt:"%H:%M:%S", |
||||
insertdate_desc:"Insert date", |
||||
inserttime_desc:"Insert time", |
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December", |
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec", |
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday", |
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun" |
||||
}, |
||||
print:{ |
||||
print_desc:"Print" |
||||
}, |
||||
preview:{ |
||||
preview_desc:"Preview" |
||||
}, |
||||
directionality:{ |
||||
ltr_desc:"Direction left to right", |
||||
rtl_desc:"Direction right to left" |
||||
}, |
||||
layer:{ |
||||
insertlayer_desc:"Insert new layer", |
||||
forward_desc:"Move forward", |
||||
backward_desc:"Move backward", |
||||
absolute_desc:"Toggle absolute positioning", |
||||
content:"New layer..." |
||||
}, |
||||
save:{ |
||||
save_desc:"Save", |
||||
cancel_desc:"Cancel all changes" |
||||
}, |
||||
nonbreaking:{ |
||||
nonbreaking_desc:"Insert non-breaking space character" |
||||
}, |
||||
iespell:{ |
||||
iespell_desc:"Run spell checking", |
||||
download:"ieSpell not detected. Do you want to install it now?" |
||||
}, |
||||
advhr:{ |
||||
advhr_desc:"Horizontal rule" |
||||
}, |
||||
emotions:{ |
||||
emotions_desc:"Emotions" |
||||
}, |
||||
searchreplace:{ |
||||
search_desc:"Find", |
||||
replace_desc:"Find/Replace" |
||||
}, |
||||
advimage:{ |
||||
image_desc:"Insert/edit image" |
||||
}, |
||||
advlink:{ |
||||
link_desc:"Insert/edit link" |
||||
}, |
||||
xhtmlxtras:{ |
||||
cite_desc:"Citation", |
||||
abbr_desc:"Abbreviation", |
||||
acronym_desc:"Acronym", |
||||
del_desc:"Deletion", |
||||
ins_desc:"Insertion", |
||||
attribs_desc:"Insert/Edit Attributes" |
||||
}, |
||||
style:{ |
||||
desc:"Edit CSS Style" |
||||
}, |
||||
paste:{ |
||||
paste_text_desc:"Paste as Plain Text", |
||||
paste_word_desc:"Paste from Word", |
||||
selectall_desc:"Select All", |
||||
plaintext_mode_sticky:"Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.", |
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode." |
||||
}, |
||||
paste_dlg:{ |
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.", |
||||
text_linebreaks:"Keep linebreaks", |
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window." |
||||
}, |
||||
table:{ |
||||
desc:"Inserts a new table", |
||||
row_before_desc:"Insert row before", |
||||
row_after_desc:"Insert row after", |
||||
delete_row_desc:"Delete row", |
||||
col_before_desc:"Insert column before", |
||||
col_after_desc:"Insert column after", |
||||
delete_col_desc:"Remove column", |
||||
split_cells_desc:"Split merged table cells", |
||||
merge_cells_desc:"Merge table cells", |
||||
row_desc:"Table row properties", |
||||
cell_desc:"Table cell properties", |
||||
props_desc:"Table properties", |
||||
paste_row_before_desc:"Paste table row before", |
||||
paste_row_after_desc:"Paste table row after", |
||||
cut_row_desc:"Cut table row", |
||||
copy_row_desc:"Copy table row", |
||||
del:"Delete table", |
||||
row:"Row", |
||||
col:"Column", |
||||
cell:"Cell" |
||||
}, |
||||
autosave:{ |
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.", |
||||
restore_content:"Restore auto-saved content.", |
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?." |
||||
}, |
||||
fullscreen:{ |
||||
desc:"Toggle fullscreen mode" |
||||
}, |
||||
media:{ |
||||
desc:"Insert / edit embedded media", |
||||
edit:"Edit embedded media" |
||||
}, |
||||
fullpage:{ |
||||
desc:"Document properties" |
||||
}, |
||||
template:{ |
||||
desc:"Insert predefined template content" |
||||
}, |
||||
visualchars:{ |
||||
desc:"Visual control characters on/off." |
||||
}, |
||||
spellchecker:{ |
||||
desc:"Toggle spellchecker", |
||||
menu:"Spellchecker settings", |
||||
ignore_word:"Ignore word", |
||||
ignore_words:"Ignore all", |
||||
langs:"Languages", |
||||
wait:"Please wait...", |
||||
sug:"Suggestions", |
||||
no_sug:"No suggestions", |
||||
no_mpell:"No misspellings found." |
||||
}, |
||||
pagebreak:{ |
||||
desc:"Insert page break." |
||||
}, |
||||
advlist:{ |
||||
types:"Types", |
||||
def:"Default", |
||||
lower_alpha:"Lower alpha", |
||||
lower_greek:"Lower greek", |
||||
lower_roman:"Lower roman", |
||||
upper_alpha:"Upper alpha", |
||||
upper_roman:"Upper roman", |
||||
circle:"Circle", |
||||
disc:"Disc", |
||||
square:"Square" |
||||
}}}); |
@ -0,0 +1,504 @@ |
||||
GNU LESSER GENERAL PUBLIC LICENSE |
||||
Version 2.1, February 1999 |
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc. |
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
Everyone is permitted to copy and distribute verbatim copies |
||||
of this license document, but changing it is not allowed. |
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts |
||||
as the successor of the GNU Library Public License, version 2, hence |
||||
the version number 2.1.] |
||||
|
||||
Preamble |
||||
|
||||
The licenses for most software are designed to take away your |
||||
freedom to share and change it. By contrast, the GNU General Public |
||||
Licenses are intended to guarantee your freedom to share and change |
||||
free software--to make sure the software is free for all its users. |
||||
|
||||
This license, the Lesser General Public License, applies to some |
||||
specially designated software packages--typically libraries--of the |
||||
Free Software Foundation and other authors who decide to use it. You |
||||
can use it too, but we suggest you first think carefully about whether |
||||
this license or the ordinary General Public License is the better |
||||
strategy to use in any particular case, based on the explanations below. |
||||
|
||||
When we speak of free software, we are referring to freedom of use, |
||||
not price. Our General Public Licenses are designed to make sure that |
||||
you have the freedom to distribute copies of free software (and charge |
||||
for this service if you wish); that you receive source code or can get |
||||
it if you want it; that you can change the software and use pieces of |
||||
it in new free programs; and that you are informed that you can do |
||||
these things. |
||||
|
||||
To protect your rights, we need to make restrictions that forbid |
||||
distributors to deny you these rights or to ask you to surrender these |
||||
rights. These restrictions translate to certain responsibilities for |
||||
you if you distribute copies of the library or if you modify it. |
||||
|
||||
For example, if you distribute copies of the library, whether gratis |
||||
or for a fee, you must give the recipients all the rights that we gave |
||||
you. You must make sure that they, too, receive or can get the source |
||||
code. If you link other code with the library, you must provide |
||||
complete object files to the recipients, so that they can relink them |
||||
with the library after making changes to the library and recompiling |
||||
it. And you must show them these terms so they know their rights. |
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the |
||||
library, and (2) we offer you this license, which gives you legal |
||||
permission to copy, distribute and/or modify the library. |
||||
|
||||
To protect each distributor, we want to make it very clear that |
||||
there is no warranty for the free library. Also, if the library is |
||||
modified by someone else and passed on, the recipients should know |
||||
that what they have is not the original version, so that the original |
||||
author's reputation will not be affected by problems that might be |
||||
introduced by others. |
||||
|
||||
Finally, software patents pose a constant threat to the existence of |
||||
any free program. We wish to make sure that a company cannot |
||||
effectively restrict the users of a free program by obtaining a |
||||
restrictive license from a patent holder. Therefore, we insist that |
||||
any patent license obtained for a version of the library must be |
||||
consistent with the full freedom of use specified in this license. |
||||
|
||||
Most GNU software, including some libraries, is covered by the |
||||
ordinary GNU General Public License. This license, the GNU Lesser |
||||
General Public License, applies to certain designated libraries, and |
||||
is quite different from the ordinary General Public License. We use |
||||
this license for certain libraries in order to permit linking those |
||||
libraries into non-free programs. |
||||
|
||||
When a program is linked with a library, whether statically or using |
||||
a shared library, the combination of the two is legally speaking a |
||||
combined work, a derivative of the original library. The ordinary |
||||
General Public License therefore permits such linking only if the |
||||
entire combination fits its criteria of freedom. The Lesser General |
||||
Public License permits more lax criteria for linking other code with |
||||
the library. |
||||
|
||||
We call this license the "Lesser" General Public License because it |
||||
does Less to protect the user's freedom than the ordinary General |
||||
Public License. It also provides other free software developers Less |
||||
of an advantage over competing non-free programs. These disadvantages |
||||
are the reason we use the ordinary General Public License for many |
||||
libraries. However, the Lesser license provides advantages in certain |
||||
special circumstances. |
||||
|
||||
For example, on rare occasions, there may be a special need to |
||||
encourage the widest possible use of a certain library, so that it becomes |
||||
a de-facto standard. To achieve this, non-free programs must be |
||||
allowed to use the library. A more frequent case is that a free |
||||
library does the same job as widely used non-free libraries. In this |
||||
case, there is little to gain by limiting the free library to free |
||||
software only, so we use the Lesser General Public License. |
||||
|
||||
In other cases, permission to use a particular library in non-free |
||||
programs enables a greater number of people to use a large body of |
||||
free software. For example, permission to use the GNU C Library in |
||||
non-free programs enables many more people to use the whole GNU |
||||
operating system, as well as its variant, the GNU/Linux operating |
||||
system. |
||||
|
||||
Although the Lesser General Public License is Less protective of the |
||||
users' freedom, it does ensure that the user of a program that is |
||||
linked with the Library has the freedom and the wherewithal to run |
||||
that program using a modified version of the Library. |
||||
|
||||
The precise terms and conditions for copying, distribution and |
||||
modification follow. Pay close attention to the difference between a |
||||
"work based on the library" and a "work that uses the library". The |
||||
former contains code derived from the library, whereas the latter must |
||||
be combined with the library in order to run. |
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE |
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
||||
|
||||
0. This License Agreement applies to any software library or other |
||||
program which contains a notice placed by the copyright holder or |
||||
other authorized party saying it may be distributed under the terms of |
||||
this Lesser General Public License (also called "this License"). |
||||
Each licensee is addressed as "you". |
||||
|
||||
A "library" means a collection of software functions and/or data |
||||
prepared so as to be conveniently linked with application programs |
||||
(which use some of those functions and data) to form executables. |
||||
|
||||
The "Library", below, refers to any such software library or work |
||||
which has been distributed under these terms. A "work based on the |
||||
Library" means either the Library or any derivative work under |
||||
copyright law: that is to say, a work containing the Library or a |
||||
portion of it, either verbatim or with modifications and/or translated |
||||
straightforwardly into another language. (Hereinafter, translation is |
||||
included without limitation in the term "modification".) |
||||
|
||||
"Source code" for a work means the preferred form of the work for |
||||
making modifications to it. For a library, complete source code means |
||||
all the source code for all modules it contains, plus any associated |
||||
interface definition files, plus the scripts used to control compilation |
||||
and installation of the library. |
||||
|
||||
Activities other than copying, distribution and modification are not |
||||
covered by this License; they are outside its scope. The act of |
||||
running a program using the Library is not restricted, and output from |
||||
such a program is covered only if its contents constitute a work based |
||||
on the Library (independent of the use of the Library in a tool for |
||||
writing it). Whether that is true depends on what the Library does |
||||
and what the program that uses the Library does. |
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's |
||||
complete source code as you receive it, in any medium, provided that |
||||
you conspicuously and appropriately publish on each copy an |
||||
appropriate copyright notice and disclaimer of warranty; keep intact |
||||
all the notices that refer to this License and to the absence of any |
||||
warranty; and distribute a copy of this License along with the |
||||
Library. |
||||
|
||||
You may charge a fee for the physical act of transferring a copy, |
||||
and you may at your option offer warranty protection in exchange for a |
||||
fee. |
||||
|
||||
2. You may modify your copy or copies of the Library or any portion |
||||
of it, thus forming a work based on the Library, and copy and |
||||
distribute such modifications or work under the terms of Section 1 |
||||
above, provided that you also meet all of these conditions: |
||||
|
||||
a) The modified work must itself be a software library. |
||||
|
||||
b) You must cause the files modified to carry prominent notices |
||||
stating that you changed the files and the date of any change. |
||||
|
||||
c) You must cause the whole of the work to be licensed at no |
||||
charge to all third parties under the terms of this License. |
||||
|
||||
d) If a facility in the modified Library refers to a function or a |
||||
table of data to be supplied by an application program that uses |
||||
the facility, other than as an argument passed when the facility |
||||
is invoked, then you must make a good faith effort to ensure that, |
||||
in the event an application does not supply such function or |
||||
table, the facility still operates, and performs whatever part of |
||||
its purpose remains meaningful. |
||||
|
||||
(For example, a function in a library to compute square roots has |
||||
a purpose that is entirely well-defined independent of the |
||||
application. Therefore, Subsection 2d requires that any |
||||
application-supplied function or table used by this function must |
||||
be optional: if the application does not supply it, the square |
||||
root function must still compute square roots.) |
||||
|
||||
These requirements apply to the modified work as a whole. If |
||||
identifiable sections of that work are not derived from the Library, |
||||
and can be reasonably considered independent and separate works in |
||||
themselves, then this License, and its terms, do not apply to those |
||||
sections when you distribute them as separate works. But when you |
||||
distribute the same sections as part of a whole which is a work based |
||||
on the Library, the distribution of the whole must be on the terms of |
||||
this License, whose permissions for other licensees extend to the |
||||
entire whole, and thus to each and every part regardless of who wrote |
||||
it. |
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest |
||||
your rights to work written entirely by you; rather, the intent is to |
||||
exercise the right to control the distribution of derivative or |
||||
collective works based on the Library. |
||||
|
||||
In addition, mere aggregation of another work not based on the Library |
||||
with the Library (or with a work based on the Library) on a volume of |
||||
a storage or distribution medium does not bring the other work under |
||||
the scope of this License. |
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public |
||||
License instead of this License to a given copy of the Library. To do |
||||
this, you must alter all the notices that refer to this License, so |
||||
that they refer to the ordinary GNU General Public License, version 2, |
||||
instead of to this License. (If a newer version than version 2 of the |
||||
ordinary GNU General Public License has appeared, then you can specify |
||||
that version instead if you wish.) Do not make any other change in |
||||
these notices. |
||||
|
||||
Once this change is made in a given copy, it is irreversible for |
||||
that copy, so the ordinary GNU General Public License applies to all |
||||
subsequent copies and derivative works made from that copy. |
||||
|
||||
This option is useful when you wish to copy part of the code of |
||||
the Library into a program that is not a library. |
||||
|
||||
4. You may copy and distribute the Library (or a portion or |
||||
derivative of it, under Section 2) in object code or executable form |
||||
under the terms of Sections 1 and 2 above provided that you accompany |
||||
it with the complete corresponding machine-readable source code, which |
||||
must be distributed under the terms of Sections 1 and 2 above on a |
||||
medium customarily used for software interchange. |
||||
|
||||
If distribution of object code is made by offering access to copy |
||||
from a designated place, then offering equivalent access to copy the |
||||
source code from the same place satisfies the requirement to |
||||
distribute the source code, even though third parties are not |
||||
compelled to copy the source along with the object code. |
||||
|
||||
5. A program that contains no derivative of any portion of the |
||||
Library, but is designed to work with the Library by being compiled or |
||||
linked with it, is called a "work that uses the Library". Such a |
||||
work, in isolation, is not a derivative work of the Library, and |
||||
therefore falls outside the scope of this License. |
||||
|
||||
However, linking a "work that uses the Library" with the Library |
||||
creates an executable that is a derivative of the Library (because it |
||||
contains portions of the Library), rather than a "work that uses the |
||||
library". The executable is therefore covered by this License. |
||||
Section 6 states terms for distribution of such executables. |
||||
|
||||
When a "work that uses the Library" uses material from a header file |
||||
that is part of the Library, the object code for the work may be a |
||||
derivative work of the Library even though the source code is not. |
||||
Whether this is true is especially significant if the work can be |
||||
linked without the Library, or if the work is itself a library. The |
||||
threshold for this to be true is not precisely defined by law. |
||||
|
||||
If such an object file uses only numerical parameters, data |
||||
structure layouts and accessors, and small macros and small inline |
||||
functions (ten lines or less in length), then the use of the object |
||||
file is unrestricted, regardless of whether it is legally a derivative |
||||
work. (Executables containing this object code plus portions of the |
||||
Library will still fall under Section 6.) |
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may |
||||
distribute the object code for the work under the terms of Section 6. |
||||
Any executables containing that work also fall under Section 6, |
||||
whether or not they are linked directly with the Library itself. |
||||
|
||||
6. As an exception to the Sections above, you may also combine or |
||||
link a "work that uses the Library" with the Library to produce a |
||||
work containing portions of the Library, and distribute that work |
||||
under terms of your choice, provided that the terms permit |
||||
modification of the work for the customer's own use and reverse |
||||
engineering for debugging such modifications. |
||||
|
||||
You must give prominent notice with each copy of the work that the |
||||
Library is used in it and that the Library and its use are covered by |
||||
this License. You must supply a copy of this License. If the work |
||||
during execution displays copyright notices, you must include the |
||||
copyright notice for the Library among them, as well as a reference |
||||
directing the user to the copy of this License. Also, you must do one |
||||
of these things: |
||||
|
||||
a) Accompany the work with the complete corresponding |
||||
machine-readable source code for the Library including whatever |
||||
changes were used in the work (which must be distributed under |
||||
Sections 1 and 2 above); and, if the work is an executable linked |
||||
with the Library, with the complete machine-readable "work that |
||||
uses the Library", as object code and/or source code, so that the |
||||
user can modify the Library and then relink to produce a modified |
||||
executable containing the modified Library. (It is understood |
||||
that the user who changes the contents of definitions files in the |
||||
Library will not necessarily be able to recompile the application |
||||
to use the modified definitions.) |
||||
|
||||
b) Use a suitable shared library mechanism for linking with the |
||||
Library. A suitable mechanism is one that (1) uses at run time a |
||||
copy of the library already present on the user's computer system, |
||||
rather than copying library functions into the executable, and (2) |
||||
will operate properly with a modified version of the library, if |
||||
the user installs one, as long as the modified version is |
||||
interface-compatible with the version that the work was made with. |
||||
|
||||
c) Accompany the work with a written offer, valid for at |
||||
least three years, to give the same user the materials |
||||
specified in Subsection 6a, above, for a charge no more |
||||
than the cost of performing this distribution. |
||||
|
||||
d) If distribution of the work is made by offering access to copy |
||||
from a designated place, offer equivalent access to copy the above |
||||
specified materials from the same place. |
||||
|
||||
e) Verify that the user has already received a copy of these |
||||
materials or that you have already sent this user a copy. |
||||
|
||||
For an executable, the required form of the "work that uses the |
||||
Library" must include any data and utility programs needed for |
||||
reproducing the executable from it. However, as a special exception, |
||||
the materials to be distributed need not include anything that is |
||||
normally distributed (in either source or binary form) with the major |
||||
components (compiler, kernel, and so on) of the operating system on |
||||
which the executable runs, unless that component itself accompanies |
||||
the executable. |
||||
|
||||
It may happen that this requirement contradicts the license |
||||
restrictions of other proprietary libraries that do not normally |
||||
accompany the operating system. Such a contradiction means you cannot |
||||
use both them and the Library together in an executable that you |
||||
distribute. |
||||
|
||||
7. You may place library facilities that are a work based on the |
||||
Library side-by-side in a single library together with other library |
||||
facilities not covered by this License, and distribute such a combined |
||||
library, provided that the separate distribution of the work based on |
||||
the Library and of the other library facilities is otherwise |
||||
permitted, and provided that you do these two things: |
||||
|
||||
a) Accompany the combined library with a copy of the same work |
||||
based on the Library, uncombined with any other library |
||||
facilities. This must be distributed under the terms of the |
||||
Sections above. |
||||
|
||||
b) Give prominent notice with the combined library of the fact |
||||
that part of it is a work based on the Library, and explaining |
||||
where to find the accompanying uncombined form of the same work. |
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute |
||||
the Library except as expressly provided under this License. Any |
||||
attempt otherwise to copy, modify, sublicense, link with, or |
||||
distribute the Library is void, and will automatically terminate your |
||||
rights under this License. However, parties who have received copies, |
||||
or rights, from you under this License will not have their licenses |
||||
terminated so long as such parties remain in full compliance. |
||||
|
||||
9. You are not required to accept this License, since you have not |
||||
signed it. However, nothing else grants you permission to modify or |
||||
distribute the Library or its derivative works. These actions are |
||||
prohibited by law if you do not accept this License. Therefore, by |
||||
modifying or distributing the Library (or any work based on the |
||||
Library), you indicate your acceptance of this License to do so, and |
||||
all its terms and conditions for copying, distributing or modifying |
||||
the Library or works based on it. |
||||
|
||||
10. Each time you redistribute the Library (or any work based on the |
||||
Library), the recipient automatically receives a license from the |
||||
original licensor to copy, distribute, link with or modify the Library |
||||
subject to these terms and conditions. You may not impose any further |
||||
restrictions on the recipients' exercise of the rights granted herein. |
||||
You are not responsible for enforcing compliance by third parties with |
||||
this License. |
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent |
||||
infringement or for any other reason (not limited to patent issues), |
||||
conditions are imposed on you (whether by court order, agreement or |
||||
otherwise) that contradict the conditions of this License, they do not |
||||
excuse you from the conditions of this License. If you cannot |
||||
distribute so as to satisfy simultaneously your obligations under this |
||||
License and any other pertinent obligations, then as a consequence you |
||||
may not distribute the Library at all. For example, if a patent |
||||
license would not permit royalty-free redistribution of the Library by |
||||
all those who receive copies directly or indirectly through you, then |
||||
the only way you could satisfy both it and this License would be to |
||||
refrain entirely from distribution of the Library. |
||||
|
||||
If any portion of this section is held invalid or unenforceable under any |
||||
particular circumstance, the balance of the section is intended to apply, |
||||
and the section as a whole is intended to apply in other circumstances. |
||||
|
||||
It is not the purpose of this section to induce you to infringe any |
||||
patents or other property right claims or to contest validity of any |
||||
such claims; this section has the sole purpose of protecting the |
||||
integrity of the free software distribution system which is |
||||
implemented by public license practices. Many people have made |
||||
generous contributions to the wide range of software distributed |
||||
through that system in reliance on consistent application of that |
||||
system; it is up to the author/donor to decide if he or she is willing |
||||
to distribute software through any other system and a licensee cannot |
||||
impose that choice. |
||||
|
||||
This section is intended to make thoroughly clear what is believed to |
||||
be a consequence of the rest of this License. |
||||
|
||||
12. If the distribution and/or use of the Library is restricted in |
||||
certain countries either by patents or by copyrighted interfaces, the |
||||
original copyright holder who places the Library under this License may add |
||||
an explicit geographical distribution limitation excluding those countries, |
||||
so that distribution is permitted only in or among countries not thus |
||||
excluded. In such case, this License incorporates the limitation as if |
||||
written in the body of this License. |
||||
|
||||
13. The Free Software Foundation may publish revised and/or new |
||||
versions of the Lesser General Public License from time to time. |
||||
Such new versions will be similar in spirit to the present version, |
||||
but may differ in detail to address new problems or concerns. |
||||
|
||||
Each version is given a distinguishing version number. If the Library |
||||
specifies a version number of this License which applies to it and |
||||
"any later version", you have the option of following the terms and |
||||
conditions either of that version or of any later version published by |
||||
the Free Software Foundation. If the Library does not specify a |
||||
license version number, you may choose any version ever published by |
||||
the Free Software Foundation. |
||||
|
||||
14. If you wish to incorporate parts of the Library into other free |
||||
programs whose distribution conditions are incompatible with these, |
||||
write to the author to ask for permission. For software which is |
||||
copyrighted by the Free Software Foundation, write to the Free |
||||
Software Foundation; we sometimes make exceptions for this. Our |
||||
decision will be guided by the two goals of preserving the free status |
||||
of all derivatives of our free software and of promoting the sharing |
||||
and reuse of software generally. |
||||
|
||||
NO WARRANTY |
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO |
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. |
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR |
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY |
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE |
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE |
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME |
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. |
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN |
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY |
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU |
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR |
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE |
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING |
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A |
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF |
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
||||
DAMAGES. |
||||
|
||||
END OF TERMS AND CONDITIONS |
||||
|
||||
How to Apply These Terms to Your New Libraries |
||||
|
||||
If you develop a new library, and you want it to be of the greatest |
||||
possible use to the public, we recommend making it free software that |
||||
everyone can redistribute and change. You can do so by permitting |
||||
redistribution under these terms (or, alternatively, under the terms of the |
||||
ordinary General Public License). |
||||
|
||||
To apply these terms, attach the following notices to the library. It is |
||||
safest to attach them to the start of each source file to most effectively |
||||
convey the exclusion of warranty; and each file should have at least the |
||||
"copyright" line and a pointer to where the full notice is found. |
||||
|
||||
<one line to give the library's name and a brief idea of what it does.> |
||||
Copyright (C) <year> <name of author> |
||||
|
||||
This library is free software; you can redistribute it and/or |
||||
modify it under the terms of the GNU Lesser General Public |
||||
License as published by the Free Software Foundation; either |
||||
version 2.1 of the License, or (at your option) any later version. |
||||
|
||||
This library is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public |
||||
License along with this library; if not, write to the Free Software |
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
|
||||
Also add information on how to contact you by electronic and paper mail. |
||||
|
||||
You should also get your employer (if you work as a programmer) or your |
||||
school, if any, to sign a "copyright disclaimer" for the library, if |
||||
necessary. Here is a sample; alter the names: |
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the |
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker. |
||||
|
||||
<signature of Ty Coon>, 1 April 1990 |
||||
Ty Coon, President of Vice |
||||
|
||||
That's all there is to it! |
||||
|
||||
|
@ -0,0 +1,5 @@ |
||||
input.radio {border:1px none #000; background:transparent; vertical-align:middle;} |
||||
.panel_wrapper div.current {height:80px;} |
||||
#width {width:50px; vertical-align:middle;} |
||||
#width2 {width:50px; vertical-align:middle;} |
||||
#size {width:100px;} |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})(); |
@ -0,0 +1,57 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.AdvancedHRPlugin', { |
||||
init : function(ed, url) { |
||||
// Register commands
|
||||
ed.addCommand('mceAdvancedHr', function() { |
||||
ed.windowManager.open({ |
||||
file : url + '/rule.htm', |
||||
width : 250 + parseInt(ed.getLang('advhr.delta_width', 0)), |
||||
height : 160 + parseInt(ed.getLang('advhr.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url |
||||
}); |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('advhr', { |
||||
title : 'advhr.advhr_desc', |
||||
cmd : 'mceAdvancedHr' |
||||
}); |
||||
|
||||
ed.onNodeChange.add(function(ed, cm, n) { |
||||
cm.setActive('advhr', n.nodeName == 'HR'); |
||||
}); |
||||
|
||||
ed.onClick.add(function(ed, e) { |
||||
e = e.target; |
||||
|
||||
if (e.nodeName === 'HR') |
||||
ed.selection.select(e); |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Advanced HR', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('advhr', tinymce.plugins.AdvancedHRPlugin); |
||||
})(); |
@ -0,0 +1,43 @@ |
||||
var AdvHRDialog = { |
||||
init : function(ed) { |
||||
var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w; |
||||
|
||||
w = dom.getAttrib(n, 'width'); |
||||
f.width.value = w ? parseInt(w) : (dom.getStyle('width') || ''); |
||||
f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || ''; |
||||
f.noshade.checked = !!dom.getAttrib(n, 'noshade') || !!dom.getStyle('border-width'); |
||||
selectByValue(f, 'width2', w.indexOf('%') != -1 ? '%' : 'px'); |
||||
}, |
||||
|
||||
update : function() { |
||||
var ed = tinyMCEPopup.editor, h, f = document.forms[0], st = ''; |
||||
|
||||
h = '<hr'; |
||||
|
||||
if (f.size.value) { |
||||
h += ' size="' + f.size.value + '"'; |
||||
st += ' height:' + f.size.value + 'px;'; |
||||
} |
||||
|
||||
if (f.width.value) { |
||||
h += ' width="' + f.width.value + (f.width2.value == '%' ? '%' : '') + '"'; |
||||
st += ' width:' + f.width.value + (f.width2.value == '%' ? '%' : 'px') + ';'; |
||||
} |
||||
|
||||
if (f.noshade.checked) { |
||||
h += ' noshade="noshade"'; |
||||
st += ' border-width: 1px; border-style: solid; border-color: #CCCCCC; color: #ffffff;'; |
||||
} |
||||
|
||||
if (ed.settings.inline_styles) |
||||
h += ' style="' + tinymce.trim(st) + '"'; |
||||
|
||||
h += ' />'; |
||||
|
||||
ed.execCommand("mceInsertContent", false, h); |
||||
tinyMCEPopup.close(); |
||||
} |
||||
}; |
||||
|
||||
tinyMCEPopup.requireLangPack(); |
||||
tinyMCEPopup.onInit.add(AdvHRDialog.init, AdvHRDialog); |
@ -0,0 +1,5 @@ |
||||
tinyMCE.addI18n('en.advhr_dlg',{ |
||||
width:"Width", |
||||
size:"Height", |
||||
noshade:"No shadow" |
||||
}); |
@ -0,0 +1,57 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#advhr.advhr_desc}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="js/rule.js"></script> |
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
||||
<link href="css/advhr.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
<body> |
||||
<form onsubmit="AdvHRDialog.update();return false;" action="#"> |
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advhr.advhr_desc}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="general_panel" class="panel current"> |
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td><label for="width">{#advhr_dlg.width}</label></td> |
||||
<td class="nowrap"> |
||||
<input id="width" name="width" type="text" value="" class="mceFocus" /> |
||||
<select name="width2" id="width2"> |
||||
<option value="">px</option> |
||||
<option value="%">%</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="size">{#advhr_dlg.size}</label></td> |
||||
<td><select id="size" name="size"> |
||||
<option value="">Normal</option> |
||||
<option value="1">1</option> |
||||
<option value="2">2</option> |
||||
<option value="3">3</option> |
||||
<option value="4">4</option> |
||||
<option value="5">5</option> |
||||
</select></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="noshade">{#advhr_dlg.noshade}</label></td> |
||||
<td><input type="checkbox" name="noshade" id="noshade" class="radio" /></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="mceActionPanel"> |
||||
<input type="submit" id="insert" name="insert" value="{#insert}" /> |
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
||||
</div> |
||||
</form> |
||||
</body> |
||||
</html> |
@ -0,0 +1,13 @@ |
||||
#src_list, #over_list, #out_list {width:280px;} |
||||
.mceActionPanel {margin-top:7px;} |
||||
.alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} |
||||
.checkbox {border:0;} |
||||
.panel_wrapper div.current {height:305px;} |
||||
#prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;} |
||||
#align, #classlist {width:150px;} |
||||
#width, #height {vertical-align:middle; width:50px; text-align:center;} |
||||
#vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;} |
||||
#class_list {width:180px;} |
||||
input {width: 280px;} |
||||
#constrain, #onmousemovecheck {width:auto;} |
||||
#id, #dir, #lang, #usemap, #longdesc {width:200px;} |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.AdvancedImagePlugin",{init:function(a,b){a.addCommand("mceAdvImage",function(){if(a.dom.getAttrib(a.selection.getNode(),"class").indexOf("mceItem")!=-1){return}a.windowManager.open({file:b+"/image.htm",width:480+parseInt(a.getLang("advimage.delta_width",0)),height:385+parseInt(a.getLang("advimage.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("image",{title:"advimage.image_desc",cmd:"mceAdvImage"})},getInfo:function(){return{longname:"Advanced image",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advimage",tinymce.plugins.AdvancedImagePlugin)})(); |
@ -0,0 +1,50 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.AdvancedImagePlugin', { |
||||
init : function(ed, url) { |
||||
// Register commands
|
||||
ed.addCommand('mceAdvImage', function() { |
||||
// Internal image object like a flash placeholder
|
||||
if (ed.dom.getAttrib(ed.selection.getNode(), 'class').indexOf('mceItem') != -1) |
||||
return; |
||||
|
||||
ed.windowManager.open({ |
||||
file : url + '/image.htm', |
||||
width : 480 + parseInt(ed.getLang('advimage.delta_width', 0)), |
||||
height : 385 + parseInt(ed.getLang('advimage.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url |
||||
}); |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('image', { |
||||
title : 'advimage.image_desc', |
||||
cmd : 'mceAdvImage' |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Advanced image', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('advimage', tinymce.plugins.AdvancedImagePlugin); |
||||
})(); |
@ -0,0 +1,232 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#advimage_dlg.dialog_title}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
||||
<script type="text/javascript" src="../../utils/validate.js"></script> |
||||
<script type="text/javascript" src="../../utils/editable_selects.js"></script> |
||||
<script type="text/javascript" src="js/image.js"></script> |
||||
<link href="css/advimage.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
<body id="advimage" style="display: none"> |
||||
<form onsubmit="ImageDialog.insert();return false;" action="#"> |
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advimage_dlg.tab_general}</a></span></li> |
||||
<li id="appearance_tab"><span><a href="javascript:mcTabs.displayTab('appearance_tab','appearance_panel');" onmousedown="return false;">{#advimage_dlg.tab_appearance}</a></span></li> |
||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advimage_dlg.tab_advanced}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="general_panel" class="panel current"> |
||||
<fieldset> |
||||
<legend>{#advimage_dlg.general}</legend> |
||||
|
||||
<table class="properties"> |
||||
<tr> |
||||
<td class="column1"><label id="srclabel" for="src">{#advimage_dlg.src}</label></td> |
||||
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input name="src" type="text" id="src" value="" class="mceFocus" onchange="ImageDialog.showPreviewImage(this.value);" /></td> |
||||
<td id="srcbrowsercontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="src_list">{#advimage_dlg.image_list}</label></td> |
||||
<td><select id="src_list" name="src_list" onchange="document.getElementById('src').value=this.options[this.selectedIndex].value;document.getElementById('alt').value=this.options[this.selectedIndex].text;document.getElementById('title').value=this.options[this.selectedIndex].text;ImageDialog.showPreviewImage(this.options[this.selectedIndex].value);"><option value=""></option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label id="altlabel" for="alt">{#advimage_dlg.alt}</label></td> |
||||
<td colspan="2"><input id="alt" name="alt" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label id="titlelabel" for="title">{#advimage_dlg.title}</label></td> |
||||
<td colspan="2"><input id="title" name="title" type="text" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#advimage_dlg.preview}</legend> |
||||
<div id="prev"></div> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="appearance_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#advimage_dlg.tab_appearance}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label id="alignlabel" for="align">{#advimage_dlg.align}</label></td> |
||||
<td><select id="align" name="align" onchange="ImageDialog.updateStyle('align');ImageDialog.changeAppearance();"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="baseline">{#advimage_dlg.align_baseline}</option> |
||||
<option value="top">{#advimage_dlg.align_top}</option> |
||||
<option value="middle">{#advimage_dlg.align_middle}</option> |
||||
<option value="bottom">{#advimage_dlg.align_bottom}</option> |
||||
<option value="text-top">{#advimage_dlg.align_texttop}</option> |
||||
<option value="text-bottom">{#advimage_dlg.align_textbottom}</option> |
||||
<option value="left">{#advimage_dlg.align_left}</option> |
||||
<option value="right">{#advimage_dlg.align_right}</option> |
||||
</select> |
||||
</td> |
||||
<td rowspan="6" valign="top"> |
||||
<div class="alignPreview"> |
||||
<img id="alignSampleImg" src="img/sample.gif" alt="{#advimage_dlg.example_img}" /> |
||||
Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam |
||||
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum |
||||
edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam |
||||
erat volutpat. |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="widthlabel" for="width">{#advimage_dlg.dimensions}</label></td> |
||||
<td class="nowrap"> |
||||
<input name="width" type="text" id="width" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeHeight();" /> x |
||||
<input name="height" type="text" id="height" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeWidth();" /> px |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td> </td> |
||||
<td><table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="constrain" type="checkbox" name="constrain" class="checkbox" /></td> |
||||
<td><label id="constrainlabel" for="constrain">{#advimage_dlg.constrain_proportions}</label></td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="vspacelabel" for="vspace">{#advimage_dlg.vspace}</label></td> |
||||
<td><input name="vspace" type="text" id="vspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" /> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="hspacelabel" for="hspace">{#advimage_dlg.hspace}</label></td> |
||||
<td><input name="hspace" type="text" id="hspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="borderlabel" for="border">{#advimage_dlg.border}</label></td> |
||||
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label for="class_list">{#class_name}</label></td> |
||||
<td colspan="2"><select id="class_list" name="class_list" class="mceEditableSelect"><option value=""></option></select></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="stylelabel" for="style">{#advimage_dlg.style}</label></td> |
||||
<td colspan="2"><input id="style" name="style" type="text" value="" onchange="ImageDialog.changeAppearance();" /></td> |
||||
</tr> |
||||
|
||||
<!-- <tr> |
||||
<td class="column1"><label id="classeslabel" for="classes">{#advimage_dlg.classes}</label></td> |
||||
<td colspan="2"><input id="classes" name="classes" type="text" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td> |
||||
</tr> --> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="advanced_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#advimage_dlg.swap_image}</legend> |
||||
|
||||
<input type="checkbox" id="onmousemovecheck" name="onmousemovecheck" class="checkbox" onclick="ImageDialog.setSwapImage(this.checked);" /> |
||||
<label id="onmousemovechecklabel" for="onmousemovecheck">{#advimage_dlg.alt_image}</label> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0" width="100%"> |
||||
<tr> |
||||
<td class="column1"><label id="onmouseoversrclabel" for="onmouseoversrc">{#advimage_dlg.mouseover}</label></td> |
||||
<td><table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input id="onmouseoversrc" name="onmouseoversrc" type="text" value="" /></td> |
||||
<td id="onmouseoversrccontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="over_list">{#advimage_dlg.image_list}</label></td> |
||||
<td><select id="over_list" name="over_list" onchange="document.getElementById('onmouseoversrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label id="onmouseoutsrclabel" for="onmouseoutsrc">{#advimage_dlg.mouseout}</label></td> |
||||
<td class="column2"><table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input id="onmouseoutsrc" name="onmouseoutsrc" type="text" value="" /></td> |
||||
<td id="onmouseoutsrccontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="out_list">{#advimage_dlg.image_list}</label></td> |
||||
<td><select id="out_list" name="out_list" onchange="document.getElementById('onmouseoutsrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#advimage_dlg.misc}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label id="idlabel" for="id">{#advimage_dlg.id}</label></td> |
||||
<td><input id="id" name="id" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="dirlabel" for="dir">{#advimage_dlg.langdir}</label></td> |
||||
<td> |
||||
<select id="dir" name="dir" onchange="ImageDialog.changeAppearance();"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="ltr">{#advimage_dlg.ltr}</option> |
||||
<option value="rtl">{#advimage_dlg.rtl}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="langlabel" for="lang">{#advimage_dlg.langcode}</label></td> |
||||
<td> |
||||
<input id="lang" name="lang" type="text" value="" /> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="usemaplabel" for="usemap">{#advimage_dlg.map}</label></td> |
||||
<td> |
||||
<input id="usemap" name="usemap" type="text" value="" /> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="longdesclabel" for="longdesc">{#advimage_dlg.long_desc}</label></td> |
||||
<td><table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input id="longdesc" name="longdesc" type="text" value="" /></td> |
||||
<td id="longdesccontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="mceActionPanel"> |
||||
<input type="submit" id="insert" name="insert" value="{#insert}" /> |
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
||||
</div> |
||||
</form> |
||||
</body> |
||||
</html> |
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,443 @@ |
||||
var ImageDialog = { |
||||
preInit : function() { |
||||
var url; |
||||
|
||||
tinyMCEPopup.requireLangPack(); |
||||
|
||||
if (url = tinyMCEPopup.getParam("external_image_list_url")) |
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>'); |
||||
}, |
||||
|
||||
init : function(ed) { |
||||
var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, dom = ed.dom, n = ed.selection.getNode(); |
||||
|
||||
tinyMCEPopup.resizeToInnerSize(); |
||||
this.fillClassList('class_list'); |
||||
this.fillFileList('src_list', 'tinyMCEImageList'); |
||||
this.fillFileList('over_list', 'tinyMCEImageList'); |
||||
this.fillFileList('out_list', 'tinyMCEImageList'); |
||||
TinyMCE_EditableSelects.init(); |
||||
|
||||
if (n.nodeName == 'IMG') { |
||||
nl.src.value = dom.getAttrib(n, 'src'); |
||||
nl.width.value = dom.getAttrib(n, 'width'); |
||||
nl.height.value = dom.getAttrib(n, 'height'); |
||||
nl.alt.value = dom.getAttrib(n, 'alt'); |
||||
nl.title.value = dom.getAttrib(n, 'title'); |
||||
nl.vspace.value = this.getAttrib(n, 'vspace'); |
||||
nl.hspace.value = this.getAttrib(n, 'hspace'); |
||||
nl.border.value = this.getAttrib(n, 'border'); |
||||
selectByValue(f, 'align', this.getAttrib(n, 'align')); |
||||
selectByValue(f, 'class_list', dom.getAttrib(n, 'class'), true, true); |
||||
nl.style.value = dom.getAttrib(n, 'style'); |
||||
nl.id.value = dom.getAttrib(n, 'id'); |
||||
nl.dir.value = dom.getAttrib(n, 'dir'); |
||||
nl.lang.value = dom.getAttrib(n, 'lang'); |
||||
nl.usemap.value = dom.getAttrib(n, 'usemap'); |
||||
nl.longdesc.value = dom.getAttrib(n, 'longdesc'); |
||||
nl.insert.value = ed.getLang('update'); |
||||
|
||||
if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseover'))) |
||||
nl.onmouseoversrc.value = dom.getAttrib(n, 'onmouseover').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1'); |
||||
|
||||
if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseout'))) |
||||
nl.onmouseoutsrc.value = dom.getAttrib(n, 'onmouseout').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1'); |
||||
|
||||
if (ed.settings.inline_styles) { |
||||
// Move attribs to styles
|
||||
if (dom.getAttrib(n, 'align')) |
||||
this.updateStyle('align'); |
||||
|
||||
if (dom.getAttrib(n, 'hspace')) |
||||
this.updateStyle('hspace'); |
||||
|
||||
if (dom.getAttrib(n, 'border')) |
||||
this.updateStyle('border'); |
||||
|
||||
if (dom.getAttrib(n, 'vspace')) |
||||
this.updateStyle('vspace'); |
||||
} |
||||
} |
||||
|
||||
// Setup browse button
|
||||
document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image'); |
||||
if (isVisible('srcbrowser')) |
||||
document.getElementById('src').style.width = '260px'; |
||||
|
||||
// Setup browse button
|
||||
document.getElementById('onmouseoversrccontainer').innerHTML = getBrowserHTML('overbrowser','onmouseoversrc','image','theme_advanced_image'); |
||||
if (isVisible('overbrowser')) |
||||
document.getElementById('onmouseoversrc').style.width = '260px'; |
||||
|
||||
// Setup browse button
|
||||
document.getElementById('onmouseoutsrccontainer').innerHTML = getBrowserHTML('outbrowser','onmouseoutsrc','image','theme_advanced_image'); |
||||
if (isVisible('outbrowser')) |
||||
document.getElementById('onmouseoutsrc').style.width = '260px'; |
||||
|
||||
// If option enabled default contrain proportions to checked
|
||||
if (ed.getParam("advimage_constrain_proportions", true)) |
||||
f.constrain.checked = true; |
||||
|
||||
// Check swap image if valid data
|
||||
if (nl.onmouseoversrc.value || nl.onmouseoutsrc.value) |
||||
this.setSwapImage(true); |
||||
else |
||||
this.setSwapImage(false); |
||||
|
||||
this.changeAppearance(); |
||||
this.showPreviewImage(nl.src.value, 1); |
||||
}, |
||||
|
||||
insert : function(file, title) { |
||||
var ed = tinyMCEPopup.editor, t = this, f = document.forms[0]; |
||||
|
||||
if (f.src.value === '') { |
||||
if (ed.selection.getNode().nodeName == 'IMG') { |
||||
ed.dom.remove(ed.selection.getNode()); |
||||
ed.execCommand('mceRepaint'); |
||||
} |
||||
|
||||
tinyMCEPopup.close(); |
||||
return; |
||||
} |
||||
|
||||
if (tinyMCEPopup.getParam("accessibility_warnings", 1)) { |
||||
if (!f.alt.value) { |
||||
tinyMCEPopup.confirm(tinyMCEPopup.getLang('advimage_dlg.missing_alt'), function(s) { |
||||
if (s) |
||||
t.insertAndClose(); |
||||
}); |
||||
|
||||
return; |
||||
} |
||||
} |
||||
|
||||
t.insertAndClose(); |
||||
}, |
||||
|
||||
insertAndClose : function() { |
||||
var ed = tinyMCEPopup.editor, f = document.forms[0], nl = f.elements, v, args = {}, el; |
||||
|
||||
tinyMCEPopup.restoreSelection(); |
||||
|
||||
// Fixes crash in Safari
|
||||
if (tinymce.isWebKit) |
||||
ed.getWin().focus(); |
||||
|
||||
if (!ed.settings.inline_styles) { |
||||
args = { |
||||
vspace : nl.vspace.value, |
||||
hspace : nl.hspace.value, |
||||
border : nl.border.value, |
||||
align : getSelectValue(f, 'align') |
||||
}; |
||||
} else { |
||||
// Remove deprecated values
|
||||
args = { |
||||
vspace : '', |
||||
hspace : '', |
||||
border : '', |
||||
align : '' |
||||
}; |
||||
} |
||||
|
||||
tinymce.extend(args, { |
||||
src : nl.src.value, |
||||
width : nl.width.value, |
||||
height : nl.height.value, |
||||
alt : nl.alt.value, |
||||
title : nl.title.value, |
||||
'class' : getSelectValue(f, 'class_list'), |
||||
style : nl.style.value, |
||||
id : nl.id.value, |
||||
dir : nl.dir.value, |
||||
lang : nl.lang.value, |
||||
usemap : nl.usemap.value, |
||||
longdesc : nl.longdesc.value |
||||
}); |
||||
|
||||
args.onmouseover = args.onmouseout = ''; |
||||
|
||||
if (f.onmousemovecheck.checked) { |
||||
if (nl.onmouseoversrc.value) |
||||
args.onmouseover = "this.src='" + nl.onmouseoversrc.value + "';"; |
||||
|
||||
if (nl.onmouseoutsrc.value) |
||||
args.onmouseout = "this.src='" + nl.onmouseoutsrc.value + "';"; |
||||
} |
||||
|
||||
el = ed.selection.getNode(); |
||||
|
||||
if (el && el.nodeName == 'IMG') { |
||||
ed.dom.setAttribs(el, args); |
||||
} else { |
||||
ed.execCommand('mceInsertContent', false, '<img id="__mce_tmp" />', {skip_undo : 1}); |
||||
ed.dom.setAttribs('__mce_tmp', args); |
||||
ed.dom.setAttrib('__mce_tmp', 'id', ''); |
||||
ed.undoManager.add(); |
||||
} |
||||
|
||||
tinyMCEPopup.close(); |
||||
}, |
||||
|
||||
getAttrib : function(e, at) { |
||||
var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2; |
||||
|
||||
if (ed.settings.inline_styles) { |
||||
switch (at) { |
||||
case 'align': |
||||
if (v = dom.getStyle(e, 'float')) |
||||
return v; |
||||
|
||||
if (v = dom.getStyle(e, 'vertical-align')) |
||||
return v; |
||||
|
||||
break; |
||||
|
||||
case 'hspace': |
||||
v = dom.getStyle(e, 'margin-left') |
||||
v2 = dom.getStyle(e, 'margin-right'); |
||||
|
||||
if (v && v == v2) |
||||
return parseInt(v.replace(/[^0-9]/g, '')); |
||||
|
||||
break; |
||||
|
||||
case 'vspace': |
||||
v = dom.getStyle(e, 'margin-top') |
||||
v2 = dom.getStyle(e, 'margin-bottom'); |
||||
if (v && v == v2) |
||||
return parseInt(v.replace(/[^0-9]/g, '')); |
||||
|
||||
break; |
||||
|
||||
case 'border': |
||||
v = 0; |
||||
|
||||
tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) { |
||||
sv = dom.getStyle(e, 'border-' + sv + '-width'); |
||||
|
||||
// False or not the same as prev
|
||||
if (!sv || (sv != v && v !== 0)) { |
||||
v = 0; |
||||
return false; |
||||
} |
||||
|
||||
if (sv) |
||||
v = sv; |
||||
}); |
||||
|
||||
if (v) |
||||
return parseInt(v.replace(/[^0-9]/g, '')); |
||||
|
||||
break; |
||||
} |
||||
} |
||||
|
||||
if (v = dom.getAttrib(e, at)) |
||||
return v; |
||||
|
||||
return ''; |
||||
}, |
||||
|
||||
setSwapImage : function(st) { |
||||
var f = document.forms[0]; |
||||
|
||||
f.onmousemovecheck.checked = st; |
||||
setBrowserDisabled('overbrowser', !st); |
||||
setBrowserDisabled('outbrowser', !st); |
||||
|
||||
if (f.over_list) |
||||
f.over_list.disabled = !st; |
||||
|
||||
if (f.out_list) |
||||
f.out_list.disabled = !st; |
||||
|
||||
f.onmouseoversrc.disabled = !st; |
||||
f.onmouseoutsrc.disabled = !st; |
||||
}, |
||||
|
||||
fillClassList : function(id) { |
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; |
||||
|
||||
if (v = tinyMCEPopup.getParam('theme_advanced_styles')) { |
||||
cl = []; |
||||
|
||||
tinymce.each(v.split(';'), function(v) { |
||||
var p = v.split('='); |
||||
|
||||
cl.push({'title' : p[0], 'class' : p[1]}); |
||||
}); |
||||
} else |
||||
cl = tinyMCEPopup.editor.dom.getClasses(); |
||||
|
||||
if (cl.length > 0) { |
||||
lst.options.length = 0; |
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), ''); |
||||
|
||||
tinymce.each(cl, function(o) { |
||||
lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']); |
||||
}); |
||||
} else |
||||
dom.remove(dom.getParent(id, 'tr')); |
||||
}, |
||||
|
||||
fillFileList : function(id, l) { |
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; |
||||
|
||||
l = window[l]; |
||||
lst.options.length = 0; |
||||
|
||||
if (l && l.length > 0) { |
||||
lst.options[lst.options.length] = new Option('', ''); |
||||
|
||||
tinymce.each(l, function(o) { |
||||
lst.options[lst.options.length] = new Option(o[0], o[1]); |
||||
}); |
||||
} else |
||||
dom.remove(dom.getParent(id, 'tr')); |
||||
}, |
||||
|
||||
resetImageData : function() { |
||||
var f = document.forms[0]; |
||||
|
||||
f.elements.width.value = f.elements.height.value = ''; |
||||
}, |
||||
|
||||
updateImageData : function(img, st) { |
||||
var f = document.forms[0]; |
||||
|
||||
if (!st) { |
||||
f.elements.width.value = img.width; |
||||
f.elements.height.value = img.height; |
||||
} |
||||
|
||||
this.preloadImg = img; |
||||
}, |
||||
|
||||
changeAppearance : function() { |
||||
var ed = tinyMCEPopup.editor, f = document.forms[0], img = document.getElementById('alignSampleImg'); |
||||
|
||||
if (img) { |
||||
if (ed.getParam('inline_styles')) { |
||||
ed.dom.setAttrib(img, 'style', f.style.value); |
||||
} else { |
||||
img.align = f.align.value; |
||||
img.border = f.border.value; |
||||
img.hspace = f.hspace.value; |
||||
img.vspace = f.vspace.value; |
||||
} |
||||
} |
||||
}, |
||||
|
||||
changeHeight : function() { |
||||
var f = document.forms[0], tp, t = this; |
||||
|
||||
if (!f.constrain.checked || !t.preloadImg) { |
||||
return; |
||||
} |
||||
|
||||
if (f.width.value == "" || f.height.value == "") |
||||
return; |
||||
|
||||
tp = (parseInt(f.width.value) / parseInt(t.preloadImg.width)) * t.preloadImg.height; |
||||
f.height.value = tp.toFixed(0); |
||||
}, |
||||
|
||||
changeWidth : function() { |
||||
var f = document.forms[0], tp, t = this; |
||||
|
||||
if (!f.constrain.checked || !t.preloadImg) { |
||||
return; |
||||
} |
||||
|
||||
if (f.width.value == "" || f.height.value == "") |
||||
return; |
||||
|
||||
tp = (parseInt(f.height.value) / parseInt(t.preloadImg.height)) * t.preloadImg.width; |
||||
f.width.value = tp.toFixed(0); |
||||
}, |
||||
|
||||
updateStyle : function(ty) { |
||||
var dom = tinyMCEPopup.dom, st, v, f = document.forms[0], img = dom.create('img', {style : dom.get('style').value}); |
||||
|
||||
if (tinyMCEPopup.editor.settings.inline_styles) { |
||||
// Handle align
|
||||
if (ty == 'align') { |
||||
dom.setStyle(img, 'float', ''); |
||||
dom.setStyle(img, 'vertical-align', ''); |
||||
|
||||
v = getSelectValue(f, 'align'); |
||||
if (v) { |
||||
if (v == 'left' || v == 'right') |
||||
dom.setStyle(img, 'float', v); |
||||
else |
||||
img.style.verticalAlign = v; |
||||
} |
||||
} |
||||
|
||||
// Handle border
|
||||
if (ty == 'border') { |
||||
dom.setStyle(img, 'border', ''); |
||||
|
||||
v = f.border.value; |
||||
if (v || v == '0') { |
||||
if (v == '0') |
||||
img.style.border = '0'; |
||||
else |
||||
img.style.border = v + 'px solid black'; |
||||
} |
||||
} |
||||
|
||||
// Handle hspace
|
||||
if (ty == 'hspace') { |
||||
dom.setStyle(img, 'marginLeft', ''); |
||||
dom.setStyle(img, 'marginRight', ''); |
||||
|
||||
v = f.hspace.value; |
||||
if (v) { |
||||
img.style.marginLeft = v + 'px'; |
||||
img.style.marginRight = v + 'px'; |
||||
} |
||||
} |
||||
|
||||
// Handle vspace
|
||||
if (ty == 'vspace') { |
||||
dom.setStyle(img, 'marginTop', ''); |
||||
dom.setStyle(img, 'marginBottom', ''); |
||||
|
||||
v = f.vspace.value; |
||||
if (v) { |
||||
img.style.marginTop = v + 'px'; |
||||
img.style.marginBottom = v + 'px'; |
||||
} |
||||
} |
||||
|
||||
// Merge
|
||||
dom.get('style').value = dom.serializeStyle(dom.parseStyle(img.style.cssText), 'img'); |
||||
} |
||||
}, |
||||
|
||||
changeMouseMove : function() { |
||||
}, |
||||
|
||||
showPreviewImage : function(u, st) { |
||||
if (!u) { |
||||
tinyMCEPopup.dom.setHTML('prev', ''); |
||||
return; |
||||
} |
||||
|
||||
if (!st && tinyMCEPopup.getParam("advimage_update_dimensions_onchange", true)) |
||||
this.resetImageData(); |
||||
|
||||
u = tinyMCEPopup.editor.documentBaseURI.toAbsolute(u); |
||||
|
||||
if (!st) |
||||
tinyMCEPopup.dom.setHTML('prev', '<img id="previewImg" src="' + u + '" border="0" onload="ImageDialog.updateImageData(this);" onerror="ImageDialog.resetImageData();" />'); |
||||
else |
||||
tinyMCEPopup.dom.setHTML('prev', '<img id="previewImg" src="' + u + '" border="0" onload="ImageDialog.updateImageData(this, 1);" />'); |
||||
} |
||||
}; |
||||
|
||||
ImageDialog.preInit(); |
||||
tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog); |
@ -0,0 +1,43 @@ |
||||
tinyMCE.addI18n('en.advimage_dlg',{ |
||||
tab_general:"General", |
||||
tab_appearance:"Appearance", |
||||
tab_advanced:"Advanced", |
||||
general:"General", |
||||
title:"Title", |
||||
preview:"Preview", |
||||
constrain_proportions:"Constrain proportions", |
||||
langdir:"Language direction", |
||||
langcode:"Language code", |
||||
long_desc:"Long description link", |
||||
style:"Style", |
||||
classes:"Classes", |
||||
ltr:"Left to right", |
||||
rtl:"Right to left", |
||||
id:"Id", |
||||
map:"Image map", |
||||
swap_image:"Swap image", |
||||
alt_image:"Alternative image", |
||||
mouseover:"for mouse over", |
||||
mouseout:"for mouse out", |
||||
misc:"Miscellaneous", |
||||
example_img:"Appearance preview image", |
||||
missing_alt:"Are you sure you want to continue without including an Image Description? Without it the image may not be accessible to some users with disabilities, or to those using a text browser, or browsing the Web with images turned off.", |
||||
dialog_title:"Insert/edit image", |
||||
src:"Image URL", |
||||
alt:"Image description", |
||||
list:"Image list", |
||||
border:"Border", |
||||
dimensions:"Dimensions", |
||||
vspace:"Vertical space", |
||||
hspace:"Horizontal space", |
||||
align:"Alignment", |
||||
align_baseline:"Baseline", |
||||
align_top:"Top", |
||||
align_middle:"Middle", |
||||
align_bottom:"Bottom", |
||||
align_texttop:"Text top", |
||||
align_textbottom:"Text bottom", |
||||
align_left:"Left", |
||||
align_right:"Right", |
||||
image_list:"Image list" |
||||
}); |
@ -0,0 +1,8 @@ |
||||
.mceLinkList, .mceAnchorList, #targetlist {width:280px;} |
||||
.mceActionPanel {margin-top:7px;} |
||||
.panel_wrapper div.current {height:320px;} |
||||
#classlist, #title, #href {width:280px;} |
||||
#popupurl, #popupname {width:200px;} |
||||
#popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} |
||||
#id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} |
||||
#events_panel input {width:200px;} |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.AdvancedLinkPlugin",{init:function(a,b){this.editor=a;a.addCommand("mceAdvLink",function(){var c=a.selection;if(c.isCollapsed()&&!a.dom.getParent(c.getNode(),"A")){return}a.windowManager.open({file:b+"/link.htm",width:480+parseInt(a.getLang("advlink.delta_width",0)),height:400+parseInt(a.getLang("advlink.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("link",{title:"advlink.link_desc",cmd:"mceAdvLink"});a.addShortcut("ctrl+k","advlink.advlink_desc","mceAdvLink");a.onNodeChange.add(function(d,c,f,e){c.setDisabled("link",e&&f.nodeName!="A");c.setActive("link",f.nodeName=="A"&&!f.name)})},getInfo:function(){return{longname:"Advanced link",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlink",tinymce.plugins.AdvancedLinkPlugin)})(); |
@ -0,0 +1,61 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.AdvancedLinkPlugin', { |
||||
init : function(ed, url) { |
||||
this.editor = ed; |
||||
|
||||
// Register commands
|
||||
ed.addCommand('mceAdvLink', function() { |
||||
var se = ed.selection; |
||||
|
||||
// No selection and not in link
|
||||
if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A')) |
||||
return; |
||||
|
||||
ed.windowManager.open({ |
||||
file : url + '/link.htm', |
||||
width : 480 + parseInt(ed.getLang('advlink.delta_width', 0)), |
||||
height : 400 + parseInt(ed.getLang('advlink.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url |
||||
}); |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('link', { |
||||
title : 'advlink.link_desc', |
||||
cmd : 'mceAdvLink' |
||||
}); |
||||
|
||||
ed.addShortcut('ctrl+k', 'advlink.advlink_desc', 'mceAdvLink'); |
||||
|
||||
ed.onNodeChange.add(function(ed, cm, n, co) { |
||||
cm.setDisabled('link', co && n.nodeName != 'A'); |
||||
cm.setActive('link', n.nodeName == 'A' && !n.name); |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Advanced link', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('advlink', tinymce.plugins.AdvancedLinkPlugin); |
||||
})(); |
@ -0,0 +1,528 @@ |
||||
/* Functions for the advlink plugin popup */ |
||||
|
||||
tinyMCEPopup.requireLangPack(); |
||||
|
||||
var templates = { |
||||
"window.open" : "window.open('${url}','${target}','${options}')" |
||||
}; |
||||
|
||||
function preinit() { |
||||
var url; |
||||
|
||||
if (url = tinyMCEPopup.getParam("external_link_list_url")) |
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>'); |
||||
} |
||||
|
||||
function changeClass() { |
||||
var f = document.forms[0]; |
||||
|
||||
f.classes.value = getSelectValue(f, 'classlist'); |
||||
} |
||||
|
||||
function init() { |
||||
tinyMCEPopup.resizeToInnerSize(); |
||||
|
||||
var formObj = document.forms[0]; |
||||
var inst = tinyMCEPopup.editor; |
||||
var elm = inst.selection.getNode(); |
||||
var action = "insert"; |
||||
var html; |
||||
|
||||
document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','advlink'); |
||||
document.getElementById('popupurlbrowsercontainer').innerHTML = getBrowserHTML('popupurlbrowser','popupurl','file','advlink'); |
||||
document.getElementById('linklisthrefcontainer').innerHTML = getLinkListHTML('linklisthref','href'); |
||||
document.getElementById('anchorlistcontainer').innerHTML = getAnchorListHTML('anchorlist','href'); |
||||
document.getElementById('targetlistcontainer').innerHTML = getTargetListHTML('targetlist','target'); |
||||
|
||||
// Link list
|
||||
html = getLinkListHTML('linklisthref','href'); |
||||
if (html == "") |
||||
document.getElementById("linklisthrefrow").style.display = 'none'; |
||||
else |
||||
document.getElementById("linklisthrefcontainer").innerHTML = html; |
||||
|
||||
// Resize some elements
|
||||
if (isVisible('hrefbrowser')) |
||||
document.getElementById('href').style.width = '260px'; |
||||
|
||||
if (isVisible('popupurlbrowser')) |
||||
document.getElementById('popupurl').style.width = '180px'; |
||||
|
||||
elm = inst.dom.getParent(elm, "A"); |
||||
if (elm != null && elm.nodeName == "A") |
||||
action = "update"; |
||||
|
||||
formObj.insert.value = tinyMCEPopup.getLang(action, 'Insert', true);
|
||||
|
||||
setPopupControlsDisabled(true); |
||||
|
||||
if (action == "update") { |
||||
var href = inst.dom.getAttrib(elm, 'href'); |
||||
var onclick = inst.dom.getAttrib(elm, 'onclick'); |
||||
|
||||
// Setup form data
|
||||
setFormValue('href', href); |
||||
setFormValue('title', inst.dom.getAttrib(elm, 'title')); |
||||
setFormValue('id', inst.dom.getAttrib(elm, 'id')); |
||||
setFormValue('style', inst.dom.getAttrib(elm, "style")); |
||||
setFormValue('rel', inst.dom.getAttrib(elm, 'rel')); |
||||
setFormValue('rev', inst.dom.getAttrib(elm, 'rev')); |
||||
setFormValue('charset', inst.dom.getAttrib(elm, 'charset')); |
||||
setFormValue('hreflang', inst.dom.getAttrib(elm, 'hreflang')); |
||||
setFormValue('dir', inst.dom.getAttrib(elm, 'dir')); |
||||
setFormValue('lang', inst.dom.getAttrib(elm, 'lang')); |
||||
setFormValue('tabindex', inst.dom.getAttrib(elm, 'tabindex', typeof(elm.tabindex) != "undefined" ? elm.tabindex : "")); |
||||
setFormValue('accesskey', inst.dom.getAttrib(elm, 'accesskey', typeof(elm.accesskey) != "undefined" ? elm.accesskey : "")); |
||||
setFormValue('type', inst.dom.getAttrib(elm, 'type')); |
||||
setFormValue('onfocus', inst.dom.getAttrib(elm, 'onfocus')); |
||||
setFormValue('onblur', inst.dom.getAttrib(elm, 'onblur')); |
||||
setFormValue('onclick', onclick); |
||||
setFormValue('ondblclick', inst.dom.getAttrib(elm, 'ondblclick')); |
||||
setFormValue('onmousedown', inst.dom.getAttrib(elm, 'onmousedown')); |
||||
setFormValue('onmouseup', inst.dom.getAttrib(elm, 'onmouseup')); |
||||
setFormValue('onmouseover', inst.dom.getAttrib(elm, 'onmouseover')); |
||||
setFormValue('onmousemove', inst.dom.getAttrib(elm, 'onmousemove')); |
||||
setFormValue('onmouseout', inst.dom.getAttrib(elm, 'onmouseout')); |
||||
setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress')); |
||||
setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown')); |
||||
setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup')); |
||||
setFormValue('target', inst.dom.getAttrib(elm, 'target')); |
||||
setFormValue('classes', inst.dom.getAttrib(elm, 'class')); |
||||
|
||||
// Parse onclick data
|
||||
if (onclick != null && onclick.indexOf('window.open') != -1) |
||||
parseWindowOpen(onclick); |
||||
else |
||||
parseFunction(onclick); |
||||
|
||||
// Select by the values
|
||||
selectByValue(formObj, 'dir', inst.dom.getAttrib(elm, 'dir')); |
||||
selectByValue(formObj, 'rel', inst.dom.getAttrib(elm, 'rel')); |
||||
selectByValue(formObj, 'rev', inst.dom.getAttrib(elm, 'rev')); |
||||
selectByValue(formObj, 'linklisthref', href); |
||||
|
||||
if (href.charAt(0) == '#') |
||||
selectByValue(formObj, 'anchorlist', href); |
||||
|
||||
addClassesToList('classlist', 'advlink_styles'); |
||||
|
||||
selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true); |
||||
selectByValue(formObj, 'targetlist', inst.dom.getAttrib(elm, 'target'), true); |
||||
} else |
||||
addClassesToList('classlist', 'advlink_styles'); |
||||
} |
||||
|
||||
function checkPrefix(n) { |
||||
if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_email'))) |
||||
n.value = 'mailto:' + n.value; |
||||
|
||||
if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_external'))) |
||||
n.value = 'http://' + n.value; |
||||
} |
||||
|
||||
function setFormValue(name, value) { |
||||
document.forms[0].elements[name].value = value; |
||||
} |
||||
|
||||
function parseWindowOpen(onclick) { |
||||
var formObj = document.forms[0]; |
||||
|
||||
// Preprocess center code
|
||||
if (onclick.indexOf('return false;') != -1) { |
||||
formObj.popupreturn.checked = true; |
||||
onclick = onclick.replace('return false;', ''); |
||||
} else |
||||
formObj.popupreturn.checked = false; |
||||
|
||||
var onClickData = parseLink(onclick); |
||||
|
||||
if (onClickData != null) { |
||||
formObj.ispopup.checked = true; |
||||
setPopupControlsDisabled(false); |
||||
|
||||
var onClickWindowOptions = parseOptions(onClickData['options']); |
||||
var url = onClickData['url']; |
||||
|
||||
formObj.popupname.value = onClickData['target']; |
||||
formObj.popupurl.value = url; |
||||
formObj.popupwidth.value = getOption(onClickWindowOptions, 'width'); |
||||
formObj.popupheight.value = getOption(onClickWindowOptions, 'height'); |
||||
|
||||
formObj.popupleft.value = getOption(onClickWindowOptions, 'left'); |
||||
formObj.popuptop.value = getOption(onClickWindowOptions, 'top'); |
||||
|
||||
if (formObj.popupleft.value.indexOf('screen') != -1) |
||||
formObj.popupleft.value = "c"; |
||||
|
||||
if (formObj.popuptop.value.indexOf('screen') != -1) |
||||
formObj.popuptop.value = "c"; |
||||
|
||||
formObj.popuplocation.checked = getOption(onClickWindowOptions, 'location') == "yes"; |
||||
formObj.popupscrollbars.checked = getOption(onClickWindowOptions, 'scrollbars') == "yes"; |
||||
formObj.popupmenubar.checked = getOption(onClickWindowOptions, 'menubar') == "yes"; |
||||
formObj.popupresizable.checked = getOption(onClickWindowOptions, 'resizable') == "yes"; |
||||
formObj.popuptoolbar.checked = getOption(onClickWindowOptions, 'toolbar') == "yes"; |
||||
formObj.popupstatus.checked = getOption(onClickWindowOptions, 'status') == "yes"; |
||||
formObj.popupdependent.checked = getOption(onClickWindowOptions, 'dependent') == "yes"; |
||||
|
||||
buildOnClick(); |
||||
} |
||||
} |
||||
|
||||
function parseFunction(onclick) { |
||||
var formObj = document.forms[0]; |
||||
var onClickData = parseLink(onclick); |
||||
|
||||
// TODO: Add stuff here
|
||||
} |
||||
|
||||
function getOption(opts, name) { |
||||
return typeof(opts[name]) == "undefined" ? "" : opts[name]; |
||||
} |
||||
|
||||
function setPopupControlsDisabled(state) { |
||||
var formObj = document.forms[0]; |
||||
|
||||
formObj.popupname.disabled = state; |
||||
formObj.popupurl.disabled = state; |
||||
formObj.popupwidth.disabled = state; |
||||
formObj.popupheight.disabled = state; |
||||
formObj.popupleft.disabled = state; |
||||
formObj.popuptop.disabled = state; |
||||
formObj.popuplocation.disabled = state; |
||||
formObj.popupscrollbars.disabled = state; |
||||
formObj.popupmenubar.disabled = state; |
||||
formObj.popupresizable.disabled = state; |
||||
formObj.popuptoolbar.disabled = state; |
||||
formObj.popupstatus.disabled = state; |
||||
formObj.popupreturn.disabled = state; |
||||
formObj.popupdependent.disabled = state; |
||||
|
||||
setBrowserDisabled('popupurlbrowser', state); |
||||
} |
||||
|
||||
function parseLink(link) { |
||||
link = link.replace(new RegExp(''', 'g'), "'"); |
||||
|
||||
var fnName = link.replace(new RegExp("\\s*([A-Za-z0-9\.]*)\\s*\\(.*", "gi"), "$1"); |
||||
|
||||
// Is function name a template function
|
||||
var template = templates[fnName]; |
||||
if (template) { |
||||
// Build regexp
|
||||
var variableNames = template.match(new RegExp("'?\\$\\{[A-Za-z0-9\.]*\\}'?", "gi")); |
||||
var regExp = "\\s*[A-Za-z0-9\.]*\\s*\\("; |
||||
var replaceStr = ""; |
||||
for (var i=0; i<variableNames.length; i++) { |
||||
// Is string value
|
||||
if (variableNames[i].indexOf("'${") != -1) |
||||
regExp += "'(.*)'"; |
||||
else // Number value
|
||||
regExp += "([0-9]*)"; |
||||
|
||||
replaceStr += "$" + (i+1); |
||||
|
||||
// Cleanup variable name
|
||||
variableNames[i] = variableNames[i].replace(new RegExp("[^A-Za-z0-9]", "gi"), ""); |
||||
|
||||
if (i != variableNames.length-1) { |
||||
regExp += "\\s*,\\s*"; |
||||
replaceStr += "<delim>"; |
||||
} else |
||||
regExp += ".*"; |
||||
} |
||||
|
||||
regExp += "\\);?"; |
||||
|
||||
// Build variable array
|
||||
var variables = []; |
||||
variables["_function"] = fnName; |
||||
var variableValues = link.replace(new RegExp(regExp, "gi"), replaceStr).split('<delim>'); |
||||
for (var i=0; i<variableNames.length; i++) |
||||
variables[variableNames[i]] = variableValues[i]; |
||||
|
||||
return variables; |
||||
} |
||||
|
||||
return null; |
||||
} |
||||
|
||||
function parseOptions(opts) { |
||||
if (opts == null || opts == "") |
||||
return []; |
||||
|
||||
// Cleanup the options
|
||||
opts = opts.toLowerCase(); |
||||
opts = opts.replace(/;/g, ","); |
||||
opts = opts.replace(/[^0-9a-z=,]/g, ""); |
||||
|
||||
var optionChunks = opts.split(','); |
||||
var options = []; |
||||
|
||||
for (var i=0; i<optionChunks.length; i++) { |
||||
var parts = optionChunks[i].split('='); |
||||
|
||||
if (parts.length == 2) |
||||
options[parts[0]] = parts[1]; |
||||
} |
||||
|
||||
return options; |
||||
} |
||||
|
||||
function buildOnClick() { |
||||
var formObj = document.forms[0]; |
||||
|
||||
if (!formObj.ispopup.checked) { |
||||
formObj.onclick.value = ""; |
||||
return; |
||||
} |
||||
|
||||
var onclick = "window.open('"; |
||||
var url = formObj.popupurl.value; |
||||
|
||||
onclick += url + "','"; |
||||
onclick += formObj.popupname.value + "','"; |
||||
|
||||
if (formObj.popuplocation.checked) |
||||
onclick += "location=yes,"; |
||||
|
||||
if (formObj.popupscrollbars.checked) |
||||
onclick += "scrollbars=yes,"; |
||||
|
||||
if (formObj.popupmenubar.checked) |
||||
onclick += "menubar=yes,"; |
||||
|
||||
if (formObj.popupresizable.checked) |
||||
onclick += "resizable=yes,"; |
||||
|
||||
if (formObj.popuptoolbar.checked) |
||||
onclick += "toolbar=yes,"; |
||||
|
||||
if (formObj.popupstatus.checked) |
||||
onclick += "status=yes,"; |
||||
|
||||
if (formObj.popupdependent.checked) |
||||
onclick += "dependent=yes,"; |
||||
|
||||
if (formObj.popupwidth.value != "") |
||||
onclick += "width=" + formObj.popupwidth.value + ","; |
||||
|
||||
if (formObj.popupheight.value != "") |
||||
onclick += "height=" + formObj.popupheight.value + ","; |
||||
|
||||
if (formObj.popupleft.value != "") { |
||||
if (formObj.popupleft.value != "c") |
||||
onclick += "left=" + formObj.popupleft.value + ","; |
||||
else |
||||
onclick += "left='+(screen.availWidth/2-" + (formObj.popupwidth.value/2) + ")+',"; |
||||
} |
||||
|
||||
if (formObj.popuptop.value != "") { |
||||
if (formObj.popuptop.value != "c") |
||||
onclick += "top=" + formObj.popuptop.value + ","; |
||||
else |
||||
onclick += "top='+(screen.availHeight/2-" + (formObj.popupheight.value/2) + ")+',"; |
||||
} |
||||
|
||||
if (onclick.charAt(onclick.length-1) == ',') |
||||
onclick = onclick.substring(0, onclick.length-1); |
||||
|
||||
onclick += "');"; |
||||
|
||||
if (formObj.popupreturn.checked) |
||||
onclick += "return false;"; |
||||
|
||||
// tinyMCE.debug(onclick);
|
||||
|
||||
formObj.onclick.value = onclick; |
||||
|
||||
if (formObj.href.value == "") |
||||
formObj.href.value = url; |
||||
} |
||||
|
||||
function setAttrib(elm, attrib, value) { |
||||
var formObj = document.forms[0]; |
||||
var valueElm = formObj.elements[attrib.toLowerCase()]; |
||||
var dom = tinyMCEPopup.editor.dom; |
||||
|
||||
if (typeof(value) == "undefined" || value == null) { |
||||
value = ""; |
||||
|
||||
if (valueElm) |
||||
value = valueElm.value; |
||||
} |
||||
|
||||
// Clean up the style
|
||||
if (attrib == 'style') |
||||
value = dom.serializeStyle(dom.parseStyle(value), 'a'); |
||||
|
||||
dom.setAttrib(elm, attrib, value); |
||||
} |
||||
|
||||
function getAnchorListHTML(id, target) { |
||||
var inst = tinyMCEPopup.editor; |
||||
var nodes = inst.dom.select('a.mceItemAnchor,img.mceItemAnchor'), name, i; |
||||
var html = ""; |
||||
|
||||
html += '<select id="' + id + '" name="' + id + '" class="mceAnchorList" o2nfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target + '.value='; |
||||
html += 'this.options[this.selectedIndex].value;">'; |
||||
html += '<option value="">---</option>'; |
||||
|
||||
for (i=0; i<nodes.length; i++) { |
||||
if ((name = inst.dom.getAttrib(nodes[i], "name")) != "") |
||||
html += '<option value="#' + name + '">' + name + '</option>'; |
||||
} |
||||
|
||||
html += '</select>'; |
||||
|
||||
return html; |
||||
} |
||||
|
||||
function insertAction() { |
||||
var inst = tinyMCEPopup.editor; |
||||
var elm, elementArray, i; |
||||
|
||||
elm = inst.selection.getNode(); |
||||
checkPrefix(document.forms[0].href); |
||||
|
||||
elm = inst.dom.getParent(elm, "A"); |
||||
|
||||
// Remove element if there is no href
|
||||
if (!document.forms[0].href.value) { |
||||
tinyMCEPopup.execCommand("mceBeginUndoLevel"); |
||||
i = inst.selection.getBookmark(); |
||||
inst.dom.remove(elm, 1); |
||||
inst.selection.moveToBookmark(i); |
||||
tinyMCEPopup.execCommand("mceEndUndoLevel"); |
||||
tinyMCEPopup.close(); |
||||
return; |
||||
} |
||||
|
||||
tinyMCEPopup.execCommand("mceBeginUndoLevel"); |
||||
|
||||
// Create new anchor elements
|
||||
if (elm == null) { |
||||
inst.getDoc().execCommand("unlink", false, null); |
||||
tinyMCEPopup.execCommand("CreateLink", false, "#mce_temp_url#", {skip_undo : 1}); |
||||
|
||||
elementArray = tinymce.grep(inst.dom.select("a"), function(n) {return inst.dom.getAttrib(n, 'href') == '#mce_temp_url#';}); |
||||
for (i=0; i<elementArray.length; i++) |
||||
setAllAttribs(elm = elementArray[i]); |
||||
} else |
||||
setAllAttribs(elm); |
||||
|
||||
// Don't move caret if selection was image
|
||||
if (elm.childNodes.length != 1 || elm.firstChild.nodeName != 'IMG') { |
||||
inst.focus(); |
||||
inst.selection.select(elm); |
||||
inst.selection.collapse(0); |
||||
tinyMCEPopup.storeSelection(); |
||||
} |
||||
|
||||
tinyMCEPopup.execCommand("mceEndUndoLevel"); |
||||
tinyMCEPopup.close(); |
||||
} |
||||
|
||||
function setAllAttribs(elm) { |
||||
var formObj = document.forms[0]; |
||||
var href = formObj.href.value; |
||||
var target = getSelectValue(formObj, 'targetlist'); |
||||
|
||||
setAttrib(elm, 'href', href); |
||||
setAttrib(elm, 'title'); |
||||
setAttrib(elm, 'target', target == '_self' ? '' : target); |
||||
setAttrib(elm, 'id'); |
||||
setAttrib(elm, 'style'); |
||||
setAttrib(elm, 'class', getSelectValue(formObj, 'classlist')); |
||||
setAttrib(elm, 'rel'); |
||||
setAttrib(elm, 'rev'); |
||||
setAttrib(elm, 'charset'); |
||||
setAttrib(elm, 'hreflang'); |
||||
setAttrib(elm, 'dir'); |
||||
setAttrib(elm, 'lang'); |
||||
setAttrib(elm, 'tabindex'); |
||||
setAttrib(elm, 'accesskey'); |
||||
setAttrib(elm, 'type'); |
||||
setAttrib(elm, 'onfocus'); |
||||
setAttrib(elm, 'onblur'); |
||||
setAttrib(elm, 'onclick'); |
||||
setAttrib(elm, 'ondblclick'); |
||||
setAttrib(elm, 'onmousedown'); |
||||
setAttrib(elm, 'onmouseup'); |
||||
setAttrib(elm, 'onmouseover'); |
||||
setAttrib(elm, 'onmousemove'); |
||||
setAttrib(elm, 'onmouseout'); |
||||
setAttrib(elm, 'onkeypress'); |
||||
setAttrib(elm, 'onkeydown'); |
||||
setAttrib(elm, 'onkeyup'); |
||||
|
||||
// Refresh in old MSIE
|
||||
if (tinyMCE.isMSIE5) |
||||
elm.outerHTML = elm.outerHTML; |
||||
} |
||||
|
||||
function getSelectValue(form_obj, field_name) { |
||||
var elm = form_obj.elements[field_name]; |
||||
|
||||
if (!elm || elm.options == null || elm.selectedIndex == -1) |
||||
return ""; |
||||
|
||||
return elm.options[elm.selectedIndex].value; |
||||
} |
||||
|
||||
function getLinkListHTML(elm_id, target_form_element, onchange_func) { |
||||
if (typeof(tinyMCELinkList) == "undefined" || tinyMCELinkList.length == 0) |
||||
return ""; |
||||
|
||||
var html = ""; |
||||
|
||||
html += '<select id="' + elm_id + '" name="' + elm_id + '"'; |
||||
html += ' class="mceLinkList" onfoc2us="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value='; |
||||
html += 'this.options[this.selectedIndex].value;'; |
||||
|
||||
if (typeof(onchange_func) != "undefined") |
||||
html += onchange_func + '(\'' + target_form_element + '\',this.options[this.selectedIndex].text,this.options[this.selectedIndex].value);'; |
||||
|
||||
html += '"><option value="">---</option>'; |
||||
|
||||
for (var i=0; i<tinyMCELinkList.length; i++) |
||||
html += '<option value="' + tinyMCELinkList[i][1] + '">' + tinyMCELinkList[i][0] + '</option>'; |
||||
|
||||
html += '</select>'; |
||||
|
||||
return html; |
||||
|
||||
// tinyMCE.debug('-- image list start --', html, '-- image list end --');
|
||||
} |
||||
|
||||
function getTargetListHTML(elm_id, target_form_element) { |
||||
var targets = tinyMCEPopup.getParam('theme_advanced_link_targets', '').split(';'); |
||||
var html = ''; |
||||
|
||||
html += '<select id="' + elm_id + '" name="' + elm_id + '" onf2ocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value='; |
||||
html += 'this.options[this.selectedIndex].value;">'; |
||||
html += '<option value="_self">' + tinyMCEPopup.getLang('advlink_dlg.target_same') + '</option>'; |
||||
html += '<option value="_blank">' + tinyMCEPopup.getLang('advlink_dlg.target_blank') + ' (_blank)</option>'; |
||||
html += '<option value="_parent">' + tinyMCEPopup.getLang('advlink_dlg.target_parent') + ' (_parent)</option>'; |
||||
html += '<option value="_top">' + tinyMCEPopup.getLang('advlink_dlg.target_top') + ' (_top)</option>'; |
||||
|
||||
for (var i=0; i<targets.length; i++) { |
||||
var key, value; |
||||
|
||||
if (targets[i] == "") |
||||
continue; |
||||
|
||||
key = targets[i].split('=')[0]; |
||||
value = targets[i].split('=')[1]; |
||||
|
||||
html += '<option value="' + key + '">' + value + ' (' + key + ')</option>'; |
||||
} |
||||
|
||||
html += '</select>'; |
||||
|
||||
return html; |
||||
} |
||||
|
||||
// While loading
|
||||
preinit(); |
||||
tinyMCEPopup.onInit.add(init); |
@ -0,0 +1,52 @@ |
||||
tinyMCE.addI18n('en.advlink_dlg',{ |
||||
title:"Insert/edit link", |
||||
url:"Link URL", |
||||
target:"Target", |
||||
titlefield:"Title", |
||||
is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?", |
||||
is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?", |
||||
list:"Link list", |
||||
general_tab:"General", |
||||
popup_tab:"Popup", |
||||
events_tab:"Events", |
||||
advanced_tab:"Advanced", |
||||
general_props:"General properties", |
||||
popup_props:"Popup properties", |
||||
event_props:"Events", |
||||
advanced_props:"Advanced properties", |
||||
popup_opts:"Options", |
||||
anchor_names:"Anchors", |
||||
target_same:"Open in this window / frame", |
||||
target_parent:"Open in parent window / frame", |
||||
target_top:"Open in top frame (replaces all frames)", |
||||
target_blank:"Open in new window", |
||||
popup:"Javascript popup", |
||||
popup_url:"Popup URL", |
||||
popup_name:"Window name", |
||||
popup_return:"Insert 'return false'", |
||||
popup_scrollbars:"Show scrollbars", |
||||
popup_statusbar:"Show status bar", |
||||
popup_toolbar:"Show toolbars", |
||||
popup_menubar:"Show menu bar", |
||||
popup_location:"Show location bar", |
||||
popup_resizable:"Make window resizable", |
||||
popup_dependent:"Dependent (Mozilla/Firefox only)", |
||||
popup_size:"Size", |
||||
popup_position:"Position (X/Y)", |
||||
id:"Id", |
||||
style:"Style", |
||||
classes:"Classes", |
||||
target_name:"Target name", |
||||
langdir:"Language direction", |
||||
target_langcode:"Target language", |
||||
langcode:"Language code", |
||||
encoding:"Target character encoding", |
||||
mime:"Target MIME type", |
||||
rel:"Relationship page to target", |
||||
rev:"Relationship target to page", |
||||
tabindex:"Tabindex", |
||||
accesskey:"Accesskey", |
||||
ltr:"Left to right", |
||||
rtl:"Right to left", |
||||
link_list:"Link list" |
||||
}); |
@ -0,0 +1,333 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#advlink_dlg.title}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
||||
<script type="text/javascript" src="../../utils/validate.js"></script> |
||||
<script type="text/javascript" src="js/advlink.js"></script> |
||||
<link href="css/advlink.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
<body id="advlink" style="display: none"> |
||||
<form onsubmit="insertAction();return false;" action="#"> |
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advlink_dlg.general_tab}</a></span></li> |
||||
<li id="popup_tab"><span><a href="javascript:mcTabs.displayTab('popup_tab','popup_panel');" onmousedown="return false;">{#advlink_dlg.popup_tab}</a></span></li> |
||||
<li id="events_tab"><span><a href="javascript:mcTabs.displayTab('events_tab','events_panel');" onmousedown="return false;">{#advlink_dlg.events_tab}</a></span></li> |
||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advlink_dlg.advanced_tab}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="general_panel" class="panel current"> |
||||
<fieldset> |
||||
<legend>{#advlink_dlg.general_props}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="nowrap"><label id="hreflabel" for="href">{#advlink_dlg.url}</label></td> |
||||
<td><table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input id="href" name="href" type="text" class="mceFocus" value="" onchange="selectByValue(this.form,'linklisthref',this.value);" /></td> |
||||
<td id="hrefbrowsercontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr id="linklisthrefrow"> |
||||
<td class="column1"><label for="linklisthref">{#advlink_dlg.list}</label></td> |
||||
<td colspan="2" id="linklisthrefcontainer"><select id="linklisthref"><option value=""></option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="anchorlist">{#advlink_dlg.anchor_names}</label></td> |
||||
<td colspan="2" id="anchorlistcontainer"><select id="anchorlist"><option value=""></option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label id="targetlistlabel" for="targetlist">{#advlink_dlg.target}</label></td> |
||||
<td id="targetlistcontainer"><select id="targetlist"><option value=""></option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label id="titlelabel" for="title">{#advlink_dlg.titlefield}</label></td> |
||||
<td><input id="title" name="title" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label id="classlabel" for="classlist">{#class_name}</label></td> |
||||
<td> |
||||
<select id="classlist" name="classlist" onchange="changeClass();"> |
||||
<option value="" selected="selected">{#not_set}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="popup_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#advlink_dlg.popup_props}</legend> |
||||
|
||||
<input type="checkbox" id="ispopup" name="ispopup" class="radio" onclick="setPopupControlsDisabled(!this.checked);buildOnClick();" /> |
||||
<label id="ispopuplabel" for="ispopup">{#advlink_dlg.popup}</label> |
||||
|
||||
<table border="0" cellpadding="0" cellspacing="4"> |
||||
<tr> |
||||
<td class="nowrap"><label for="popupurl">{#advlink_dlg.popup_url}</label> </td> |
||||
<td> |
||||
<table border="0" cellspacing="0" cellpadding="0"> |
||||
<tr> |
||||
<td><input type="text" name="popupurl" id="popupurl" value="" onchange="buildOnClick();" /></td> |
||||
<td id="popupurlbrowsercontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="popupname">{#advlink_dlg.popup_name}</label> </td> |
||||
<td><input type="text" name="popupname" id="popupname" value="" onchange="buildOnClick();" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label>{#advlink_dlg.popup_size}</label> </td> |
||||
<td class="nowrap"> |
||||
<input type="text" id="popupwidth" name="popupwidth" value="" onchange="buildOnClick();" /> x |
||||
<input type="text" id="popupheight" name="popupheight" value="" onchange="buildOnClick();" /> px |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap" id="labelleft"><label>{#advlink_dlg.popup_position}</label> </td> |
||||
<td class="nowrap"> |
||||
<input type="text" id="popupleft" name="popupleft" value="" onchange="buildOnClick();" /> / |
||||
<input type="text" id="popuptop" name="popuptop" value="" onchange="buildOnClick();" /> (c /c = center) |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<fieldset> |
||||
<legend>{#advlink_dlg.popup_opts}</legend> |
||||
|
||||
<table border="0" cellpadding="0" cellspacing="4"> |
||||
<tr> |
||||
<td><input type="checkbox" id="popuplocation" name="popuplocation" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popuplocationlabel" for="popuplocation">{#advlink_dlg.popup_location}</label></td> |
||||
<td><input type="checkbox" id="popupscrollbars" name="popupscrollbars" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popupscrollbarslabel" for="popupscrollbars">{#advlink_dlg.popup_scrollbars}</label></td> |
||||
</tr> |
||||
<tr> |
||||
<td><input type="checkbox" id="popupmenubar" name="popupmenubar" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popupmenubarlabel" for="popupmenubar">{#advlink_dlg.popup_menubar}</label></td> |
||||
<td><input type="checkbox" id="popupresizable" name="popupresizable" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popupresizablelabel" for="popupresizable">{#advlink_dlg.popup_resizable}</label></td> |
||||
</tr> |
||||
<tr> |
||||
<td><input type="checkbox" id="popuptoolbar" name="popuptoolbar" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popuptoolbarlabel" for="popuptoolbar">{#advlink_dlg.popup_toolbar}</label></td> |
||||
<td><input type="checkbox" id="popupdependent" name="popupdependent" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popupdependentlabel" for="popupdependent">{#advlink_dlg.popup_dependent}</label></td> |
||||
</tr> |
||||
<tr> |
||||
<td><input type="checkbox" id="popupstatus" name="popupstatus" class="checkbox" onchange="buildOnClick();" /></td> |
||||
<td class="nowrap"><label id="popupstatuslabel" for="popupstatus">{#advlink_dlg.popup_statusbar}</label></td> |
||||
<td><input type="checkbox" id="popupreturn" name="popupreturn" class="checkbox" onchange="buildOnClick();" checked="checked" /></td> |
||||
<td class="nowrap"><label id="popupreturnlabel" for="popupreturn">{#advlink_dlg.popup_return}</label></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="advanced_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#advlink_dlg.advanced_props}</legend> |
||||
|
||||
<table border="0" cellpadding="0" cellspacing="4"> |
||||
<tr> |
||||
<td class="column1"><label id="idlabel" for="id">{#advlink_dlg.id}</label></td> |
||||
<td><input id="id" name="id" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="stylelabel" for="style">{#advlink_dlg.style}</label></td> |
||||
<td><input type="text" id="style" name="style" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="classeslabel" for="classes">{#advlink_dlg.classes}</label></td> |
||||
<td><input type="text" id="classes" name="classes" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="targetlabel" for="target">{#advlink_dlg.target_name}</label></td> |
||||
<td><input type="text" id="target" name="target" value="" onchange="selectByValue(this.form,'targetlist',this.value,true);" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="dirlabel" for="dir">{#advlink_dlg.langdir}</label></td> |
||||
<td> |
||||
<select id="dir" name="dir"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="ltr">{#advlink_dlg.ltr}</option> |
||||
<option value="rtl">{#advlink_dlg.rtl}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="hreflanglabel" for="hreflang">{#advlink_dlg.target_langcode}</label></td> |
||||
<td><input type="text" id="hreflang" name="hreflang" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label id="langlabel" for="lang">{#advlink_dlg.langcode}</label></td> |
||||
<td> |
||||
<input id="lang" name="lang" type="text" value="" /> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="charsetlabel" for="charset">{#advlink_dlg.encoding}</label></td> |
||||
<td><input type="text" id="charset" name="charset" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="typelabel" for="type">{#advlink_dlg.mime}</label></td> |
||||
<td><input type="text" id="type" name="type" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="rellabel" for="rel">{#advlink_dlg.rel}</label></td> |
||||
<td><select id="rel" name="rel"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="lightbox">Lightbox</option> |
||||
<option value="alternate">Alternate</option> |
||||
<option value="designates">Designates</option> |
||||
<option value="stylesheet">Stylesheet</option> |
||||
<option value="start">Start</option> |
||||
<option value="next">Next</option> |
||||
<option value="prev">Prev</option> |
||||
<option value="contents">Contents</option> |
||||
<option value="index">Index</option> |
||||
<option value="glossary">Glossary</option> |
||||
<option value="copyright">Copyright</option> |
||||
<option value="chapter">Chapter</option> |
||||
<option value="subsection">Subsection</option> |
||||
<option value="appendix">Appendix</option> |
||||
<option value="help">Help</option> |
||||
<option value="bookmark">Bookmark</option> |
||||
<option value="nofollow">No Follow</option> |
||||
<option value="tag">Tag</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="revlabel" for="rev">{#advlink_dlg.rev}</label></td> |
||||
<td><select id="rev" name="rev"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="alternate">Alternate</option> |
||||
<option value="designates">Designates</option> |
||||
<option value="stylesheet">Stylesheet</option> |
||||
<option value="start">Start</option> |
||||
<option value="next">Next</option> |
||||
<option value="prev">Prev</option> |
||||
<option value="contents">Contents</option> |
||||
<option value="index">Index</option> |
||||
<option value="glossary">Glossary</option> |
||||
<option value="copyright">Copyright</option> |
||||
<option value="chapter">Chapter</option> |
||||
<option value="subsection">Subsection</option> |
||||
<option value="appendix">Appendix</option> |
||||
<option value="help">Help</option> |
||||
<option value="bookmark">Bookmark</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="tabindexlabel" for="tabindex">{#advlink_dlg.tabindex}</label></td> |
||||
<td><input type="text" id="tabindex" name="tabindex" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td><label id="accesskeylabel" for="accesskey">{#advlink_dlg.accesskey}</label></td> |
||||
<td><input type="text" id="accesskey" name="accesskey" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="events_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#advlink_dlg.event_props}</legend> |
||||
|
||||
<table border="0" cellpadding="0" cellspacing="4"> |
||||
<tr> |
||||
<td class="column1"><label for="onfocus">onfocus</label></td> |
||||
<td><input id="onfocus" name="onfocus" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onblur">onblur</label></td> |
||||
<td><input id="onblur" name="onblur" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onclick">onclick</label></td> |
||||
<td><input id="onclick" name="onclick" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="ondblclick">ondblclick</label></td> |
||||
<td><input id="ondblclick" name="ondblclick" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onmousedown">onmousedown</label></td> |
||||
<td><input id="onmousedown" name="onmousedown" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onmouseup">onmouseup</label></td> |
||||
<td><input id="onmouseup" name="onmouseup" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onmouseover">onmouseover</label></td> |
||||
<td><input id="onmouseover" name="onmouseover" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onmousemove">onmousemove</label></td> |
||||
<td><input id="onmousemove" name="onmousemove" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onmouseout">onmouseout</label></td> |
||||
<td><input id="onmouseout" name="onmouseout" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onkeypress">onkeypress</label></td> |
||||
<td><input id="onkeypress" name="onkeypress" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onkeydown">onkeydown</label></td> |
||||
<td><input id="onkeydown" name="onkeydown" type="text" value="" /></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="onkeyup">onkeyup</label></td> |
||||
<td><input id="onkeyup" name="onkeyup" type="text" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="mceActionPanel"> |
||||
<input type="submit" id="insert" name="insert" value="{#insert}" /> |
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
||||
</div> |
||||
</form> |
||||
</body> |
||||
</html> |
@ -0,0 +1 @@ |
||||
(function(){var a=tinymce.each;tinymce.create("tinymce.plugins.AdvListPlugin",{init:function(b,c){var d=this;d.editor=b;function e(g){var f=[];a(g.split(/,/),function(h){f.push({title:"advlist."+(h=="default"?"def":h.replace(/-/g,"_")),styles:{listStyleType:h=="default"?"":h}})});return f}d.numlist=b.getParam("advlist_number_styles")||e("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");d.bullist=b.getParam("advlist_bullet_styles")||e("default,circle,disc,square")},createControl:function(d,b){var f=this,e,h;if(d=="numlist"||d=="bullist"){if(f[d][0].title=="advlist.def"){h=f[d][0]}function c(i,k){var j=true;a(k.styles,function(m,l){if(f.editor.dom.getStyle(i,l)!=m){j=false;return false}});return j}function g(){var k,i=f.editor,l=i.dom,j=i.selection;k=l.getParent(j.getNode(),"ol,ul");if(!k||k.nodeName==(d=="bullist"?"OL":"UL")||c(k,h)){i.execCommand(d=="bullist"?"InsertUnorderedList":"InsertOrderedList")}if(h){k=l.getParent(j.getNode(),"ol,ul");if(k){l.setStyles(k,h.styles);k.removeAttribute("_mce_style")}}}e=b.createSplitButton(d,{title:"advanced."+d+"_desc","class":"mce_"+d,onclick:function(){g()}});e.onRenderMenu.add(function(i,j){j.onShowMenu.add(function(){var m=f.editor.dom,l=m.getParent(f.editor.selection.getNode(),"ol,ul"),k;if(l||h){k=f[d];a(j.items,function(n){var o=true;n.setSelected(0);if(l&&!n.isDisabled()){a(k,function(p){if(p.id==n.id){if(!c(l,p)){o=false;return false}}});if(o){n.setSelected(1)}}});if(!l){j.items[h.id].setSelected(1)}}});j.add({id:f.editor.dom.uniqueId(),title:"advlist.types","class":"mceMenuItemTitle"}).setDisabled(1);a(f[d],function(k){k.id=f.editor.dom.uniqueId();j.add({id:k.id,title:k.title,onclick:function(){h=k;g()}})})});return e}},getInfo:function(){return{longname:"Advanced lists",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlist",tinymce.plugins.AdvListPlugin)})(); |
@ -0,0 +1,154 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
var each = tinymce.each; |
||||
|
||||
tinymce.create('tinymce.plugins.AdvListPlugin', { |
||||
init : function(ed, url) { |
||||
var t = this; |
||||
|
||||
t.editor = ed; |
||||
|
||||
function buildFormats(str) { |
||||
var formats = []; |
||||
|
||||
each(str.split(/,/), function(type) { |
||||
formats.push({ |
||||
title : 'advlist.' + (type == 'default' ? 'def' : type.replace(/-/g, '_')), |
||||
styles : { |
||||
listStyleType : type == 'default' ? '' : type |
||||
} |
||||
}); |
||||
}); |
||||
|
||||
return formats; |
||||
}; |
||||
|
||||
// Setup number formats from config or default
|
||||
t.numlist = ed.getParam("advlist_number_styles") || buildFormats("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman"); |
||||
t.bullist = ed.getParam("advlist_bullet_styles") || buildFormats("default,circle,disc,square"); |
||||
}, |
||||
|
||||
createControl: function(name, cm) { |
||||
var t = this, btn, format; |
||||
|
||||
if (name == 'numlist' || name == 'bullist') { |
||||
// Default to first item if it's a default item
|
||||
if (t[name][0].title == 'advlist.def') |
||||
format = t[name][0]; |
||||
|
||||
function hasFormat(node, format) { |
||||
var state = true; |
||||
|
||||
each(format.styles, function(value, name) { |
||||
// Format doesn't match
|
||||
if (t.editor.dom.getStyle(node, name) != value) { |
||||
state = false; |
||||
return false; |
||||
} |
||||
}); |
||||
|
||||
return state; |
||||
}; |
||||
|
||||
function applyListFormat() { |
||||
var list, ed = t.editor, dom = ed.dom, sel = ed.selection; |
||||
|
||||
// Check for existing list element
|
||||
list = dom.getParent(sel.getNode(), 'ol,ul'); |
||||
|
||||
// Switch/add list type if needed
|
||||
if (!list || list.nodeName == (name == 'bullist' ? 'OL' : 'UL') || hasFormat(list, format)) |
||||
ed.execCommand(name == 'bullist' ? 'InsertUnorderedList' : 'InsertOrderedList'); |
||||
|
||||
// Append styles to new list element
|
||||
if (format) { |
||||
list = dom.getParent(sel.getNode(), 'ol,ul'); |
||||
|
||||
if (list) { |
||||
dom.setStyles(list, format.styles); |
||||
list.removeAttribute('_mce_style'); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
btn = cm.createSplitButton(name, { |
||||
title : 'advanced.' + name + '_desc', |
||||
'class' : 'mce_' + name, |
||||
onclick : function() { |
||||
applyListFormat(); |
||||
} |
||||
}); |
||||
|
||||
btn.onRenderMenu.add(function(btn, menu) { |
||||
menu.onShowMenu.add(function() { |
||||
var dom = t.editor.dom, list = dom.getParent(t.editor.selection.getNode(), 'ol,ul'), fmtList; |
||||
|
||||
if (list || format) { |
||||
fmtList = t[name]; |
||||
|
||||
// Unselect existing items
|
||||
each(menu.items, function(item) { |
||||
var state = true; |
||||
|
||||
item.setSelected(0); |
||||
|
||||
if (list && !item.isDisabled()) { |
||||
each(fmtList, function(fmt) { |
||||
if (fmt.id == item.id) { |
||||
if (!hasFormat(list, fmt)) { |
||||
state = false; |
||||
return false; |
||||
} |
||||
} |
||||
}); |
||||
|
||||
if (state) |
||||
item.setSelected(1); |
||||
} |
||||
}); |
||||
|
||||
// Select the current format
|
||||
if (!list) |
||||
menu.items[format.id].setSelected(1); |
||||
} |
||||
}); |
||||
|
||||
menu.add({id : t.editor.dom.uniqueId(), title : 'advlist.types', 'class' : 'mceMenuItemTitle'}).setDisabled(1); |
||||
|
||||
each(t[name], function(item) { |
||||
item.id = t.editor.dom.uniqueId(); |
||||
|
||||
menu.add({id : item.id, title : item.title, onclick : function() { |
||||
format = item; |
||||
applyListFormat(); |
||||
}}); |
||||
}); |
||||
}); |
||||
|
||||
return btn; |
||||
} |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Advanced lists', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('advlist', tinymce.plugins.AdvListPlugin); |
||||
})(); |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.AutoResizePlugin",{init:function(a,c){var d=this;if(a.getParam("fullscreen_is_enabled")){return}function b(){var h=a.getDoc(),e=h.body,j=h.documentElement,g=tinymce.DOM,i=d.autoresize_min_height,f;f=tinymce.isIE?e.scrollHeight:j.offsetHeight;if(f>d.autoresize_min_height){i=f}g.setStyle(g.get(a.id+"_ifr"),"height",i+"px");if(d.throbbing){a.setProgressState(false);a.setProgressState(true)}}d.editor=a;d.autoresize_min_height=a.getElement().offsetHeight;a.onChange.add(b);a.onSetContent.add(b);a.onPaste.add(b);a.onKeyUp.add(b);a.onPostRender.add(b);if(a.getParam("autoresize_on_init",true)){a.onInit.add(function(f,e){f.setProgressState(true);d.throbbing=true;f.getBody().style.overflowY="hidden"});a.onLoadContent.add(function(f,e){b();setTimeout(function(){b();f.setProgressState(false);d.throbbing=false},1250)})}a.addCommand("mceAutoResize",b)},getInfo:function(){return{longname:"Auto Resize",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autoresize",tinymce.plugins.AutoResizePlugin)})(); |
@ -0,0 +1,119 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
/** |
||||
* Auto Resize |
||||
*
|
||||
* This plugin automatically resizes the content area to fit its content height. |
||||
* It will retain a minimum height, which is the height of the content area when |
||||
* it's initialized. |
||||
*/ |
||||
tinymce.create('tinymce.plugins.AutoResizePlugin', { |
||||
/** |
||||
* Initializes the plugin, this will be executed after the plugin has been created. |
||||
* This call is done before the editor instance has finished it's initialization so use the onInit event |
||||
* of the editor instance to intercept that event. |
||||
* |
||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. |
||||
* @param {string} url Absolute URL to where the plugin is located. |
||||
*/ |
||||
init : function(ed, url) { |
||||
var t = this; |
||||
|
||||
if (ed.getParam('fullscreen_is_enabled')) |
||||
return; |
||||
|
||||
/** |
||||
* This method gets executed each time the editor needs to resize. |
||||
*/ |
||||
function resize() { |
||||
var d = ed.getDoc(), b = d.body, de = d.documentElement, DOM = tinymce.DOM, resizeHeight = t.autoresize_min_height, myHeight; |
||||
|
||||
// Get height differently depending on the browser used
|
||||
myHeight = tinymce.isIE ? b.scrollHeight : de.offsetHeight; |
||||
|
||||
// Don't make it smaller than the minimum height
|
||||
if (myHeight > t.autoresize_min_height) |
||||
resizeHeight = myHeight; |
||||
|
||||
// Resize content element
|
||||
DOM.setStyle(DOM.get(ed.id + '_ifr'), 'height', resizeHeight + 'px'); |
||||
|
||||
// if we're throbbing, we'll re-throb to match the new size
|
||||
if (t.throbbing) { |
||||
ed.setProgressState(false); |
||||
ed.setProgressState(true); |
||||
} |
||||
}; |
||||
|
||||
t.editor = ed; |
||||
|
||||
// Define minimum height
|
||||
t.autoresize_min_height = ed.getElement().offsetHeight; |
||||
|
||||
// Add appropriate listeners for resizing content area
|
||||
ed.onChange.add(resize); |
||||
ed.onSetContent.add(resize); |
||||
ed.onPaste.add(resize); |
||||
ed.onKeyUp.add(resize); |
||||
ed.onPostRender.add(resize); |
||||
|
||||
if (ed.getParam('autoresize_on_init', true)) { |
||||
// Things to do when the editor is ready
|
||||
ed.onInit.add(function(ed, l) { |
||||
// Show throbber until content area is resized properly
|
||||
ed.setProgressState(true); |
||||
t.throbbing = true; |
||||
|
||||
// Hide scrollbars
|
||||
ed.getBody().style.overflowY = "hidden"; |
||||
}); |
||||
|
||||
ed.onLoadContent.add(function(ed, l) { |
||||
resize(); |
||||
|
||||
// Because the content area resizes when its content CSS loads,
|
||||
// and we can't easily add a listener to its onload event,
|
||||
// we'll just trigger a resize after a short loading period
|
||||
setTimeout(function() { |
||||
resize(); |
||||
|
||||
// Disable throbber
|
||||
ed.setProgressState(false); |
||||
t.throbbing = false; |
||||
}, 1250); |
||||
}); |
||||
} |
||||
|
||||
// Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample');
|
||||
ed.addCommand('mceAutoResize', resize); |
||||
}, |
||||
|
||||
/** |
||||
* Returns information about the plugin as a name/value array. |
||||
* The current keys are longname, author, authorurl, infourl and version. |
||||
* |
||||
* @return {Object} Name/value array containing information about the plugin. |
||||
*/ |
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Auto Resize', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('autoresize', tinymce.plugins.AutoResizePlugin); |
||||
})(); |
@ -0,0 +1 @@ |
||||
(function(e){var c="autosave",g="restoredraft",b=true,f,d,a=e.util.Dispatcher;e.create("tinymce.plugins.AutoSave",{init:function(i,j){var h=this,l=i.settings;h.editor=i;function k(n){var m={s:1000,m:60000};n=/^(\d+)([ms]?)$/.exec(""+n);return(n[2]?m[n[2]]:1)*parseInt(n)}e.each({ask_before_unload:b,interval:"30s",retention:"20m",minlength:50},function(n,m){m=c+"_"+m;if(l[m]===f){l[m]=n}});l.autosave_interval=k(l.autosave_interval);l.autosave_retention=k(l.autosave_retention);i.addButton(g,{title:c+".restore_content",onclick:function(){if(i.getContent({draft:true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi,"").length>0){i.windowManager.confirm(c+".warning_message",function(m){if(m){h.restoreDraft()}})}else{h.restoreDraft()}}});i.onNodeChange.add(function(){var m=i.controlManager;if(m.get(g)){m.setDisabled(g,!h.hasDraft())}});i.onInit.add(function(){if(i.controlManager.get(g)){h.setupStorage(i);setInterval(function(){h.storeDraft();i.nodeChanged()},l.autosave_interval)}});h.onStoreDraft=new a(h);h.onRestoreDraft=new a(h);h.onRemoveDraft=new a(h);if(!d){window.onbeforeunload=e.plugins.AutoSave._beforeUnloadHandler;d=b}},getInfo:function(){return{longname:"Auto save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave",version:e.majorVersion+"."+e.minorVersion}},getExpDate:function(){return new Date(new Date().getTime()+this.editor.settings.autosave_retention).toUTCString()},setupStorage:function(i){var h=this,k=c+"_test",j="OK";h.key=c+i.id;e.each([function(){if(localStorage){localStorage.setItem(k,j);if(localStorage.getItem(k)===j){localStorage.removeItem(k);return localStorage}}},function(){if(sessionStorage){sessionStorage.setItem(k,j);if(sessionStorage.getItem(k)===j){sessionStorage.removeItem(k);return sessionStorage}}},function(){if(e.isIE){i.getElement().style.behavior="url('#default#userData')";return{autoExpires:b,setItem:function(l,n){var m=i.getElement();m.setAttribute(l,n);m.expires=h.getExpDate();m.save("TinyMCE")},getItem:function(l){var m=i.getElement();m.load("TinyMCE");return m.getAttribute(l)},removeItem:function(l){i.getElement().removeAttribute(l)}}}},],function(l){try{h.storage=l();if(h.storage){return false}}catch(m){}})},storeDraft:function(){var i=this,l=i.storage,j=i.editor,h,k;if(l){if(!l.getItem(i.key)&&!j.isDirty()){return}k=j.getContent({draft:true});if(k.length>j.settings.autosave_minlength){h=i.getExpDate();if(!i.storage.autoExpires){i.storage.setItem(i.key+"_expires",h)}i.storage.setItem(i.key,k);i.onStoreDraft.dispatch(i,{expires:h,content:k})}}},restoreDraft:function(){var h=this,i=h.storage;if(i){content=i.getItem(h.key);if(content){h.editor.setContent(content);h.onRestoreDraft.dispatch(h,{content:content})}}},hasDraft:function(){var h=this,k=h.storage,i,j;if(k){j=!!k.getItem(h.key);if(j){if(!h.storage.autoExpires){i=new Date(k.getItem(h.key+"_expires"));if(new Date().getTime()<i.getTime()){return b}h.removeDraft()}else{return b}}}return false},removeDraft:function(){var h=this,k=h.storage,i=h.key,j;if(k){j=k.getItem(i);k.removeItem(i);k.removeItem(i+"_expires");if(j){h.onRemoveDraft.dispatch(h,{content:j})}}},"static":{_beforeUnloadHandler:function(h){var i;e.each(tinyMCE.editors,function(j){if(j.plugins.autosave){j.plugins.autosave.storeDraft()}if(j.getParam("fullscreen_is_enabled")){return}if(!i&&j.isDirty()&&j.getParam("autosave_ask_before_unload")){i=j.getLang("autosave.unload_msg")}});return i}}});e.PluginManager.add("autosave",e.plugins.AutoSave)})(tinymce); |
@ -0,0 +1,422 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
* |
||||
* Adds auto-save capability to the TinyMCE text editor to rescue content |
||||
* inadvertently lost. This plugin was originally developed by Speednet |
||||
* and that project can be found here: http://code.google.com/p/tinyautosave/
|
||||
* |
||||
* TECHNOLOGY DISCUSSION: |
||||
*
|
||||
* The plugin attempts to use the most advanced features available in the current browser to save |
||||
* as much content as possible. There are a total of four different methods used to autosave the |
||||
* content. In order of preference, they are: |
||||
*
|
||||
* 1. localStorage - A new feature of HTML 5, localStorage can store megabytes of data per domain |
||||
* on the client computer. Data stored in the localStorage area has no expiration date, so we must |
||||
* manage expiring the data ourselves. localStorage is fully supported by IE8, and it is supposed |
||||
* to be working in Firefox 3 and Safari 3.2, but in reality is is flaky in those browsers. As |
||||
* HTML 5 gets wider support, the AutoSave plugin will use it automatically. In Windows Vista/7, |
||||
* localStorage is stored in the following folder: |
||||
* C:\Users\[username]\AppData\Local\Microsoft\Internet Explorer\DOMStore\[tempFolder] |
||||
*
|
||||
* 2. sessionStorage - A new feature of HTML 5, sessionStorage works similarly to localStorage, |
||||
* except it is designed to expire after a certain amount of time. Because the specification |
||||
* around expiration date/time is very loosely-described, it is preferrable to use locaStorage and |
||||
* manage the expiration ourselves. sessionStorage has similar storage characteristics to |
||||
* localStorage, although it seems to have better support by Firefox 3 at the moment. (That will |
||||
* certainly change as Firefox continues getting better at HTML 5 adoption.) |
||||
*
|
||||
* 3. UserData - A very under-exploited feature of Microsoft Internet Explorer, UserData is a |
||||
* way to store up to 128K of data per "document", or up to 1MB of data per domain, on the client |
||||
* computer. The feature is available for IE 5+, which makes it available for every version of IE |
||||
* supported by TinyMCE. The content is persistent across browser restarts and expires on the |
||||
* date/time specified, just like a cookie. However, the data is not cleared when the user clears |
||||
* cookies on the browser, which makes it well-suited for rescuing autosaved content. UserData, |
||||
* like other Microsoft IE browser technologies, is implemented as a behavior attached to a |
||||
* specific DOM object, so in this case we attach the behavior to the same DOM element that the |
||||
* TinyMCE editor instance is attached to. |
||||
*/ |
||||
|
||||
(function(tinymce) { |
||||
// Setup constants to help the compressor to reduce script size
|
||||
var PLUGIN_NAME = 'autosave', |
||||
RESTORE_DRAFT = 'restoredraft', |
||||
TRUE = true, |
||||
undefined, |
||||
unloadHandlerAdded, |
||||
Dispatcher = tinymce.util.Dispatcher; |
||||
|
||||
/** |
||||
* This plugin adds auto-save capability to the TinyMCE text editor to rescue content |
||||
* inadvertently lost. By using localStorage. |
||||
* |
||||
* @class tinymce.plugins.AutoSave |
||||
*/ |
||||
tinymce.create('tinymce.plugins.AutoSave', { |
||||
/** |
||||
* Initializes the plugin, this will be executed after the plugin has been created. |
||||
* This call is done before the editor instance has finished it's initialization so use the onInit event |
||||
* of the editor instance to intercept that event. |
||||
* |
||||
* @method init |
||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. |
||||
* @param {string} url Absolute URL to where the plugin is located. |
||||
*/ |
||||
init : function(ed, url) { |
||||
var self = this, settings = ed.settings; |
||||
|
||||
self.editor = ed; |
||||
|
||||
// Parses the specified time string into a milisecond number 10m, 10s etc.
|
||||
function parseTime(time) { |
||||
var multipels = { |
||||
s : 1000, |
||||
m : 60000 |
||||
}; |
||||
|
||||
time = /^(\d+)([ms]?)$/.exec('' + time); |
||||
|
||||
return (time[2] ? multipels[time[2]] : 1) * parseInt(time); |
||||
}; |
||||
|
||||
// Default config
|
||||
tinymce.each({ |
||||
ask_before_unload : TRUE, |
||||
interval : '30s', |
||||
retention : '20m', |
||||
minlength : 50 |
||||
}, function(value, key) { |
||||
key = PLUGIN_NAME + '_' + key; |
||||
|
||||
if (settings[key] === undefined) |
||||
settings[key] = value; |
||||
}); |
||||
|
||||
// Parse times
|
||||
settings.autosave_interval = parseTime(settings.autosave_interval); |
||||
settings.autosave_retention = parseTime(settings.autosave_retention); |
||||
|
||||
// Register restore button
|
||||
ed.addButton(RESTORE_DRAFT, { |
||||
title : PLUGIN_NAME + ".restore_content", |
||||
onclick : function() { |
||||
if (ed.getContent({draft: true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi, "").length > 0) { |
||||
// Show confirm dialog if the editor isn't empty
|
||||
ed.windowManager.confirm( |
||||
PLUGIN_NAME + ".warning_message", |
||||
function(ok) { |
||||
if (ok) |
||||
self.restoreDraft(); |
||||
} |
||||
); |
||||
} else |
||||
self.restoreDraft(); |
||||
} |
||||
}); |
||||
|
||||
// Enable/disable restoredraft button depending on if there is a draft stored or not
|
||||
ed.onNodeChange.add(function() { |
||||
var controlManager = ed.controlManager; |
||||
|
||||
if (controlManager.get(RESTORE_DRAFT)) |
||||
controlManager.setDisabled(RESTORE_DRAFT, !self.hasDraft()); |
||||
}); |
||||
|
||||
ed.onInit.add(function() { |
||||
// Check if the user added the restore button, then setup auto storage logic
|
||||
if (ed.controlManager.get(RESTORE_DRAFT)) { |
||||
// Setup storage engine
|
||||
self.setupStorage(ed); |
||||
|
||||
// Auto save contents each interval time
|
||||
setInterval(function() { |
||||
self.storeDraft(); |
||||
ed.nodeChanged(); |
||||
}, settings.autosave_interval); |
||||
} |
||||
}); |
||||
|
||||
/** |
||||
* This event gets fired when a draft is stored to local storage. |
||||
* |
||||
* @event onStoreDraft |
||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. |
||||
* @param {Object} draft Draft object containing the HTML contents of the editor. |
||||
*/ |
||||
self.onStoreDraft = new Dispatcher(self); |
||||
|
||||
/** |
||||
* This event gets fired when a draft is restored from local storage. |
||||
* |
||||
* @event onStoreDraft |
||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. |
||||
* @param {Object} draft Draft object containing the HTML contents of the editor. |
||||
*/ |
||||
self.onRestoreDraft = new Dispatcher(self); |
||||
|
||||
/** |
||||
* This event gets fired when a draft removed/expired. |
||||
* |
||||
* @event onRemoveDraft |
||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event. |
||||
* @param {Object} draft Draft object containing the HTML contents of the editor. |
||||
*/ |
||||
self.onRemoveDraft = new Dispatcher(self); |
||||
|
||||
// Add ask before unload dialog only add one unload handler
|
||||
if (!unloadHandlerAdded) { |
||||
window.onbeforeunload = tinymce.plugins.AutoSave._beforeUnloadHandler; |
||||
unloadHandlerAdded = TRUE; |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* Returns information about the plugin as a name/value array. |
||||
* The current keys are longname, author, authorurl, infourl and version. |
||||
* |
||||
* @method getInfo |
||||
* @return {Object} Name/value array containing information about the plugin. |
||||
*/ |
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Auto save', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
}, |
||||
|
||||
/** |
||||
* Returns an expiration date UTC string. |
||||
* |
||||
* @method getExpDate |
||||
* @return {String} Expiration date UTC string. |
||||
*/ |
||||
getExpDate : function() { |
||||
return new Date( |
||||
new Date().getTime() + this.editor.settings.autosave_retention |
||||
).toUTCString(); |
||||
}, |
||||
|
||||
/** |
||||
* This method will setup the storage engine. If the browser has support for it. |
||||
* |
||||
* @method setupStorage |
||||
*/ |
||||
setupStorage : function(ed) { |
||||
var self = this, testKey = PLUGIN_NAME + '_test', testVal = "OK"; |
||||
|
||||
self.key = PLUGIN_NAME + ed.id; |
||||
|
||||
// Loop though each storage engine type until we find one that works
|
||||
tinymce.each([ |
||||
function() { |
||||
// Try HTML5 Local Storage
|
||||
if (localStorage) { |
||||
localStorage.setItem(testKey, testVal); |
||||
|
||||
if (localStorage.getItem(testKey) === testVal) { |
||||
localStorage.removeItem(testKey); |
||||
|
||||
return localStorage; |
||||
} |
||||
} |
||||
}, |
||||
|
||||
function() { |
||||
// Try HTML5 Session Storage
|
||||
if (sessionStorage) { |
||||
sessionStorage.setItem(testKey, testVal); |
||||
|
||||
if (sessionStorage.getItem(testKey) === testVal) { |
||||
sessionStorage.removeItem(testKey); |
||||
|
||||
return sessionStorage; |
||||
} |
||||
} |
||||
}, |
||||
|
||||
function() { |
||||
// Try IE userData
|
||||
if (tinymce.isIE) { |
||||
ed.getElement().style.behavior = "url('#default#userData')"; |
||||
|
||||
// Fake localStorage on old IE
|
||||
return { |
||||
autoExpires : TRUE, |
||||
|
||||
setItem : function(key, value) { |
||||
var userDataElement = ed.getElement(); |
||||
|
||||
userDataElement.setAttribute(key, value); |
||||
userDataElement.expires = self.getExpDate(); |
||||
userDataElement.save("TinyMCE"); |
||||
}, |
||||
|
||||
getItem : function(key) { |
||||
var userDataElement = ed.getElement(); |
||||
|
||||
userDataElement.load("TinyMCE"); |
||||
|
||||
return userDataElement.getAttribute(key); |
||||
}, |
||||
|
||||
removeItem : function(key) { |
||||
ed.getElement().removeAttribute(key); |
||||
} |
||||
}; |
||||
} |
||||
}, |
||||
], function(setup) { |
||||
// Try executing each function to find a suitable storage engine
|
||||
try { |
||||
self.storage = setup(); |
||||
|
||||
if (self.storage) |
||||
return false; |
||||
} catch (e) { |
||||
// Ignore
|
||||
} |
||||
}); |
||||
}, |
||||
|
||||
/** |
||||
* This method will store the current contents in the the storage engine. |
||||
* |
||||
* @method storeDraft |
||||
*/ |
||||
storeDraft : function() { |
||||
var self = this, storage = self.storage, editor = self.editor, expires, content; |
||||
|
||||
// Is the contents dirty
|
||||
if (storage) { |
||||
// If there is no existing key and the contents hasn't been changed since
|
||||
// it's original value then there is no point in saving a draft
|
||||
if (!storage.getItem(self.key) && !editor.isDirty()) |
||||
return; |
||||
|
||||
// Store contents if the contents if longer than the minlength of characters
|
||||
content = editor.getContent({draft: true}); |
||||
if (content.length > editor.settings.autosave_minlength) { |
||||
expires = self.getExpDate(); |
||||
|
||||
// Store expiration date if needed IE userData has auto expire built in
|
||||
if (!self.storage.autoExpires) |
||||
self.storage.setItem(self.key + "_expires", expires); |
||||
|
||||
self.storage.setItem(self.key, content); |
||||
self.onStoreDraft.dispatch(self, { |
||||
expires : expires, |
||||
content : content |
||||
}); |
||||
} |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* This method will restore the contents from the storage engine back to the editor. |
||||
* |
||||
* @method restoreDraft |
||||
*/ |
||||
restoreDraft : function() { |
||||
var self = this, storage = self.storage; |
||||
|
||||
if (storage) { |
||||
content = storage.getItem(self.key); |
||||
|
||||
if (content) { |
||||
self.editor.setContent(content); |
||||
self.onRestoreDraft.dispatch(self, { |
||||
content : content |
||||
}); |
||||
} |
||||
} |
||||
}, |
||||
|
||||
/** |
||||
* This method will return true/false if there is a local storage draft available. |
||||
* |
||||
* @method hasDraft |
||||
* @return {boolean} true/false state if there is a local draft. |
||||
*/ |
||||
hasDraft : function() { |
||||
var self = this, storage = self.storage, expDate, exists; |
||||
|
||||
if (storage) { |
||||
// Does the item exist at all
|
||||
exists = !!storage.getItem(self.key); |
||||
if (exists) { |
||||
// Storage needs autoexpire
|
||||
if (!self.storage.autoExpires) { |
||||
expDate = new Date(storage.getItem(self.key + "_expires")); |
||||
|
||||
// Contents hasn't expired
|
||||
if (new Date().getTime() < expDate.getTime()) |
||||
return TRUE; |
||||
|
||||
// Remove it if it has
|
||||
self.removeDraft(); |
||||
} else |
||||
return TRUE; |
||||
} |
||||
} |
||||
|
||||
return false; |
||||
}, |
||||
|
||||
/** |
||||
* Removes the currently stored draft. |
||||
* |
||||
* @method removeDraft |
||||
*/ |
||||
removeDraft : function() { |
||||
var self = this, storage = self.storage, key = self.key, content; |
||||
|
||||
if (storage) { |
||||
// Get current contents and remove the existing draft
|
||||
content = storage.getItem(key); |
||||
storage.removeItem(key); |
||||
storage.removeItem(key + "_expires"); |
||||
|
||||
// Dispatch remove event if we had any contents
|
||||
if (content) { |
||||
self.onRemoveDraft.dispatch(self, { |
||||
content : content |
||||
}); |
||||
} |
||||
} |
||||
}, |
||||
|
||||
"static" : { |
||||
// Internal unload handler will be called before the page is unloaded
|
||||
_beforeUnloadHandler : function(e) { |
||||
var msg; |
||||
|
||||
tinymce.each(tinyMCE.editors, function(ed) { |
||||
// Store a draft for each editor instance
|
||||
if (ed.plugins.autosave) |
||||
ed.plugins.autosave.storeDraft(); |
||||
|
||||
// Never ask in fullscreen mode
|
||||
if (ed.getParam("fullscreen_is_enabled")) |
||||
return; |
||||
|
||||
// Setup a return message if the editor is dirty
|
||||
if (!msg && ed.isDirty() && ed.getParam("autosave_ask_before_unload")) |
||||
msg = ed.getLang("autosave.unload_msg"); |
||||
}); |
||||
|
||||
return msg; |
||||
} |
||||
} |
||||
}); |
||||
|
||||
tinymce.PluginManager.add('autosave', tinymce.plugins.AutoSave); |
||||
})(tinymce); |
@ -0,0 +1,4 @@ |
||||
tinyMCE.addI18n('en.autosave',{ |
||||
restore_content: "Restore auto-saved content", |
||||
warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" |
||||
}); |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(a,b){var d=this,c=a.getParam("bbcode_dialect","punbb").toLowerCase();a.onBeforeSetContent.add(function(e,f){f.content=d["_"+c+"_bbcode2html"](f.content)});a.onPostProcess.add(function(e,f){if(f.set){f.content=d["_"+c+"_bbcode2html"](f.content)}if(f.get){f.content=d["_"+c+"_html2bbcode"](f.content)}})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_punbb_html2bbcode:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");b(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");b(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]");b(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");b(/<font>(.*?)<\/font>/gi,"$1");b(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");b(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]");b(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]");b(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");b(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");b(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");b(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");b(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");b(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");b(/<\/(strong|b)>/gi,"[/b]");b(/<(strong|b)>/gi,"[b]");b(/<\/(em|i)>/gi,"[/i]");b(/<(em|i)>/gi,"[i]");b(/<\/u>/gi,"[/u]");b(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");b(/<u>/gi,"[u]");b(/<blockquote[^>]*>/gi,"[quote]");b(/<\/blockquote>/gi,"[/quote]");b(/<br \/>/gi,"\n");b(/<br\/>/gi,"\n");b(/<br>/gi,"\n");b(/<p>/gi,"");b(/<\/p>/gi,"\n");b(/ /gi," ");b(/"/gi,'"');b(/</gi,"<");b(/>/gi,">");b(/&/gi,"&");return a},_punbb_bbcode2html:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/\n/gi,"<br />");b(/\[b\]/gi,"<strong>");b(/\[\/b\]/gi,"</strong>");b(/\[i\]/gi,"<em>");b(/\[\/i\]/gi,"</em>");b(/\[u\]/gi,"<u>");b(/\[\/u\]/gi,"</u>");b(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>');b(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>');b(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />');b(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>');b(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> ');b(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> ');return a}});tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)})(); |
@ -0,0 +1,120 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.BBCodePlugin', { |
||||
init : function(ed, url) { |
||||
var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase(); |
||||
|
||||
ed.onBeforeSetContent.add(function(ed, o) { |
||||
o.content = t['_' + dialect + '_bbcode2html'](o.content); |
||||
}); |
||||
|
||||
ed.onPostProcess.add(function(ed, o) { |
||||
if (o.set) |
||||
o.content = t['_' + dialect + '_bbcode2html'](o.content); |
||||
|
||||
if (o.get) |
||||
o.content = t['_' + dialect + '_html2bbcode'](o.content); |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'BBCode Plugin', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
}, |
||||
|
||||
// Private methods
|
||||
|
||||
// HTML -> BBCode in PunBB dialect
|
||||
_punbb_html2bbcode : function(s) { |
||||
s = tinymce.trim(s); |
||||
|
||||
function rep(re, str) { |
||||
s = s.replace(re, str); |
||||
}; |
||||
|
||||
// example: <strong> to [b]
|
||||
rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]"); |
||||
rep(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); |
||||
rep(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); |
||||
rep(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); |
||||
rep(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); |
||||
rep(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]"); |
||||
rep(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]"); |
||||
rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]"); |
||||
rep(/<font>(.*?)<\/font>/gi,"$1"); |
||||
rep(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]"); |
||||
rep(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]"); |
||||
rep(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]"); |
||||
rep(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"); |
||||
rep(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"); |
||||
rep(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"); |
||||
rep(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"); |
||||
rep(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"); |
||||
rep(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"); |
||||
rep(/<\/(strong|b)>/gi,"[/b]"); |
||||
rep(/<(strong|b)>/gi,"[b]"); |
||||
rep(/<\/(em|i)>/gi,"[/i]"); |
||||
rep(/<(em|i)>/gi,"[i]"); |
||||
rep(/<\/u>/gi,"[/u]"); |
||||
rep(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]"); |
||||
rep(/<u>/gi,"[u]"); |
||||
rep(/<blockquote[^>]*>/gi,"[quote]"); |
||||
rep(/<\/blockquote>/gi,"[/quote]"); |
||||
rep(/<br \/>/gi,"\n"); |
||||
rep(/<br\/>/gi,"\n"); |
||||
rep(/<br>/gi,"\n"); |
||||
rep(/<p>/gi,""); |
||||
rep(/<\/p>/gi,"\n"); |
||||
rep(/ /gi," "); |
||||
rep(/"/gi,"\""); |
||||
rep(/</gi,"<"); |
||||
rep(/>/gi,">"); |
||||
rep(/&/gi,"&"); |
||||
|
||||
return s;
|
||||
}, |
||||
|
||||
// BBCode -> HTML from PunBB dialect
|
||||
_punbb_bbcode2html : function(s) { |
||||
s = tinymce.trim(s); |
||||
|
||||
function rep(re, str) { |
||||
s = s.replace(re, str); |
||||
}; |
||||
|
||||
// example: [b] to <strong>
|
||||
rep(/\n/gi,"<br />"); |
||||
rep(/\[b\]/gi,"<strong>"); |
||||
rep(/\[\/b\]/gi,"</strong>"); |
||||
rep(/\[i\]/gi,"<em>"); |
||||
rep(/\[\/i\]/gi,"</em>"); |
||||
rep(/\[u\]/gi,"<u>"); |
||||
rep(/\[\/u\]/gi,"</u>"); |
||||
rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"<a href=\"$1\">$2</a>"); |
||||
rep(/\[url\](.*?)\[\/url\]/gi,"<a href=\"$1\">$1</a>"); |
||||
rep(/\[img\](.*?)\[\/img\]/gi,"<img src=\"$1\" />"); |
||||
rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<font color=\"$1\">$2</font>"); |
||||
rep(/\[code\](.*?)\[\/code\]/gi,"<span class=\"codeStyle\">$1</span> "); |
||||
rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<span class=\"quoteStyle\">$1</span> "); |
||||
|
||||
return s;
|
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin); |
||||
})(); |
@ -0,0 +1 @@ |
||||
(function(){var a=tinymce.dom.Event,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.ContextMenu",{init:function(d){var f=this,g;f.editor=d;f.onContextMenu=new tinymce.util.Dispatcher(this);d.onContextMenu.add(function(h,i){if(!i.ctrlKey){if(g){h.selection.setRng(g)}f._getMenu(h).showMenu(i.clientX,i.clientY);a.add(h.getDoc(),"click",function(j){e(h,j)});a.cancel(i)}});d.onRemove.add(function(){if(f._menu){f._menu.removeAll()}});function e(h,i){g=null;if(i&&i.button==2){g=h.selection.getRng();return}if(f._menu){f._menu.removeAll();f._menu.destroy();a.remove(h.getDoc(),"click",e)}}d.onMouseDown.add(e);d.onKeyDown.add(e)},getInfo:function(){return{longname:"Contextmenu",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getMenu:function(h){var l=this,f=l._menu,i=h.selection,e=i.isCollapsed(),d=i.getNode()||h.getBody(),g,k,j;if(f){f.removeAll();f.destroy()}k=b.getPos(h.getContentAreaContainer());j=b.getPos(h.getContainer());f=h.controlManager.createDropMenu("contextmenu",{offset_x:k.x+h.getParam("contextmenu_offset_x",0),offset_y:k.y+h.getParam("contextmenu_offset_y",0),constrain:1});l._menu=f;f.add({title:"advanced.cut_desc",icon:"cut",cmd:"Cut"}).setDisabled(e);f.add({title:"advanced.copy_desc",icon:"copy",cmd:"Copy"}).setDisabled(e);f.add({title:"advanced.paste_desc",icon:"paste",cmd:"Paste"});if((d.nodeName=="A"&&!h.dom.getAttrib(d,"name"))||!e){f.addSeparator();f.add({title:"advanced.link_desc",icon:"link",cmd:h.plugins.advlink?"mceAdvLink":"mceLink",ui:true});f.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"})}f.addSeparator();f.add({title:"advanced.image_desc",icon:"image",cmd:h.plugins.advimage?"mceAdvImage":"mceImage",ui:true});f.addSeparator();g=f.addMenu({title:"contextmenu.align"});g.add({title:"contextmenu.left",icon:"justifyleft",cmd:"JustifyLeft"});g.add({title:"contextmenu.center",icon:"justifycenter",cmd:"JustifyCenter"});g.add({title:"contextmenu.right",icon:"justifyright",cmd:"JustifyRight"});g.add({title:"contextmenu.full",icon:"justifyfull",cmd:"JustifyFull"});l.onContextMenu.dispatch(l,f,d,e);return f}});tinymce.PluginManager.add("contextmenu",tinymce.plugins.ContextMenu)})(); |
@ -0,0 +1,147 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM; |
||||
|
||||
/** |
||||
* This plugin a context menu to TinyMCE editor instances. |
||||
* |
||||
* @class tinymce.plugins.ContextMenu |
||||
*/ |
||||
tinymce.create('tinymce.plugins.ContextMenu', { |
||||
/** |
||||
* Initializes the plugin, this will be executed after the plugin has been created. |
||||
* This call is done before the editor instance has finished it's initialization so use the onInit event |
||||
* of the editor instance to intercept that event. |
||||
* |
||||
* @method init |
||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. |
||||
* @param {string} url Absolute URL to where the plugin is located. |
||||
*/ |
||||
init : function(ed) { |
||||
var t = this, lastRng; |
||||
|
||||
t.editor = ed; |
||||
|
||||
/** |
||||
* This event gets fired when the context menu is shown. |
||||
* |
||||
* @event onContextMenu |
||||
* @param {tinymce.plugins.ContextMenu} sender Plugin instance sending the event. |
||||
* @param {tinymce.ui.DropMenu} menu Drop down menu to fill with more items if needed. |
||||
*/ |
||||
t.onContextMenu = new tinymce.util.Dispatcher(this); |
||||
|
||||
ed.onContextMenu.add(function(ed, e) { |
||||
if (!e.ctrlKey) { |
||||
// Restore the last selection since it was removed
|
||||
if (lastRng) |
||||
ed.selection.setRng(lastRng); |
||||
|
||||
t._getMenu(ed).showMenu(e.clientX, e.clientY); |
||||
Event.add(ed.getDoc(), 'click', function(e) { |
||||
hide(ed, e); |
||||
}); |
||||
Event.cancel(e); |
||||
} |
||||
}); |
||||
|
||||
ed.onRemove.add(function() { |
||||
if (t._menu) |
||||
t._menu.removeAll(); |
||||
}); |
||||
|
||||
function hide(ed, e) { |
||||
lastRng = null; |
||||
|
||||
// Since the contextmenu event moves
|
||||
// the selection we need to store it away
|
||||
if (e && e.button == 2) { |
||||
lastRng = ed.selection.getRng(); |
||||
return; |
||||
} |
||||
|
||||
if (t._menu) { |
||||
t._menu.removeAll(); |
||||
t._menu.destroy(); |
||||
Event.remove(ed.getDoc(), 'click', hide); |
||||
} |
||||
}; |
||||
|
||||
ed.onMouseDown.add(hide); |
||||
ed.onKeyDown.add(hide); |
||||
}, |
||||
|
||||
/** |
||||
* Returns information about the plugin as a name/value array. |
||||
* The current keys are longname, author, authorurl, infourl and version. |
||||
* |
||||
* @method getInfo |
||||
* @return {Object} Name/value array containing information about the plugin. |
||||
*/ |
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Contextmenu', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
}, |
||||
|
||||
_getMenu : function(ed) { |
||||
var t = this, m = t._menu, se = ed.selection, col = se.isCollapsed(), el = se.getNode() || ed.getBody(), am, p1, p2; |
||||
|
||||
if (m) { |
||||
m.removeAll(); |
||||
m.destroy(); |
||||
} |
||||
|
||||
p1 = DOM.getPos(ed.getContentAreaContainer()); |
||||
p2 = DOM.getPos(ed.getContainer()); |
||||
|
||||
m = ed.controlManager.createDropMenu('contextmenu', { |
||||
offset_x : p1.x + ed.getParam('contextmenu_offset_x', 0), |
||||
offset_y : p1.y + ed.getParam('contextmenu_offset_y', 0), |
||||
constrain : 1 |
||||
}); |
||||
|
||||
t._menu = m; |
||||
|
||||
m.add({title : 'advanced.cut_desc', icon : 'cut', cmd : 'Cut'}).setDisabled(col); |
||||
m.add({title : 'advanced.copy_desc', icon : 'copy', cmd : 'Copy'}).setDisabled(col); |
||||
m.add({title : 'advanced.paste_desc', icon : 'paste', cmd : 'Paste'}); |
||||
|
||||
if ((el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) || !col) { |
||||
m.addSeparator(); |
||||
m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true}); |
||||
m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'}); |
||||
} |
||||
|
||||
m.addSeparator(); |
||||
m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true}); |
||||
|
||||
m.addSeparator(); |
||||
am = m.addMenu({title : 'contextmenu.align'}); |
||||
am.add({title : 'contextmenu.left', icon : 'justifyleft', cmd : 'JustifyLeft'}); |
||||
am.add({title : 'contextmenu.center', icon : 'justifycenter', cmd : 'JustifyCenter'}); |
||||
am.add({title : 'contextmenu.right', icon : 'justifyright', cmd : 'JustifyRight'}); |
||||
am.add({title : 'contextmenu.full', icon : 'justifyfull', cmd : 'JustifyFull'}); |
||||
|
||||
t.onContextMenu.dispatch(t, m, el, col); |
||||
|
||||
return m; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('contextmenu', tinymce.plugins.ContextMenu); |
||||
})(); |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceDirectionLTR",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="ltr"){a.dom.setAttrib(d,"dir","ltr")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addCommand("mceDirectionRTL",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="rtl"){a.dom.setAttrib(d,"dir","rtl")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});a.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});a.onNodeChange.add(c._nodeChange,c)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})(); |
@ -0,0 +1,82 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.Directionality', { |
||||
init : function(ed, url) { |
||||
var t = this; |
||||
|
||||
t.editor = ed; |
||||
|
||||
ed.addCommand('mceDirectionLTR', function() { |
||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock); |
||||
|
||||
if (e) { |
||||
if (ed.dom.getAttrib(e, "dir") != "ltr") |
||||
ed.dom.setAttrib(e, "dir", "ltr"); |
||||
else |
||||
ed.dom.setAttrib(e, "dir", ""); |
||||
} |
||||
|
||||
ed.nodeChanged(); |
||||
}); |
||||
|
||||
ed.addCommand('mceDirectionRTL', function() { |
||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock); |
||||
|
||||
if (e) { |
||||
if (ed.dom.getAttrib(e, "dir") != "rtl") |
||||
ed.dom.setAttrib(e, "dir", "rtl"); |
||||
else |
||||
ed.dom.setAttrib(e, "dir", ""); |
||||
} |
||||
|
||||
ed.nodeChanged(); |
||||
}); |
||||
|
||||
ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'}); |
||||
ed.addButton('rtl', {title : 'directionality.rtl_desc', cmd : 'mceDirectionRTL'}); |
||||
|
||||
ed.onNodeChange.add(t._nodeChange, t); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Directionality', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
}, |
||||
|
||||
// Private methods
|
||||
|
||||
_nodeChange : function(ed, cm, n) { |
||||
var dom = ed.dom, dir; |
||||
|
||||
n = dom.getParent(n, dom.isBlock); |
||||
if (!n) { |
||||
cm.setDisabled('ltr', 1); |
||||
cm.setDisabled('rtl', 1); |
||||
return; |
||||
} |
||||
|
||||
dir = dom.getAttrib(n, 'dir'); |
||||
cm.setActive('ltr', dir == "ltr"); |
||||
cm.setDisabled('ltr', 0); |
||||
cm.setActive('rtl', dir == "rtl"); |
||||
cm.setDisabled('rtl', 0); |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('directionality', tinymce.plugins.Directionality); |
||||
})(); |
@ -0,0 +1 @@ |
||||
(function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce); |
@ -0,0 +1,43 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function(tinymce) { |
||||
tinymce.create('tinymce.plugins.EmotionsPlugin', { |
||||
init : function(ed, url) { |
||||
// Register commands
|
||||
ed.addCommand('mceEmotion', function() { |
||||
ed.windowManager.open({ |
||||
file : url + '/emotions.htm', |
||||
width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)), |
||||
height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url |
||||
}); |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Emotions', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); |
||||
})(tinymce); |
@ -0,0 +1,40 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#emotions_dlg.title}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="js/emotions.js"></script> |
||||
</head> |
||||
<body style="display: none"> |
||||
<div align="center"> |
||||
<div class="title">{#emotions_dlg.title}:<br /><br /></div> |
||||
|
||||
<table border="0" cellspacing="0" cellpadding="4"> |
||||
<tr> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-cool.gif','emotions_dlg.cool');"><img src="img/smiley-cool.gif" width="18" height="18" border="0" alt="{#emotions_dlg.cool}" title="{#emotions_dlg.cool}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-cry.gif','emotions_dlg.cry');"><img src="img/smiley-cry.gif" width="18" height="18" border="0" alt="{#emotions_dlg.cry}" title="{#emotions_dlg.cry}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-embarassed.gif','emotions_dlg.embarassed');"><img src="img/smiley-embarassed.gif" width="18" height="18" border="0" alt="{#emotions_dlg.embarassed}" title="{#emotions_dlg.embarassed}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-foot-in-mouth.gif','emotions_dlg.foot_in_mouth');"><img src="img/smiley-foot-in-mouth.gif" width="18" height="18" border="0" alt="{#emotions_dlg.foot_in_mouth}" title="{#emotions_dlg.foot_in_mouth}" /></a></td> |
||||
</tr> |
||||
<tr> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-frown.gif','emotions_dlg.frown');"><img src="img/smiley-frown.gif" width="18" height="18" border="0" alt="{#emotions_dlg.frown}" title="{#emotions_dlg.frown}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-innocent.gif','emotions_dlg.innocent');"><img src="img/smiley-innocent.gif" width="18" height="18" border="0" alt="{#emotions_dlg.innocent}" title="{#emotions_dlg.innocent}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-kiss.gif','emotions_dlg.kiss');"><img src="img/smiley-kiss.gif" width="18" height="18" border="0" alt="{#emotions_dlg.kiss}" title="{#emotions_dlg.kiss}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-laughing.gif','emotions_dlg.laughing');"><img src="img/smiley-laughing.gif" width="18" height="18" border="0" alt="{#emotions_dlg.laughing}" title="{#emotions_dlg.laughing}" /></a></td> |
||||
</tr> |
||||
<tr> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-money-mouth.gif','emotions_dlg.money_mouth');"><img src="img/smiley-money-mouth.gif" width="18" height="18" border="0" alt="{#emotions_dlg.money_mouth}" title="{#emotions_dlg.money_mouth}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-sealed.gif','emotions_dlg.sealed');"><img src="img/smiley-sealed.gif" width="18" height="18" border="0" alt="{#emotions_dlg.sealed}" title="{#emotions_dlg.sealed}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-smile.gif','emotions_dlg.smile');"><img src="img/smiley-smile.gif" width="18" height="18" border="0" alt="{#emotions_dlg.smile}" title="{#emotions_dlg.smile}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-surprised.gif','emotions_dlg.surprised');"><img src="img/smiley-surprised.gif" width="18" height="18" border="0" alt="{#emotions_dlg.surprised}" title="{#emotions_dlg.surprised}" /></a></td> |
||||
</tr> |
||||
<tr> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-tongue-out.gif','emotions_dlg.tongue_out');"><img src="img/smiley-tongue-out.gif" width="18" height="18" border="0" alt="{#emotions_dlg.tongue-out}" title="{#emotions_dlg.tongue_out}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-undecided.gif','emotions_dlg.undecided');"><img src="img/smiley-undecided.gif" width="18" height="18" border="0" alt="{#emotions_dlg.undecided}" title="{#emotions_dlg.undecided}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-wink.gif','emotions_dlg.wink');"><img src="img/smiley-wink.gif" width="18" height="18" border="0" alt="{#emotions_dlg.wink}" title="{#emotions_dlg.wink}" /></a></td> |
||||
<td><a href="javascript:EmotionsDialog.insert('smiley-yell.gif','emotions_dlg.yell');"><img src="img/smiley-yell.gif" width="18" height="18" border="0" alt="{#emotions_dlg.yell}" title="{#emotions_dlg.yell}" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
</body> |
||||
</html> |
After Width: | Height: | Size: 354 B |
After Width: | Height: | Size: 329 B |
After Width: | Height: | Size: 331 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 340 B |
After Width: | Height: | Size: 336 B |
After Width: | Height: | Size: 338 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 325 B |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 342 B |
After Width: | Height: | Size: 328 B |
After Width: | Height: | Size: 337 B |
After Width: | Height: | Size: 351 B |
After Width: | Height: | Size: 336 B |
@ -0,0 +1,22 @@ |
||||
tinyMCEPopup.requireLangPack(); |
||||
|
||||
var EmotionsDialog = { |
||||
init : function(ed) { |
||||
tinyMCEPopup.resizeToInnerSize(); |
||||
}, |
||||
|
||||
insert : function(file, title) { |
||||
var ed = tinyMCEPopup.editor, dom = ed.dom; |
||||
|
||||
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', { |
||||
src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file, |
||||
alt : ed.getLang(title), |
||||
title : ed.getLang(title), |
||||
border : 0 |
||||
})); |
||||
|
||||
tinyMCEPopup.close(); |
||||
} |
||||
}; |
||||
|
||||
tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog); |
@ -0,0 +1,20 @@ |
||||
tinyMCE.addI18n('en.emotions_dlg',{ |
||||
title:"Insert emotion", |
||||
desc:"Emotions", |
||||
cool:"Cool", |
||||
cry:"Cry", |
||||
embarassed:"Embarassed", |
||||
foot_in_mouth:"Foot in mouth", |
||||
frown:"Frown", |
||||
innocent:"Innocent", |
||||
kiss:"Kiss", |
||||
laughing:"Laughing", |
||||
money_mouth:"Money mouth", |
||||
sealed:"Sealed", |
||||
smile:"Smile", |
||||
surprised:"Surprised", |
||||
tongue_out:"Tongue out", |
||||
undecided:"Undecided", |
||||
wink:"Wink", |
||||
yell:"Yell" |
||||
}); |
@ -0,0 +1,22 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#example_dlg.title}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="js/dialog.js"></script> |
||||
</head> |
||||
<body> |
||||
|
||||
<form onsubmit="ExampleDialog.insert();return false;" action="#"> |
||||
<p>Here is a example dialog.</p> |
||||
<p>Selected text: <input id="someval" name="someval" type="text" class="text" /></p> |
||||
<p>Custom arg: <input id="somearg" name="somearg" type="text" class="text" /></p> |
||||
|
||||
<div class="mceActionPanel"> |
||||
<input type="button" id="insert" name="insert" value="{#insert}" onclick="ExampleDialog.insert();" /> |
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
||||
</div> |
||||
</form> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1 @@ |
||||
(function(){tinymce.PluginManager.requireLangPack("example");tinymce.create("tinymce.plugins.ExamplePlugin",{init:function(a,b){a.addCommand("mceExample",function(){a.windowManager.open({file:b+"/dialog.htm",width:320+parseInt(a.getLang("example.delta_width",0)),height:120+parseInt(a.getLang("example.delta_height",0)),inline:1},{plugin_url:b,some_custom_arg:"custom arg"})});a.addButton("example",{title:"example.desc",cmd:"mceExample",image:b+"/img/example.gif"});a.onNodeChange.add(function(d,c,e){c.setActive("example",e.nodeName=="IMG")})},createControl:function(b,a){return null},getInfo:function(){return{longname:"Example plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example",version:"1.0"}}});tinymce.PluginManager.add("example",tinymce.plugins.ExamplePlugin)})(); |
@ -0,0 +1,84 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
// Load plugin specific language pack
|
||||
tinymce.PluginManager.requireLangPack('example'); |
||||
|
||||
tinymce.create('tinymce.plugins.ExamplePlugin', { |
||||
/** |
||||
* Initializes the plugin, this will be executed after the plugin has been created. |
||||
* This call is done before the editor instance has finished it's initialization so use the onInit event |
||||
* of the editor instance to intercept that event. |
||||
* |
||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. |
||||
* @param {string} url Absolute URL to where the plugin is located. |
||||
*/ |
||||
init : function(ed, url) { |
||||
// Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample');
|
||||
ed.addCommand('mceExample', function() { |
||||
ed.windowManager.open({ |
||||
file : url + '/dialog.htm', |
||||
width : 320 + parseInt(ed.getLang('example.delta_width', 0)), |
||||
height : 120 + parseInt(ed.getLang('example.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url, // Plugin absolute URL
|
||||
some_custom_arg : 'custom arg' // Custom argument
|
||||
}); |
||||
}); |
||||
|
||||
// Register example button
|
||||
ed.addButton('example', { |
||||
title : 'example.desc', |
||||
cmd : 'mceExample', |
||||
image : url + '/img/example.gif' |
||||
}); |
||||
|
||||
// Add a node change handler, selects the button in the UI when a image is selected
|
||||
ed.onNodeChange.add(function(ed, cm, n) { |
||||
cm.setActive('example', n.nodeName == 'IMG'); |
||||
}); |
||||
}, |
||||
|
||||
/** |
||||
* Creates control instances based in the incomming name. This method is normally not |
||||
* needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons |
||||
* but you sometimes need to create more complex controls like listboxes, split buttons etc then this |
||||
* method can be used to create those. |
||||
* |
||||
* @param {String} n Name of the control to create. |
||||
* @param {tinymce.ControlManager} cm Control manager to use inorder to create new control. |
||||
* @return {tinymce.ui.Control} New control instance or null if no control was created. |
||||
*/ |
||||
createControl : function(n, cm) { |
||||
return null; |
||||
}, |
||||
|
||||
/** |
||||
* Returns information about the plugin as a name/value array. |
||||
* The current keys are longname, author, authorurl, infourl and version. |
||||
* |
||||
* @return {Object} Name/value array containing information about the plugin. |
||||
*/ |
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Example plugin', |
||||
author : 'Some author', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example', |
||||
version : "1.0" |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('example', tinymce.plugins.ExamplePlugin); |
||||
})(); |
After Width: | Height: | Size: 87 B |
@ -0,0 +1,19 @@ |
||||
tinyMCEPopup.requireLangPack(); |
||||
|
||||
var ExampleDialog = { |
||||
init : function() { |
||||
var f = document.forms[0]; |
||||
|
||||
// Get the selected contents as text and place it in the input
|
||||
f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); |
||||
f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); |
||||
}, |
||||
|
||||
insert : function() { |
||||
// Insert the contents from the input into the document
|
||||
tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); |
||||
tinyMCEPopup.close(); |
||||
} |
||||
}; |
||||
|
||||
tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog); |
@ -0,0 +1,3 @@ |
||||
tinyMCE.addI18n('en.example',{ |
||||
desc : 'This is just a template button' |
||||
}); |
@ -0,0 +1,3 @@ |
||||
tinyMCE.addI18n('en.example_dlg',{ |
||||
title : 'This is just a example title' |
||||
}); |
@ -0,0 +1,182 @@ |
||||
/* Hide the advanced tab */ |
||||
#advanced_tab { |
||||
display: none; |
||||
} |
||||
|
||||
#metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright { |
||||
width: 280px; |
||||
} |
||||
|
||||
#doctype, #docencoding { |
||||
width: 200px; |
||||
} |
||||
|
||||
#langcode { |
||||
width: 30px; |
||||
} |
||||
|
||||
#bgimage { |
||||
width: 220px; |
||||
} |
||||
|
||||
#fontface { |
||||
width: 240px; |
||||
} |
||||
|
||||
#leftmargin, #rightmargin, #topmargin, #bottommargin { |
||||
width: 50px; |
||||
} |
||||
|
||||
.panel_wrapper div.current { |
||||
height: 400px; |
||||
} |
||||
|
||||
#stylesheet, #style { |
||||
width: 240px; |
||||
} |
||||
|
||||
/* Head list classes */ |
||||
|
||||
.headlistwrapper { |
||||
width: 100%; |
||||
} |
||||
|
||||
.addbutton, .removebutton, .moveupbutton, .movedownbutton { |
||||
border-top: 1px solid; |
||||
border-left: 1px solid; |
||||
border-bottom: 1px solid; |
||||
border-right: 1px solid; |
||||
border-color: #F0F0EE; |
||||
cursor: default; |
||||
display: block; |
||||
width: 20px; |
||||
height: 20px; |
||||
} |
||||
|
||||
#doctypes { |
||||
width: 200px; |
||||
} |
||||
|
||||
.addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover { |
||||
border: 1px solid #0A246A; |
||||
background-color: #B6BDD2; |
||||
} |
||||
|
||||
.addbutton { |
||||
background-image: url('../images/add.gif'); |
||||
float: left; |
||||
margin-right: 3px; |
||||
} |
||||
|
||||
.removebutton { |
||||
background-image: url('../images/remove.gif'); |
||||
float: left; |
||||
} |
||||
|
||||
.moveupbutton { |
||||
background-image: url('../images/move_up.gif'); |
||||
float: left; |
||||
margin-right: 3px; |
||||
} |
||||
|
||||
.movedownbutton { |
||||
background-image: url('../images/move_down.gif'); |
||||
float: left; |
||||
} |
||||
|
||||
.selected { |
||||
border: 1px solid #0A246A; |
||||
background-color: #B6BDD2; |
||||
} |
||||
|
||||
.toolbar { |
||||
width: 100%; |
||||
} |
||||
|
||||
#headlist { |
||||
width: 100%; |
||||
margin-top: 3px; |
||||
font-size: 11px; |
||||
} |
||||
|
||||
#info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element { |
||||
display: none; |
||||
} |
||||
|
||||
#addmenu { |
||||
position: absolute; |
||||
border: 1px solid gray; |
||||
display: none; |
||||
z-index: 100; |
||||
background-color: white; |
||||
} |
||||
|
||||
#addmenu a { |
||||
display: block; |
||||
width: 100%; |
||||
line-height: 20px; |
||||
text-decoration: none; |
||||
background-color: white; |
||||
} |
||||
|
||||
#addmenu a:hover { |
||||
background-color: #B6BDD2; |
||||
color: black; |
||||
} |
||||
|
||||
#addmenu span { |
||||
padding-left: 10px; |
||||
padding-right: 10px; |
||||
} |
||||
|
||||
#updateElementPanel { |
||||
display: none; |
||||
} |
||||
|
||||
#script_element .panel_wrapper div.current { |
||||
height: 108px; |
||||
} |
||||
|
||||
#style_element .panel_wrapper div.current { |
||||
height: 108px; |
||||
} |
||||
|
||||
#link_element .panel_wrapper div.current { |
||||
height: 140px; |
||||
} |
||||
|
||||
#element_script_value { |
||||
width: 100%; |
||||
height: 100px; |
||||
} |
||||
|
||||
#element_comment_value { |
||||
width: 100%; |
||||
height: 120px; |
||||
} |
||||
|
||||
#element_style_value { |
||||
width: 100%; |
||||
height: 100px; |
||||
} |
||||
|
||||
#element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title { |
||||
width: 250px; |
||||
} |
||||
|
||||
.updateElementButton { |
||||
margin-top: 3px; |
||||
} |
||||
|
||||
/* MSIE specific styles */ |
||||
|
||||
* html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton { |
||||
width: 22px; |
||||
height: 22px; |
||||
} |
||||
|
||||
textarea { |
||||
height: 55px; |
||||
} |
||||
|
||||
.panel_wrapper div.current {height:420px;} |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.FullPagePlugin",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceFullPageProperties",function(){a.windowManager.open({file:b+"/fullpage.htm",width:430+parseInt(a.getLang("fullpage.delta_width",0)),height:495+parseInt(a.getLang("fullpage.delta_height",0)),inline:1},{plugin_url:b,head_html:c.head})});a.addButton("fullpage",{title:"fullpage.desc",cmd:"mceFullPageProperties"});a.onBeforeSetContent.add(c._setContent,c);a.onSetContent.add(c._setBodyAttribs,c);a.onGetContent.add(c._getContent,c)},getInfo:function(){return{longname:"Fullpage",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_setBodyAttribs:function(d,a){var l,c,e,g,b,h,j,f=this.head.match(/body(.*?)>/i);if(f&&f[1]){l=f[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g);if(l){for(c=0,e=l.length;c<e;c++){g=l[c].split("=");b=g[0].replace(/\s/,"");h=g[1];if(h){h=h.replace(/^\s+/,"").replace(/\s+$/,"");j=h.match(/^["'](.*)["']$/);if(j){h=j[1]}}else{h=b}d.dom.setAttrib(d.getBody(),"style",h)}}}},_createSerializer:function(){return new tinymce.dom.Serializer({dom:this.editor.dom,apply_source_formatting:true})},_setContent:function(d,b){var h=this,a,j,f=b.content,g,i="";if(b.format=="raw"&&h.head){return}if(b.source_view&&d.getParam("fullpage_hide_in_source_view")){return}f=f.replace(/<(\/?)BODY/gi,"<$1body");a=f.indexOf("<body");if(a!=-1){a=f.indexOf(">",a);h.head=f.substring(0,a+1);j=f.indexOf("</body",a);if(j==-1){j=f.indexOf("</body",j)}b.content=f.substring(a+1,j);h.foot=f.substring(j);function e(c){return c.replace(/<\/?[A-Z]+/g,function(k){return k.toLowerCase()})}h.head=e(h.head);h.foot=e(h.foot)}else{h.head="";if(d.getParam("fullpage_default_xml_pi")){h.head+='<?xml version="1.0" encoding="'+d.getParam("fullpage_default_encoding","ISO-8859-1")+'" ?>\n'}h.head+=d.getParam("fullpage_default_doctype",'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');h.head+="\n<html>\n<head>\n<title>"+d.getParam("fullpage_default_title","Untitled document")+"</title>\n";if(g=d.getParam("fullpage_default_encoding")){h.head+='<meta http-equiv="Content-Type" content="'+g+'" />\n'}if(g=d.getParam("fullpage_default_font_family")){i+="font-family: "+g+";"}if(g=d.getParam("fullpage_default_font_size")){i+="font-size: "+g+";"}if(g=d.getParam("fullpage_default_text_color")){i+="color: "+g+";"}h.head+="</head>\n<body"+(i?' style="'+i+'"':"")+">\n";h.foot="\n</body>\n</html>"}},_getContent:function(a,c){var b=this;if(!c.source_view||!a.getParam("fullpage_hide_in_source_view")){c.content=tinymce.trim(b.head)+"\n"+tinymce.trim(c.content)+"\n"+tinymce.trim(b.foot)}}});tinymce.PluginManager.add("fullpage",tinymce.plugins.FullPagePlugin)})(); |
@ -0,0 +1,153 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.FullPagePlugin', { |
||||
init : function(ed, url) { |
||||
var t = this; |
||||
|
||||
t.editor = ed; |
||||
|
||||
// Register commands
|
||||
ed.addCommand('mceFullPageProperties', function() { |
||||
ed.windowManager.open({ |
||||
file : url + '/fullpage.htm', |
||||
width : 430 + parseInt(ed.getLang('fullpage.delta_width', 0)), |
||||
height : 495 + parseInt(ed.getLang('fullpage.delta_height', 0)), |
||||
inline : 1 |
||||
}, { |
||||
plugin_url : url, |
||||
head_html : t.head |
||||
}); |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('fullpage', {title : 'fullpage.desc', cmd : 'mceFullPageProperties'}); |
||||
|
||||
ed.onBeforeSetContent.add(t._setContent, t); |
||||
ed.onSetContent.add(t._setBodyAttribs, t); |
||||
ed.onGetContent.add(t._getContent, t); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Fullpage', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
}, |
||||
|
||||
// Private plugin internal methods
|
||||
|
||||
_setBodyAttribs : function(ed, o) { |
||||
var bdattr, i, len, kv, k, v, t, attr = this.head.match(/body(.*?)>/i); |
||||
|
||||
if (attr && attr[1]) { |
||||
bdattr = attr[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g); |
||||
|
||||
if (bdattr) { |
||||
for(i = 0, len = bdattr.length; i < len; i++) { |
||||
kv = bdattr[i].split('='); |
||||
k = kv[0].replace(/\s/,''); |
||||
v = kv[1]; |
||||
|
||||
if (v) { |
||||
v = v.replace(/^\s+/,'').replace(/\s+$/,''); |
||||
t = v.match(/^["'](.*)["']$/); |
||||
|
||||
if (t) |
||||
v = t[1]; |
||||
} else |
||||
v = k; |
||||
|
||||
ed.dom.setAttrib(ed.getBody(), 'style', v); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
|
||||
_createSerializer : function() { |
||||
return new tinymce.dom.Serializer({ |
||||
dom : this.editor.dom, |
||||
apply_source_formatting : true |
||||
}); |
||||
}, |
||||
|
||||
_setContent : function(ed, o) { |
||||
var t = this, sp, ep, c = o.content, v, st = ''; |
||||
|
||||
// Ignore raw updated if we already have a head, this will fix issues with undo/redo keeping the head/foot separate
|
||||
if (o.format == 'raw' && t.head) |
||||
return; |
||||
|
||||
if (o.source_view && ed.getParam('fullpage_hide_in_source_view')) |
||||
return; |
||||
|
||||
// Parse out head, body and footer
|
||||
c = c.replace(/<(\/?)BODY/gi, '<$1body'); |
||||
sp = c.indexOf('<body'); |
||||
|
||||
if (sp != -1) { |
||||
sp = c.indexOf('>', sp); |
||||
t.head = c.substring(0, sp + 1); |
||||
|
||||
ep = c.indexOf('</body', sp); |
||||
if (ep == -1) |
||||
ep = c.indexOf('</body', ep); |
||||
|
||||
o.content = c.substring(sp + 1, ep); |
||||
t.foot = c.substring(ep); |
||||
|
||||
function low(s) { |
||||
return s.replace(/<\/?[A-Z]+/g, function(a) { |
||||
return a.toLowerCase(); |
||||
}) |
||||
}; |
||||
|
||||
t.head = low(t.head); |
||||
t.foot = low(t.foot); |
||||
} else { |
||||
t.head = ''; |
||||
if (ed.getParam('fullpage_default_xml_pi')) |
||||
t.head += '<?xml version="1.0" encoding="' + ed.getParam('fullpage_default_encoding', 'ISO-8859-1') + '" ?>\n'; |
||||
|
||||
t.head += ed.getParam('fullpage_default_doctype', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'); |
||||
t.head += '\n<html>\n<head>\n<title>' + ed.getParam('fullpage_default_title', 'Untitled document') + '</title>\n'; |
||||
|
||||
if (v = ed.getParam('fullpage_default_encoding')) |
||||
t.head += '<meta http-equiv="Content-Type" content="' + v + '" />\n'; |
||||
|
||||
if (v = ed.getParam('fullpage_default_font_family')) |
||||
st += 'font-family: ' + v + ';'; |
||||
|
||||
if (v = ed.getParam('fullpage_default_font_size')) |
||||
st += 'font-size: ' + v + ';'; |
||||
|
||||
if (v = ed.getParam('fullpage_default_text_color')) |
||||
st += 'color: ' + v + ';'; |
||||
|
||||
t.head += '</head>\n<body' + (st ? ' style="' + st + '"' : '') + '>\n'; |
||||
t.foot = '\n</body>\n</html>'; |
||||
} |
||||
}, |
||||
|
||||
_getContent : function(ed, o) { |
||||
var t = this; |
||||
|
||||
if (!o.source_view || !ed.getParam('fullpage_hide_in_source_view')) |
||||
o.content = tinymce.trim(t.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(t.foot); |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('fullpage', tinymce.plugins.FullPagePlugin); |
||||
})(); |
@ -0,0 +1,571 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>{#fullpage_dlg.title}</title> |
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
||||
<script type="text/javascript" src="js/fullpage.js"></script> |
||||
<link href="css/fullpage.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
<body id="advlink" style="display: none"> |
||||
<form onsubmit="updateAction();return false;" name="fullpage" action="#"> |
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="meta_tab" class="current"><span><a href="javascript:mcTabs.displayTab('meta_tab','meta_panel');" onmousedown="return false;">{#fullpage_dlg.meta_tab}</a></span></li> |
||||
<li id="appearance_tab"><span><a href="javascript:mcTabs.displayTab('appearance_tab','appearance_panel');" onmousedown="return false;">{#fullpage_dlg.appearance_tab}</a></span></li> |
||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#fullpage_dlg.advanced_tab}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="meta_panel" class="panel current"> |
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.meta_props}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="nowrap"><label for="metatitle">{#fullpage_dlg.meta_title}</label> </td> |
||||
<td><input type="text" id="metatitle" name="metatitle" value="" class="mceFocus" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="metakeywords">{#fullpage_dlg.meta_keywords}</label> </td> |
||||
<td><textarea id="metakeywords" name="metakeywords" rows="4"></textarea></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="metadescription">{#fullpage_dlg.meta_description}</label> </td> |
||||
<td><textarea id="metadescription" name="metadescription" rows="4"></textarea></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="metaauthor">{#fullpage_dlg.author}</label> </td> |
||||
<td><input type="text" id="metaauthor" name="metaauthor" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="metacopyright">{#fullpage_dlg.copyright}</label> </td> |
||||
<td><input type="text" id="metacopyright" name="metacopyright" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="metarobots">{#fullpage_dlg.meta_robots}</label> </td> |
||||
<td> |
||||
<select id="metarobots" name="metarobots"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="index,follow">{#fullpage_dlg.meta_index_follow}</option> |
||||
<option value="index,nofollow">{#fullpage_dlg.meta_index_nofollow}</option> |
||||
<option value="noindex,follow">{#fullpage_dlg.meta_noindex_follow}</option> |
||||
<option value="noindex,nofollow">{#fullpage_dlg.meta_noindex_nofollow}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.langprops}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="docencoding">{#fullpage_dlg.encoding}</label></td> |
||||
<td> |
||||
<select id="docencoding" name="docencoding"> |
||||
<option value="">{#not_set}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="doctypes">{#fullpage_dlg.doctypes}</label> </td> |
||||
<td> |
||||
<select id="doctypes" name="doctypes"> |
||||
<option value="">{#not_set}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="langcode">{#fullpage_dlg.langcode}</label> </td> |
||||
<td><input type="text" id="langcode" name="langcode" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="langdir">{#fullpage_dlg.langdir}</label></td> |
||||
<td> |
||||
<select id="langdir" name="langdir"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="ltr">{#fullpage_dlg.ltr}</option> |
||||
<option value="rtl">{#fullpage_dlg.rtl}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="nowrap"><label for="xml_pi">{#fullpage_dlg.xml_pi}</label> </td> |
||||
<td><input type="checkbox" id="xml_pi" name="xml_pi" class="checkbox" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="appearance_panel" class="panel"> |
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.appearance_textprops}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="fontface">{#fullpage_dlg.fontface}</label></td> |
||||
<td> |
||||
<select id="fontface" name="fontface" onchange="changedStyleField(this);"> |
||||
<option value="">{#not_set}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="fontsize">{#fullpage_dlg.fontsize}</label></td> |
||||
<td> |
||||
<select id="fontsize" name="fontsize" onchange="changedStyleField(this);"> |
||||
<option value="">{#not_set}</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="textcolor">{#fullpage_dlg.textcolor}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="textcolor" name="textcolor" type="text" value="" size="9" onchange="updateColor('textcolor_pick','textcolor');changedStyleField(this);" /></td> |
||||
<td id="textcolor_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.appearance_bgprops}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="bgimage">{#fullpage_dlg.bgimage}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="bgimage" name="bgimage" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
<td id="bgimage_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="bgcolor">{#fullpage_dlg.bgcolor}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');changedStyleField(this);" /></td> |
||||
<td id="bgcolor_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.appearance_marginprops}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="leftmargin">{#fullpage_dlg.left_margin}</label></td> |
||||
<td><input id="leftmargin" name="leftmargin" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
<td class="column1"><label for="rightmargin">{#fullpage_dlg.right_margin}</label></td> |
||||
<td><input id="rightmargin" name="rightmargin" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="topmargin">{#fullpage_dlg.top_margin}</label></td> |
||||
<td><input id="topmargin" name="topmargin" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
<td class="column1"><label for="bottommargin">{#fullpage_dlg.bottom_margin}</label></td> |
||||
<td><input id="bottommargin" name="bottommargin" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.appearance_linkprops}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="link_color">{#fullpage_dlg.link_color}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="link_color" name="link_color" type="text" value="" size="9" onchange="updateColor('link_color_pick','link_color');changedStyleField(this);" /></td> |
||||
<td id="link_color_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
|
||||
<td class="column1"><label for="visited_color">{#fullpage_dlg.visited_color}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="visited_color" name="visited_color" type="text" value="" size="9" onchange="updateColor('visited_color_pick','visited_color');changedStyleField(this);" /></td> |
||||
<td id="visited_color_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td class="column1"><label for="active_color">{#fullpage_dlg.active_color}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="active_color" name="active_color" type="text" value="" size="9" onchange="updateColor('active_color_pick','active_color');changedStyleField(this);" /></td> |
||||
<td id="active_color_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
|
||||
<td> </td> |
||||
<td> </td> |
||||
|
||||
<!-- <td class="column1"><label for="hover_color">{#fullpage_dlg.hover_color}</label></td> |
||||
<td> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="hover_color" name="hover_color" type="text" value="" size="9" onchange="changedStyleField(this);" /></td> |
||||
<td id="hover_color_pickcontainer"> </td> |
||||
</tr> |
||||
</table> |
||||
</td> --> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.appearance_style}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="stylesheet">{#fullpage_dlg.stylesheet}</label></td> |
||||
<td><table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="stylesheet" name="stylesheet" type="text" value="" /></td> |
||||
<td id="stylesheet_browsercontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="style">{#fullpage_dlg.style}</label></td> |
||||
<td><input id="style" name="style" type="text" value="" onchange="changedStyleField(this);" /></td> |
||||
</tr> |
||||
</table> |
||||
</fieldset> |
||||
</div> |
||||
|
||||
<div id="advanced_panel" class="panel"> |
||||
<div id="addmenu"> |
||||
<table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr><td><a href="javascript:addHeadElm('title');" onmousedown="return false;"><span>{#fullpage_dlg.add_title}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('meta');" onmousedown="return false;"><span>{#fullpage_dlg.add_meta}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('script');" onmousedown="return false;"><span>{#fullpage_dlg.add_script}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('style');" onmousedown="return false;"><span>{#fullpage_dlg.add_style}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('link');" onmousedown="return false;"><span>{#fullpage_dlg.add_link}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('base');" onmousedown="return false;"><span>{#fullpage_dlg.add_base}</span></a></td></tr> |
||||
<tr><td><a href="javascript:addHeadElm('comment');" onmousedown="return false;"><span>{#fullpage_dlg.add_comment}</span></a></td></tr> |
||||
</table> |
||||
</div> |
||||
|
||||
<fieldset> |
||||
<legend>{#fullpage_dlg.head_elements}</legend> |
||||
|
||||
<div class="headlistwrapper"> |
||||
<div class="toolbar"> |
||||
<div style="float: left"> |
||||
<a id="addbutton" href="javascript:showAddMenu();" onmousedown="return false;" class="addbutton" title="{#fullpage_dlg.add}"></a> |
||||
<a href="#" onmousedown="return false;" class="removebutton" title="{#fullpage_dlg.remove}"></a> |
||||
</div> |
||||
<div style="float: right"> |
||||
<a href="#" onmousedown="return false;" class="moveupbutton" title="{#fullpage_dlg.moveup}"></a> |
||||
<a href="#" onmousedown="return false;" class="movedownbutton" title="{#fullpage_dlg.movedown}"></a> |
||||
</div> |
||||
<br style="clear: both" /> |
||||
</div> |
||||
<select id="headlist" size="26" onchange="updateHeadElm(this.options[this.selectedIndex].value);"> |
||||
<option value="title_0"><title>Some title bla bla bla</title></option> |
||||
<option value="meta_1"><meta name="keywords">Some bla bla bla</meta></option> |
||||
<option value="meta_2"><meta name="description">Some bla bla bla bla bla bla bla bla bla</meta></option> |
||||
<option value="script_3"><script language="javascript">...</script></option> |
||||
<option value="style_4"><style>...</style></option> |
||||
<option value="base_5"><base href="." /></option> |
||||
<option value="comment_6"><!-- ... --></option> |
||||
<option value="link_7"><link href="." /></option> |
||||
</select> |
||||
</div> |
||||
</fieldset> |
||||
|
||||
<fieldset id="meta_element"> |
||||
<legend>{#fullpage_dlg.meta_element}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_meta_type">{#fullpage_dlg.type}</label></td> |
||||
<td><select id="element_meta_type"> |
||||
<option value="name">name</option> |
||||
<option value="http-equiv">http-equiv</option> |
||||
</select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_meta_name">{#fullpage_dlg.name}</label></td> |
||||
<td><input id="element_meta_name" name="element_meta_name" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_meta_content">{#fullpage_dlg.content}</label></td> |
||||
<td><input id="element_meta_content" name="element_meta_content" type="text" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<input type="button" id="meta_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="title_element"> |
||||
<legend>{#fullpage_dlg.title_element}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_title">{#fullpage_dlg.meta_title}</label></td> |
||||
<td><input id="element_title" name="element_title" type="text" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<input type="button" id="title_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="script_element"> |
||||
<legend>{#fullpage_dlg.script_element}</legend> |
||||
|
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="script_props_tab" class="current"><span><a href="javascript:mcTabs.displayTab('script_props_tab','script_props_panel');" onmousedown="return false;">{#fullpage_dlg.properties}</a></span></li> |
||||
<li id="script_value_tab"><span><a href="javascript:mcTabs.displayTab('script_value_tab','script_value_panel');" onmousedown="return false;">{#fullpage_dlg.value}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<br style="clear: both" /> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="script_props_panel" class="panel current"> |
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_script_type">{#fullpage_dlg.type}</label></td> |
||||
<td><select id="element_script_type"> |
||||
<option value="text/javascript">text/javascript</option> |
||||
<option value="text/jscript">text/jscript</option> |
||||
<option value="text/vbscript">text/vbscript</option> |
||||
<option value="text/vbs">text/vbs</option> |
||||
<option value="text/ecmascript">text/ecmascript</option> |
||||
<option value="text/xml">text/xml</option> |
||||
</select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_script_src">{#fullpage_dlg.src}</label></td> |
||||
<td><table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="element_script_src" name="element_script_src" type="text" value="" /></td> |
||||
<td id="script_src_pickcontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_script_charset">{#fullpage_dlg.charset}</label></td> |
||||
<td><select id="element_script_charset"><option value="">{#not_set}</option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_script_defer">{#fullpage_dlg.defer}</label></td> |
||||
<td><input type="checkbox" id="element_script_defer" name="element_script_defer" class="checkbox" /></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
|
||||
<div id="script_value_panel" class="panel"> |
||||
<textarea id="element_script_value"></textarea> |
||||
</div> |
||||
</div> |
||||
|
||||
<input type="button" id="script_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="style_element"> |
||||
<legend>{#fullpage_dlg.style_element}</legend> |
||||
|
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="style_props_tab" class="current"><span><a href="javascript:mcTabs.displayTab('style_props_tab','style_props_panel');" onmousedown="return false;">{#fullpage_dlg.properties}</a></span></li> |
||||
<li id="style_value_tab"><span><a href="javascript:mcTabs.displayTab('style_value_tab','style_value_panel');" onmousedown="return false;">{#fullpage_dlg.value}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<br style="clear: both" /> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="style_props_panel" class="panel current"> |
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_style_type">{#fullpage_dlg.type}</label></td> |
||||
<td><select id="element_style_type"> |
||||
<option value="text/css">text/css</option> |
||||
</select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_style_media">{#fullpage_dlg.media}</label></td> |
||||
<td><select id="element_style_media"></select></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
|
||||
<div id="style_value_panel" class="panel"> |
||||
<textarea id="element_style_value"></textarea> |
||||
</div> |
||||
</div> |
||||
|
||||
<input type="button" id="style_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="base_element"> |
||||
<legend>{#fullpage_dlg.base_element}</legend> |
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_base_href">{#fullpage_dlg.href}</label></td> |
||||
<td><input id="element_base_href" name="element_base_href" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_base_target">{#fullpage_dlg.target}</label></td> |
||||
<td><input id="element_base_target" name="element_base_target" type="text" value="" /></td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<input type="button" id="base_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="link_element"> |
||||
<legend>{#fullpage_dlg.link_element}</legend> |
||||
|
||||
<div class="tabs"> |
||||
<ul> |
||||
<li id="link_general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('link_general_tab','link_general_panel');" onmousedown="return false;">{#fullpage_dlg.general_props}</a></span></li> |
||||
<li id="link_advanced_tab"><span><a href="javascript:mcTabs.displayTab('link_advanced_tab','link_advanced_panel');" onmousedown="return false;">{#fullpage_dlg.advanced_props}</a></span></li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<br style="clear: both" /> |
||||
|
||||
<div class="panel_wrapper"> |
||||
<div id="link_general_panel" class="panel current"> |
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_href">{#fullpage_dlg.href}</label></td> |
||||
<td><table border="0" cellpadding="0" cellspacing="0"> |
||||
<tr> |
||||
<td><input id="element_link_href" name="element_link_href" type="text" value="" /></td> |
||||
<td id="link_href_pickcontainer"> </td> |
||||
</tr> |
||||
</table></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_title">{#fullpage_dlg.meta_title}</label></td> |
||||
<td><input id="element_link_title" name="element_link_title" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_type">{#fullpage_dlg.type}</label></td> |
||||
<td><select id="element_link_type" name="element_link_type"> |
||||
<option value="text/css">text/css</option> |
||||
<option value="text/javascript">text/javascript</option> |
||||
</select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_media">{#fullpage_dlg.media}</label></td> |
||||
<td><select id="element_link_media" name="element_link_media"></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="element_style_rel">{#fullpage_dlg.rel}</label></td> |
||||
<td><select id="element_style_rel" name="element_style_rel"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="stylesheet">Stylesheet</option> |
||||
<option value="alternate">Alternate</option> |
||||
<option value="designates">Designates</option> |
||||
<option value="start">Start</option> |
||||
<option value="next">Next</option> |
||||
<option value="prev">Prev</option> |
||||
<option value="contents">Contents</option> |
||||
<option value="index">Index</option> |
||||
<option value="glossary">Glossary</option> |
||||
<option value="copyright">Copyright</option> |
||||
<option value="chapter">Chapter</option> |
||||
<option value="subsection">Subsection</option> |
||||
<option value="appendix">Appendix</option> |
||||
<option value="help">Help</option> |
||||
<option value="bookmark">Bookmark</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
|
||||
<div id="link_advanced_panel" class="panel"> |
||||
<table border="0" cellpadding="4" cellspacing="0"> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_charset">{#fullpage_dlg.charset}</label></td> |
||||
<td><select id="element_link_charset"><option value="">{#not_set}</option></select></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_hreflang">{#fullpage_dlg.hreflang}</label></td> |
||||
<td><input id="element_link_hreflang" name="element_link_hreflang" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td class="column1"><label for="element_link_target">{#fullpage_dlg.target}</label></td> |
||||
<td><input id="element_link_target" name="element_link_target" type="text" value="" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td><label for="element_style_rev">{#fullpage_dlg.rev}</label></td> |
||||
<td><select id="element_style_rev" name="element_style_rev"> |
||||
<option value="">{#not_set}</option> |
||||
<option value="alternate">Alternate</option> |
||||
<option value="designates">Designates</option> |
||||
<option value="stylesheet">Stylesheet</option> |
||||
<option value="start">Start</option> |
||||
<option value="next">Next</option> |
||||
<option value="prev">Prev</option> |
||||
<option value="contents">Contents</option> |
||||
<option value="index">Index</option> |
||||
<option value="glossary">Glossary</option> |
||||
<option value="copyright">Copyright</option> |
||||
<option value="chapter">Chapter</option> |
||||
<option value="subsection">Subsection</option> |
||||
<option value="appendix">Appendix</option> |
||||
<option value="help">Help</option> |
||||
<option value="bookmark">Bookmark</option> |
||||
</select> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
|
||||
<input type="button" id="link_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
|
||||
<fieldset id="comment_element"> |
||||
<legend>{#fullpage_dlg.comment_element}</legend> |
||||
|
||||
<textarea id="element_comment_value"></textarea> |
||||
|
||||
<input type="button" id="comment_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" /> |
||||
</fieldset> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="mceActionPanel"> |
||||
<input type="submit" id="insert" name="update" value="{#update}" /> |
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
||||
</div> |
||||
</form> |
||||
</body> |
||||
</html> |
@ -0,0 +1,471 @@ |
||||
/** |
||||
* fullpage.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
tinyMCEPopup.requireLangPack(); |
||||
|
||||
var doc; |
||||
|
||||
var defaultDocTypes =
|
||||
'XHTML 1.0 Transitional=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">,' + |
||||
'XHTML 1.0 Frameset=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">,' + |
||||
'XHTML 1.0 Strict=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">,' + |
||||
'XHTML 1.1=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">,' + |
||||
'HTML 4.01 Transitional=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">,' + |
||||
'HTML 4.01 Strict=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">,' + |
||||
'HTML 4.01 Frameset=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'; |
||||
|
||||
var defaultEncodings =
|
||||
'Western european (iso-8859-1)=iso-8859-1,' + |
||||
'Central European (iso-8859-2)=iso-8859-2,' + |
||||
'Unicode (UTF-8)=utf-8,' + |
||||
'Chinese traditional (Big5)=big5,' + |
||||
'Cyrillic (iso-8859-5)=iso-8859-5,' + |
||||
'Japanese (iso-2022-jp)=iso-2022-jp,' + |
||||
'Greek (iso-8859-7)=iso-8859-7,' + |
||||
'Korean (iso-2022-kr)=iso-2022-kr,' + |
||||
'ASCII (us-ascii)=us-ascii'; |
||||
|
||||
var defaultMediaTypes =
|
||||
'all=all,' + |
||||
'screen=screen,' + |
||||
'print=print,' + |
||||
'tty=tty,' + |
||||
'tv=tv,' + |
||||
'projection=projection,' + |
||||
'handheld=handheld,' + |
||||
'braille=braille,' + |
||||
'aural=aural'; |
||||
|
||||
var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings'; |
||||
var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px'; |
||||
|
||||
function init() { |
||||
var f = document.forms['fullpage'], el = f.elements, e, i, p, doctypes, encodings, mediaTypes, fonts, ed = tinyMCEPopup.editor, dom = tinyMCEPopup.dom, style; |
||||
|
||||
// Setup doctype select box
|
||||
doctypes = ed.getParam("fullpage_doctypes", defaultDocTypes).split(','); |
||||
for (i=0; i<doctypes.length; i++) { |
||||
p = doctypes[i].split('='); |
||||
|
||||
if (p.length > 1) |
||||
addSelectValue(f, 'doctypes', p[0], p[1]); |
||||
} |
||||
|
||||
// Setup fonts select box
|
||||
fonts = ed.getParam("fullpage_fonts", defaultFontNames).split(';'); |
||||
for (i=0; i<fonts.length; i++) { |
||||
p = fonts[i].split('='); |
||||
|
||||
if (p.length > 1) |
||||
addSelectValue(f, 'fontface', p[0], p[1]); |
||||
} |
||||
|
||||
// Setup fontsize select box
|
||||
fonts = ed.getParam("fullpage_fontsizes", defaultFontSizes).split(','); |
||||
for (i=0; i<fonts.length; i++) |
||||
addSelectValue(f, 'fontsize', fonts[i], fonts[i]); |
||||
|
||||
// Setup mediatype select boxs
|
||||
mediaTypes = ed.getParam("fullpage_media_types", defaultMediaTypes).split(','); |
||||
for (i=0; i<mediaTypes.length; i++) { |
||||
p = mediaTypes[i].split('='); |
||||
|
||||
if (p.length > 1) { |
||||
addSelectValue(f, 'element_style_media', p[0], p[1]); |
||||
addSelectValue(f, 'element_link_media', p[0], p[1]); |
||||
} |
||||
} |
||||
|
||||
// Setup encodings select box
|
||||
encodings = ed.getParam("fullpage_encodings", defaultEncodings).split(','); |
||||
for (i=0; i<encodings.length; i++) { |
||||
p = encodings[i].split('='); |
||||
|
||||
if (p.length > 1) { |
||||
addSelectValue(f, 'docencoding', p[0], p[1]); |
||||
addSelectValue(f, 'element_script_charset', p[0], p[1]); |
||||
addSelectValue(f, 'element_link_charset', p[0], p[1]); |
||||
} |
||||
} |
||||
|
||||
document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); |
||||
document.getElementById('link_color_pickcontainer').innerHTML = getColorPickerHTML('link_color_pick','link_color'); |
||||
//document.getElementById('hover_color_pickcontainer').innerHTML = getColorPickerHTML('hover_color_pick','hover_color');
|
||||
document.getElementById('visited_color_pickcontainer').innerHTML = getColorPickerHTML('visited_color_pick','visited_color'); |
||||
document.getElementById('active_color_pickcontainer').innerHTML = getColorPickerHTML('active_color_pick','active_color'); |
||||
document.getElementById('textcolor_pickcontainer').innerHTML = getColorPickerHTML('textcolor_pick','textcolor'); |
||||
document.getElementById('stylesheet_browsercontainer').innerHTML = getBrowserHTML('stylesheetbrowser','stylesheet','file','fullpage'); |
||||
document.getElementById('link_href_pickcontainer').innerHTML = getBrowserHTML('link_href_browser','element_link_href','file','fullpage'); |
||||
document.getElementById('script_src_pickcontainer').innerHTML = getBrowserHTML('script_src_browser','element_script_src','file','fullpage'); |
||||
document.getElementById('bgimage_pickcontainer').innerHTML = getBrowserHTML('bgimage_browser','bgimage','image','fullpage'); |
||||
|
||||
// Resize some elements
|
||||
if (isVisible('stylesheetbrowser')) |
||||
document.getElementById('stylesheet').style.width = '220px'; |
||||
|
||||
if (isVisible('link_href_browser')) |
||||
document.getElementById('element_link_href').style.width = '230px'; |
||||
|
||||
if (isVisible('bgimage_browser')) |
||||
document.getElementById('bgimage').style.width = '210px'; |
||||
|
||||
// Add iframe
|
||||
dom.add(document.body, 'iframe', {id : 'documentIframe', src : 'javascript:""', style : {display : 'none'}}); |
||||
doc = dom.get('documentIframe').contentWindow.document; |
||||
h = tinyMCEPopup.getWindowArg('head_html'); |
||||
|
||||
// Preprocess the HTML disable scripts and urls
|
||||
h = h.replace(/<script>/gi, '<script type="text/javascript">'); |
||||
h = h.replace(/type=([\"\'])?/gi, 'type=$1-mce-'); |
||||
h = h.replace(/(src=|href=)/g, '_mce_$1'); |
||||
|
||||
// Write in the content in the iframe
|
||||
doc.write(h + '</body></html>'); |
||||
doc.close(); |
||||
|
||||
// Parse xml and doctype
|
||||
xmlVer = getReItem(/<\?\s*?xml.*?version\s*?=\s*?"(.*?)".*?\?>/gi, h, 1); |
||||
xmlEnc = getReItem(/<\?\s*?xml.*?encoding\s*?=\s*?"(.*?)".*?\?>/gi, h, 1); |
||||
docType = getReItem(/<\!DOCTYPE.*?>/gi, h.replace(/\n/g, ''), 0).replace(/ +/g, ' '); |
||||
f.langcode.value = getReItem(/lang="(.*?)"/gi, h, 1); |
||||
|
||||
// Parse title
|
||||
if (e = doc.getElementsByTagName('title')[0]) |
||||
el.metatitle.value = e.textContent || e.text; |
||||
|
||||
// Parse meta
|
||||
tinymce.each(doc.getElementsByTagName('meta'), function(n) { |
||||
var na = (n.getAttribute('name', 2) || '').toLowerCase(), va = n.getAttribute('content', 2), eq = n.getAttribute('httpEquiv', 2) || ''; |
||||
|
||||
e = el['meta' + na]; |
||||
|
||||
if (na == 'robots') { |
||||
selectByValue(f, 'metarobots', tinymce.trim(va), true, true); |
||||
return; |
||||
} |
||||
|
||||
switch (eq.toLowerCase()) { |
||||
case "content-type": |
||||
tmp = getReItem(/charset\s*=\s*(.*)\s*/gi, va, 1); |
||||
|
||||
// Override XML encoding
|
||||
if (tmp != "") |
||||
xmlEnc = tmp; |
||||
|
||||
return; |
||||
} |
||||
|
||||
if (e) |
||||
e.value = va; |
||||
}); |
||||
|
||||
selectByValue(f, 'doctypes', docType, true, true); |
||||
selectByValue(f, 'docencoding', xmlEnc, true, true); |
||||
selectByValue(f, 'langdir', doc.body.getAttribute('dir', 2) || '', true, true); |
||||
|
||||
if (xmlVer != '') |
||||
el.xml_pi.checked = true; |
||||
|
||||
// Parse appearance
|
||||
|
||||
// Parse primary stylesheet
|
||||
tinymce.each(doc.getElementsByTagName("link"), function(l) { |
||||
var m = l.getAttribute('media', 2) || '', t = l.getAttribute('type', 2) || ''; |
||||
|
||||
if (t == "-mce-text/css" && (m == "" || m == "screen" || m == "all") && (l.getAttribute('rel', 2) || '') == "stylesheet") { |
||||
f.stylesheet.value = l.getAttribute('_mce_href', 2) || ''; |
||||
return false; |
||||
} |
||||
}); |
||||
|
||||
// Get from style elements
|
||||
tinymce.each(doc.getElementsByTagName("style"), function(st) { |
||||
var tmp = parseStyleElement(st); |
||||
|
||||
for (x=0; x<tmp.length; x++) { |
||||
if (tmp[x].rule.indexOf('a:visited') != -1 && tmp[x].data['color']) |
||||
f.visited_color.value = tmp[x].data['color']; |
||||
|
||||
if (tmp[x].rule.indexOf('a:link') != -1 && tmp[x].data['color']) |
||||
f.link_color.value = tmp[x].data['color']; |
||||
|
||||
if (tmp[x].rule.indexOf('a:active') != -1 && tmp[x].data['color']) |
||||
f.active_color.value = tmp[x].data['color']; |
||||
} |
||||
}); |
||||
|
||||
f.textcolor.value = tinyMCEPopup.dom.getAttrib(doc.body, "text"); |
||||
f.active_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "alink"); |
||||
f.link_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "link"); |
||||
f.visited_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "vlink"); |
||||
f.bgcolor.value = tinyMCEPopup.dom.getAttrib(doc.body, "bgcolor"); |
||||
f.bgimage.value = tinyMCEPopup.dom.getAttrib(doc.body, "background"); |
||||
|
||||
// Get from style info
|
||||
style = tinyMCEPopup.dom.parseStyle(tinyMCEPopup.dom.getAttrib(doc.body, 'style')); |
||||
|
||||
if (style['font-family']) |
||||
selectByValue(f, 'fontface', style['font-family'], true, true); |
||||
else |
||||
selectByValue(f, 'fontface', ed.getParam("fullpage_default_fontface", ""), true, true); |
||||
|
||||
if (style['font-size']) |
||||
selectByValue(f, 'fontsize', style['font-size'], true, true); |
||||
else |
||||
selectByValue(f, 'fontsize', ed.getParam("fullpage_default_fontsize", ""), true, true); |
||||
|
||||
if (style['color']) |
||||
f.textcolor.value = convertRGBToHex(style['color']); |
||||
|
||||
if (style['background-image']) |
||||
f.bgimage.value = style['background-image'].replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"); |
||||
|
||||
if (style['background-color']) |
||||
f.bgcolor.value = style['background-color']; |
||||
|
||||
if (style['margin']) { |
||||
tmp = style['margin'].replace(/[^0-9 ]/g, ''); |
||||
tmp = tmp.split(/ +/); |
||||
f.topmargin.value = tmp.length > 0 ? tmp[0] : ''; |
||||
f.rightmargin.value = tmp.length > 1 ? tmp[1] : tmp[0]; |
||||
f.bottommargin.value = tmp.length > 2 ? tmp[2] : tmp[0]; |
||||
f.leftmargin.value = tmp.length > 3 ? tmp[3] : tmp[0]; |
||||
} |
||||
|
||||
if (style['margin-left']) |
||||
f.leftmargin.value = style['margin-left'].replace(/[^0-9]/g, ''); |
||||
|
||||
if (style['margin-right']) |
||||
f.rightmargin.value = style['margin-right'].replace(/[^0-9]/g, ''); |
||||
|
||||
if (style['margin-top']) |
||||
f.topmargin.value = style['margin-top'].replace(/[^0-9]/g, ''); |
||||
|
||||
if (style['margin-bottom']) |
||||
f.bottommargin.value = style['margin-bottom'].replace(/[^0-9]/g, ''); |
||||
|
||||
f.style.value = tinyMCEPopup.dom.serializeStyle(style); |
||||
|
||||
// Update colors
|
||||
updateColor('textcolor_pick', 'textcolor'); |
||||
updateColor('bgcolor_pick', 'bgcolor'); |
||||
updateColor('visited_color_pick', 'visited_color'); |
||||
updateColor('active_color_pick', 'active_color'); |
||||
updateColor('link_color_pick', 'link_color'); |
||||
} |
||||
|
||||
function getReItem(r, s, i) { |
||||
var c = r.exec(s); |
||||
|
||||
if (c && c.length > i) |
||||
return c[i]; |
||||
|
||||
return ''; |
||||
} |
||||
|
||||
function updateAction() { |
||||
var f = document.forms[0], nl, i, h, v, s, head, html, l, tmp, addlink = true, ser; |
||||
|
||||
head = doc.getElementsByTagName('head')[0]; |
||||
|
||||
// Fix scripts without a type
|
||||
nl = doc.getElementsByTagName('script'); |
||||
for (i=0; i<nl.length; i++) { |
||||
if (tinyMCEPopup.dom.getAttrib(nl[i], '_mce_type') == '') |
||||
nl[i].setAttribute('_mce_type', 'text/javascript'); |
||||
} |
||||
|
||||
// Get primary stylesheet
|
||||
nl = doc.getElementsByTagName("link"); |
||||
for (i=0; i<nl.length; i++) { |
||||
l = nl[i]; |
||||
|
||||
tmp = tinyMCEPopup.dom.getAttrib(l, 'media'); |
||||
|
||||
if (tinyMCEPopup.dom.getAttrib(l, '_mce_type') == "text/css" && (tmp == "" || tmp == "screen" || tmp == "all") && tinyMCEPopup.dom.getAttrib(l, 'rel') == "stylesheet") { |
||||
addlink = false; |
||||
|
||||
if (f.stylesheet.value == '') |
||||
l.parentNode.removeChild(l); |
||||
else |
||||
l.setAttribute('_mce_href', f.stylesheet.value); |
||||
|
||||
break; |
||||
} |
||||
} |
||||
|
||||
// Add new link
|
||||
if (f.stylesheet.value != '') { |
||||
l = doc.createElement('link'); |
||||
|
||||
l.setAttribute('type', 'text/css'); |
||||
l.setAttribute('_mce_href', f.stylesheet.value); |
||||
l.setAttribute('rel', 'stylesheet'); |
||||
|
||||
head.appendChild(l); |
||||
} |
||||
|
||||
setMeta(head, 'keywords', f.metakeywords.value); |
||||
setMeta(head, 'description', f.metadescription.value); |
||||
setMeta(head, 'author', f.metaauthor.value); |
||||
setMeta(head, 'copyright', f.metacopyright.value); |
||||
setMeta(head, 'robots', getSelectValue(f, 'metarobots')); |
||||
setMeta(head, 'Content-Type', getSelectValue(f, 'docencoding')); |
||||
|
||||
doc.body.dir = getSelectValue(f, 'langdir'); |
||||
doc.body.style.cssText = f.style.value; |
||||
|
||||
doc.body.setAttribute('vLink', f.visited_color.value); |
||||
doc.body.setAttribute('link', f.link_color.value); |
||||
doc.body.setAttribute('text', f.textcolor.value); |
||||
doc.body.setAttribute('aLink', f.active_color.value); |
||||
|
||||
doc.body.style.fontFamily = getSelectValue(f, 'fontface'); |
||||
doc.body.style.fontSize = getSelectValue(f, 'fontsize'); |
||||
doc.body.style.backgroundColor = f.bgcolor.value; |
||||
|
||||
if (f.leftmargin.value != '') |
||||
doc.body.style.marginLeft = f.leftmargin.value + 'px'; |
||||
|
||||
if (f.rightmargin.value != '') |
||||
doc.body.style.marginRight = f.rightmargin.value + 'px'; |
||||
|
||||
if (f.bottommargin.value != '') |
||||
doc.body.style.marginBottom = f.bottommargin.value + 'px'; |
||||
|
||||
if (f.topmargin.value != '') |
||||
doc.body.style.marginTop = f.topmargin.value + 'px'; |
||||
|
||||
html = doc.getElementsByTagName('html')[0]; |
||||
html.setAttribute('lang', f.langcode.value); |
||||
html.setAttribute('xml:lang', f.langcode.value); |
||||
|
||||
if (f.bgimage.value != '') |
||||
doc.body.style.backgroundImage = "url('" + f.bgimage.value + "')"; |
||||
else |
||||
doc.body.style.backgroundImage = ''; |
||||
|
||||
ser = tinyMCEPopup.editor.plugins.fullpage._createSerializer(); |
||||
ser.setRules('-title,meta[http-equiv|name|content],base[href|target],link[href|rel|type|title|media],style[type],script[type|language|src],html[lang|xml::lang|xmlns],body[style|dir|vlink|link|text|alink],head'); |
||||
|
||||
h = ser.serialize(doc.documentElement); |
||||
h = h.substring(0, h.lastIndexOf('</body>')); |
||||
|
||||
if (h.indexOf('<title>') == -1) |
||||
h = h.replace(/<head.*?>/, '$&\n' + '<title>' + tinyMCEPopup.dom.encode(f.metatitle.value) + '</title>'); |
||||
else |
||||
h = h.replace(/<title>(.*?)<\/title>/, '<title>' + tinyMCEPopup.dom.encode(f.metatitle.value) + '</title>'); |
||||
|
||||
if ((v = getSelectValue(f, 'doctypes')) != '') |
||||
h = v + '\n' + h; |
||||
|
||||
if (f.xml_pi.checked) { |
||||
s = '<?xml version="1.0"'; |
||||
|
||||
if ((v = getSelectValue(f, 'docencoding')) != '') |
||||
s += ' encoding="' + v + '"'; |
||||
|
||||
s += '?>\n'; |
||||
h = s + h; |
||||
} |
||||
|
||||
h = h.replace(/type=\"\-mce\-/gi, 'type="'); |
||||
|
||||
tinyMCEPopup.editor.plugins.fullpage.head = h; |
||||
tinyMCEPopup.editor.plugins.fullpage._setBodyAttribs(tinyMCEPopup.editor, {}); |
||||
tinyMCEPopup.close(); |
||||
} |
||||
|
||||
function changedStyleField(field) { |
||||
} |
||||
|
||||
function setMeta(he, k, v) { |
||||
var nl, i, m; |
||||
|
||||
nl = he.getElementsByTagName('meta'); |
||||
for (i=0; i<nl.length; i++) { |
||||
if (k == 'Content-Type' && tinyMCEPopup.dom.getAttrib(nl[i], 'http-equiv') == k) { |
||||
if (v == '') |
||||
nl[i].parentNode.removeChild(nl[i]); |
||||
else |
||||
nl[i].setAttribute('content', "text/html; charset=" + v); |
||||
|
||||
return; |
||||
} |
||||
|
||||
if (tinyMCEPopup.dom.getAttrib(nl[i], 'name') == k) { |
||||
if (v == '') |
||||
nl[i].parentNode.removeChild(nl[i]); |
||||
else |
||||
nl[i].setAttribute('content', v); |
||||
return; |
||||
} |
||||
} |
||||
|
||||
if (v == '') |
||||
return; |
||||
|
||||
m = doc.createElement('meta'); |
||||
|
||||
if (k == 'Content-Type') |
||||
m.httpEquiv = k; |
||||
else |
||||
m.setAttribute('name', k); |
||||
|
||||
m.setAttribute('content', v); |
||||
he.appendChild(m); |
||||
} |
||||
|
||||
function parseStyleElement(e) { |
||||
var v = e.innerHTML; |
||||
var p, i, r; |
||||
|
||||
v = v.replace(/<!--/gi, ''); |
||||
v = v.replace(/-->/gi, ''); |
||||
v = v.replace(/[\n\r]/gi, ''); |
||||
v = v.replace(/\s+/gi, ' '); |
||||
|
||||
r = []; |
||||
p = v.split(/{|}/); |
||||
|
||||
for (i=0; i<p.length; i+=2) { |
||||
if (p[i] != "") |
||||
r[r.length] = {rule : tinymce.trim(p[i]), data : tinyMCEPopup.dom.parseStyle(p[i+1])}; |
||||
} |
||||
|
||||
return r; |
||||
} |
||||
|
||||
function serializeStyleElement(d) { |
||||
var i, s, st; |
||||
|
||||
s = '<!--\n'; |
||||
|
||||
for (i=0; i<d.length; i++) { |
||||
s += d[i].rule + ' {\n'; |
||||
|
||||
st = tinyMCE.serializeStyle(d[i].data); |
||||
|
||||
if (st != '') |
||||
st += ';'; |
||||
|
||||
s += st.replace(/;/g, ';\n'); |
||||
s += '}\n'; |
||||
|
||||
if (i != d.length - 1) |
||||
s += '\n'; |
||||
} |
||||
|
||||
s += '\n-->'; |
||||
|
||||
return s; |
||||
} |
||||
|
||||
tinyMCEPopup.onInit.add(init); |
@ -0,0 +1,85 @@ |
||||
tinyMCE.addI18n('en.fullpage_dlg',{ |
||||
title:"Document properties", |
||||
meta_tab:"General", |
||||
appearance_tab:"Appearance", |
||||
advanced_tab:"Advanced", |
||||
meta_props:"Meta information", |
||||
langprops:"Language and encoding", |
||||
meta_title:"Title", |
||||
meta_keywords:"Keywords", |
||||
meta_description:"Description", |
||||
meta_robots:"Robots", |
||||
doctypes:"Doctype", |
||||
langcode:"Language code", |
||||
langdir:"Language direction", |
||||
ltr:"Left to right", |
||||
rtl:"Right to left", |
||||
xml_pi:"XML declaration", |
||||
encoding:"Character encoding", |
||||
appearance_bgprops:"Background properties", |
||||
appearance_marginprops:"Body margins", |
||||
appearance_linkprops:"Link colors", |
||||
appearance_textprops:"Text properties", |
||||
bgcolor:"Background color", |
||||
bgimage:"Background image", |
||||
left_margin:"Left margin", |
||||
right_margin:"Right margin", |
||||
top_margin:"Top margin", |
||||
bottom_margin:"Bottom margin", |
||||
text_color:"Text color", |
||||
font_size:"Font size", |
||||
font_face:"Font face", |
||||
link_color:"Link color", |
||||
hover_color:"Hover color", |
||||
visited_color:"Visited color", |
||||
active_color:"Active color", |
||||
textcolor:"Color", |
||||
fontsize:"Font size", |
||||
fontface:"Font family", |
||||
meta_index_follow:"Index and follow the links", |
||||
meta_index_nofollow:"Index and don't follow the links", |
||||
meta_noindex_follow:"Do not index but follow the links", |
||||
meta_noindex_nofollow:"Do not index and don\'t follow the links", |
||||
appearance_style:"Stylesheet and style properties", |
||||
stylesheet:"Stylesheet", |
||||
style:"Style", |
||||
author:"Author", |
||||
copyright:"Copyright", |
||||
add:"Add new element", |
||||
remove:"Remove selected element", |
||||
moveup:"Move selected element up", |
||||
movedown:"Move selected element down", |
||||
head_elements:"Head elements", |
||||
info:"Information", |
||||
add_title:"Title element", |
||||
add_meta:"Meta element", |
||||
add_script:"Script element", |
||||
add_style:"Style element", |
||||
add_link:"Link element", |
||||
add_base:"Base element", |
||||
add_comment:"Comment node", |
||||
title_element:"Title element", |
||||
script_element:"Script element", |
||||
style_element:"Style element", |
||||
base_element:"Base element", |
||||
link_element:"Link element", |
||||
meta_element:"Meta element", |
||||
comment_element:"Comment", |
||||
src:"Src", |
||||
language:"Language", |
||||
href:"Href", |
||||
target:"Target", |
||||
type:"Type", |
||||
charset:"Charset", |
||||
defer:"Defer", |
||||
media:"Media", |
||||
properties:"Properties", |
||||
name:"Name", |
||||
value:"Value", |
||||
content:"Content", |
||||
rel:"Rel", |
||||
rev:"Rev", |
||||
hreflang:"Href lang", |
||||
general_props:"General", |
||||
advanced_props:"Advanced" |
||||
}); |
@ -0,0 +1 @@ |
||||
(function(){var a=tinymce.DOM;tinymce.create("tinymce.plugins.FullScreenPlugin",{init:function(c,d){var e=this,f={},b;e.editor=c;c.addCommand("mceFullScreen",function(){var h,i=a.doc.documentElement;if(c.getParam("fullscreen_is_enabled")){if(c.getParam("fullscreen_new_window")){closeFullscreen()}else{a.win.setTimeout(function(){tinymce.dom.Event.remove(a.win,"resize",e.resizeFunc);tinyMCE.get(c.getParam("fullscreen_editor_id")).setContent(c.getContent({format:"raw"}),{format:"raw"});tinyMCE.remove(c);a.remove("mce_fullscreen_container");i.style.overflow=c.getParam("fullscreen_html_overflow");a.setStyle(a.doc.body,"overflow",c.getParam("fullscreen_overflow"));a.win.scrollTo(c.getParam("fullscreen_scrollx"),c.getParam("fullscreen_scrolly"));tinyMCE.settings=tinyMCE.oldSettings},10)}return}if(c.getParam("fullscreen_new_window")){h=a.win.open(d+"/fullscreen.htm","mceFullScreenPopup","fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width="+screen.availWidth+",height="+screen.availHeight);try{h.resizeTo(screen.availWidth,screen.availHeight)}catch(g){}}else{tinyMCE.oldSettings=tinyMCE.settings;f.fullscreen_overflow=a.getStyle(a.doc.body,"overflow",1)||"auto";f.fullscreen_html_overflow=a.getStyle(i,"overflow",1);b=a.getViewPort();f.fullscreen_scrollx=b.x;f.fullscreen_scrolly=b.y;if(tinymce.isOpera&&f.fullscreen_overflow=="visible"){f.fullscreen_overflow="auto"}if(tinymce.isIE&&f.fullscreen_overflow=="scroll"){f.fullscreen_overflow="auto"}if(tinymce.isIE&&(f.fullscreen_html_overflow=="visible"||f.fullscreen_html_overflow=="scroll")){f.fullscreen_html_overflow="auto"}if(f.fullscreen_overflow=="0px"){f.fullscreen_overflow=""}a.setStyle(a.doc.body,"overflow","hidden");i.style.overflow="hidden";b=a.getViewPort();a.win.scrollTo(0,0);if(tinymce.isIE){b.h-=1}n=a.add(a.doc.body,"div",{id:"mce_fullscreen_container",style:"position:"+(tinymce.isIE6||(tinymce.isIE&&!a.boxModel)?"absolute":"fixed")+";top:0;left:0;width:"+b.w+"px;height:"+b.h+"px;z-index:200000;"});a.add(n,"div",{id:"mce_fullscreen"});tinymce.each(c.settings,function(j,k){f[k]=j});f.id="mce_fullscreen";f.width=n.clientWidth;f.height=n.clientHeight-15;f.fullscreen_is_enabled=true;f.fullscreen_editor_id=c.id;f.theme_advanced_resizing=false;f.save_onsavecallback=function(){c.setContent(tinyMCE.get(f.id).getContent({format:"raw"}),{format:"raw"});c.execCommand("mceSave")};tinymce.each(c.getParam("fullscreen_settings"),function(l,j){f[j]=l});if(f.theme_advanced_toolbar_location==="external"){f.theme_advanced_toolbar_location="top"}e.fullscreenEditor=new tinymce.Editor("mce_fullscreen",f);e.fullscreenEditor.onInit.add(function(){e.fullscreenEditor.setContent(c.getContent());e.fullscreenEditor.focus()});e.fullscreenEditor.render();e.fullscreenElement=new tinymce.dom.Element("mce_fullscreen_container");e.fullscreenElement.update();e.resizeFunc=tinymce.dom.Event.add(a.win,"resize",function(){var m=tinymce.DOM.getViewPort(),k=e.fullscreenEditor,j,l;j=k.dom.getSize(k.getContainer().firstChild);l=k.dom.getSize(k.getContainer().getElementsByTagName("iframe")[0]);k.theme.resizeTo(m.w-j.w+l.w,m.h-j.h+l.h)})}});c.addButton("fullscreen",{title:"fullscreen.desc",cmd:"mceFullScreen"});c.onNodeChange.add(function(h,g){g.setActive("fullscreen",h.getParam("fullscreen_is_enabled"))})},getInfo:function(){return{longname:"Fullscreen",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("fullscreen",tinymce.plugins.FullScreenPlugin)})(); |
@ -0,0 +1,151 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
var DOM = tinymce.DOM; |
||||
|
||||
tinymce.create('tinymce.plugins.FullScreenPlugin', { |
||||
init : function(ed, url) { |
||||
var t = this, s = {}, vp; |
||||
|
||||
t.editor = ed; |
||||
|
||||
// Register commands
|
||||
ed.addCommand('mceFullScreen', function() { |
||||
var win, de = DOM.doc.documentElement; |
||||
|
||||
if (ed.getParam('fullscreen_is_enabled')) { |
||||
if (ed.getParam('fullscreen_new_window')) |
||||
closeFullscreen(); // Call to close in new window
|
||||
else { |
||||
DOM.win.setTimeout(function() { |
||||
tinymce.dom.Event.remove(DOM.win, 'resize', t.resizeFunc); |
||||
tinyMCE.get(ed.getParam('fullscreen_editor_id')).setContent(ed.getContent({format : 'raw'}), {format : 'raw'}); |
||||
tinyMCE.remove(ed); |
||||
DOM.remove('mce_fullscreen_container'); |
||||
de.style.overflow = ed.getParam('fullscreen_html_overflow'); |
||||
DOM.setStyle(DOM.doc.body, 'overflow', ed.getParam('fullscreen_overflow')); |
||||
DOM.win.scrollTo(ed.getParam('fullscreen_scrollx'), ed.getParam('fullscreen_scrolly')); |
||||
tinyMCE.settings = tinyMCE.oldSettings; // Restore old settings
|
||||
}, 10); |
||||
} |
||||
|
||||
return; |
||||
} |
||||
|
||||
if (ed.getParam('fullscreen_new_window')) { |
||||
win = DOM.win.open(url + "/fullscreen.htm", "mceFullScreenPopup", "fullscreen=yes,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=0,top=0,width=" + screen.availWidth + ",height=" + screen.availHeight); |
||||
try { |
||||
win.resizeTo(screen.availWidth, screen.availHeight); |
||||
} catch (e) { |
||||
// Ignore
|
||||
} |
||||
} else { |
||||
tinyMCE.oldSettings = tinyMCE.settings; // Store old settings
|
||||
s.fullscreen_overflow = DOM.getStyle(DOM.doc.body, 'overflow', 1) || 'auto'; |
||||
s.fullscreen_html_overflow = DOM.getStyle(de, 'overflow', 1); |
||||
vp = DOM.getViewPort(); |
||||
s.fullscreen_scrollx = vp.x; |
||||
s.fullscreen_scrolly = vp.y; |
||||
|
||||
// Fixes an Opera bug where the scrollbars doesn't reappear
|
||||
if (tinymce.isOpera && s.fullscreen_overflow == 'visible') |
||||
s.fullscreen_overflow = 'auto'; |
||||
|
||||
// Fixes an IE bug where horizontal scrollbars would appear
|
||||
if (tinymce.isIE && s.fullscreen_overflow == 'scroll') |
||||
s.fullscreen_overflow = 'auto'; |
||||
|
||||
// Fixes an IE bug where the scrollbars doesn't reappear
|
||||
if (tinymce.isIE && (s.fullscreen_html_overflow == 'visible' || s.fullscreen_html_overflow == 'scroll')) |
||||
s.fullscreen_html_overflow = 'auto';
|
||||
|
||||
if (s.fullscreen_overflow == '0px') |
||||
s.fullscreen_overflow = ''; |
||||
|
||||
DOM.setStyle(DOM.doc.body, 'overflow', 'hidden'); |
||||
de.style.overflow = 'hidden'; //Fix for IE6/7
|
||||
vp = DOM.getViewPort(); |
||||
DOM.win.scrollTo(0, 0); |
||||
|
||||
if (tinymce.isIE) |
||||
vp.h -= 1; |
||||
|
||||
n = DOM.add(DOM.doc.body, 'div', {id : 'mce_fullscreen_container', style : 'position:' + (tinymce.isIE6 || (tinymce.isIE && !DOM.boxModel) ? 'absolute' : 'fixed') + ';top:0;left:0;width:' + vp.w + 'px;height:' + vp.h + 'px;z-index:200000;'}); |
||||
DOM.add(n, 'div', {id : 'mce_fullscreen'}); |
||||
|
||||
tinymce.each(ed.settings, function(v, n) { |
||||
s[n] = v; |
||||
}); |
||||
|
||||
s.id = 'mce_fullscreen'; |
||||
s.width = n.clientWidth; |
||||
s.height = n.clientHeight - 15; |
||||
s.fullscreen_is_enabled = true; |
||||
s.fullscreen_editor_id = ed.id; |
||||
s.theme_advanced_resizing = false; |
||||
s.save_onsavecallback = function() { |
||||
ed.setContent(tinyMCE.get(s.id).getContent({format : 'raw'}), {format : 'raw'}); |
||||
ed.execCommand('mceSave'); |
||||
}; |
||||
|
||||
tinymce.each(ed.getParam('fullscreen_settings'), function(v, k) { |
||||
s[k] = v; |
||||
}); |
||||
|
||||
if (s.theme_advanced_toolbar_location === 'external') |
||||
s.theme_advanced_toolbar_location = 'top'; |
||||
|
||||
t.fullscreenEditor = new tinymce.Editor('mce_fullscreen', s); |
||||
t.fullscreenEditor.onInit.add(function() { |
||||
t.fullscreenEditor.setContent(ed.getContent()); |
||||
t.fullscreenEditor.focus(); |
||||
}); |
||||
|
||||
t.fullscreenEditor.render(); |
||||
|
||||
t.fullscreenElement = new tinymce.dom.Element('mce_fullscreen_container'); |
||||
t.fullscreenElement.update(); |
||||
//document.body.overflow = 'hidden';
|
||||
|
||||
t.resizeFunc = tinymce.dom.Event.add(DOM.win, 'resize', function() { |
||||
var vp = tinymce.DOM.getViewPort(), fed = t.fullscreenEditor, outerSize, innerSize; |
||||
|
||||
// Get outer/inner size to get a delta size that can be used to calc the new iframe size
|
||||
outerSize = fed.dom.getSize(fed.getContainer().firstChild); |
||||
innerSize = fed.dom.getSize(fed.getContainer().getElementsByTagName('iframe')[0]); |
||||
|
||||
fed.theme.resizeTo(vp.w - outerSize.w + innerSize.w, vp.h - outerSize.h + innerSize.h); |
||||
}); |
||||
} |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('fullscreen', {title : 'fullscreen.desc', cmd : 'mceFullScreen'}); |
||||
|
||||
ed.onNodeChange.add(function(ed, cm) { |
||||
cm.setActive('fullscreen', ed.getParam('fullscreen_is_enabled')); |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'Fullscreen', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullscreen', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('fullscreen', tinymce.plugins.FullScreenPlugin); |
||||
})(); |
@ -0,0 +1,109 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title></title> |
||||
<script type="text/javascript" src="../../tiny_mce.js"></script> |
||||
<script type="text/javascript"> |
||||
function patchCallback(settings, key) { |
||||
if (settings[key]) |
||||
settings[key] = "window.opener." + settings[key]; |
||||
} |
||||
|
||||
var settings = {}, paSe = window.opener.tinyMCE.activeEditor.settings, oeID = window.opener.tinyMCE.activeEditor.id; |
||||
|
||||
// Clone array |
||||
for (var n in paSe) |
||||
settings[n] = paSe[n]; |
||||
|
||||
// Override options for fullscreen |
||||
for (var n in paSe.fullscreen_settings) |
||||
settings[n] = paSe.fullscreen_settings[n]; |
||||
|
||||
// Patch callbacks, make them point to window.opener |
||||
patchCallback(settings, 'urlconverter_callback'); |
||||
patchCallback(settings, 'insertlink_callback'); |
||||
patchCallback(settings, 'insertimage_callback'); |
||||
patchCallback(settings, 'setupcontent_callback'); |
||||
patchCallback(settings, 'save_callback'); |
||||
patchCallback(settings, 'onchange_callback'); |
||||
patchCallback(settings, 'init_instance_callback'); |
||||
patchCallback(settings, 'file_browser_callback'); |
||||
patchCallback(settings, 'cleanup_callback'); |
||||
patchCallback(settings, 'execcommand_callback'); |
||||
patchCallback(settings, 'oninit'); |
||||
|
||||
// Set options |
||||
delete settings.id; |
||||
settings['mode'] = 'exact'; |
||||
settings['elements'] = 'fullscreenarea'; |
||||
settings['add_unload_trigger'] = false; |
||||
settings['ask'] = false; |
||||
settings['document_base_url'] = window.opener.tinyMCE.activeEditor.documentBaseURI.getURI(); |
||||
settings['fullscreen_is_enabled'] = true; |
||||
settings['fullscreen_editor_id'] = oeID; |
||||
settings['theme_advanced_resizing'] = false; |
||||
settings['strict_loading_mode'] = true; |
||||
|
||||
settings.save_onsavecallback = function() { |
||||
window.opener.tinyMCE.get(oeID).setContent(tinyMCE.get('fullscreenarea').getContent({format : 'raw'}), {format : 'raw'}); |
||||
window.opener.tinyMCE.get(oeID).execCommand('mceSave'); |
||||
window.close(); |
||||
}; |
||||
|
||||
function unloadHandler(e) { |
||||
moveContent(); |
||||
} |
||||
|
||||
function moveContent() { |
||||
window.opener.tinyMCE.get(oeID).setContent(tinyMCE.activeEditor.getContent()); |
||||
} |
||||
|
||||
function closeFullscreen() { |
||||
moveContent(); |
||||
window.close(); |
||||
} |
||||
|
||||
function doParentSubmit() { |
||||
moveContent(); |
||||
|
||||
if (window.opener.tinyMCE.selectedInstance.formElement.form) |
||||
window.opener.tinyMCE.selectedInstance.formElement.form.submit(); |
||||
|
||||
window.close(); |
||||
|
||||
return false; |
||||
} |
||||
|
||||
function render() { |
||||
var e = document.getElementById('fullscreenarea'), vp, ed, ow, oh, dom = tinymce.DOM; |
||||
|
||||
e.value = window.opener.tinyMCE.get(oeID).getContent(); |
||||
|
||||
vp = dom.getViewPort(); |
||||
settings.width = vp.w; |
||||
settings.height = vp.h - 15; |
||||
|
||||
tinymce.dom.Event.add(window, 'resize', function() { |
||||
var vp = dom.getViewPort(); |
||||
|
||||
tinyMCE.activeEditor.theme.resizeTo(vp.w, vp.h); |
||||
}); |
||||
|
||||
tinyMCE.init(settings); |
||||
} |
||||
|
||||
// Add onunload |
||||
tinymce.dom.Event.add(window, "beforeunload", unloadHandler); |
||||
</script> |
||||
</head> |
||||
<body style="margin:0;overflow:hidden;width:100%;height:100%" scrolling="no" scroll="no"> |
||||
<form onsubmit="doParentSubmit();"> |
||||
<textarea id="fullscreenarea" style="width:100%; height:100%"></textarea> |
||||
</form> |
||||
|
||||
<script type="text/javascript"> |
||||
render(); |
||||
</script> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.IESpell",{init:function(a,b){var c=this,d;if(!tinymce.isIE){return}c.editor=a;a.addCommand("mceIESpell",function(){try{d=new ActiveXObject("ieSpell.ieSpellExtension");d.CheckDocumentNode(a.getDoc().documentElement)}catch(f){if(f.number==-2146827859){a.windowManager.confirm(a.getLang("iespell.download"),function(e){if(e){window.open("http://www.iespell.com/download.php","ieSpellDownload","")}})}else{a.windowManager.alert("Error Loading ieSpell: Exception "+f.number)}}});a.addButton("iespell",{title:"iespell.iespell_desc",cmd:"mceIESpell"})},getInfo:function(){return{longname:"IESpell (IE Only)",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("iespell",tinymce.plugins.IESpell)})(); |
@ -0,0 +1,54 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
tinymce.create('tinymce.plugins.IESpell', { |
||||
init : function(ed, url) { |
||||
var t = this, sp; |
||||
|
||||
if (!tinymce.isIE) |
||||
return; |
||||
|
||||
t.editor = ed; |
||||
|
||||
// Register commands
|
||||
ed.addCommand('mceIESpell', function() { |
||||
try { |
||||
sp = new ActiveXObject("ieSpell.ieSpellExtension"); |
||||
sp.CheckDocumentNode(ed.getDoc().documentElement); |
||||
} catch (e) { |
||||
if (e.number == -2146827859) { |
||||
ed.windowManager.confirm(ed.getLang("iespell.download"), function(s) { |
||||
if (s) |
||||
window.open('http://www.iespell.com/download.php', 'ieSpellDownload', ''); |
||||
}); |
||||
} else |
||||
ed.windowManager.alert("Error Loading ieSpell: Exception " + e.number); |
||||
} |
||||
}); |
||||
|
||||
// Register buttons
|
||||
ed.addButton('iespell', {title : 'iespell.iespell_desc', cmd : 'mceIESpell'}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'IESpell (IE Only)', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('iespell', tinymce.plugins.IESpell); |
||||
})(); |
@ -0,0 +1,635 @@ |
||||
/** |
||||
* editor_plugin_src.js |
||||
* |
||||
* Copyright 2009, Moxiecode Systems AB |
||||
* Released under LGPL License. |
||||
* |
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/ |
||||
|
||||
(function() { |
||||
var DOM = tinymce.DOM, Element = tinymce.dom.Element, Event = tinymce.dom.Event, each = tinymce.each, is = tinymce.is; |
||||
|
||||
tinymce.create('tinymce.plugins.InlinePopups', { |
||||
init : function(ed, url) { |
||||
// Replace window manager
|
||||
ed.onBeforeRenderUI.add(function() { |
||||
ed.windowManager = new tinymce.InlineWindowManager(ed); |
||||
DOM.loadCSS(url + '/skins/' + (ed.settings.inlinepopups_skin || 'clearlooks2') + "/window.css"); |
||||
}); |
||||
}, |
||||
|
||||
getInfo : function() { |
||||
return { |
||||
longname : 'InlinePopups', |
||||
author : 'Moxiecode Systems AB', |
||||
authorurl : 'http://tinymce.moxiecode.com', |
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/inlinepopups', |
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion |
||||
}; |
||||
} |
||||
}); |
||||
|
||||
tinymce.create('tinymce.InlineWindowManager:tinymce.WindowManager', { |
||||
InlineWindowManager : function(ed) { |
||||
var t = this; |
||||
|
||||
t.parent(ed); |
||||
t.zIndex = 300000; |
||||
t.count = 0; |
||||
t.windows = {}; |
||||
}, |
||||
|
||||
open : function(f, p) { |
||||
var t = this, id, opt = '', ed = t.editor, dw = 0, dh = 0, vp, po, mdf, clf, we, w, u; |
||||
|
||||
f = f || {}; |
||||
p = p || {}; |
||||
|
||||
// Run native windows
|
||||
if (!f.inline) |
||||
return t.parent(f, p); |
||||
|
||||
// Only store selection if the type is a normal window
|
||||
if (!f.type) |
||||
t.bookmark = ed.selection.getBookmark(1); |
||||
|
||||
id = DOM.uniqueId(); |
||||
vp = DOM.getViewPort(); |
||||
f.width = parseInt(f.width || 320); |
||||
f.height = parseInt(f.height || 240) + (tinymce.isIE ? 8 : 0); |
||||
f.min_width = parseInt(f.min_width || 150); |
||||
f.min_height = parseInt(f.min_height || 100); |
||||
f.max_width = parseInt(f.max_width || 2000); |
||||
f.max_height = parseInt(f.max_height || 2000); |
||||
f.left = f.left || Math.round(Math.max(vp.x, vp.x + (vp.w / 2.0) - (f.width / 2.0))); |
||||
f.top = f.top || Math.round(Math.max(vp.y, vp.y + (vp.h / 2.0) - (f.height / 2.0))); |
||||
f.movable = f.resizable = true; |
||||
p.mce_width = f.width; |
||||
p.mce_height = f.height; |
||||
p.mce_inline = true; |
||||
p.mce_window_id = id; |
||||
p.mce_auto_focus = f.auto_focus; |
||||
|
||||
// Transpose
|
||||
// po = DOM.getPos(ed.getContainer());
|
||||
// f.left -= po.x;
|
||||
// f.top -= po.y;
|
||||
|
||||
t.features = f; |
||||
t.params = p; |
||||
t.onOpen.dispatch(t, f, p); |
||||
|
||||
if (f.type) { |
||||
opt += ' mceModal'; |
||||
|
||||
if (f.type) |
||||
opt += ' mce' + f.type.substring(0, 1).toUpperCase() + f.type.substring(1); |
||||
|
||||
f.resizable = false; |
||||
} |
||||
|
||||
if (f.statusbar) |
||||
opt += ' mceStatusbar'; |
||||
|
||||
if (f.resizable) |
||||
opt += ' mceResizable'; |
||||
|
||||
if (f.minimizable) |
||||
opt += ' mceMinimizable'; |
||||
|
||||
if (f.maximizable) |
||||
opt += ' mceMaximizable'; |
||||
|
||||
if (f.movable) |
||||
opt += ' mceMovable'; |
||||
|
||||
// Create DOM objects
|
||||
t._addAll(DOM.doc.body,
|
||||
['div', {id : id, 'class' : (ed.settings.inlinepopups_skin || 'clearlooks2') + (tinymce.isIE && window.getSelection ? ' ie9' : ''), style : 'width:100px;height:100px'},
|
||||
['div', {id : id + '_wrapper', 'class' : 'mceWrapper' + opt}, |
||||
['div', {id : id + '_top', 'class' : 'mceTop'},
|
||||
['div', {'class' : 'mceLeft'}], |
||||
['div', {'class' : 'mceCenter'}], |
||||
['div', {'class' : 'mceRight'}], |
||||
['span', {id : id + '_title'}, f.title || ''] |
||||
], |
||||
|
||||
['div', {id : id + '_middle', 'class' : 'mceMiddle'},
|
||||
['div', {id : id + '_left', 'class' : 'mceLeft'}], |
||||
['span', {id : id + '_content'}], |
||||
['div', {id : id + '_right', 'class' : 'mceRight'}] |
||||
], |
||||
|
||||
['div', {id : id + '_bottom', 'class' : 'mceBottom'}, |
||||
['div', {'class' : 'mceLeft'}], |
||||
['div', {'class' : 'mceCenter'}], |
||||
['div', {'class' : 'mceRight'}], |
||||
['span', {id : id + '_status'}, 'Content'] |
||||
], |
||||
|
||||
['a', {'class' : 'mceMove', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {'class' : 'mceMin', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], |
||||
['a', {'class' : 'mceMax', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], |
||||
['a', {'class' : 'mceMed', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], |
||||
['a', {'class' : 'mceClose', tabindex : '-1', href : 'javascript:;', onmousedown : 'return false;'}], |
||||
['a', {id : id + '_resize_n', 'class' : 'mceResize mceResizeN', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_s', 'class' : 'mceResize mceResizeS', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_w', 'class' : 'mceResize mceResizeW', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_e', 'class' : 'mceResize mceResizeE', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_nw', 'class' : 'mceResize mceResizeNW', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_ne', 'class' : 'mceResize mceResizeNE', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_sw', 'class' : 'mceResize mceResizeSW', tabindex : '-1', href : 'javascript:;'}], |
||||
['a', {id : id + '_resize_se', 'class' : 'mceResize mceResizeSE', tabindex : '-1', href : 'javascript:;'}] |
||||
] |
||||
] |
||||
); |
||||
|
||||
DOM.setStyles(id, {top : -10000, left : -10000}); |
||||
|
||||
// Fix gecko rendering bug, where the editors iframe messed with window contents
|
||||
if (tinymce.isGecko) |
||||
DOM.setStyle(id, 'overflow', 'auto'); |
||||
|
||||
// Measure borders
|
||||
if (!f.type) { |
||||
dw += DOM.get(id + '_left').clientWidth; |
||||
dw += DOM.get(id + '_right').clientWidth; |
||||
dh += DOM.get(id + '_top').clientHeight; |
||||
dh += DOM.get(id + '_bottom').clientHeight; |
||||
} |
||||
|
||||
// Resize window
|
||||
DOM.setStyles(id, {top : f.top, left : f.left, width : f.width + dw, height : f.height + dh}); |
||||
|
||||
u = f.url || f.file; |
||||
if (u) { |
||||
if (tinymce.relaxedDomain) |
||||
u += (u.indexOf('?') == -1 ? '?' : '&') + 'mce_rdomain=' + tinymce.relaxedDomain; |
||||
|
||||
u = tinymce._addVer(u); |
||||
} |
||||
|
||||
if (!f.type) { |
||||
DOM.add(id + '_content', 'iframe', {id : id + '_ifr', src : 'javascript:""', frameBorder : 0, style : 'border:0;width:10px;height:10px'}); |
||||
DOM.setStyles(id + '_ifr', {width : f.width, height : f.height}); |
||||
DOM.setAttrib(id + '_ifr', 'src', u); |
||||
} else { |
||||
DOM.add(id + '_wrapper', 'a', {id : id + '_ok', 'class' : 'mceButton mceOk', href : 'javascript:;', onmousedown : 'return false;'}, 'Ok'); |
||||
|
||||
if (f.type == 'confirm') |
||||
DOM.add(id + '_wrapper', 'a', {'class' : 'mceButton mceCancel', href : 'javascript:;', onmousedown : 'return false;'}, 'Cancel'); |
||||
|
||||
DOM.add(id + '_middle', 'div', {'class' : 'mceIcon'}); |
||||
DOM.setHTML(id + '_content', f.content.replace('\n', '<br />')); |
||||
} |
||||
|
||||
// Register events
|
||||
mdf = Event.add(id, 'mousedown', function(e) { |
||||
var n = e.target, w, vp; |
||||
|
||||
w = t.windows[id]; |
||||
t.focus(id); |
||||
|
||||
if (n.nodeName == 'A' || n.nodeName == 'a') { |
||||
if (n.className == 'mceMax') { |
||||
w.oldPos = w.element.getXY(); |
||||
w.oldSize = w.element.getSize(); |
||||
|
||||
vp = DOM.getViewPort(); |
||||
|
||||
// Reduce viewport size to avoid scrollbars
|
||||
vp.w -= 2; |
||||
vp.h -= 2; |
||||
|
||||
w.element.moveTo(vp.x, vp.y); |
||||
w.element.resizeTo(vp.w, vp.h); |
||||
DOM.setStyles(id + '_ifr', {width : vp.w - w.deltaWidth, height : vp.h - w.deltaHeight}); |
||||
DOM.addClass(id + '_wrapper', 'mceMaximized'); |
||||
} else if (n.className == 'mceMed') { |
||||
// Reset to old size
|
||||
w.element.moveTo(w.oldPos.x, w.oldPos.y); |
||||
w.element.resizeTo(w.oldSize.w, w.oldSize.h); |
||||
w.iframeElement.resizeTo(w.oldSize.w - w.deltaWidth, w.oldSize.h - w.deltaHeight); |
||||
|
||||
DOM.removeClass(id + '_wrapper', 'mceMaximized'); |
||||
} else if (n.className == 'mceMove') |
||||
return t._startDrag(id, e, n.className); |
||||
else if (DOM.hasClass(n, 'mceResize')) |
||||
return t._startDrag(id, e, n.className.substring(13)); |
||||
} |
||||
}); |
||||
|
||||
clf = Event.add(id, 'click', function(e) { |
||||
var n = e.target; |
||||
|
||||
t.focus(id); |
||||
|
||||
if (n.nodeName == 'A' || n.nodeName == 'a') { |
||||
switch (n.className) { |
||||
case 'mceClose': |
||||
t.close(null, id); |
||||
return Event.cancel(e); |
||||
|
||||
case 'mceButton mceOk': |
||||
case 'mceButton mceCancel': |
||||
f.button_func(n.className == 'mceButton mceOk'); |
||||
return Event.cancel(e); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
// Add window
|
||||
w = t.windows[id] = { |
||||
id : id, |
||||
mousedown_func : mdf, |
||||
click_func : clf, |
||||
element : new Element(id, {blocker : 1, container : ed.getContainer()}), |
||||
iframeElement : new Element(id + '_ifr'), |
||||
features : f, |
||||
deltaWidth : dw, |
||||
deltaHeight : dh |
||||
}; |
||||
|
||||
w.iframeElement.on('focus', function() { |
||||
t.focus(id); |
||||
}); |
||||
|
||||
// Setup blocker
|
||||
if (t.count == 0 && t.editor.getParam('dialog_type', 'modal') == 'modal') { |
||||
DOM.add(DOM.doc.body, 'div', { |
||||
id : 'mceModalBlocker', |
||||
'class' : (t.editor.settings.inlinepopups_skin || 'clearlooks2') + '_modalBlocker', |
||||
style : {zIndex : t.zIndex - 1} |
||||
}); |
||||
|
||||
DOM.show('mceModalBlocker'); // Reduces flicker in IE
|
||||
} else |
||||
DOM.setStyle('mceModalBlocker', 'z-index', t.zIndex - 1); |
||||
|
||||
if (tinymce.isIE6 || /Firefox\/2\./.test(navigator.userAgent) || (tinymce.isIE && !DOM.boxModel)) |
||||
DOM.setStyles('mceModalBlocker', {position : 'absolute', left : vp.x, top : vp.y, width : vp.w - 2, height : vp.h - 2}); |
||||
|
||||
t.focus(id); |
||||
t._fixIELayout(id, 1); |
||||
|
||||
// Focus ok button
|
||||
if (DOM.get(id + '_ok')) |
||||
DOM.get(id + '_ok').focus(); |
||||
|
||||
t.count++; |
||||
|
||||
return w; |
||||
}, |
||||
|
||||
focus : function(id) { |
||||
var t = this, w; |
||||
|
||||
if (w = t.windows[id]) { |
||||
w.zIndex = this.zIndex++; |
||||
w.element.setStyle('zIndex', w.zIndex); |
||||
w.element.update(); |
||||
|
||||
id = id + '_wrapper'; |
||||
DOM.removeClass(t.lastId, 'mceFocus'); |
||||
DOM.addClass(id, 'mceFocus'); |
||||
t.lastId = id; |
||||
} |
||||
}, |
||||
|
||||
_addAll : function(te, ne) { |
||||
var i, n, t = this, dom = tinymce.DOM; |
||||
|
||||
if (is(ne, 'string')) |
||||
te.appendChild(dom.doc.createTextNode(ne)); |
||||
else if (ne.length) { |
||||
te = te.appendChild(dom.create(ne[0], ne[1])); |
||||
|
||||
for (i=2; i<ne.length; i++) |
||||
t._addAll(te, ne[i]); |
||||
} |
||||
}, |
||||
|
||||
_startDrag : function(id, se, ac) { |
||||
var t = this, mu, mm, d = DOM.doc, eb, w = t.windows[id], we = w.element, sp = we.getXY(), p, sz, ph, cp, vp, sx, sy, sex, sey, dx, dy, dw, dh; |
||||
|
||||
// Get positons and sizes
|
||||
// cp = DOM.getPos(t.editor.getContainer());
|
||||
cp = {x : 0, y : 0}; |
||||
vp = DOM.getViewPort(); |
||||
|
||||
// Reduce viewport size to avoid scrollbars while dragging
|
||||
vp.w -= 2; |
||||
vp.h -= 2; |
||||
|
||||
sex = se.screenX; |
||||
sey = se.screenY; |
||||
dx = dy = dw = dh = 0; |
||||
|
||||
// Handle mouse up
|
||||
mu = Event.add(d, 'mouseup', function(e) { |
||||
Event.remove(d, 'mouseup', mu); |
||||
Event.remove(d, 'mousemove', mm); |
||||
|
||||
if (eb) |
||||
eb.remove(); |
||||
|
||||
we.moveBy(dx, dy); |
||||
we.resizeBy(dw, dh); |
||||
sz = we.getSize(); |
||||
DOM.setStyles(id + '_ifr', {width : sz.w - w.deltaWidth, height : sz.h - w.deltaHeight}); |
||||
t._fixIELayout(id, 1); |
||||
|
||||
return Event.cancel(e); |
||||
}); |
||||
|
||||
if (ac != 'Move') |
||||
startMove(); |
||||
|
||||
function startMove() { |
||||
if (eb) |
||||
return; |
||||
|
||||
t._fixIELayout(id, 0); |
||||
|
||||
// Setup event blocker
|
||||
DOM.add(d.body, 'div', { |
||||
id : 'mceEventBlocker', |
||||
'class' : 'mceEventBlocker ' + (t.editor.settings.inlinepopups_skin || 'clearlooks2'), |
||||
style : {zIndex : t.zIndex + 1} |
||||
}); |
||||
|
||||
if (tinymce.isIE6 || (tinymce.isIE && !DOM.boxModel)) |
||||
DOM.setStyles('mceEventBlocker', {position : 'absolute', left : vp.x, top : vp.y, width : vp.w - 2, height : vp.h - 2}); |
||||
|
||||
eb = new Element('mceEventBlocker'); |
||||
eb.update(); |
||||
|
||||
// Setup placeholder
|
||||
p = we.getXY(); |
||||
sz = we.getSize(); |
||||
sx = cp.x + p.x - vp.x; |
||||
sy = cp.y + p.y - vp.y; |
||||
DOM.add(eb.get(), 'div', {id : 'mcePlaceHolder', 'class' : 'mcePlaceHolder', style : {left : sx, top : sy, width : sz.w, height : sz.h}}); |
||||
ph = new Element('mcePlaceHolder'); |
||||
}; |
||||
|
||||
// Handle mouse move/drag
|
||||
mm = Event.add(d, 'mousemove', function(e) { |
||||
var x, y, v; |
||||
|
||||
startMove(); |
||||
|
||||
x = e.screenX - sex; |
||||
y = e.screenY - sey; |
||||
|
||||
switch (ac) { |
||||
case 'ResizeW': |
||||
dx = x; |
||||
dw = 0 - x; |
||||
break; |
||||
|
||||
case 'ResizeE': |
||||
dw = x; |
||||
break; |
||||
|
||||
case 'ResizeN': |
||||
case 'ResizeNW': |
||||
case 'ResizeNE': |
||||
if (ac == "ResizeNW") { |
||||
dx = x; |
||||
dw = 0 - x; |
||||
} else if (ac == "ResizeNE") |
||||
dw = x; |
||||
|
||||
dy = y; |
||||
dh = 0 - y; |
||||
break; |
||||
|
||||
case 'ResizeS': |
||||
case 'ResizeSW': |
||||
case 'ResizeSE': |
||||
if (ac == "ResizeSW") { |
||||
dx = x; |
||||
dw = 0 - x; |
||||
} else if (ac == "ResizeSE") |
||||
dw = x; |
||||
|
||||
dh = y; |
||||
break; |
||||
|
||||
case 'mceMove': |
||||
dx = x; |
||||
dy = y; |
||||
break; |
||||
} |
||||
|
||||
// Boundary check
|
||||
if (dw < (v = w.features.min_width - sz.w)) { |
||||
if (dx !== 0) |
||||
dx += dw - v; |
||||
|
||||
dw = v; |
||||
} |
||||
|
||||
if (dh < (v = w.features.min_height - sz.h)) { |
||||
if (dy !== 0) |
||||
dy += dh - v; |
||||
|
||||
dh = v; |
||||
} |
||||
|
||||
dw = Math.min(dw, w.features.max_width - sz.w); |
||||
dh = Math.min(dh, w.features.max_height - sz.h); |
||||
dx = Math.max(dx, vp.x - (sx + vp.x)); |
||||
dy = Math.max(dy, vp.y - (sy + vp.y)); |
||||
dx = Math.min(dx, (vp.w + vp.x) - (sx + sz.w + vp.x)); |
||||
dy = Math.min(dy, (vp.h + vp.y) - (sy + sz.h + vp.y)); |
||||
|
||||
// Move if needed
|
||||
if (dx + dy !== 0) { |
||||
if (sx + dx < 0) |
||||
dx = 0; |
||||
|
||||
if (sy + dy < 0) |
||||
dy = 0; |
||||
|
||||
ph.moveTo(sx + dx, sy + dy); |
||||
} |
||||
|
||||
// Resize if needed
|
||||
if (dw + dh !== 0) |
||||
ph.resizeTo(sz.w + dw, sz.h + dh); |
||||
|
||||
return Event.cancel(e); |
||||
}); |
||||
|
||||
return Event.cancel(se); |
||||
}, |
||||
|
||||
resizeBy : function(dw, dh, id) { |
||||
var w = this.windows[id]; |
||||
|
||||
if (w) { |
||||
w.element.resizeBy(dw, dh); |
||||
w.iframeElement.resizeBy(dw, dh); |
||||
} |
||||
}, |
||||
|
||||
close : function(win, id) { |
||||
var t = this, w, d = DOM.doc, ix = 0, fw, id; |
||||
|
||||
id = t._findId(id || win); |
||||
|
||||
// Probably not inline
|
||||
if (!t.windows[id]) { |
||||
t.parent(win); |
||||
return; |
||||
} |
||||
|
||||
t.count--; |
||||
|
||||
if (t.count == 0) |
||||
DOM.remove('mceModalBlocker'); |
||||
|
||||
if (w = t.windows[id]) { |
||||
t.onClose.dispatch(t); |
||||
Event.remove(d, 'mousedown', w.mousedownFunc); |
||||
Event.remove(d, 'click', w.clickFunc); |
||||
Event.clear(id); |
||||
Event.clear(id + '_ifr'); |
||||
|
||||
DOM.setAttrib(id + '_ifr', 'src', 'javascript:""'); // Prevent leak
|
||||
w.element.remove(); |
||||
delete t.windows[id]; |
||||
|
||||
// Find front most window and focus that
|
||||
each (t.windows, function(w) { |
||||
if (w.zIndex > ix) { |
||||
fw = w; |
||||
ix = w.zIndex; |
||||
} |
||||
}); |
||||
|
||||
if (fw) |
||||
t.focus(fw.id); |
||||
} |
||||
}, |
||||
|
||||
setTitle : function(w, ti) { |
||||
var e; |
||||
|
||||
w = this._findId(w); |
||||
|
||||
if (e = DOM.get(w + '_title')) |
||||
e.innerHTML = DOM.encode(ti); |
||||
}, |
||||
|
||||
alert : function(txt, cb, s) { |
||||
var t = this, w; |
||||
|
||||
w = t.open({ |
||||
title : t, |
||||
type : 'alert', |
||||
button_func : function(s) { |
||||
if (cb) |
||||
cb.call(s || t, s); |
||||
|
||||
t.close(null, w.id); |
||||
}, |
||||
content : DOM.encode(t.editor.getLang(txt, txt)), |
||||
inline : 1, |
||||
width : 400, |
||||
height : 130 |
||||
}); |
||||
}, |
||||
|
||||
confirm : function(txt, cb, s) { |
||||
var t = this, w; |
||||
|
||||
w = t.open({ |
||||
title : t, |
||||
type : 'confirm', |
||||
button_func : function(s) { |
||||
if (cb) |
||||
cb.call(s || t, s); |
||||
|
||||
t.close(null, w.id); |
||||
}, |
||||
content : DOM.encode(t.editor.getLang(txt, txt)), |
||||
inline : 1, |
||||
width : 400, |
||||
height : 130 |
||||
}); |
||||
}, |
||||
|
||||
// Internal functions
|
||||
|
||||
_findId : function(w) { |
||||
var t = this; |
||||
|
||||
if (typeof(w) == 'string') |
||||
return w; |
||||
|
||||
each(t.windows, function(wo) { |
||||
var ifr = DOM.get(wo.id + '_ifr'); |
||||
|
||||
if (ifr && w == ifr.contentWindow) { |
||||
w = wo.id; |
||||
return false; |
||||
} |
||||
}); |
||||
|
||||
return w; |
||||
}, |
||||
|
||||
_fixIELayout : function(id, s) { |
||||
var w, img; |
||||
|
||||
if (!tinymce.isIE6) |
||||
return; |
||||
|
||||
// Fixes the bug where hover flickers and does odd things in IE6
|
||||
each(['n','s','w','e','nw','ne','sw','se'], function(v) { |
||||
var e = DOM.get(id + '_resize_' + v); |
||||
|
||||
DOM.setStyles(e, { |
||||
width : s ? e.clientWidth : '', |
||||
height : s ? e.clientHeight : '', |
||||
cursor : DOM.getStyle(e, 'cursor', 1) |
||||
}); |
||||
|
||||
DOM.setStyle(id + "_bottom", 'bottom', '-1px'); |
||||
|
||||
e = 0; |
||||
}); |
||||
|
||||
// Fixes graphics glitch
|
||||
if (w = this.windows[id]) { |
||||
// Fixes rendering bug after resize
|
||||
w.element.hide(); |
||||
w.element.show(); |
||||
|
||||
// Forced a repaint of the window
|
||||
//DOM.get(id).style.filter = '';
|
||||
|
||||
// IE has a bug where images used in CSS won't get loaded
|
||||
// sometimes when the cache in the browser is disabled
|
||||
// This fix tries to solve it by loading the images using the image object
|
||||
each(DOM.select('div,a', id), function(e, i) { |
||||
if (e.currentStyle.backgroundImage != 'none') { |
||||
img = new Image(); |
||||
img.src = e.currentStyle.backgroundImage.replace(/url\(\"(.+)\"\)/, '$1'); |
||||
} |
||||
}); |
||||
|
||||
DOM.get(id).style.filter = ''; |
||||
} |
||||
} |
||||
}); |
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('inlinepopups', tinymce.plugins.InlinePopups); |
||||
})(); |
||||
|
After Width: | Height: | Size: 818 B |
After Width: | Height: | Size: 280 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 915 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 769 B |
After Width: | Height: | Size: 92 B |
@ -0,0 +1,100 @@ |
||||
/* Clearlooks 2 */ |
||||
|
||||
/* Reset */ |
||||
.clearlooks2, .clearlooks2 div, .clearlooks2 span, .clearlooks2 a {vertical-align:baseline; text-align:left; position:absolute; border:0; padding:0; margin:0; background:transparent; font-family:Arial,Verdana; font-size:11px; color:#000; text-decoration:none; font-weight:normal; width:auto; height:auto; overflow:hidden; display:block} |
||||
|
||||
/* General */ |
||||
.clearlooks2 {position:absolute; direction:ltr} |
||||
.clearlooks2 .mceWrapper {position:static} |
||||
.mceEventBlocker {position:fixed; left:0; top:0; background:url(img/horizontal.gif) no-repeat 0 -75px; width:100%; height:100%} |
||||
.clearlooks2 .mcePlaceHolder {border:1px solid #000; background:#888; top:0; left:0; opacity:0.5; -ms-filter:'alpha(opacity=50)'; filter:alpha(opacity=50)} |
||||
.clearlooks2_modalBlocker {position:fixed; left:0; top:0; width:100%; height:100%; background:#FFF; opacity:0.6; -ms-filter:'alpha(opacity=60)'; filter:alpha(opacity=60); display:none} |
||||
|
||||
/* Top */ |
||||
.clearlooks2 .mceTop, .clearlooks2 .mceTop div {top:0; width:100%; height:23px} |
||||
.clearlooks2 .mceTop .mceLeft {width:6px; background:url(img/corners.gif)} |
||||
.clearlooks2 .mceTop .mceCenter {right:6px; width:100%; height:23px; background:url(img/horizontal.gif) 12px 0; clip:rect(auto auto auto 12px)} |
||||
.clearlooks2 .mceTop .mceRight {right:0; width:6px; height:23px; background:url(img/corners.gif) -12px 0} |
||||
.clearlooks2 .mceTop span {width:100%; text-align:center; vertical-align:middle; line-height:23px; font-weight:bold} |
||||
.clearlooks2 .mceFocus .mceTop .mceLeft {background:url(img/corners.gif) -6px 0} |
||||
.clearlooks2 .mceFocus .mceTop .mceCenter {background:url(img/horizontal.gif) 0 -23px} |
||||
.clearlooks2 .mceFocus .mceTop .mceRight {background:url(img/corners.gif) -18px 0} |
||||
.clearlooks2 .mceFocus .mceTop span {color:#FFF} |
||||
|
||||
/* Middle */ |
||||
.clearlooks2 .mceMiddle, .clearlooks2 .mceMiddle div {top:0} |
||||
.clearlooks2 .mceMiddle {width:100%; height:100%; clip:rect(23px auto auto auto)} |
||||
.clearlooks2 .mceMiddle .mceLeft {left:0; width:5px; height:100%; background:url(img/vertical.gif) -5px 0} |
||||
.clearlooks2 .mceMiddle span {top:23px; left:5px; width:100%; height:100%; background:#FFF} |
||||
.clearlooks2 .mceMiddle .mceRight {right:0; width:5px; height:100%; background:url(img/vertical.gif)} |
||||
|
||||
/* Bottom */ |
||||
.clearlooks2 .mceBottom, .clearlooks2 .mceBottom div {height:6px} |
||||
.clearlooks2 .mceBottom {left:0; bottom:0; width:100%} |
||||
.clearlooks2 .mceBottom div {top:0} |
||||
.clearlooks2 .mceBottom .mceLeft {left:0; width:5px; background:url(img/corners.gif) -34px -6px} |
||||
.clearlooks2 .mceBottom .mceCenter {left:5px; width:100%; background:url(img/horizontal.gif) 0 -46px} |
||||
.clearlooks2 .mceBottom .mceRight {right:0; width:5px; background: url(img/corners.gif) -34px 0} |
||||
.clearlooks2 .mceBottom span {display:none} |
||||
.clearlooks2 .mceStatusbar .mceBottom, .clearlooks2 .mceStatusbar .mceBottom div {height:23px} |
||||
.clearlooks2 .mceStatusbar .mceBottom .mceLeft {background:url(img/corners.gif) -29px 0} |
||||
.clearlooks2 .mceStatusbar .mceBottom .mceCenter {background:url(img/horizontal.gif) 0 -52px} |
||||
.clearlooks2 .mceStatusbar .mceBottom .mceRight {background:url(img/corners.gif) -24px 0} |
||||
.clearlooks2 .mceStatusbar .mceBottom span {display:block; left:7px; font-family:Arial, Verdana; font-size:11px; line-height:23px} |
||||
|
||||
/* Actions */ |
||||
.clearlooks2 a {width:29px; height:16px; top:3px;} |
||||
.clearlooks2 .mceClose {right:6px; background:url(img/buttons.gif) -87px 0} |
||||
.clearlooks2 .mceMin {display:none; right:68px; background:url(img/buttons.gif) 0 0} |
||||
.clearlooks2 .mceMed {display:none; right:37px; background:url(img/buttons.gif) -29px 0} |
||||
.clearlooks2 .mceMax {display:none; right:37px; background:url(img/buttons.gif) -58px 0} |
||||
.clearlooks2 .mceMove {display:none;width:100%;cursor:move;background:url(img/corners.gif) no-repeat -100px -100px} |
||||
.clearlooks2 .mceMovable .mceMove {display:block} |
||||
.clearlooks2 .mceFocus .mceClose {right:6px; background:url(img/buttons.gif) -87px -16px} |
||||
.clearlooks2 .mceFocus .mceMin {right:68px; background:url(img/buttons.gif) 0 -16px} |
||||
.clearlooks2 .mceFocus .mceMed {right:37px; background:url(img/buttons.gif) -29px -16px} |
||||
.clearlooks2 .mceFocus .mceMax {right:37px; background:url(img/buttons.gif) -58px -16px} |
||||
.clearlooks2 .mceFocus .mceClose:hover {right:6px; background:url(img/buttons.gif) -87px -32px} |
||||
.clearlooks2 .mceFocus .mceClose:hover {right:6px; background:url(img/buttons.gif) -87px -32px} |
||||
.clearlooks2 .mceFocus .mceMin:hover {right:68px; background:url(img/buttons.gif) 0 -32px} |
||||
.clearlooks2 .mceFocus .mceMed:hover {right:37px; background:url(img/buttons.gif) -29px -32px} |
||||
.clearlooks2 .mceFocus .mceMax:hover {right:37px; background:url(img/buttons.gif) -58px -32px} |
||||
|
||||
/* Resize */ |
||||
.clearlooks2 .mceResize {top:auto; left:auto; display:none; width:5px; height:5px; background:url(img/horizontal.gif) no-repeat 0 -75px} |
||||
.clearlooks2 .mceResizable .mceResize {display:block} |
||||
.clearlooks2 .mceResizable .mceMin, .clearlooks2 .mceMax {display:none} |
||||
.clearlooks2 .mceMinimizable .mceMin {display:block} |
||||
.clearlooks2 .mceMaximizable .mceMax {display:block} |
||||
.clearlooks2 .mceMaximized .mceMed {display:block} |
||||
.clearlooks2 .mceMaximized .mceMax {display:none} |
||||
.clearlooks2 a.mceResizeN {top:0; left:0; width:100%; cursor:n-resize} |
||||
.clearlooks2 a.mceResizeNW {top:0; left:0; cursor:nw-resize} |
||||
.clearlooks2 a.mceResizeNE {top:0; right:0; cursor:ne-resize} |
||||
.clearlooks2 a.mceResizeW {top:0; left:0; height:100%; cursor:w-resize;} |
||||
.clearlooks2 a.mceResizeE {top:0; right:0; height:100%; cursor:e-resize} |
||||
.clearlooks2 a.mceResizeS {bottom:0; left:0; width:100%; cursor:s-resize} |
||||
.clearlooks2 a.mceResizeSW {bottom:0; left:0; cursor:sw-resize} |
||||
.clearlooks2 a.mceResizeSE {bottom:0; right:0; cursor:se-resize} |
||||
|
||||
/* Alert/Confirm */ |
||||
.clearlooks2 .mceButton {font-weight:bold; bottom:10px; width:80px; height:30px; background:url(img/button.gif); line-height:30px; vertical-align:middle; text-align:center; outline:0} |
||||
.clearlooks2 .mceMiddle .mceIcon {left:15px; top:35px; width:32px; height:32px} |
||||
.clearlooks2 .mceAlert .mceMiddle span, .clearlooks2 .mceConfirm .mceMiddle span {background:transparent;left:60px; top:35px; width:320px; height:50px; font-weight:bold; overflow:auto; white-space:normal} |
||||
.clearlooks2 a:hover {font-weight:bold;} |
||||
.clearlooks2 .mceAlert .mceMiddle, .clearlooks2 .mceConfirm .mceMiddle {background:#D6D7D5} |
||||
.clearlooks2 .mceAlert .mceOk {left:50%; top:auto; margin-left: -40px} |
||||
.clearlooks2 .mceAlert .mceIcon {background:url(img/alert.gif)} |
||||
.clearlooks2 .mceConfirm .mceOk {left:50%; top:auto; margin-left: -90px} |
||||
.clearlooks2 .mceConfirm .mceCancel {left:50%; top:auto} |
||||
.clearlooks2 .mceConfirm .mceIcon {background:url(img/confirm.gif)} |
||||
|
||||
/* IE9 fixes */ |
||||
.clearlooks2.ie9 .mceTop .mceCenter {clip:auto;} |
||||
.clearlooks2.ie9 .mceMiddle {clip:auto;} |
||||
.clearlooks2.ie9 .mceMiddle .mceLeft, .clearlooks2.ie9 .mceMiddle .mceRight {top: 23px;} |
||||
.clearlooks2.ie9 .mceAlert .mceMiddle span, .clearlooks2.ie9 .mceConfirm .mceMiddle span {top:13px;} |
||||
.clearlooks2.ie9 .mceModal .mceMiddle {top:23px} |
||||
.clearlooks2.ie9 .mceModal .mceMiddle .mceLeft, .clearlooks2.ie9 .mceModal .mceMiddle .mceRight {top: 0} |
||||
.clearlooks2.ie9 .mceMiddle .mceIcon {top:13px} |
||||
.clearlooks2.ie9 .mceTop .mceCenter {top:0; right:auto; left:6px; width:calc(100%-12px)} |
@ -0,0 +1,387 @@ |
||||
<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> --> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<title>Template for dialogs</title> |
||||
<link rel="stylesheet" type="text/css" href="skins/clearlooks2/window.css" /> |
||||
</head> |
||||
<body> |
||||
|
||||
<div class="mceEditor"> |
||||
<div class="clearlooks2" style="width:400px; height:100px; left:10px;"> |
||||
<div class="mceWrapper"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Blured</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:420px;"> |
||||
<div class="mceWrapper mceMovable mceFocus"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Focused</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:10px; top:120px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceStatusbar"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:420px; top:120px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceStatusbar mceResizable"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar, Resizable</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:10px; top:230px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceResizable mceMaximizable"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Resizable, Maximizable</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:420px; top:230px;"> |
||||
<div class="mceWrapper mceMovable mceStatusbar mceResizable mceMaximizable"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Blurred, Maximizable, Statusbar, Resizable</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:10px; top:340px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceResizable mceMaximized mceMinimizable mceMaximizable"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Maximized, Maximizable, Minimizable</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:100px; left:420px; top:340px;"> |
||||
<div class="mceWrapper mceMovable mceStatusbar mceResizable mceMaximized mceMinimizable mceMaximizable"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Blured</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span>Content</span> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Statusbar text.</span> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceMin" href="#"></a> |
||||
<a class="mceMax" href="#"></a> |
||||
<a class="mceMed" href="#"></a> |
||||
<a class="mceClose" href="#"></a> |
||||
<a class="mceResize mceResizeN" href="#"></a> |
||||
<a class="mceResize mceResizeS" href="#"></a> |
||||
<a class="mceResize mceResizeW" href="#"></a> |
||||
<a class="mceResize mceResizeE" href="#"></a> |
||||
<a class="mceResize mceResizeNW" href="#"></a> |
||||
<a class="mceResize mceResizeNE" href="#"></a> |
||||
<a class="mceResize mceResizeSW" href="#"></a> |
||||
<a class="mceResize mceResizeSE" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:130px; left:10px; top:450px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceModal mceAlert"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Alert</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span> |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
</span> |
||||
<div class="mceRight"></div> |
||||
<div class="mceIcon"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceButton mceOk" href="#">Ok</a> |
||||
<a class="mceClose" href="#"></a> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="clearlooks2" style="width:400px; height:130px; left:420px; top:450px;"> |
||||
<div class="mceWrapper mceMovable mceFocus mceModal mceConfirm"> |
||||
<div class="mceTop"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
<span>Confirm</span> |
||||
</div> |
||||
|
||||
<div class="mceMiddle"> |
||||
<div class="mceLeft"></div> |
||||
<span> |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
This is a very long error message. This is a very long error message. |
||||
</span> |
||||
<div class="mceRight"></div> |
||||
<div class="mceIcon"></div> |
||||
</div> |
||||
|
||||
<div class="mceBottom"> |
||||
<div class="mceLeft"></div> |
||||
<div class="mceCenter"></div> |
||||
<div class="mceRight"></div> |
||||
</div> |
||||
|
||||
<a class="mceMove" href="#"></a> |
||||
<a class="mceButton mceOk" href="#">Ok</a> |
||||
<a class="mceButton mceCancel" href="#">Cancel</a> |
||||
<a class="mceClose" href="#"></a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1 @@ |
||||
(function(){tinymce.create("tinymce.plugins.InsertDateTime",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceInsertDate",function(){var d=c._getDateTime(new Date(),a.getParam("plugin_insertdate_dateFormat",a.getLang("insertdatetime.date_fmt")));a.execCommand("mceInsertContent",false,d)});a.addCommand("mceInsertTime",function(){var d=c._getDateTime(new Date(),a.getParam("plugin_insertdate_timeFormat",a.getLang("insertdatetime.time_fmt")));a.execCommand("mceInsertContent",false,d)});a.addButton("insertdate",{title:"insertdatetime.insertdate_desc",cmd:"mceInsertDate"});a.addButton("inserttime",{title:"insertdatetime.inserttime_desc",cmd:"mceInsertTime"})},getInfo:function(){return{longname:"Insert date/time",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/insertdatetime",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getDateTime:function(e,a){var c=this.editor;function b(g,d){g=""+g;if(g.length<d){for(var f=0;f<(d-g.length);f++){g="0"+g}}return g}a=a.replace("%D","%m/%d/%y");a=a.replace("%r","%I:%M:%S %p");a=a.replace("%Y",""+e.getFullYear());a=a.replace("%y",""+e.getYear());a=a.replace("%m",b(e.getMonth()+1,2));a=a.replace("%d",b(e.getDate(),2));a=a.replace("%H",""+b(e.getHours(),2));a=a.replace("%M",""+b(e.getMinutes(),2));a=a.replace("%S",""+b(e.getSeconds(),2));a=a.replace("%I",""+((e.getHours()+11)%12+1));a=a.replace("%p",""+(e.getHours()<12?"AM":"PM"));a=a.replace("%B",""+c.getLang("insertdatetime.months_long").split(",")[e.getMonth()]);a=a.replace("%b",""+c.getLang("insertdatetime.months_short").split(",")[e.getMonth()]);a=a.replace("%A",""+c.getLang("insertdatetime.day_long").split(",")[e.getDay()]);a=a.replace("%a",""+c.getLang("insertdatetime.day_short").split(",")[e.getDay()]);a=a.replace("%%","%");return a}});tinymce.PluginManager.add("insertdatetime",tinymce.plugins.InsertDateTime)})(); |