Initial Commit of AgileBill Open Source
46
includes/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{$lang_insert_anchor_title}</title>
|
||||
<script language="javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript">
|
||||
function init() {
|
||||
document.forms[0].anchorName.value = tinyMCE.getWindowArg('name');
|
||||
document.forms[0].insert.value = tinyMCE.getLang('lang_' + tinyMCE.getWindowArg('action'));
|
||||
window.focus();
|
||||
}
|
||||
|
||||
function insertAnchor() {
|
||||
if (window.opener) {
|
||||
tinyMCE.execInstanceCommand(tinyMCE.getWindowArg('editor_id'), 'mceAnchor', false, document.forms[0].anchorName.value);
|
||||
top.close();
|
||||
}
|
||||
}
|
||||
|
||||
function cancelAction() {
|
||||
top.close();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init();">
|
||||
<form onsubmit="insertAnchor();return false;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" valign="middle"><table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="2" class="title">{$lang_insert_anchor_title}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_anchor_name}:</td>
|
||||
<td><input name="anchorName" type="text" id="anchorName" value="" style="width: 200px"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="button" id="insert" name="insert" value="{$lang_insert}" onclick="insertAnchor();">
|
||||
</td>
|
||||
<td align="right"><input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="cancelAction();"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
382
includes/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
vendored
Normal file
@@ -0,0 +1,382 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!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>{$lang_theme_charmap_title}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
var charmap = new Array();
|
||||
|
||||
// for mor details please see w3c.org
|
||||
// now here is the complete list ;)
|
||||
|
||||
charmap = [
|
||||
[' ', ' ', true, 'no-break space'],
|
||||
['&', '&', true, 'ampersand'],
|
||||
['"', '"', true, 'quotation mark'],
|
||||
// finance
|
||||
['¢', '¢', true, 'cent sign'],
|
||||
['€', '€', true, 'euro sign'],
|
||||
['£', '£', true, 'pound sign'],
|
||||
['¥', '¥', true, 'yen sign'],
|
||||
// signs
|
||||
['©', '©', true, 'copyright sign'],
|
||||
['®', '®', true, 'registered sign'],
|
||||
['™', '™', true, 'trade mark sign'],
|
||||
['‰', '‰', true, 'per mille sign'],
|
||||
['µ', 'µ', true, 'micro sign'],
|
||||
['·', '·', true, 'middle dot'],
|
||||
['•', '•', true, 'bullet'],
|
||||
['…', '…', true, 'three dot leader'],
|
||||
['′', '′', true, 'minutes / feet'],
|
||||
['″', '″', true, 'seconds / inches'],
|
||||
['§', '§', true, 'section sign'],
|
||||
['¶', '¶', true, 'paragraph sign'],
|
||||
['ß', 'ß', true, 'sharp s / ess-zed'],
|
||||
// quotations
|
||||
['‹', '‹', true, 'single left-pointing angle quotation mark'],
|
||||
['›', '›', true, 'single right-pointing angle quotation mark'],
|
||||
['«', '«', true, 'left pointing guillemet'],
|
||||
['»', '»', true, 'right pointing guillemet'],
|
||||
['‘', '‘', true, 'left single quotation mark'],
|
||||
['’', '’', true, 'right single quotation mark'],
|
||||
['“', '“', true, 'left double quotation mark'],
|
||||
['”', '”', true, 'right double quotation mark'],
|
||||
['‚', '‚', true, 'single low-9 quotation mark'],
|
||||
['„', '„', true, 'double low-9 quotation mark'],
|
||||
['<', '<', true, 'less-than sign'],
|
||||
['>', '>', true, 'greater-than sign'],
|
||||
['≤', '≤', true, 'less-than or equal to'],
|
||||
['≥', '≥', true, 'greater-than or equal to'],
|
||||
['–', '–', true, 'en dash'],
|
||||
['—', '—', true, 'em dash'],
|
||||
['¯', '¯', true, 'macron'],
|
||||
['‾', '‾', true, 'overline'],
|
||||
['¤', '¤', true, 'currency sign'],
|
||||
['¦', '¦', true, 'broken bar'],
|
||||
['¨', '¨', true, 'diaeresis'],
|
||||
['¡', '¡', true, 'inverted exclamation mark'],
|
||||
['¿', '¿', true, 'turned question mark'],
|
||||
['ˆ', 'ˆ', true, 'circumflex accent'],
|
||||
['˜', '˜', true, 'small tilde'],
|
||||
['°', '°', true, 'degree sign'],
|
||||
['−', '−', true, 'minus sign'],
|
||||
['±', '±', true, 'plus-minus sign'],
|
||||
['÷', '÷', true, 'division sign'],
|
||||
['⁄', '⁄', true, 'fraction slash'],
|
||||
['×', '×', true, 'multiplication sign'],
|
||||
['¹', '¹', true, 'superscript one'],
|
||||
['²', '²', true, 'superscript two'],
|
||||
['³', '³', true, 'superscript three'],
|
||||
['¼', '¼', true, 'fraction one quarter'],
|
||||
['½', '½', true, 'fraction one half'],
|
||||
['¾', '¾', true, 'fraction three quarters'],
|
||||
// math / logical
|
||||
['ƒ', 'ƒ', true, 'function / florin'],
|
||||
['∫', '∫', true, 'integral'],
|
||||
['∑', '∑', true, 'n-ary sumation'],
|
||||
['∞', '∞', true, 'infinity'],
|
||||
['√', '√', true, 'square root'],
|
||||
['∼', '∼', false,'similar to'],
|
||||
['≅', '≅', false,'approximately equal to'],
|
||||
['≈', '≈', true, 'almost equal to'],
|
||||
['≠', '≠', true, 'not equal to'],
|
||||
['≡', '≡', true, 'identical to'],
|
||||
['∈', '∈', false,'element of'],
|
||||
['∉', '∉', false,'not an element of'],
|
||||
['∋', '∋', false,'contains as member'],
|
||||
['∏', '∏', true, 'n-ary product'],
|
||||
['∧', '∧', false,'logical and'],
|
||||
['∨', '∨', false,'logical or'],
|
||||
['¬', '¬', true, 'not sign'],
|
||||
['∩', '∩', true, 'intersection'],
|
||||
['∪', '∪', false,'union'],
|
||||
['∂', '∂', true, 'partial differential'],
|
||||
['∀', '∀', false,'for all'],
|
||||
['∃', '∃', false,'there exists'],
|
||||
['∅', '∅', false,'diameter'],
|
||||
['∇', '∇', false,'backward difference'],
|
||||
['∗', '∗', false,'asterisk operator'],
|
||||
['∝', '∝', false,'proportional to'],
|
||||
['∠', '∠', false,'angle'],
|
||||
// undefined
|
||||
['´', '´', true, 'acute accent'],
|
||||
['¸', '¸', true, 'cedilla'],
|
||||
['ª', 'ª', true, 'feminine ordinal indicator'],
|
||||
['º', 'º', true, 'masculine ordinal indicator'],
|
||||
['†', '†', true, 'dagger'],
|
||||
['‡', '‡', true, 'double dagger'],
|
||||
// alphabetical special chars
|
||||
['À', 'À', true, 'A - grave'],
|
||||
['Á', 'Á', true, 'A - acute'],
|
||||
['Â', 'Â', true, 'A - circumflex'],
|
||||
['Ã', 'Ã', true, 'A - tilde'],
|
||||
['Ä', 'Ä', true, 'A - diaeresis'],
|
||||
['Å', 'Å', true, 'A - ring above'],
|
||||
['Æ', 'Æ', true, 'ligature AE'],
|
||||
['Ç', 'Ç', true, 'C - cedilla'],
|
||||
['È', 'È', true, 'E - grave'],
|
||||
['É', 'É', true, 'E - acute'],
|
||||
['Ê', 'Ê', true, 'E - circumflex'],
|
||||
['Ë', 'Ë', true, 'E - diaeresis'],
|
||||
['Ì', 'Ì', true, 'I - grave'],
|
||||
['Í', 'Í', true, 'I - acute'],
|
||||
['Î', 'Î', true, 'I - circumflex'],
|
||||
['Ï', 'Ï', true, 'I - diaeresis'],
|
||||
['Ð', 'Ð', true, 'ETH'],
|
||||
['Ñ', 'Ñ', true, 'N - tilde'],
|
||||
['Ò', 'Ò', true, 'O - grave'],
|
||||
['Ó', 'Ó', true, 'O - acute'],
|
||||
['Ô', 'Ô', true, 'O - circumflex'],
|
||||
['Õ', 'Õ', true, 'O - tilde'],
|
||||
['Ö', 'Ö', true, 'O - diaeresis'],
|
||||
['Ø', 'Ø', true, 'O - slash'],
|
||||
['Œ', 'Œ', true, 'ligature OE'],
|
||||
['Š', 'Š', true, 'S - caron'],
|
||||
['Ù', 'Ù', true, 'U - grave'],
|
||||
['Ú', 'Ú', true, 'U - acute'],
|
||||
['Û', 'Û', true, 'U - circumflex'],
|
||||
['Ü', 'Ü', true, 'U - diaeresis'],
|
||||
['Ý', 'Ý', true, 'Y - acute'],
|
||||
['Ÿ', 'Ÿ', true, 'Y - diaeresis'],
|
||||
['Þ', 'Þ', true, 'THORN'],
|
||||
['à', 'à', true, 'a - grave'],
|
||||
['á', 'á', true, 'a - acute'],
|
||||
['â', 'â', true, 'a - circumflex'],
|
||||
['ã', 'ã', true, 'a - tilde'],
|
||||
['ä', 'ä', true, 'a - diaeresis'],
|
||||
['å', 'å', true, 'a - ring above'],
|
||||
['æ', 'æ', true, 'ligature ae'],
|
||||
['ç', 'ç', true, 'c - cedilla'],
|
||||
['è', 'è', true, 'e - grave'],
|
||||
['é', 'é', true, 'e - acute'],
|
||||
['ê', 'ê', true, 'e - circumflex'],
|
||||
['ë', 'ë', true, 'e - diaeresis'],
|
||||
['ì', 'ì', true, 'i - grave'],
|
||||
['í', 'í', true, 'i - acute'],
|
||||
['î', 'î', true, 'i - circumflex'],
|
||||
['ï', 'ï', true, 'i - diaeresis'],
|
||||
['ð', 'ð', true, 'eth'],
|
||||
['ñ', 'ñ', true, 'n - tilde'],
|
||||
['ò', 'ò', true, 'o - grave'],
|
||||
['ó', 'ó', true, 'o - acute'],
|
||||
['ô', 'ô', true, 'o - circumflex'],
|
||||
['õ', 'õ', true, 'o - tilde'],
|
||||
['ö', 'ö', true, 'o - diaeresis'],
|
||||
['ø', 'ø', true, 'o slash'],
|
||||
['œ', 'œ', true, 'ligature oe'],
|
||||
['š', 'š', true, 's - caron'],
|
||||
['ù', 'ù', true, 'u - grave'],
|
||||
['ú', 'ú', true, 'u - acute'],
|
||||
['û', 'û', true, 'u - circumflex'],
|
||||
['ü', 'ü', true, 'u - diaeresis'],
|
||||
['ý', 'ý', true, 'y - acute'],
|
||||
['þ', 'þ', true, 'thorn'],
|
||||
['ÿ', 'ÿ', true, 'y - diaeresis'],
|
||||
// ['Α', 'Α', true, 'Alpha'],
|
||||
['Β', 'Β', true, 'Beta'],
|
||||
['Γ', 'Γ', true, 'Gamma'],
|
||||
['Δ', 'Δ', true, 'Delta'],
|
||||
['Ε', 'Ε', true, 'Epsilon'],
|
||||
['Ζ', 'Ζ', true, 'Zeta'],
|
||||
['Η', 'Η', true, 'Eta'],
|
||||
['Θ', 'Θ', true, 'Theta'],
|
||||
['Ι', 'Ι', true, 'Iota'],
|
||||
['Κ', 'Κ', true, 'Kappa'],
|
||||
['Λ', 'Λ', true, 'Lambda'],
|
||||
['Μ', 'Μ', true, 'Mu'],
|
||||
['Ν', 'Ν', true, 'Nu'],
|
||||
['Ξ', 'Ξ', true, 'Xi'],
|
||||
['Ο', 'Ο', true, 'Omicron'],
|
||||
['Π', 'Π', true, 'Pi'],
|
||||
['Ρ', 'Ρ', true, 'Rho'],
|
||||
['Σ', 'Σ', true, 'Sigma'],
|
||||
['Τ', 'Τ', true, 'Tau'],
|
||||
['Υ', 'Υ', true, 'Upsilon'],
|
||||
['Φ', 'Φ', true, 'Phi'],
|
||||
['Χ', 'Χ', true, 'Chi'],
|
||||
['Ψ', 'Ψ', true, 'Psi'],
|
||||
['Ω', 'Ω', true, 'Omega'],
|
||||
['α', 'α', true, 'alpha'],
|
||||
['β', 'β', true, 'beta'],
|
||||
['γ', 'γ', true, 'gamma'],
|
||||
['δ', 'δ', true, 'delta'],
|
||||
['ε', 'ε', true, 'epsilon'],
|
||||
['ζ', 'ζ', true, 'zeta'],
|
||||
['η', 'η', true, 'eta'],
|
||||
['θ', 'θ', true, 'theta'],
|
||||
['ι', 'ι', true, 'iota'],
|
||||
['κ', 'κ', true, 'kappa'],
|
||||
['λ', 'λ', true, 'lambda'],
|
||||
['μ', 'μ', true, 'mu'],
|
||||
['ν', 'ν', true, 'nu'],
|
||||
['ξ', 'ξ', true, 'xi'],
|
||||
['ο', 'ο', true, 'omicron'],
|
||||
['π', 'π', true, 'pi'],
|
||||
['ρ', 'ρ', true, 'rho'],
|
||||
['ς', 'ς', true, 'final sigma'],
|
||||
['σ', 'σ', true, 'sigma'],
|
||||
['τ', 'τ', true, 'tau'],
|
||||
['υ', 'υ', true, 'upsilon'],
|
||||
['φ', 'φ', true, 'phi'],
|
||||
['χ', 'χ', true, 'chi'],
|
||||
['ψ', 'ψ', true, 'psi'],
|
||||
['ω', 'ω', true, 'omega'],
|
||||
// symbols
|
||||
['ℵ', 'ℵ', false,'alef symbol'],
|
||||
['ϖ', 'ϖ', false,'pi symbol'],
|
||||
['ℜ', 'ℜ', false,'real part symbol'],
|
||||
['ϑ','ϑ', false,'theta symbol'],
|
||||
['ϒ', 'ϒ', false,'upsilon - hook symbol'],
|
||||
['℘', '℘', false,'Weierstrass p'],
|
||||
['ℑ', 'ℑ', false,'imaginary part'],
|
||||
// arrows
|
||||
['←', '←', true, 'leftwards arrow'],
|
||||
['↑', '↑', true, 'upwards arrow'],
|
||||
['→', '→', true, 'rightwards arrow'],
|
||||
['↓', '↓', true, 'downwards arrow'],
|
||||
['↔', '↔', true, 'left right arrow'],
|
||||
['↵', '↵', false,'carriage return'],
|
||||
['⇐', '⇐', false,'leftwards double arrow'],
|
||||
['⇑', '⇑', false,'upwards double arrow'],
|
||||
['⇒', '⇒', false,'rightwards double arrow'],
|
||||
['⇓', '⇓', false,'downwards double arrow'],
|
||||
['⇔', '⇔', false,'left right double arrow'],
|
||||
['∴', '∴', false,'therefore'],
|
||||
['⊂', '⊂', false,'subset of'],
|
||||
['⊃', '⊃', false,'superset of'],
|
||||
['⊄', '⊄', false,'not a subset of'],
|
||||
['⊆', '⊆', false,'subset of or equal to'],
|
||||
['⊇', '⊇', false,'superset of or equal to'],
|
||||
['⊕', '⊕', false,'circled plus'],
|
||||
['⊗', '⊗', false,'circled times'],
|
||||
['⊥', '⊥', false,'perpendicular'],
|
||||
['⋅', '⋅', false,'dot operator'],
|
||||
['⌈', '⌈', false,'left ceiling'],
|
||||
['⌉', '⌉', false,'right ceiling'],
|
||||
['⌊', '⌊', false,'left floor'],
|
||||
['⌋', '⌋', false,'right floor'],
|
||||
['⟨', '〈', false,'left-pointing angle bracket'],
|
||||
['⟩', '〉', false,'right-pointing angle bracket'],
|
||||
['◊', '◊', true,'lozenge'],
|
||||
['♠', '♠', false,'black spade suit'],
|
||||
['♣', '♣', true, 'black club suit'],
|
||||
['♥', '♥', true, 'black heart suit'],
|
||||
['♦', '♦', true, 'black diamond suit'],
|
||||
[' ', ' ', false,'en space'],
|
||||
[' ', ' ', false,'em space'],
|
||||
[' ', ' ', false,'thin space'],
|
||||
['‌', '‌', false,'zero width non-joiner'],
|
||||
['‍', '‍', false,'zero width joiner'],
|
||||
['‎', '‎', false,'left-to-right mark'],
|
||||
['‏', '‏', false,'right-to-left mark'],
|
||||
['­', '­', false,'soft hyphen']
|
||||
];
|
||||
|
||||
function renderCharMapHTML() {
|
||||
var charsPerRow = 20, tdWidth=20, tdHeight=20;
|
||||
var html = '<table border="0" cellspacing="1" cellpadding="0" width="' + (tdWidth*charsPerRow) + '"><tr height="' + tdHeight + '">';
|
||||
var cols=-1;
|
||||
for (var i=0; i<charmap.length; i++) {
|
||||
if (charmap[i][2]==true) {
|
||||
cols++;
|
||||
html += ''
|
||||
+ '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap"'
|
||||
+ ' onmouseover="tinyMCE.switchClass(this,\'charmapOver\');'
|
||||
+ 'previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');"'
|
||||
+ ' onmouseout="tinyMCE.restoreClass(this,\'charmapOver\');"'
|
||||
+ ' onclick="insertChar(\'' + charmap[i][1].substring(2,charmap[i][1].length-1) + '\');return false;"'
|
||||
+ ' title="' + charmap[i][3] + '" nowrap="nowrap">'
|
||||
+ charmap[i][1]
|
||||
+ '</td>';
|
||||
if ((cols+1) % charsPerRow == 0)
|
||||
html += '</tr><tr height="' + tdHeight + '">';
|
||||
}
|
||||
}
|
||||
if (cols % charsPerRow > 0) {
|
||||
var padd = charsPerRow - (cols % charsPerRow);
|
||||
for (var i=0; i<padd-1; i++)
|
||||
html += '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap"> </td>';
|
||||
}
|
||||
html += '</tr></table>';
|
||||
document.write(html);
|
||||
}
|
||||
|
||||
function insertChar(chr) {
|
||||
tinyMCE.execInstanceCommand(tinyMCE.getWindowArg('editor_id'), 'mceInsertContent', false, '\&#' + chr + ';');
|
||||
//window.close();
|
||||
self.focus();
|
||||
}
|
||||
|
||||
function previewChar(codeA, codeB, codeN) {
|
||||
var elmA = document.getElementById('codeA');
|
||||
var elmB = document.getElementById('codeB');
|
||||
var elmV = document.getElementById('codeV');
|
||||
var elmN = document.getElementById('codeN');
|
||||
|
||||
if (codeA=='#160;') {
|
||||
elmV.innerHTML = '__';
|
||||
} else {
|
||||
elmV.innerHTML = '&' + codeA;
|
||||
}
|
||||
|
||||
elmB.innerHTML = '&' + codeA;
|
||||
elmA.innerHTML = '&' + codeB;
|
||||
elmN.innerHTML = codeN;
|
||||
}
|
||||
|
||||
window.focus();
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<table align="center" border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<td colspan="2" class="title">{$lang_theme_charmap_title}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td rowspan="2" align="left" valign="top">
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
renderCharMapHTML();
|
||||
//-->
|
||||
</script>
|
||||
</td>
|
||||
<td width="100" align="center" valign="top">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100" height="100">
|
||||
<tr>
|
||||
<td class="charmapOver" style="font-size: 40px; height:80px;" id="codeV"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 10px; font-family: Arial, Helvetica, sans-serif; text-align:center;" id="codeN"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="bottom" style="padding-bottom: 3px;">
|
||||
<table width="100" align="center" border="0" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">HTML-Code</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 1px;"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">NUM-Code</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
272
includes/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
vendored
Normal file
@@ -0,0 +1,272 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{$lang_theme_colorpicker_title}</title>
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
function selectColor() {
|
||||
var color = document.getElementById("selectedColorBox").value;
|
||||
if (window.opener)
|
||||
window.opener.tinyMCE.execInstanceCommand(tinyMCE.getWindowArg('editor_id'),tinyMCE.getWindowArg('command'),false,color);
|
||||
window.close();
|
||||
}
|
||||
function showColor(color) {
|
||||
document.getElementById("selectedColor").style.backgroundColor = color;
|
||||
document.getElementById("selectedColorBox").value = color;
|
||||
}
|
||||
|
||||
window.focus();
|
||||
|
||||
var colorPicker = "";
|
||||
var colors = new Array(
|
||||
"#000000",
|
||||
"#000033",
|
||||
"#000066",
|
||||
"#000099",
|
||||
"#0000cc",
|
||||
"#0000ff",
|
||||
"#330000",
|
||||
"#330033",
|
||||
"#330066",
|
||||
"#330099",
|
||||
"#3300cc",
|
||||
"#3300ff",
|
||||
"#660000",
|
||||
"#660033",
|
||||
"#660066",
|
||||
"#660099",
|
||||
"#6600cc",
|
||||
"#6600ff",
|
||||
"#990000",
|
||||
"#990033",
|
||||
"#990066",
|
||||
"#990099",
|
||||
"#9900cc",
|
||||
"#9900ff",
|
||||
"#cc0000",
|
||||
"#cc0033",
|
||||
"#cc0066",
|
||||
"#cc0099",
|
||||
"#cc00cc",
|
||||
"#cc00ff",
|
||||
"#ff0000",
|
||||
"#ff0033",
|
||||
"#ff0066",
|
||||
"#ff0099",
|
||||
"#ff00cc",
|
||||
"#ff00ff",
|
||||
"#003300",
|
||||
"#003333",
|
||||
"#003366",
|
||||
"#003399",
|
||||
"#0033cc",
|
||||
"#0033ff",
|
||||
"#333300",
|
||||
"#333333",
|
||||
"#333366",
|
||||
"#333399",
|
||||
"#3333cc",
|
||||
"#3333ff",
|
||||
"#663300",
|
||||
"#663333",
|
||||
"#663366",
|
||||
"#663399",
|
||||
"#6633cc",
|
||||
"#6633ff",
|
||||
"#993300",
|
||||
"#993333",
|
||||
"#993366",
|
||||
"#993399",
|
||||
"#9933cc",
|
||||
"#9933ff",
|
||||
"#cc3300",
|
||||
"#cc3333",
|
||||
"#cc3366",
|
||||
"#cc3399",
|
||||
"#cc33cc",
|
||||
"#cc33ff",
|
||||
"#ff3300",
|
||||
"#ff3333",
|
||||
"#ff3366",
|
||||
"#ff3399",
|
||||
"#ff33cc",
|
||||
"#ff33ff",
|
||||
"#006600",
|
||||
"#006633",
|
||||
"#006666",
|
||||
"#006699",
|
||||
"#0066cc",
|
||||
"#0066ff",
|
||||
"#336600",
|
||||
"#336633",
|
||||
"#336666",
|
||||
"#336699",
|
||||
"#3366cc",
|
||||
"#3366ff",
|
||||
"#666600",
|
||||
"#666633",
|
||||
"#666666",
|
||||
"#666699",
|
||||
"#6666cc",
|
||||
"#6666ff",
|
||||
"#996600",
|
||||
"#996633",
|
||||
"#996666",
|
||||
"#996699",
|
||||
"#9966cc",
|
||||
"#9966ff",
|
||||
"#cc6600",
|
||||
"#cc6633",
|
||||
"#cc6666",
|
||||
"#cc6699",
|
||||
"#cc66cc",
|
||||
"#cc66ff",
|
||||
"#ff6600",
|
||||
"#ff6633",
|
||||
"#ff6666",
|
||||
"#ff6699",
|
||||
"#ff66cc",
|
||||
"#ff66ff",
|
||||
"#009900",
|
||||
"#009933",
|
||||
"#009966",
|
||||
"#009999",
|
||||
"#0099cc",
|
||||
"#0099ff",
|
||||
"#339900",
|
||||
"#339933",
|
||||
"#339966",
|
||||
"#339999",
|
||||
"#3399cc",
|
||||
"#3399ff",
|
||||
"#669900",
|
||||
"#669933",
|
||||
"#669966",
|
||||
"#669999",
|
||||
"#6699cc",
|
||||
"#6699ff",
|
||||
"#999900",
|
||||
"#999933",
|
||||
"#999966",
|
||||
"#999999",
|
||||
"#9999cc",
|
||||
"#9999ff",
|
||||
"#cc9900",
|
||||
"#cc9933",
|
||||
"#cc9966",
|
||||
"#cc9999",
|
||||
"#cc99cc",
|
||||
"#cc99ff",
|
||||
"#ff9900",
|
||||
"#ff9933",
|
||||
"#ff9966",
|
||||
"#ff9999",
|
||||
"#ff99cc",
|
||||
"#ff99ff",
|
||||
"#00cc00",
|
||||
"#00cc33",
|
||||
"#00cc66",
|
||||
"#00cc99",
|
||||
"#00cccc",
|
||||
"#00ccff",
|
||||
"#33cc00",
|
||||
"#33cc33",
|
||||
"#33cc66",
|
||||
"#33cc99",
|
||||
"#33cccc",
|
||||
"#33ccff",
|
||||
"#66cc00",
|
||||
"#66cc33",
|
||||
"#66cc66",
|
||||
"#66cc99",
|
||||
"#66cccc",
|
||||
"#66ccff",
|
||||
"#99cc00",
|
||||
"#99cc33",
|
||||
"#99cc66",
|
||||
"#99cc99",
|
||||
"#99cccc",
|
||||
"#99ccff",
|
||||
"#cccc00",
|
||||
"#cccc33",
|
||||
"#cccc66",
|
||||
"#cccc99",
|
||||
"#cccccc",
|
||||
"#ccccff",
|
||||
"#ffcc00",
|
||||
"#ffcc33",
|
||||
"#ffcc66",
|
||||
"#ffcc99",
|
||||
"#ffcccc",
|
||||
"#ffccff",
|
||||
"#00ff00",
|
||||
"#00ff33",
|
||||
"#00ff66",
|
||||
"#00ff99",
|
||||
"#00ffcc",
|
||||
"#00ffff",
|
||||
"#33ff00",
|
||||
"#33ff33",
|
||||
"#33ff66",
|
||||
"#33ff99",
|
||||
"#33ffcc",
|
||||
"#33ffff",
|
||||
"#66ff00",
|
||||
"#66ff33",
|
||||
"#66ff66",
|
||||
"#66ff99",
|
||||
"#66ffcc",
|
||||
"#66ffff",
|
||||
"#99ff00",
|
||||
"#99ff33",
|
||||
"#99ff66",
|
||||
"#99ff99",
|
||||
"#99ffcc",
|
||||
"#99ffff",
|
||||
"#ccff00",
|
||||
"#ccff33",
|
||||
"#ccff66",
|
||||
"#ccff99",
|
||||
"#ccffcc",
|
||||
"#ccffff",
|
||||
"#ffff00",
|
||||
"#ffff33",
|
||||
"#ffff66",
|
||||
"#ffff99",
|
||||
"#ffffcc",
|
||||
"#ffffff"
|
||||
);
|
||||
|
||||
colorPicker += '<table border="0" cellspacing="1" cellpadding="0">'
|
||||
+ '<tr>';
|
||||
for (var i=0; i<colors.length; i++) {
|
||||
colorPicker += '<td bgcolor="' + colors[i] + '">'
|
||||
+ '<a href="#top" onclick="selectColor();return false;" onmouseover="showColor(\'' + colors[i] + '\');">'
|
||||
+ '<img border="0" src="images/spacer.gif" width="10" height="10" /></a></td>';
|
||||
if ((i+1) % 18 == 0)
|
||||
colorPicker += '</tr><tr>';
|
||||
}
|
||||
colorPicker += '<tr><td colspan="18">'
|
||||
+ '<table width="100%" border="0" cellspacing="0" cellpadding="0">'
|
||||
+ '<tr><td>'
|
||||
+ '<img id="selectedColor" style="background-color:' + tinyMCE.getWindowArg('input_color') + '" border="0" src="images/spacer.gif" width="80" height="16" />'
|
||||
+ '</td><td align="right">'
|
||||
+ '<input id="selectedColorBox" name="selectedColorBox" type="text" size="7" maxlength="7" style="width:65px" value="' + tinyMCE.getWindowArg('input_color') + '" />'
|
||||
+ '</td></tr>'
|
||||
+ '</table>'
|
||||
+ '<input type="button" id="insert" name="insert" value="{$lang_theme_colorpicker_apply}" style="margin-top:3px" onclick="selectColor();">'
|
||||
+ '</td></tr>'
|
||||
+ '</table>';
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<body marginheight="3" topmargin="3" leftmargin="3" marginwidth="3">
|
||||
<div align="center">
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
document.write(colorPicker);
|
||||
//-->
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
32
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/about.htm
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>About TinyMCE</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">About TinyMCE</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
TinyMCE is a small WYSIWYG editor control for web browsers such as MSIE or Mozilla
|
||||
that enables you to edit HTML contents in a more user friendly way. It has common
|
||||
features that are found in most word processors and should not be difficult to
|
||||
use.<br>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
</BODY>
|
||||
</HTML>
|
163
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm
vendored
Normal file
@@ -0,0 +1,163 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Common buttons</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Common buttons</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
Below is a short description about each button.<img src="../../images/spacer.gif" width="1" height="1">
|
||||
<br>
|
||||
<br>
|
||||
<table border="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td><img src="../../images/bold.gif" width="20" height="20"></td>
|
||||
<td>Bold text style.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/italic.gif" width="20" height="20"></td>
|
||||
<td>Italic text style.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/underline.gif" width="20" height="20"></td>
|
||||
<td>Underline text style.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/strikethrough.gif" width="20" height="20"></td>
|
||||
<td>Strikethrough text style.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/left.gif" width="20" height="20"></td>
|
||||
<td>Align left.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/center.gif" width="20" height="20"></td>
|
||||
<td>Align center.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/right.gif" width="20" height="20"></td>
|
||||
<td>Align right.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/full.gif" width="20" height="20"></td>
|
||||
<td>Align full.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/bullist.gif" width="20" height="20"></td>
|
||||
<td>Unordered list/bullet list.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/numlist.gif" width="20" height="20"></td>
|
||||
<td>Ordered list/numbered list</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/outdent.gif" width="20" height="20"></td>
|
||||
<td>Outdent/decrease indentation.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/indent.gif" width="20" height="20"></td>
|
||||
<td>Indent/incread indentation.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/undo.gif" width="20" height="20"></td>
|
||||
<td>Undo the last operation.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/redo.gif" width="20" height="20"></td>
|
||||
<td>Redo the last operation.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/link.gif" width="20" height="20"></td>
|
||||
<td>Insert a new link, read more about this function in the <a href="insert_link_button.htm">Insert
|
||||
link section</a>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/unlink.gif" width="20" height="20"></td>
|
||||
<td>Unlinks the current selection/removes all selected links.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/anchor.gif" width="20" height="20"></td>
|
||||
<td>Insert a new anchor, read more about this function in the <a href="insert_anchor_button.htm">Insert anchor section.</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/image.gif" width="20" height="20"></td>
|
||||
<td>Insert a new image, read more about this function in the <a href="insert_image_button.htm">Insert
|
||||
image section</a>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/cleanup.gif" width="20" height="20"></td>
|
||||
<td>Cleanup code/Removes unwanted formating. This function is useful when
|
||||
you copy contents from for example a office product.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/help.gif" width="20" height="20"></td>
|
||||
<td>Shows this help window.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/code.gif" width="20" height="20"></td>
|
||||
<td>Opens HTML source code editor. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table.gif" width="20" height="20"></td>
|
||||
<td>Inserts a new 2x2 table at the current location. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_insert_row_before.gif" width="20" height="20"></td>
|
||||
<td>Adds a row above the current one. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_insert_row_after.gif" width="20" height="20"></td>
|
||||
<td>Adds a row under the current one. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_delete_row.gif" width="20" height="20"></td>
|
||||
<td>Removes the row. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_insert_col_before.gif" width="20" height="20"></td>
|
||||
<td>Adds a column before the current one.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_insert_col_after.gif" width="20" height="20"></td>
|
||||
<td>Adds a column after the current one.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../images/table_delete_col.gif" width="20" height="20"></td>
|
||||
<td>Removes the current column.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/hr.gif" width="20" height="20"></td>
|
||||
<td>Inserts a new horizontal ruler </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/removeformat.gif" width="20" height="20"></td>
|
||||
<td>Removes formatting from the selection. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/sub.gif" width="20" height="20"></td>
|
||||
<td>Makes the selection to be subscript. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="../../images/sup.gif" width="20" height="20"></td>
|
||||
<td>Makes the selection to be superscripted. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</BODY>
|
||||
</HTML>
|
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_anchor_window.gif
vendored
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_image_window.gif
vendored
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_link_window.gif
vendored
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_table_window.gif
vendored
Normal file
After Width: | Height: | Size: 6.9 KiB |
27
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/index.htm
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Help Index</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
<BODY onload="window.focus();">
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Table of contents</span></td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
Click the links below to go to the different help sections.
|
||||
<ul class="toc_ul">
|
||||
<li class="toc_li"><a href="about.htm">About TinyMCE</a></li>
|
||||
<li class="toc_li"><a href="common_buttons.htm">Common buttons</a></li>
|
||||
<li class="toc_li"><a href="insert_image_button.htm">Insert image button</a></li>
|
||||
<li class="toc_li"><a href="insert_link_button.htm">Insert link button</a></li>
|
||||
<li class="toc_li"><a href="insert_anchor_button.htm">Insert anchor button</a></li>
|
||||
<li class="toc_li"><a href="insert_table_button.htm">Insert table button</a></li>
|
||||
</ul>
|
||||
<hr noshade>
|
||||
</BODY>
|
||||
</HTML>
|
33
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Insert anchor button</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Insert anchor button</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
This button opens a new window with the insert/edit anchor function.<br>
|
||||
<br>
|
||||
<img src="images/insert_anchor_window.gif" width="330" height="139"><br>
|
||||
<br>
|
||||
There are one field in this window, this is where you enter the name of you anchor point. Remember the anchor name needs to be unique. <br>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
</BODY>
|
||||
</HTML>
|
66
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Insert image button</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Insert image button</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
The insert image button opens the window shown below.<br>
|
||||
<br>
|
||||
<img src="images/insert_image_window.gif"><br>
|
||||
<br>
|
||||
You simply enter a URL to the image you want to link to and enter a image description,
|
||||
this is then displayed as an alternative text descripton of the image on the page.<br>
|
||||
<br>
|
||||
<strong>Field descriptions:</strong><br>
|
||||
<table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<td width="150"><strong>Image URL </strong></td>
|
||||
<td>URL/path to the image.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150"><strong>Image description </strong></td>
|
||||
<td>Alternative description of image contents.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Dimentions</strong></td>
|
||||
<td>Image width/height. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Alignment</strong></td>
|
||||
<td>Image alignment, useful when wrapping text around images.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Border</strong></td>
|
||||
<td>Border thickness. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>VSpace</strong></td>
|
||||
<td>Vertical space, useful when wrapping text around images.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>HSpace</strong></td>
|
||||
<td>Horizontal space, useful when wrapping text around images.</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
</BODY>
|
||||
</HTML>
|
34
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Insert link button</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Insert link button</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
This button opens a new window with the insert/edit link function.<br>
|
||||
<br>
|
||||
<img src="images/insert_link_window.gif" width="330" height="159"><br>
|
||||
<br>
|
||||
There are two fields in this window the first one "Link URL" is the
|
||||
URL of the link. The target enables you to select how the link is to be opened.<br>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
</BODY>
|
||||
</HTML>
|
72
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Insert table button</TITLE>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pageheader">
|
||||
<tr>
|
||||
<td><span class="title">Insert table button</span></td>
|
||||
<td align="right"><a href="index.htm">TOC</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade>
|
||||
<br>
|
||||
The insert table button opens the window shown below. This action enables you to create tables. <br>
|
||||
<br>
|
||||
<img src="images/insert_table_window.gif" width="340" height="229"><br>
|
||||
<br>
|
||||
<strong>Field descriptions:</strong><br>
|
||||
<table border="1" cellspacing="0">
|
||||
<tr>
|
||||
<td width="150"><strong>Columns</strong></td>
|
||||
<td>Number of columns in the table. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150"><strong>Rows</strong></td>
|
||||
<td>Number of rows in the new table.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Cellpadding</strong></td>
|
||||
<td>Cellpadding of the table . </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Cellspacing</strong></td>
|
||||
<td>Cellspacing of the table .</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Alignment</strong></td>
|
||||
<td>Table alignment . </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Border</strong></td>
|
||||
<td>Border thinkness of table.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Width</strong></td>
|
||||
<td>Width in pixels of table .</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Height</strong></td>
|
||||
<td>Height in pixels of table.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Class</strong></td>
|
||||
<td>Style or CSS class of table.</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
<hr noshade>
|
||||
<table width="100%" border="0" cellpadding="1" cellspacing="3" class="pagefooter">
|
||||
<tr>
|
||||
<td>Go to: <a href="index.htm">Table of contents</a></td>
|
||||
<td align="right"><a href="#">Top</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
</BODY>
|
||||
</HTML>
|
28
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/style.css
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
body { background-color: #FFFFFF; }
|
||||
body, td, .content { font-family: Verdana, Arial, helvetica, sans-serif; font-size: 12px; }
|
||||
.title { font-family: Verdana, Arial, helvetica, sans-serif; font-size: 16px; font-weight: bold; }
|
||||
.subtitle { font-size: 12px; font-weight: bold; }
|
||||
|
||||
.toc_ul, .toc_li { margin-left: 8 px; line-height: 16px; }
|
||||
.step_ol, .step_li { margin-left: 11 px; line-height: 16px; }
|
||||
img { border: #000000 solid 1px; }
|
||||
|
||||
a:visited { color: #666666; text-decoration: underline; }
|
||||
a:active { color: #666666; text-decoration: underline; }
|
||||
a:hover { color: #666666; text-decoration: underline; }
|
||||
a { color: #666666; text-decoration: underline; }
|
||||
|
||||
.pageheader { border: #E0E0E0 solid 1px; }
|
||||
.pagefooter { border: #E0E0E0 solid 1px; }
|
||||
.sample { background-color: #FFFFFF; border: #000000 solid 1px; }
|
||||
.samplecontent { font-size: 10px; }
|
||||
|
||||
.code { background-color: #FFFFFF; border: #000000 solid 1px; }
|
||||
.codecontent { font-size: 10px; }
|
||||
.codecontent a:visited { color: #666666; text-decoration: none; font-weight: bold }
|
||||
.codecontent a:active { color: #666666; text-decoration: none; font-weight: bold }
|
||||
.codecontent a:hover { color: #666666; text-decoration: none; font-weight: bold }
|
||||
.codecontent a { color: #666666; text-decoration: none; font-weight: bold }
|
||||
|
||||
hr { height: 1px; }
|
||||
|
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table.gif
vendored
Normal file
After Width: | Height: | Size: 1018 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_delete_col.gif
vendored
Normal file
After Width: | Height: | Size: 929 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_delete_row.gif
vendored
Normal file
After Width: | Height: | Size: 942 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_col_after.gif
vendored
Normal file
After Width: | Height: | Size: 936 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_col_before.gif
vendored
Normal file
After Width: | Height: | Size: 935 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_row_after.gif
vendored
Normal file
After Width: | Height: | Size: 928 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/docs/images/table_insert_row_before.gif
vendored
Normal file
After Width: | Height: | Size: 928 B |
23
includes/tinymce/jscripts/tiny_mce/themes/advanced/editor_content.css
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
scrollbar-3dlight-color: #F0F0EE;
|
||||
scrollbar-arrow-color: #676662;
|
||||
scrollbar-base-color: #F0F0EE;
|
||||
scrollbar-darkshadow-color: #DDDDDD;
|
||||
scrollbar-face-color: #E0E0DD;
|
||||
scrollbar-highlight-color: #F0F0EE;
|
||||
scrollbar-shadow-color: #F0F0EE;
|
||||
scrollbar-track-color: #F5F5F5;
|
||||
}
|
||||
|
||||
td {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
}
|
117
includes/tinymce/jscripts/tiny_mce/themes/advanced/editor_popup.css
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
body {
|
||||
background-color: #F0F0EE;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 11px;
|
||||
scrollbar-3dlight-color: #F0F0EE;
|
||||
scrollbar-arrow-color: #676662;
|
||||
scrollbar-base-color: #F0F0EE;
|
||||
scrollbar-darkshadow-color: #DDDDDD;
|
||||
scrollbar-face-color: #E0E0DD;
|
||||
scrollbar-highlight-color: #F0F0EE;
|
||||
scrollbar-shadow-color: #F0F0EE;
|
||||
scrollbar-track-color: #F5F5F5;
|
||||
}
|
||||
|
||||
td {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
input {
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
td, input, select, textarea {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
input, select, textarea {
|
||||
border: 1px solid #808080;
|
||||
}
|
||||
|
||||
.input_noborder {
|
||||
border: 0px solid #808080;
|
||||
}
|
||||
|
||||
#insert {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#cancel {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table.charmap {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-color: #AAAAAA;
|
||||
}
|
||||
|
||||
td.charmap, td.charmapOver {
|
||||
color: #000000;
|
||||
border-color: #AAAAAA;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
td.charmapOver {
|
||||
background-color: #CCCCCC;
|
||||
cursor: arrow;
|
||||
}
|
||||
|
||||
a.charmap {
|
||||
color: #000000;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.wordWrapCode {
|
||||
vertical-align: middle;
|
||||
border: 1px none #000000;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
input.radio {
|
||||
border: 1px none #000000;
|
||||
background-color: transparent;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
input.checkbox {
|
||||
border: 1px none #000000;
|
||||
background-color: transparent;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.mceButtonNormal, .mceButtonOver, .mceButtonDown, .mceSeparator, .mceButtonDisabled, .mceButtonSelected {
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
.mceButtonNormal {
|
||||
border-top: 1px solid;
|
||||
border-left: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
border-right: 1px solid;
|
||||
border-color: #F0F0EE;
|
||||
cursor: arrow;
|
||||
}
|
||||
|
||||
.mceButtonOver {
|
||||
border: 1px solid #0A246A;
|
||||
cursor: arrow;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
.mceButtonDown {
|
||||
cursor: arrow;
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #8592B5;
|
||||
}
|
23
includes/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
vendored
Normal file
738
includes/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
vendored
Normal file
@@ -0,0 +1,738 @@
|
||||
/* Import theme specific language pack */
|
||||
tinyMCE.importThemeLanguagePack();
|
||||
|
||||
// Variable declarations
|
||||
var TinyMCE_advanced_autoImportCSSClasses = true;
|
||||
var TinyMCE_advanced_foreColor = "#000000";
|
||||
var TinyMCE_advanced_anchorName = "";
|
||||
var TinyMCE_advanced_buttons = [
|
||||
// Control id, button img, button title, command, user_interface, value
|
||||
['bold', '{$lang_bold_img}', '{$lang_bold_desc}', 'Bold'],
|
||||
['italic', '{$lang_italic_img}', '{$lang_italic_desc}', 'Italic'],
|
||||
['underline', '{$lang_underline_img}', '{$lang_underline_desc}', 'Underline'],
|
||||
['strikethrough', 'strikethrough.gif', '{$lang_striketrough_desc}', 'Strikethrough'],
|
||||
['justifyleft', 'left.gif', '{$lang_justifyleft_desc}', 'JustifyLeft'],
|
||||
['justifycenter', 'center.gif', '{$lang_justifycenter_desc}', 'JustifyCenter'],
|
||||
['justifyright', 'right.gif', '{$lang_justifyright_desc}', 'JustifyRight'],
|
||||
['justifyfull', 'full.gif', '{$lang_justifyfull_desc}', 'JustifyFull'],
|
||||
['bullist', 'bullist.gif', '{$lang_bullist_desc}', 'InsertUnorderedList'],
|
||||
['numlist', 'numlist.gif', '{$lang_numlist_desc}', 'InsertOrderedList'],
|
||||
['outdent', 'outdent.gif', '{$lang_outdent_desc}', 'Outdent'],
|
||||
['indent', 'indent.gif', '{$lang_indent_desc}', 'Indent'],
|
||||
['cut', 'cut.gif', '{$lang_cut_desc}', 'Cut'],
|
||||
['copy', 'copy.gif', '{$lang_copy_desc}', 'Copy'],
|
||||
['paste', 'paste.gif', '{$lang_paste_desc}', 'Paste'],
|
||||
['undo', 'undo.gif', '{$lang_undo_desc}', 'Undo'],
|
||||
['redo', 'redo.gif', '{$lang_redo_desc}', 'Redo'],
|
||||
['link', 'link.gif', '{$lang_link_desc}', 'mceLink', true],
|
||||
['unlink', 'unlink.gif', '{$lang_unlink_desc}', 'unlink'],
|
||||
['image', 'image.gif', '{$lang_image_desc}', 'mceImage', true],
|
||||
['cleanup', 'cleanup.gif', '{$lang_cleanup_desc}', 'mceCleanup'],
|
||||
['help', 'help.gif', '{$lang_help_desc}', 'mceHelp'],
|
||||
['code', 'code.gif', '{$lang_theme_code_desc}', 'mceCodeEditor'],
|
||||
['hr', 'hr.gif', '{$lang_theme_hr_desc}', 'inserthorizontalrule'],
|
||||
['removeformat', 'removeformat.gif', '{$lang_theme_removeformat_desc}', 'removeformat'],
|
||||
['sub', 'sub.gif', '{$lang_theme_sub_desc}', 'subscript'],
|
||||
['sup', 'sup.gif', '{$lang_theme_sup_desc}', 'superscript'],
|
||||
['forecolor', 'forecolor.gif', '{$lang_theme_forecolor_desc}', 'mceForeColor', true],
|
||||
['backcolor', 'backcolor.gif', '{$lang_theme_backcolor_desc}', 'mceBackColor', true],
|
||||
['charmap', 'charmap.gif', '{$lang_theme_charmap_desc}', 'mceCharMap'],
|
||||
['visualaid', 'visualaid.gif', '{$lang_theme_visualaid_desc}', 'mceToggleVisualAid'],
|
||||
['anchor', 'anchor.gif', '{$lang_theme_anchor_desc}', 'mceInsertAnchor']
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* Returns HTML code for the specificed control.
|
||||
*/
|
||||
function TinyMCE_advanced_getControlHTML(button_name) {
|
||||
var buttonTileMap = new Array('anchor.gif','backcolor.gif','bullist.gif','center.gif','charmap.gif','cleanup.gif','code.gif','copy.gif','custom_1.gif','cut.gif','forecolor.gif','full.gif','help.gif','hr.gif','image.gif','indent.gif','left.gif','link.gif','numlist.gif','outdent.gif','paste.gif','redo.gif','removeformat.gif','right.gif','strikethrough.gif','sub.gif','sup.gif','undo.gif','unlink.gif','visualaid.gif');
|
||||
|
||||
// Lookup button in button list
|
||||
for (var i=0; i<TinyMCE_advanced_buttons.length; i++) {
|
||||
var but = TinyMCE_advanced_buttons[i];
|
||||
if (but[0] == button_name) {
|
||||
// Check for it in tilemap
|
||||
for (var x=0; !tinyMCE.isMSIE && x<buttonTileMap.length; x++) {
|
||||
if (buttonTileMap[x] == but[1])
|
||||
return '<img id="{$editor_id}_' + but[0] + '" src="{$themeurl}/images/spacer.gif" style="background-image:url({$themeurl}/images/buttons.gif); background-position: ' + (0-(x*20)) + 'px 0px" title="' + but[2] + '" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" onclick="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'' + but[3] + '\', ' + (but.length > 4 ? but[4] : false) + (but.length > 5 ? ', \'' + but[5] + '\'' : '') + ')">';
|
||||
}
|
||||
|
||||
// Old style
|
||||
return '<img id="{$editor_id}_' + but[0] + '" src="{$themeurl}/images/' + but[1] + '" title="' + but[2] + '" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" onclick="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'' + but[3] + '\', ' + (but.length > 4 ? but[4] : false) + (but.length > 5 ? ', \'' + but[5] + '\'' : '') + ')">';
|
||||
}
|
||||
}
|
||||
|
||||
// Custom controlls other than buttons
|
||||
switch (button_name) {
|
||||
case "formatselect":
|
||||
var html = '<select id="{$editor_id}_formatSelect" name="{$editor_id}_formatSelect" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FormatBlock\',false,this.options[this.selectedIndex].value);" class="mceSelectList">';
|
||||
var formats = tinyMCE.getParam("theme_advanced_blockformats", "p,address,pre,h1,h2,h3,h4,h5,h6", true).split(',');
|
||||
var lookup = [
|
||||
['p', '{$lang_theme_paragraph}'],
|
||||
['address', '{$lang_theme_address}'],
|
||||
['pre', '{$lang_theme_pre}'],
|
||||
['h1', '{$lang_theme_h1}'],
|
||||
['h2', '{$lang_theme_h2}'],
|
||||
['h3', '{$lang_theme_h3}'],
|
||||
['h4', '{$lang_theme_h4}'],
|
||||
['h5', '{$lang_theme_h5}'],
|
||||
['h6', '{$lang_theme_h6}']
|
||||
];
|
||||
|
||||
// Build format select
|
||||
for (var i=0; i<formats.length; i++) {
|
||||
for (var x=0; x<lookup.length; x++) {
|
||||
if (formats[i] == lookup[x][0])
|
||||
html += '<option value="<' + lookup[x][0] + '>">' + lookup[x][1] + '</option>';
|
||||
}
|
||||
}
|
||||
|
||||
html += '</select>';
|
||||
|
||||
return html;
|
||||
|
||||
|
||||
case "styleselect":
|
||||
return '<select id="{$editor_id}_styleSelect" onmousedown="TinyMCE_advanced_setupCSSClasses(\'{$editor_id}\');" name="{$editor_id}_styleSelect" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceSetCSSClass\',false,this.options[this.selectedIndex].value);" class="mceSelectList">{$style_select_options}</select>';
|
||||
|
||||
case "fontselect":
|
||||
return '<select id="{$editor_id}_fontNameSelect" name="{$editor_id}_fontNameSelect" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FontName\',false,this.options[this.selectedIndex].value);" class="mceSelectList">\
|
||||
<option value="">{$lang_theme_fontdefault}</option>\
|
||||
<option value="arial,helvetica,sans-serif">Arial</option>\
|
||||
<option value="times new roman,times,serif">Times New Roman</option>\
|
||||
<option value="verdana,arial,helvetica,sans-serif">Verdana</option>\
|
||||
<option value="courier new,courier,monospace">Courier</option>\
|
||||
<option value="georgia,times new roman,times,serif">Georgia</option>\
|
||||
<option value="tahoma,arial,helvetica,sans-serif">Tahoma</option>\
|
||||
</select>';
|
||||
|
||||
case "fontsizeselect":
|
||||
return '<select id="{$editor_id}_fontSizeSelect" name="{$editor_id}_fontSizeSelect" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'FontSize\',false,this.options[this.selectedIndex].value);" class="mceSelectList">\
|
||||
<option value="0">-- {$lang_theme_font_size} --</option>\
|
||||
<option value="1">1 (8 pt)</option>\
|
||||
<option value="2">2 (10 pt)</option>\
|
||||
<option value="3">3 (12 pt)</option>\
|
||||
<option value="4">4 (14 pt)</option>\
|
||||
<option value="5">5 (18 pt)</option>\
|
||||
<option value="6">6 (24 pt)</option>\
|
||||
<option value="7">7 (36 pt)</option>\
|
||||
</select>';
|
||||
|
||||
case "|":
|
||||
case "separator":
|
||||
return '<img src="{$themeurl}/images/spacer.gif" width="1" height="15" class="mceSeparatorLine">';
|
||||
|
||||
case "spacer":
|
||||
return '<img src="{$themeurl}/images/spacer.gif" width="1" height="15" border="0" class="mceSeparatorLine" style="vertical-align: middle" />';
|
||||
|
||||
case "rowseparator":
|
||||
return '<br />';
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
/**
|
||||
* Theme specific exec command handeling.
|
||||
*/
|
||||
function TinyMCE_advanced_execCommand(editor_id, element, command, user_interface, value) {
|
||||
switch (command) {
|
||||
case "mceForeColor":
|
||||
var template = new Array();
|
||||
var inputColor = TinyMCE_advanced_foreColor;
|
||||
|
||||
if (!inputColor)
|
||||
inputColor = "#000000";
|
||||
|
||||
template['file'] = 'color_picker.htm';
|
||||
template['width'] = 210;
|
||||
template['height'] = 200;
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, command : "forecolor", input_color : inputColor});
|
||||
return true;
|
||||
|
||||
case "mceBackColor":
|
||||
var template = new Array();
|
||||
var inputColor = TinyMCE_advanced_foreColor;
|
||||
|
||||
if (!inputColor)
|
||||
inputColor = "#000000";
|
||||
|
||||
template['file'] = 'color_picker.htm';
|
||||
template['width'] = 210;
|
||||
template['height'] = 200;
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, command : "HiliteColor", input_color : inputColor});
|
||||
return true;
|
||||
|
||||
case "mceCodeEditor":
|
||||
var template = new Array();
|
||||
|
||||
template['file'] = 'source_editor.htm';
|
||||
template['width'] = tinyMCE.getParam("theme_advanced_source_editor_width", 500);
|
||||
template['height'] = tinyMCE.getParam("theme_advanced_source_editor_height", 400);
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, resizable : "yes", scrollbars : "no"});
|
||||
return true;
|
||||
|
||||
case "mceCharMap":
|
||||
var template = new Array();
|
||||
|
||||
template['file'] = 'charmap.htm';
|
||||
template['width'] = 550;
|
||||
template['height'] = 280;
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id});
|
||||
return true;
|
||||
|
||||
case "mceInsertAnchor":
|
||||
var template = new Array();
|
||||
|
||||
template['file'] = 'anchor.htm';
|
||||
template['width'] = 320;
|
||||
template['height'] = 130;
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, name : TinyMCE_advanced_anchorName, action : (TinyMCE_advanced_anchorName == "" ? "insert" : "update")});
|
||||
return true;
|
||||
}
|
||||
|
||||
// Default behavior
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Editor instance template function.
|
||||
*/
|
||||
function TinyMCE_advanced_getEditorTemplate(settings) {
|
||||
function removeFromArray(in_array, remove_array) {
|
||||
var outArray = new Array();
|
||||
for (var i=0; i<in_array.length; i++) {
|
||||
skip = false;
|
||||
|
||||
for (var j=0; j<remove_array.length; j++) {
|
||||
if (in_array[i] == remove_array[j])
|
||||
skip = true;
|
||||
}
|
||||
|
||||
if (!skip)
|
||||
outArray[outArray.length] = in_array[i];
|
||||
}
|
||||
|
||||
return outArray;
|
||||
}
|
||||
|
||||
function addToArray(in_array, add_array) {
|
||||
for (var i=0; i<add_array.length; i++)
|
||||
in_array[in_array.length] = add_array[i];
|
||||
|
||||
return in_array;
|
||||
}
|
||||
|
||||
var template = new Array();
|
||||
var deltaHeight = 0;
|
||||
|
||||
//###########################################################################################################
|
||||
// <Layout Manager Modification by SlyD, 14.1.2005>
|
||||
//###########################################################################################################
|
||||
|
||||
var pathHTML = '{$lang_theme_path}: <span id="{$editor_id}_path"> </span>';
|
||||
var layoutManager = tinyMCE.getParam("theme_advanced_layout_manager", "SimpleLayout");
|
||||
|
||||
switch(layoutManager) {
|
||||
case "SimpleLayout" : //the default TinyMCE Layout (for backwards compatibility)...
|
||||
var toolbarHTML = "";
|
||||
var toolbarLocation = tinyMCE.getParam("theme_advanced_toolbar_location", "bottom");
|
||||
var toolbarAlign = tinyMCE.getParam("theme_advanced_toolbar_align", "center");
|
||||
var pathLocation = tinyMCE.getParam("theme_advanced_path_location", "none");
|
||||
|
||||
// Render row 1
|
||||
var buttonNamesRow1 = tinyMCE.getParam("theme_advanced_buttons1", "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,styleselect,formatselect", true, ',');
|
||||
buttonNamesRow1 = removeFromArray(buttonNamesRow1, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
|
||||
buttonNamesRow1 = addToArray(buttonNamesRow1, tinyMCE.getParam("theme_advanced_buttons1_add", "", true, ','));
|
||||
buttonNamesRow1 = addToArray(tinyMCE.getParam("theme_advanced_buttons1_add_before", "", true, ','), buttonNamesRow1);
|
||||
for (var i=0; i<buttonNamesRow1.length; i++)
|
||||
toolbarHTML += tinyMCE.getControlHTML(buttonNamesRow1[i]);
|
||||
|
||||
if (buttonNamesRow1.length > 0) {
|
||||
toolbarHTML += "<br />";
|
||||
deltaHeight -= 23;
|
||||
}
|
||||
|
||||
// Render row 2
|
||||
var buttonNamesRow2 = tinyMCE.getParam("theme_advanced_buttons2", "bullist,numlist,separator,outdent,indent,separator,undo,redo,separator,link,unlink,anchor,image,cleanup,help,code", true, ',');
|
||||
buttonNamesRow2 = removeFromArray(buttonNamesRow2, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
|
||||
buttonNamesRow2 = addToArray(buttonNamesRow2, tinyMCE.getParam("theme_advanced_buttons2_add", "", true, ','));
|
||||
buttonNamesRow2 = addToArray(tinyMCE.getParam("theme_advanced_buttons2_add_before", "", true, ','), buttonNamesRow2);
|
||||
for (var i=0; i<buttonNamesRow2.length; i++)
|
||||
toolbarHTML += tinyMCE.getControlHTML(buttonNamesRow2[i]);
|
||||
|
||||
if (buttonNamesRow2.length > 0) {
|
||||
toolbarHTML += "<br />";
|
||||
deltaHeight -= 23;
|
||||
}
|
||||
|
||||
// Render row 3
|
||||
var buttonNamesRow3 = tinyMCE.getParam("theme_advanced_buttons3", "hr,removeformat,visualaid,separator,sub,sup,separator,charmap", true, ',');
|
||||
buttonNamesRow3 = removeFromArray(buttonNamesRow3, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
|
||||
buttonNamesRow3 = addToArray(buttonNamesRow3, tinyMCE.getParam("theme_advanced_buttons3_add", "", true, ','));
|
||||
buttonNamesRow3 = addToArray(tinyMCE.getParam("theme_advanced_buttons3_add_before", "", true, ','), buttonNamesRow3);
|
||||
for (var i=0; i<buttonNamesRow3.length; i++)
|
||||
toolbarHTML += tinyMCE.getControlHTML(buttonNamesRow3[i]);
|
||||
|
||||
if (buttonNamesRow3.length > 0)
|
||||
deltaHeight -= 20;
|
||||
|
||||
// Setup template html
|
||||
template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}"><tbody>';
|
||||
|
||||
if (toolbarLocation == "top")
|
||||
template['html'] += '<tr><td class="mceToolbarTop" align="' + toolbarAlign + '" height="1">' + toolbarHTML + '</td></tr>';
|
||||
|
||||
if (pathLocation == "top") {
|
||||
template['html'] += '<tr><td class="mcePathTop" height="1">' + pathHTML + '</td></tr>';
|
||||
deltaHeight -= 23;
|
||||
}
|
||||
|
||||
/* template['html'] += '<tr><td align="center">\
|
||||
<iframe id="{$editor_id}" class="mceEditorArea" border="1" frameborder="0" src="{$default_document}" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" style="width:{$area_width};height:{$area_height}" width="{$area_width}" height="{$area_height}"></iframe>\
|
||||
</td></tr>';*/
|
||||
template['html'] += '<tr><td align="center">\
|
||||
<span id="{$editor_id}"></span>\
|
||||
</td></tr>';
|
||||
|
||||
if (toolbarLocation == "bottom")
|
||||
template['html'] += '<tr><td class="mceToolbarBottom" align="' + toolbarAlign + '" height="1">' + toolbarHTML + '</td></tr>';
|
||||
|
||||
if (pathLocation == "bottom") {
|
||||
template['html'] += '<tr><td class="mcePathBottom" height="1">' + pathHTML + '</td></tr>';
|
||||
deltaHeight -= 23;
|
||||
}
|
||||
|
||||
template['html'] += '</table>';
|
||||
break;
|
||||
|
||||
case "RowLayout" : //Container Layout - containers defined in "theme_advanced_containers" are rendered from top to bottom.
|
||||
template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}"><tbody>';
|
||||
|
||||
var containers = tinyMCE.getParam("theme_advanced_containers", "", true, ",");
|
||||
var defaultContainerCSS = tinyMCE.getParam("theme_advanced_containers_default_class", "container");
|
||||
var defaultContainerAlign = tinyMCE.getParam("theme_advanced_containers_default_align", "center");
|
||||
|
||||
//Render Containers:
|
||||
for(var i = 0; i < containers.length; i++)
|
||||
{
|
||||
if(containers[i] == "mceEditor") //Exceptions for mceEditor and ...
|
||||
{
|
||||
template['html'] += '<tr><td align="center" class="mceEditor_border">\
|
||||
<span id="{$editor_id}"></span>\
|
||||
</td></tr>';
|
||||
}
|
||||
else if(containers[i] == "mceElementpath") // ... mceElementpath:
|
||||
{
|
||||
var pathClass = "mcePath";
|
||||
|
||||
if (i == containers.length-1)
|
||||
pathClass = "mcePathBottom";
|
||||
else if (i == 0)
|
||||
pathClass = "mcePathTop";
|
||||
else
|
||||
deltaHeight-=2;
|
||||
|
||||
template['html'] += '<tr><td class="' + pathClass + '" height="1">' + pathHTML + '</td></tr>';
|
||||
deltaHeight -= 22;
|
||||
}
|
||||
else //Render normal Container:
|
||||
{
|
||||
var curContainer = tinyMCE.getParam("theme_advanced_container_"+containers[i], "", true, ',');
|
||||
var curContainerHTML = "";
|
||||
var curAlign = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_align", defaultContainerAlign);
|
||||
var curCSS = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_class", defaultContainerCSS);
|
||||
|
||||
for (var j=0; j<curContainer.length; j++)
|
||||
curContainerHTML += tinyMCE.getControlHTML(curContainer[j]);
|
||||
|
||||
if (curContainer.length > 0) {
|
||||
curContainerHTML += "<br />";
|
||||
deltaHeight -= 23;
|
||||
}
|
||||
|
||||
template['html'] += '<tr><td class="' + curCSS + '" align="' + curAlign + '" height="1">' + curContainerHTML + '</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
template['html'] += '</tbody></table>';
|
||||
break;
|
||||
case "BorderLayout" : //will be like java.awt.BorderLayout of SUN Java...
|
||||
// Not implemented yet...
|
||||
break;
|
||||
case "CustomLayout" : //User defined layout callback...
|
||||
var customLayout = tinyMCE.getParam("theme_advanced_custom_layout","");
|
||||
if (customLayout != "" && eval("typeof(" + customLayout + ")") != "undefined")
|
||||
template = eval(customLayout + "(template);");
|
||||
break;
|
||||
default:
|
||||
alert('UNDEFINED LAYOUT MANAGER! PLEASE CHECK YOUR TINYMCE CONFIG!');
|
||||
break;
|
||||
}
|
||||
|
||||
//###########################################################################################################
|
||||
// </Modification by SlyD, 14.1.2005>
|
||||
//###########################################################################################################
|
||||
|
||||
// Setup style select options
|
||||
var styleSelectHTML = '<option value="">-- {$lang_theme_style_select} --</option>';
|
||||
if (settings['theme_advanced_styles']) {
|
||||
var stylesAr = settings['theme_advanced_styles'].split(';');
|
||||
for (var i=0; i<stylesAr.length; i++) {
|
||||
var key, value;
|
||||
|
||||
key = stylesAr[i].split('=')[0];
|
||||
value = stylesAr[i].split('=')[1];
|
||||
|
||||
styleSelectHTML += '<option value="' + value + '">' + key + '</option>';
|
||||
}
|
||||
|
||||
TinyMCE_advanced_autoImportCSSClasses = false;
|
||||
}
|
||||
|
||||
template['html'] = tinyMCE.replaceVar(template['html'], 'style_select_options', styleSelectHTML);
|
||||
template['delta_width'] = 0;
|
||||
template['delta_height'] = deltaHeight;
|
||||
|
||||
return template;
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert link template function.
|
||||
*/
|
||||
function TinyMCE_advanced_getInsertLinkTemplate() {
|
||||
var template = new Array();
|
||||
|
||||
template['file'] = 'link.htm';
|
||||
template['width'] = 320;
|
||||
template['height'] = 170;
|
||||
|
||||
// Language specific width and height addons
|
||||
template['width'] += tinyMCE.getLang('lang_insert_link_delta_width', 0);
|
||||
template['height'] += tinyMCE.getLang('lang_insert_link_delta_height', 0);
|
||||
|
||||
return template;
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert image template function.
|
||||
*/
|
||||
function TinyMCE_advanced_getInsertImageTemplate() {
|
||||
var template = new Array();
|
||||
|
||||
template['file'] = 'image.htm?src={$src}';
|
||||
template['width'] = 340;
|
||||
template['height'] = 280;
|
||||
|
||||
// Language specific width and height addons
|
||||
template['width'] += tinyMCE.getLang('lang_insert_image_delta_width', 0);
|
||||
template['height'] += tinyMCE.getLang('lang_insert_image_delta_height', 0);
|
||||
|
||||
return template;
|
||||
}
|
||||
|
||||
/**
|
||||
* Node change handler.
|
||||
*/
|
||||
function TinyMCE_advanced_handleNodeChange(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
|
||||
function selectByValue(select_elm, value) {
|
||||
if (select_elm) {
|
||||
for (var i=0; i<select_elm.options.length; i++) {
|
||||
if (select_elm.options[i].value == value) {
|
||||
select_elm.selectedIndex = i;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function getAttrib(elm, name) {
|
||||
return elm.getAttribute(name) ? elm.getAttribute(name) : "";
|
||||
}
|
||||
|
||||
// No node provided
|
||||
if (node == null)
|
||||
return;
|
||||
|
||||
// Update path
|
||||
var pathElm = document.getElementById(editor_id + "_path");
|
||||
if (pathElm) {
|
||||
// Get node path
|
||||
var parentNode = node;
|
||||
var path = new Array();
|
||||
while (parentNode) {
|
||||
if (parentNode.nodeName.toLowerCase() == "body")
|
||||
break;
|
||||
|
||||
// Only append element nodes to path
|
||||
if (parentNode.nodeType == 1)
|
||||
path[path.length] = parentNode;
|
||||
|
||||
parentNode = parentNode.parentNode;
|
||||
}
|
||||
|
||||
// Setup HTML
|
||||
var html = "";
|
||||
for (var i=path.length-1; i>=0; i--) {
|
||||
var nodeName = path[i].nodeName.toLowerCase();
|
||||
var nodeData = "";
|
||||
|
||||
if (nodeName == "b")
|
||||
nodeName = "strong";
|
||||
|
||||
if (nodeName == "i")
|
||||
nodeName = "em";
|
||||
|
||||
if (getAttrib(path[i], 'id') != "")
|
||||
nodeData += "id: " + path[i].getAttribute('id') + " ";
|
||||
|
||||
if (getAttrib(path[i], 'class') != "")
|
||||
nodeData += "class: " + path[i].getAttribute('class') + " ";
|
||||
|
||||
if (getAttrib(path[i], 'className') != "")
|
||||
nodeData += "class: " + path[i].getAttribute('className') + " ";
|
||||
|
||||
if (getAttrib(path[i], 'src') != "")
|
||||
nodeData += "src: " + path[i].getAttribute('src') + " ";
|
||||
|
||||
if (getAttrib(path[i], 'href') != "")
|
||||
nodeData += "href: " + path[i].getAttribute('href') + " ";
|
||||
|
||||
if (nodeName == "img" && getAttrib(path[i], 'name') == "mce_plugin_flash") {
|
||||
nodeName = "flash";
|
||||
nodeData = "";
|
||||
}
|
||||
|
||||
if (tinyMCE.isMSIE)
|
||||
html += '<a title="' + nodeData + '" href="javascript:void(0);" onmousedown="tinyMCE.execInstanceCommand(\'' + editor_id + '\',\'mceSelectNodeDepth\',false,\'' + i + '\');return false;" class="mcePathItem">' + nodeName + '</a>';
|
||||
else
|
||||
html += '<a title="' + nodeData + '" href="javascript:tinyMCE.execInstanceCommand(\'' + editor_id + '\',\'mceSelectNodeDepth\',false,\'' + i + '\');" class="mcePathItem">' + nodeName + '</a>';
|
||||
|
||||
if (i > 0)
|
||||
html += " » ";
|
||||
}
|
||||
|
||||
pathElm.innerHTML = html + " ";
|
||||
}
|
||||
|
||||
// Get element color
|
||||
var colorElm = tinyMCE.getParentElement(node, "font", "color");
|
||||
if (colorElm)
|
||||
TinyMCE_advanced_foreColor = "" + colorElm.color.toUpperCase();
|
||||
|
||||
// Reset old states
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyleft', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyright', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifycenter', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyfull', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_bold', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_italic', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_underline', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_strikethrough', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_bullist', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_numlist', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_sub', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_sup', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_anchor', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_link', 'mceButtonDisabled', true);
|
||||
tinyMCE.switchClassSticky(editor_id + '_unlink', 'mceButtonDisabled', true);
|
||||
tinyMCE.switchClassSticky(editor_id + '_outdent', 'mceButtonDisabled', true);
|
||||
tinyMCE.switchClassSticky(editor_id + '_image', 'mceButtonNormal');
|
||||
tinyMCE.switchClassSticky(editor_id + '_hr', 'mceButtonNormal');
|
||||
|
||||
// Get anchor name
|
||||
var anchorName = tinyMCE.getParentElement(node, "a", "name");
|
||||
TinyMCE_advanced_anchorName = "";
|
||||
if (anchorName) {
|
||||
TinyMCE_advanced_anchorName = anchorName.getAttribute("name");
|
||||
tinyMCE.switchClassSticky(editor_id + '_anchor', 'mceButtonSelected');
|
||||
}
|
||||
|
||||
// Get link
|
||||
var anchorLink = tinyMCE.getParentElement(node, "a", "href");
|
||||
if (anchorLink || any_selection) {
|
||||
tinyMCE.switchClassSticky(editor_id + '_link', anchorLink ? 'mceButtonSelected' : 'mceButtonNormal', false);
|
||||
tinyMCE.switchClassSticky(editor_id + '_unlink', anchorLink ? 'mceButtonSelected' : 'mceButtonNormal', false);
|
||||
}
|
||||
|
||||
// Handle visual aid
|
||||
tinyMCE.switchClassSticky(editor_id + '_visualaid', visual_aid ? 'mceButtonSelected' : 'mceButtonNormal', false);
|
||||
|
||||
if (undo_levels != -1) {
|
||||
tinyMCE.switchClassSticky(editor_id + '_undo', 'mceButtonDisabled', true);
|
||||
tinyMCE.switchClassSticky(editor_id + '_redo', 'mceButtonDisabled', true);
|
||||
}
|
||||
|
||||
// Within li, blockquote
|
||||
if (tinyMCE.getParentElement(node, "li,blockquote"))
|
||||
tinyMCE.switchClassSticky(editor_id + '_outdent', 'mceButtonNormal', false);
|
||||
|
||||
// Has redo levels
|
||||
if (undo_index != -1 && (undo_index < undo_levels-1 && undo_levels > 0))
|
||||
tinyMCE.switchClassSticky(editor_id + '_redo', 'mceButtonNormal', false);
|
||||
|
||||
// Has undo levels
|
||||
if (undo_index != -1 && (undo_index > 0 && undo_levels > 0))
|
||||
tinyMCE.switchClassSticky(editor_id + '_undo', 'mceButtonNormal', false);
|
||||
|
||||
// Select class in select box
|
||||
var selectElm = document.getElementById(editor_id + "_styleSelect");
|
||||
if (selectElm) {
|
||||
TinyMCE_advanced_setupCSSClasses(editor_id);
|
||||
|
||||
classNode = node;
|
||||
breakOut = false;
|
||||
var index = 0;
|
||||
|
||||
do {
|
||||
if (classNode && classNode.className) {
|
||||
for (var i=0; i<selectElm.options.length; i++) {
|
||||
if (selectElm.options[i].value == classNode.className) {
|
||||
index = i;
|
||||
breakOut = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} while (!breakOut && classNode != null && (classNode = classNode.parentNode));
|
||||
|
||||
selectElm.selectedIndex = index;
|
||||
}
|
||||
|
||||
// Select formatblock
|
||||
var selectElm = document.getElementById(editor_id + "_formatSelect");
|
||||
if (selectElm) {
|
||||
var elm = tinyMCE.getParentElement(node, "p,div,h1,h2,h3,h4,h5,h6,pre,address");
|
||||
if (elm) {
|
||||
selectByValue(selectElm, "<" + elm.nodeName.toLowerCase() + ">");
|
||||
} else
|
||||
selectByValue(selectElm, "<p>");
|
||||
}
|
||||
|
||||
// Select fontselect
|
||||
var selectElm = document.getElementById(editor_id + "_fontNameSelect");
|
||||
if (selectElm) {
|
||||
var elm = tinyMCE.getParentElement(node, "font", "face");
|
||||
if (elm)
|
||||
selectByValue(selectElm, elm.getAttribute("face"));
|
||||
else
|
||||
selectByValue(selectElm, "");
|
||||
}
|
||||
|
||||
// Select fontsize
|
||||
var selectElm = document.getElementById(editor_id + "_fontSizeSelect");
|
||||
if (selectElm) {
|
||||
var elm = tinyMCE.getParentElement(node, "font", "size");
|
||||
if (elm && getAttrib(elm, "size") != "")
|
||||
selectByValue(selectElm, elm.getAttribute("size"));
|
||||
else
|
||||
selectByValue(selectElm, "0");
|
||||
}
|
||||
|
||||
// Handle align attributes
|
||||
alignNode = node;
|
||||
breakOut = false;
|
||||
do {
|
||||
if (!alignNode.getAttribute || !alignNode.getAttribute('align'))
|
||||
continue;
|
||||
|
||||
switch (alignNode.getAttribute('align').toLowerCase()) {
|
||||
case "left":
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyleft', 'mceButtonSelected');
|
||||
breakOut = true;
|
||||
break;
|
||||
|
||||
case "right":
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyright', 'mceButtonSelected');
|
||||
breakOut = true;
|
||||
break;
|
||||
|
||||
case "middle":
|
||||
case "center":
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifycenter', 'mceButtonSelected');
|
||||
breakOut = true;
|
||||
break;
|
||||
|
||||
case "justify":
|
||||
tinyMCE.switchClassSticky(editor_id + '_justifyfull', 'mceButtonSelected');
|
||||
breakOut = true;
|
||||
break;
|
||||
}
|
||||
} while (!breakOut && (alignNode = alignNode.parentNode));
|
||||
|
||||
// Handle elements
|
||||
do {
|
||||
switch (node.nodeName.toLowerCase()) {
|
||||
case "b":
|
||||
case "strong":
|
||||
tinyMCE.switchClassSticky(editor_id + '_bold', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "i":
|
||||
case "em":
|
||||
tinyMCE.switchClassSticky(editor_id + '_italic', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "u":
|
||||
tinyMCE.switchClassSticky(editor_id + '_underline', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "strike":
|
||||
tinyMCE.switchClassSticky(editor_id + '_strikethrough', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "ul":
|
||||
tinyMCE.switchClassSticky(editor_id + '_bullist', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "ol":
|
||||
tinyMCE.switchClassSticky(editor_id + '_numlist', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "sub":
|
||||
tinyMCE.switchClassSticky(editor_id + '_sub', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "sup":
|
||||
tinyMCE.switchClassSticky(editor_id + '_sup', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "hr":
|
||||
tinyMCE.switchClassSticky(editor_id + '_hr', 'mceButtonSelected');
|
||||
break;
|
||||
|
||||
case "img":
|
||||
if (getAttrib(node, 'name').indexOf('mce_') != 0)
|
||||
tinyMCE.switchClassSticky(editor_id + '_image', 'mceButtonSelected');
|
||||
break;
|
||||
}
|
||||
} while ((node = node.parentNode));
|
||||
}
|
||||
|
||||
// This function auto imports CSS classes into the class selection droplist
|
||||
function TinyMCE_advanced_setupCSSClasses(editor_id) {
|
||||
if (!TinyMCE_advanced_autoImportCSSClasses)
|
||||
return;
|
||||
|
||||
var selectElm = document.getElementById(editor_id + '_styleSelect');
|
||||
|
||||
if (selectElm && selectElm.getAttribute('cssImported') != 'true') {
|
||||
var csses = tinyMCE.getCSSClasses(editor_id);
|
||||
if (csses && selectElm) {
|
||||
for (var i=0; i<csses.length; i++)
|
||||
selectElm.options[selectElm.length] = new Option(csses[i], csses[i]);
|
||||
}
|
||||
|
||||
// Only do this once
|
||||
if (csses != null && csses.length > 0)
|
||||
selectElm.setAttribute('cssImported', 'true');
|
||||
}
|
||||
}
|
147
includes/tinymce/jscripts/tiny_mce/themes/advanced/editor_ui.css
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
.mceButtonNormal, .mceButtonOver, .mceButtonDown, .mceSeparator, .mceButtonDisabled, .mceButtonSelected {
|
||||
margin-top: 1px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
.mceButtonNormal {
|
||||
border-top: 1px solid;
|
||||
border-left: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
border-right: 1px solid;
|
||||
border-color: #F0F0EE;
|
||||
cursor: arrow;
|
||||
}
|
||||
|
||||
.mceButtonOver {
|
||||
/* border-top: 1px solid buttonhighlight;
|
||||
border-left: 1px solid buttonhighlight;
|
||||
border-bottom: 1px solid buttonshadow;
|
||||
border-right: 1px solid buttonshadow;*/
|
||||
border: 1px solid #0A246A;
|
||||
cursor: arrow;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
.mceButtonDown {
|
||||
/* border-bottom: 1px solid buttonhighlight;
|
||||
border-right: 1px solid buttonhighlight;
|
||||
border-top: 1px solid buttonshadow;
|
||||
border-left: 1px solid buttonshadow;*/
|
||||
cursor: arrow;
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #8592B5;
|
||||
}
|
||||
|
||||
.mceButtonSelected {
|
||||
border: 1px solid;
|
||||
border-color: #C0C0BB;
|
||||
cursor: arrow;
|
||||
}
|
||||
|
||||
.mceButtonDisabled {
|
||||
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
|
||||
-moz-opacity:0.3;
|
||||
opacity: 0.3;
|
||||
border-top: 1px solid;
|
||||
border-left: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
border-right: 1px solid;
|
||||
border-color: #F0F0EE;
|
||||
cursor: arrow;
|
||||
}
|
||||
|
||||
.mceSeparator {
|
||||
border-top: 1px solid buttonhighlight;
|
||||
border-left: 1px solid buttonhighlight;
|
||||
border-bottom: 1px solid buttonshadow;
|
||||
border-right: 1px solid buttonshadow;
|
||||
margin-right: 2px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.mceSeparatorLine {
|
||||
margin:2px;
|
||||
margin-left: 4px;
|
||||
background-color: #F0F0EE;
|
||||
border-top: 1px solid buttonshadow;
|
||||
border-left: 1px solid buttonshadow;
|
||||
border-bottom: 1px solid buttonhighlight;
|
||||
border-right: 1px solid buttonhighlight;
|
||||
width: 0px;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.mceSelectList {
|
||||
font-family: "MS Sans Serif";
|
||||
font-size: 7pt;
|
||||
font-weight: normal;
|
||||
margin-top: 3px;
|
||||
padding: 0px;
|
||||
display: inline;
|
||||
vertical-align: top;
|
||||
background-color: #F0F0EE
|
||||
}
|
||||
|
||||
.mceLabel, .mceLabelDisabled {
|
||||
font-family: "MS Sans Serif";
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
.mceLabel {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.mceLabelDisabled {
|
||||
cursor: text;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.mceEditor {
|
||||
background: #F0F0EE;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mceEditorArea {
|
||||
font-family: "MS Sans Serif";
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.mceToolbarTop, .mceToolbarBottom {
|
||||
background: #F0F0EE;
|
||||
}
|
||||
|
||||
.mceToolbarTop {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mceToolbarBottom {
|
||||
border-top: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mcePathTop, .mcePathBottom, .mcePath {
|
||||
font-family: "MS Sans Serif";
|
||||
font-size: 9pt;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.mcePathTop {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mcePathBottom {
|
||||
border-top: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mcePathItem, .mcePathItem:link, .mcePathItem:visited, .mcePathItem:hover {
|
||||
text-decoration: none;
|
||||
font-family: "MS Sans Serif";
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
.mcePathItem:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.mcePath {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
175
includes/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
vendored
Normal file
@@ -0,0 +1,175 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{$lang_insert_image_title}</title>
|
||||
<script language="javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript">
|
||||
var url = tinyMCE.getParam("external_image_list_url");
|
||||
if (url != null)
|
||||
document.write('<sc'+'ript language="javascript" type="text/javascript" src="' + tinyMCE.documentBasePath + "/" + url + '"></sc'+'ript>');
|
||||
</script>
|
||||
<script language="javascript">
|
||||
function insertImage() {
|
||||
if (window.opener) {
|
||||
var src = document.forms[0].src.value;
|
||||
var alt = document.forms[0].alt.value;
|
||||
var border = document.forms[0].border.value;
|
||||
var vspace = document.forms[0].vspace.value;
|
||||
var hspace = document.forms[0].hspace.value;
|
||||
var width = document.forms[0].width.value;
|
||||
var height = document.forms[0].height.value;
|
||||
var align = document.forms[0].align.options[document.forms[0].align.selectedIndex].value;
|
||||
|
||||
window.opener.tinyMCE.insertImage(src, alt, border, hspace, vspace, width, height, align);
|
||||
top.close();
|
||||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
var formObj = document.forms[0];
|
||||
|
||||
for (var i=0; i<document.forms[0].align.options.length; i++) {
|
||||
if (document.forms[0].align.options[i].value == tinyMCE.getWindowArg('align'))
|
||||
document.forms[0].align.options.selectedIndex = i;
|
||||
}
|
||||
|
||||
formObj.src.value = tinyMCE.getWindowArg('src');
|
||||
formObj.alt.value = tinyMCE.getWindowArg('alt');
|
||||
formObj.border.value = tinyMCE.getWindowArg('border');
|
||||
formObj.vspace.value = tinyMCE.getWindowArg('vspace');
|
||||
formObj.hspace.value = tinyMCE.getWindowArg('hspace');
|
||||
formObj.width.value = tinyMCE.getWindowArg('width');
|
||||
formObj.height.value = tinyMCE.getWindowArg('height');
|
||||
formObj.insert.value = tinyMCE.getLang('lang_' + tinyMCE.getWindowArg('action'));
|
||||
|
||||
// Handle file browser
|
||||
if (tinyMCE.getParam("file_browser_callback") != null) {
|
||||
document.getElementById('src').style.width = '180px';
|
||||
|
||||
var html = '';
|
||||
|
||||
html += '<img id="browserBtn" src="images/browse.gif"';
|
||||
html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';
|
||||
html += ' onmouseout="tinyMCE.restoreClass(this);"';
|
||||
html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';
|
||||
html += ' onclick="javascript:tinyMCE.openFileBrowser(\'src\',document.forms[0].src.value,\'image\',window);"';
|
||||
html += ' width="20" height="18" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
|
||||
html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" />';
|
||||
|
||||
document.getElementById('browser').innerHTML = html;
|
||||
}
|
||||
|
||||
window.focus();
|
||||
}
|
||||
|
||||
function cancelAction() {
|
||||
top.close();
|
||||
}
|
||||
|
||||
var preloadImg = new Image();
|
||||
|
||||
function resetImageData() {
|
||||
var formObj = document.forms[0];
|
||||
formObj.width.value = formObj.height.value = "";
|
||||
}
|
||||
|
||||
function updateImageData() {
|
||||
var formObj = document.forms[0];
|
||||
|
||||
if (formObj.width.value == "")
|
||||
formObj.width.value = preloadImg.width;
|
||||
|
||||
if (formObj.height.value == "")
|
||||
formObj.height.value = preloadImg.height;
|
||||
}
|
||||
|
||||
function getImageData() {
|
||||
preloadImg = new Image();
|
||||
tinyMCE.addEvent(preloadImg, "load", updateImageData);
|
||||
tinyMCE.addEvent(preloadImg, "error", function () {var formObj = document.forms[0];formObj.width.value = formObj.height.value = "";});
|
||||
preloadImg.src = tinyMCE.convertRelativeToAbsoluteURL(tinyMCE.settings['base_href'], document.forms[0].src.value);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="window.focus();init();">
|
||||
<form onsubmit="insertImage();return false;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" valign="middle"><table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="2" class="title">{$lang_insert_image_title}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_src}:</td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input name="src" type="text" id="src" value="" style="width: 200px" onchange="getImageData();"></td>
|
||||
<td id="browser"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<!-- Image list -->
|
||||
<script language="javascript">
|
||||
if (typeof(tinyMCEImageList) != "undefined" && tinyMCEImageList.length > 0) {
|
||||
var html = "";
|
||||
|
||||
html += '<tr><td>{$lang_image_list}:</td>';
|
||||
html += '<td><select name="image_list" style="width: 200px" onchange="this.form.src.value=this.options[this.selectedIndex].value;resetImageData();getImageData();">';
|
||||
html += '<option value="">---</option>';
|
||||
|
||||
for (var i=0; i<tinyMCEImageList.length; i++)
|
||||
html += '<option value="' + tinyMCEImageList[i][1] + '">' + tinyMCEImageList[i][0] + '</option>';
|
||||
|
||||
html += '</select></td></tr>';
|
||||
|
||||
document.write(html);
|
||||
}
|
||||
</script>
|
||||
<!-- /Image list -->
|
||||
<tr>
|
||||
<td>{$lang_insert_image_alt}:</td>
|
||||
<td><input name="alt" type="text" id="alt" value="" style="width: 200px"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_align}:</td>
|
||||
<td><select name="align">
|
||||
<option value="">{$lang_insert_image_align_default}</option>
|
||||
<option value="baseline">{$lang_insert_image_align_baseline}</option>
|
||||
<option value="top">{$lang_insert_image_align_top}</option>
|
||||
<option value="middle">{$lang_insert_image_align_middle}</option>
|
||||
<option value="bottom">{$lang_insert_image_align_bottom}</option>
|
||||
<option value="texttop">{$lang_insert_image_align_texttop}</option>
|
||||
<option value="absmiddle">{$lang_insert_image_align_absmiddle}</option>
|
||||
<option value="absbottom">{$lang_insert_image_align_absbottom}</option>
|
||||
<option value="left">{$lang_insert_image_align_left}</option>
|
||||
<option value="right">{$lang_insert_image_align_right}</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_dimensions}:</td>
|
||||
<td><input name="width" type="text" id="width" value="" size="3" maxlength="3">
|
||||
x
|
||||
<input name="height" type="text" id="height" value="" size="3" maxlength="3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_border}:</td>
|
||||
<td><input name="border" type="text" id="border" value="" size="3" maxlength="3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_vspace}:</td>
|
||||
<td><input name="vspace" type="text" id="vspace" value="" size="3" maxlength="3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_image_hspace}:</td>
|
||||
<td><input name="hspace" type="text" id="hspace" value="" size="3" maxlength="3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="button" id="insert" name="insert" value="{$lang_insert}" onclick="insertImage();">
|
||||
</td>
|
||||
<td align="right"><input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="cancelAction();"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor.gif
vendored
Normal file
After Width: | Height: | Size: 943 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/backcolor.gif
vendored
Normal file
After Width: | Height: | Size: 943 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/bold.gif
vendored
Normal file
After Width: | Height: | Size: 864 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_de_se.gif
vendored
Normal file
After Width: | Height: | Size: 79 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_fr.gif
vendored
Normal file
After Width: | Height: | Size: 78 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_ru.gif
vendored
Normal file
After Width: | Height: | Size: 77 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/browse.gif
vendored
Normal file
After Width: | Height: | Size: 113 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/bullist.gif
vendored
Normal file
After Width: | Height: | Size: 883 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/buttons.gif
vendored
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/center.gif
vendored
Normal file
After Width: | Height: | Size: 855 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/charmap.gif
vendored
Normal file
After Width: | Height: | Size: 958 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/cleanup.gif
vendored
Normal file
After Width: | Height: | Size: 977 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/code.gif
vendored
Normal file
After Width: | Height: | Size: 110 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/copy.gif
vendored
Normal file
After Width: | Height: | Size: 987 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/custom_1.gif
vendored
Normal file
After Width: | Height: | Size: 854 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/cut.gif
vendored
Normal file
After Width: | Height: | Size: 358 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/forecolor.gif
vendored
Normal file
After Width: | Height: | Size: 981 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/full.gif
vendored
Normal file
After Width: | Height: | Size: 856 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/help.gif
vendored
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/hr.gif
vendored
Normal file
After Width: | Height: | Size: 844 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/image.gif
vendored
Normal file
After Width: | Height: | Size: 194 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/indent.gif
vendored
Normal file
After Width: | Height: | Size: 890 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/italic.gif
vendored
Normal file
After Width: | Height: | Size: 860 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_de_se.gif
vendored
Normal file
After Width: | Height: | Size: 81 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_ru.gif
vendored
Normal file
After Width: | Height: | Size: 78 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/left.gif
vendored
Normal file
After Width: | Height: | Size: 856 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/link.gif
vendored
Normal file
After Width: | Height: | Size: 545 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/numlist.gif
vendored
Normal file
After Width: | Height: | Size: 889 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/outdent.gif
vendored
Normal file
After Width: | Height: | Size: 887 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/paste.gif
vendored
Normal file
After Width: | Height: | Size: 1022 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/redo.gif
vendored
Normal file
After Width: | Height: | Size: 942 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/removeformat.gif
vendored
Normal file
After Width: | Height: | Size: 152 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/right.gif
vendored
Normal file
After Width: | Height: | Size: 855 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/spacer.gif
vendored
Normal file
After Width: | Height: | Size: 43 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/strikethrough.gif
vendored
Normal file
After Width: | Height: | Size: 873 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/sub.gif
vendored
Normal file
After Width: | Height: | Size: 900 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/sup.gif
vendored
Normal file
After Width: | Height: | Size: 906 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table.gif
vendored
Normal file
After Width: | Height: | Size: 1018 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_delete_col.gif
vendored
Normal file
After Width: | Height: | Size: 929 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_delete_row.gif
vendored
Normal file
After Width: | Height: | Size: 942 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_col_after.gif
vendored
Normal file
After Width: | Height: | Size: 936 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_col_before.gif
vendored
Normal file
After Width: | Height: | Size: 935 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_row_after.gif
vendored
Normal file
After Width: | Height: | Size: 928 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/table_insert_row_before.gif
vendored
Normal file
After Width: | Height: | Size: 928 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/underline.gif
vendored
Normal file
After Width: | Height: | Size: 872 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_fr.gif
vendored
Normal file
After Width: | Height: | Size: 125 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_ru.gif
vendored
Normal file
After Width: | Height: | Size: 77 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/undo.gif
vendored
Normal file
After Width: | Height: | Size: 945 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/unlink.gif
vendored
Normal file
After Width: | Height: | Size: 561 B |
BIN
includes/tinymce/jscripts/tiny_mce/themes/advanced/images/visualaid.gif
vendored
Normal file
After Width: | Height: | Size: 1006 B |
57
includes/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
// UK lang variables
|
||||
|
||||
tinyMCELang['lang_theme_style_select'] = 'Styles';
|
||||
tinyMCELang['lang_theme_code_desc'] = 'Edit HTML Source';
|
||||
tinyMCELang['lang_theme_code_title'] = 'HTML Source Editor';
|
||||
tinyMCELang['lang_theme_code_wordwrap'] = 'Word wrap';
|
||||
tinyMCELang['lang_theme_sub_desc'] = 'Subscript';
|
||||
tinyMCELang['lang_theme_sup_desc'] = 'Superscript';
|
||||
tinyMCELang['lang_theme_hr_desc'] = 'Insert horizontal ruler';
|
||||
tinyMCELang['lang_theme_removeformat_desc'] = 'Remove formatting';
|
||||
tinyMCELang['lang_theme_custom1_desc'] = 'Your custom description here';
|
||||
tinyMCELang['lang_insert_image_border'] = 'Border';
|
||||
tinyMCELang['lang_insert_image_dimensions'] = 'Dimensions';
|
||||
tinyMCELang['lang_insert_image_vspace'] = 'VSpace';
|
||||
tinyMCELang['lang_insert_image_hspace'] = 'HSpace';
|
||||
tinyMCELang['lang_insert_image_align'] = 'Alignment';
|
||||
tinyMCELang['lang_insert_image_align_default'] = 'Default';
|
||||
tinyMCELang['lang_insert_image_align_baseline'] = 'Baseline';
|
||||
tinyMCELang['lang_insert_image_align_top'] = 'Top';
|
||||
tinyMCELang['lang_insert_image_align_middle'] = 'Middle';
|
||||
tinyMCELang['lang_insert_image_align_bottom'] = 'Bottom';
|
||||
tinyMCELang['lang_insert_image_align_texttop'] = 'TextTop';
|
||||
tinyMCELang['lang_insert_image_align_absmiddle'] = 'Absolute Middle';
|
||||
tinyMCELang['lang_insert_image_align_absbottom'] = 'Absolute Bottom';
|
||||
tinyMCELang['lang_insert_image_align_left'] = 'Left';
|
||||
tinyMCELang['lang_insert_image_align_right'] = 'Right';
|
||||
tinyMCELang['lang_theme_font_size'] = 'Font size';
|
||||
tinyMCELang['lang_theme_fontdefault'] = 'Default';
|
||||
tinyMCELang['lang_theme_paragraph'] = 'Paragraph';
|
||||
tinyMCELang['lang_theme_div'] = 'Div';
|
||||
tinyMCELang['lang_theme_address'] = 'Address';
|
||||
tinyMCELang['lang_theme_pre'] = 'Preformatted';
|
||||
tinyMCELang['lang_theme_h1'] = 'Heading 1';
|
||||
tinyMCELang['lang_theme_h2'] = 'Heading 2';
|
||||
tinyMCELang['lang_theme_h3'] = 'Heading 3';
|
||||
tinyMCELang['lang_theme_h4'] = 'Heading 4';
|
||||
tinyMCELang['lang_theme_h5'] = 'Heading 5';
|
||||
tinyMCELang['lang_theme_h6'] = 'Heading 6';
|
||||
tinyMCELang['lang_theme_colorpicker_title'] = 'Select a color';
|
||||
tinyMCELang['lang_theme_colorpicker_apply'] = 'Apply';
|
||||
tinyMCELang['lang_theme_forecolor_desc'] = 'Select text color';
|
||||
tinyMCELang['lang_theme_backcolor_desc'] = 'Select background color';
|
||||
tinyMCELang['lang_theme_charmap_title'] = 'Select custom character';
|
||||
tinyMCELang['lang_theme_charmap_desc'] = 'Insert custom character';
|
||||
tinyMCELang['lang_theme_visualaid_desc'] = 'Toggle guidelines/invisible elements';
|
||||
tinyMCELang['lang_insert_anchor_title'] = 'Insert/edit anchor';
|
||||
tinyMCELang['lang_insert_anchor_name'] = 'Anchor name';
|
||||
tinyMCELang['lang_theme_anchor_desc'] = 'Insert/edit anchor';
|
||||
tinyMCELang['lang_theme_insert_link_titlefield'] = 'Title';
|
||||
tinyMCELang['lang_theme_clipboard_msg'] = 'Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?';
|
||||
tinyMCELang['lang_theme_path'] = 'Path';
|
||||
tinyMCELang['lang_cut_desc'] = 'Cut';
|
||||
tinyMCELang['lang_copy_desc'] = 'Copy';
|
||||
tinyMCELang['lang_paste_desc'] = 'Paste';
|
||||
tinyMCELang['lang_link_list'] = 'Link list';
|
||||
tinyMCELang['lang_image_list'] = 'Image list';
|
||||
tinyMCELang['lang_browse'] = 'Browse';
|
115
includes/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
vendored
Normal file
@@ -0,0 +1,115 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{$lang_insert_link_title}</title>
|
||||
<script language="javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript">
|
||||
var url = tinyMCE.getParam("external_link_list_url");
|
||||
if (url != null)
|
||||
document.write('<sc'+'ript language="javascript" type="text/javascript" src="' + tinyMCE.documentBasePath + "/" + url + '"></sc'+'ript>');
|
||||
</script>
|
||||
<script language="javascript">
|
||||
function init() {
|
||||
for (var i=0; i<document.forms[0].target.options.length; i++) {
|
||||
var option = document.forms[0].target.options[i];
|
||||
|
||||
if (option.value == tinyMCE.getWindowArg('target'))
|
||||
option.selected = true;
|
||||
}
|
||||
|
||||
document.forms[0].href.value = tinyMCE.getWindowArg('href');
|
||||
document.forms[0].linktitle.value = tinyMCE.getWindowArg('title');
|
||||
document.forms[0].insert.value = tinyMCE.getLang('lang_' + tinyMCE.getWindowArg('action'));
|
||||
|
||||
// Handle file browser
|
||||
if (tinyMCE.getParam("file_browser_callback") != null) {
|
||||
document.getElementById('href').style.width = '180px';
|
||||
|
||||
var html = '';
|
||||
|
||||
html += '<img id="browserBtn" src="images/browse.gif"';
|
||||
html += ' onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');"';
|
||||
html += ' onmouseout="tinyMCE.restoreClass(this);"';
|
||||
html += ' onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');"';
|
||||
html += ' onclick="javascript:tinyMCE.openFileBrowser(\'href\',document.forms[0].href.value,\'file\',window);"';
|
||||
html += ' width="20" height="18" border="0" title="' + tinyMCE.getLang('lang_browse') + '"';
|
||||
html += ' class="mceButtonNormal" alt="' + tinyMCE.getLang('lang_browse') + '" />';
|
||||
|
||||
document.getElementById('browser').innerHTML = html;
|
||||
}
|
||||
|
||||
window.focus();
|
||||
}
|
||||
|
||||
function insertLink() {
|
||||
if (window.opener) {
|
||||
var href = document.forms[0].href.value;
|
||||
var target = document.forms[0].target.options[document.forms[0].target.selectedIndex].value;
|
||||
var title = document.forms[0].linktitle.value;
|
||||
|
||||
window.opener.tinyMCE.insertLink(href, target, title);
|
||||
top.close();
|
||||
}
|
||||
}
|
||||
|
||||
function cancelAction() {
|
||||
top.close();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init();">
|
||||
<form onsubmit="insertLink();return false;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" valign="middle"><table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="2" class="title">{$lang_insert_link_title}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_insert_link_url}:</td>
|
||||
<td> <table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input name="href" type="text" id="href" value="" style="width: 200px"></td>
|
||||
<td id="browser"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<!-- Link list -->
|
||||
<script language="javascript">
|
||||
if (typeof(tinyMCELinkList) != "undefined" && tinyMCELinkList.length > 0) {
|
||||
var html = "";
|
||||
|
||||
html += '<tr><td>{$lang_link_list}:</td>';
|
||||
html += '<td><select name="link_list" style="width: 200px" onchange="this.form.href.value=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></td></tr>';
|
||||
|
||||
document.write(html);
|
||||
}
|
||||
</script>
|
||||
<!-- /Link list -->
|
||||
<tr>
|
||||
<td>{$lang_insert_link_target}:</td>
|
||||
<td><select name="target" style="width: 200px">
|
||||
<option value="_self">{$lang_insert_link_target_same}</option>
|
||||
<option value="_blank">{$lang_insert_link_target_blank}</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang_theme_insert_link_titlefield}:</td>
|
||||
<td><input name="linktitle" type="text" id="linktitle" value="" style="width: 200px"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="button" id="insert" name="insert" value="{$lang_insert}" onclick="insertLink();">
|
||||
</td>
|
||||
<td align="right"><input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="cancelAction();"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
90
includes/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!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>{$lang_theme_code_title}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
tinyMCE.setWindowArg('mce_windowresize', false);
|
||||
|
||||
function saveContent() {
|
||||
if (window.opener) {
|
||||
window.opener.tinyMCE.setContent(document.getElementById('htmlSource').value);
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
|
||||
// Fixes some charcode issues
|
||||
function fixContent(html) {
|
||||
html = html.replace(new RegExp('<(p|hr|table|tr|td|ol|ul|object|embed|li|blockquote)', 'gi'),'\n<$1');
|
||||
html = html.replace(new RegExp('<\/(p|ol|ul|li|table|tr|td|blockquote|object)>', 'gi'),'</$1>\n');
|
||||
html = tinyMCE.regexpReplace(html, '<br />','<br />\n','gi');
|
||||
html = tinyMCE.regexpReplace(html, '\n\n','\n','gi');
|
||||
return html;
|
||||
}
|
||||
|
||||
function onLoadInit() {
|
||||
document.forms[0].htmlSource.value = fixContent(tinyMCE.getContent(tinyMCE.getWindowArg('editor_id')));
|
||||
resizeInputs();
|
||||
setWrap('off');
|
||||
}
|
||||
|
||||
function setWrap(val) {
|
||||
// hard soft off
|
||||
document.forms[0].htmlSource.wrap = val;
|
||||
}
|
||||
|
||||
function toggleWordWrap(elm) {
|
||||
if (elm.checked)
|
||||
setWrap('soft');
|
||||
else
|
||||
setWrap('off');
|
||||
}
|
||||
|
||||
var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
|
||||
|
||||
function resizeInputs() {
|
||||
if (!tinyMCE.isMSIE) {
|
||||
wHeight = self.innerHeight-80;
|
||||
wWidth = self.innerWidth-25;
|
||||
} else {
|
||||
wHeight = document.body.clientHeight-80;
|
||||
wWidth = document.body.clientWidth-25;
|
||||
}
|
||||
|
||||
document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px';
|
||||
document.forms[0].htmlSource.style.width = Math.abs(wWidth) + 'px';
|
||||
|
||||
}
|
||||
|
||||
window.focus();
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<body scroll="no" onload="onLoadInit();" onresize="resizeInputs();">
|
||||
<form name="source" onsubmit="saveContent();">
|
||||
<table border="0" cellpadding="0" cellspacing="2" align="center">
|
||||
<tr>
|
||||
<td class="title">{$lang_theme_code_title}</td>
|
||||
<td align="right"><script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
if (tinyMCE.isMSIE) {
|
||||
document.write('<input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{$lang_theme_code_wordwrap}</label>');
|
||||
}
|
||||
//-->
|
||||
</script></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,mono; font-size: 12px;" dir="ltr" wrap="soft"></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="right"><input type="button" id="insert" name="insert" value="{$lang_update}" onclick="saveContent();" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|