diff options
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/advlink')
6 files changed, 0 insertions, 985 deletions
diff --git a/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css b/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css deleted file mode 100644 index 1436431..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css +++ /dev/null | |||
| @@ -1,8 +0,0 @@ | |||
| 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} | ||
| 2 | .mceActionPanel {margin-top:7px;} | ||
| 3 | .panel_wrapper div.current {height:320px;} | ||
| 4 | #classlist, #title, #href {width:280px;} | ||
| 5 | #popupurl, #popupname {width:200px;} | ||
| 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} | ||
| 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} | ||
| 8 | #events_panel input {width:200px;} | ||
diff --git a/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js b/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js deleted file mode 100644 index 983fe5a..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | (function(){tinymce.create("tinymce.plugins.AdvancedLinkPlugin",{init:function(a,b){this.editor=a;a.addCommand("mceAdvLink",function(){var c=a.selection;if(c.isCollapsed()&&!a.dom.getParent(c.getNode(),"A")){return}a.windowManager.open({file:b+"/link.htm",width:480+parseInt(a.getLang("advlink.delta_width",0)),height:400+parseInt(a.getLang("advlink.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("link",{title:"advlink.link_desc",cmd:"mceAdvLink"});a.addShortcut("ctrl+k","advlink.advlink_desc","mceAdvLink");a.onNodeChange.add(function(d,c,f,e){c.setDisabled("link",e&&f.nodeName!="A");c.setActive("link",f.nodeName=="A"&&!f.name)})},getInfo:function(){return{longname:"Advanced link",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlink",tinymce.plugins.AdvancedLinkPlugin)})(); \ No newline at end of file | ||
diff --git a/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js b/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js deleted file mode 100644 index fc5325a..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js +++ /dev/null | |||
| @@ -1,58 +0,0 @@ | |||
| 1 | /** | ||
| 2 | * $Id: editor_plugin_src.js 539 2008-01-14 19:08:58Z spocke $ | ||
| 3 | * | ||
| 4 | * @author Moxiecode | ||
| 5 | * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. | ||
| 6 | */ | ||
| 7 | |||
| 8 | (function() { | ||
| 9 | tinymce.create('tinymce.plugins.AdvancedLinkPlugin', { | ||
| 10 | init : function(ed, url) { | ||
| 11 | this.editor = ed; | ||
| 12 | |||
| 13 | // Register commands | ||
| 14 | ed.addCommand('mceAdvLink', function() { | ||
| 15 | var se = ed.selection; | ||
| 16 | |||
| 17 | // No selection and not in link | ||
| 18 | if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A')) | ||
| 19 | return; | ||
| 20 | |||
| 21 | ed.windowManager.open({ | ||
| 22 | file : url + '/link.htm', | ||
| 23 | width : 480 + parseInt(ed.getLang('advlink.delta_width', 0)), | ||
| 24 | height : 400 + parseInt(ed.getLang('advlink.delta_height', 0)), | ||
| 25 | inline : 1 | ||
| 26 | }, { | ||
| 27 | plugin_url : url | ||
| 28 | }); | ||
| 29 | }); | ||
| 30 | |||
| 31 | // Register buttons | ||
| 32 | ed.addButton('link', { | ||
| 33 | title : 'advlink.link_desc', | ||
| 34 | cmd : 'mceAdvLink' | ||
| 35 | }); | ||
| 36 | |||
| 37 | ed.addShortcut('ctrl+k', 'advlink.advlink_desc', 'mceAdvLink'); | ||
| 38 | |||
| 39 | ed.onNodeChange.add(function(ed, cm, n, co) { | ||
| 40 | cm.setDisabled('link', co && n.nodeName != 'A'); | ||
| 41 | cm.setActive('link', n.nodeName == 'A' && !n.name); | ||
| 42 | }); | ||
| 43 | }, | ||
| 44 | |||
| 45 | getInfo : function() { | ||
| 46 | return { | ||
| 47 | longname : 'Advanced link', | ||
| 48 | author : 'Moxiecode Systems AB', | ||
| 49 | authorurl : 'http://tinymce.moxiecode.com', | ||
| 50 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink', | ||
| 51 | version : tinymce.majorVersion + "." + tinymce.minorVersion | ||
| 52 | }; | ||
| 53 | } | ||
| 54 | }); | ||
| 55 | |||
| 56 | // Register plugin | ||
| 57 | tinymce.PluginManager.add('advlink', tinymce.plugins.AdvancedLinkPlugin); | ||
| 58 | })(); \ No newline at end of file | ||
diff --git a/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js b/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js deleted file mode 100644 index bb7922a..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js +++ /dev/null | |||
| @@ -1,528 +0,0 @@ | |||
| 1 | /* Functions for the advlink plugin popup */ | ||
| 2 | |||
| 3 | tinyMCEPopup.requireLangPack(); | ||
| 4 | |||
| 5 | var templates = { | ||
| 6 | "window.open" : "window.open('${url}','${target}','${options}')" | ||
| 7 | }; | ||
| 8 | |||
| 9 | function preinit() { | ||
| 10 | var url; | ||
| 11 | |||
| 12 | if (url = tinyMCEPopup.getParam("external_link_list_url")) | ||
| 13 | document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>'); | ||
| 14 | } | ||
| 15 | |||
| 16 | function changeClass() { | ||
| 17 | var f = document.forms[0]; | ||
| 18 | |||
| 19 | f.classes.value = getSelectValue(f, 'classlist'); | ||
| 20 | } | ||
| 21 | |||
| 22 | function init() { | ||
| 23 | tinyMCEPopup.resizeToInnerSize(); | ||
| 24 | |||
| 25 | var formObj = document.forms[0]; | ||
| 26 | var inst = tinyMCEPopup.editor; | ||
| 27 | var elm = inst.selection.getNode(); | ||
| 28 | var action = "insert"; | ||
| 29 | var html; | ||
| 30 | |||
| 31 | document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','advlink'); | ||
| 32 | document.getElementById('popupurlbrowsercontainer').innerHTML = getBrowserHTML('popupurlbrowser','popupurl','file','advlink'); | ||
| 33 | document.getElementById('linklisthrefcontainer').innerHTML = getLinkListHTML('linklisthref','href'); | ||
| 34 | document.getElementById('anchorlistcontainer').innerHTML = getAnchorListHTML('anchorlist','href'); | ||
| 35 | document.getElementById('targetlistcontainer').innerHTML = getTargetListHTML('targetlist','target'); | ||
| 36 | |||
| 37 | // Link list | ||
| 38 | html = getLinkListHTML('linklisthref','href'); | ||
| 39 | if (html == "") | ||
| 40 | document.getElementById("linklisthrefrow").style.display = 'none'; | ||
| 41 | else | ||
| 42 | document.getElementById("linklisthrefcontainer").innerHTML = html; | ||
| 43 | |||
| 44 | // Resize some elements | ||
| 45 | if (isVisible('hrefbrowser')) | ||
| 46 | document.getElementById('href').style.width = '260px'; | ||
| 47 | |||
| 48 | if (isVisible('popupurlbrowser')) | ||
| 49 | document.getElementById('popupurl').style.width = '180px'; | ||
| 50 | |||
| 51 | elm = inst.dom.getParent(elm, "A"); | ||
| 52 | if (elm != null && elm.nodeName == "A") | ||
| 53 | action = "update"; | ||
| 54 | |||
| 55 | formObj.insert.value = tinyMCEPopup.getLang(action, 'Insert', true); | ||
| 56 | |||
| 57 | setPopupControlsDisabled(true); | ||
| 58 | |||
| 59 | if (action == "update") { | ||
| 60 | var href = inst.dom.getAttrib(elm, 'href'); | ||
| 61 | var onclick = inst.dom.getAttrib(elm, 'onclick'); | ||
| 62 | |||
| 63 | // Setup form data | ||
| 64 | setFormValue('href', href); | ||
| 65 | setFormValue('title', inst.dom.getAttrib(elm, 'title')); | ||
| 66 | setFormValue('id', inst.dom.getAttrib(elm, 'id')); | ||
| 67 | setFormValue('style', inst.dom.getAttrib(elm, "style")); | ||
| 68 | setFormValue('rel', inst.dom.getAttrib(elm, 'rel')); | ||
| 69 | setFormValue('rev', inst.dom.getAttrib(elm, 'rev')); | ||
| 70 | setFormValue('charset', inst.dom.getAttrib(elm, 'charset')); | ||
| 71 | setFormValue('hreflang', inst.dom.getAttrib(elm, 'hreflang')); | ||
| 72 | setFormValue('dir', inst.dom.getAttrib(elm, 'dir')); | ||
| 73 | setFormValue('lang', inst.dom.getAttrib(elm, 'lang')); | ||
| 74 | setFormValue('tabindex', inst.dom.getAttrib(elm, 'tabindex', typeof(elm.tabindex) != "undefined" ? elm.tabindex : "")); | ||
| 75 | setFormValue('accesskey', inst.dom.getAttrib(elm, 'accesskey', typeof(elm.accesskey) != "undefined" ? elm.accesskey : "")); | ||
| 76 | setFormValue('type', inst.dom.getAttrib(elm, 'type')); | ||
| 77 | setFormValue('onfocus', inst.dom.getAttrib(elm, 'onfocus')); | ||
| 78 | setFormValue('onblur', inst.dom.getAttrib(elm, 'onblur')); | ||
| 79 | setFormValue('onclick', onclick); | ||
| 80 | setFormValue('ondblclick', inst.dom.getAttrib(elm, 'ondblclick')); | ||
| 81 | setFormValue('onmousedown', inst.dom.getAttrib(elm, 'onmousedown')); | ||
| 82 | setFormValue('onmouseup', inst.dom.getAttrib(elm, 'onmouseup')); | ||
| 83 | setFormValue('onmouseover', inst.dom.getAttrib(elm, 'onmouseover')); | ||
| 84 | setFormValue('onmousemove', inst.dom.getAttrib(elm, 'onmousemove')); | ||
| 85 | setFormValue('onmouseout', inst.dom.getAttrib(elm, 'onmouseout')); | ||
| 86 | setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress')); | ||
| 87 | setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown')); | ||
| 88 | setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup')); | ||
| 89 | setFormValue('target', inst.dom.getAttrib(elm, 'target')); | ||
| 90 | setFormValue('classes', inst.dom.getAttrib(elm, 'class')); | ||
| 91 | |||
| 92 | // Parse onclick data | ||
| 93 | if (onclick != null && onclick.indexOf('window.open') != -1) | ||
| 94 | parseWindowOpen(onclick); | ||
| 95 | else | ||
| 96 | parseFunction(onclick); | ||
| 97 | |||
| 98 | // Select by the values | ||
| 99 | selectByValue(formObj, 'dir', inst.dom.getAttrib(elm, 'dir')); | ||
| 100 | selectByValue(formObj, 'rel', inst.dom.getAttrib(elm, 'rel')); | ||
| 101 | selectByValue(formObj, 'rev', inst.dom.getAttrib(elm, 'rev')); | ||
| 102 | selectByValue(formObj, 'linklisthref', href); | ||
| 103 | |||
| 104 | if (href.charAt(0) == '#') | ||
| 105 | selectByValue(formObj, 'anchorlist', href); | ||
| 106 | |||
| 107 | addClassesToList('classlist', 'advlink_styles'); | ||
| 108 | |||
| 109 | selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true); | ||
| 110 | selectByValue(formObj, 'targetlist', inst.dom.getAttrib(elm, 'target'), true); | ||
| 111 | } else | ||
| 112 | addClassesToList('classlist', 'advlink_styles'); | ||
| 113 | } | ||
| 114 | |||
| 115 | function checkPrefix(n) { | ||
| 116 | if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_email'))) | ||
| 117 | n.value = 'mailto:' + n.value; | ||
| 118 | |||
| 119 | if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_external'))) | ||
| 120 | n.value = 'http://' + n.value; | ||
| 121 | } | ||
| 122 | |||
| 123 | function setFormValue(name, value) { | ||
| 124 | document.forms[0].elements[name].value = value; | ||
| 125 | } | ||
| 126 | |||
| 127 | function parseWindowOpen(onclick) { | ||
| 128 | var formObj = document.forms[0]; | ||
| 129 | |||
| 130 | // Preprocess center code | ||
| 131 | if (onclick.indexOf('return false;') != -1) { | ||
| 132 | formObj.popupreturn.checked = true; | ||
| 133 | onclick = onclick.replace('return false;', ''); | ||
| 134 | } else | ||
| 135 | formObj.popupreturn.checked = false; | ||
| 136 | |||
| 137 | var onClickData = parseLink(onclick); | ||
| 138 | |||
| 139 | if (onClickData != null) { | ||
| 140 | formObj.ispopup.checked = true; | ||
| 141 | setPopupControlsDisabled(false); | ||
| 142 | |||
| 143 | var onClickWindowOptions = parseOptions(onClickData['options']); | ||
| 144 | var url = onClickData['url']; | ||
| 145 | |||
| 146 | formObj.popupname.value = onClickData['target']; | ||
| 147 | formObj.popupurl.value = url; | ||
| 148 | formObj.popupwidth.value = getOption(onClickWindowOptions, 'width'); | ||
| 149 | formObj.popupheight.value = getOption(onClickWindowOptions, 'height'); | ||
| 150 | |||
| 151 | formObj.popupleft.value = getOption(onClickWindowOptions, 'left'); | ||
| 152 | formObj.popuptop.value = getOption(onClickWindowOptions, 'top'); | ||
| 153 | |||
| 154 | if (formObj.popupleft.value.indexOf('screen') != -1) | ||
| 155 | formObj.popupleft.value = "c"; | ||
| 156 | |||
| 157 | if (formObj.popuptop.value.indexOf('screen') != -1) | ||
| 158 | formObj.popuptop.value = "c"; | ||
| 159 | |||
| 160 | formObj.popuplocation.checked = getOption(onClickWindowOptions, 'location') == "yes"; | ||
| 161 | formObj.popupscrollbars.checked = getOption(onClickWindowOptions, 'scrollbars') == "yes"; | ||
| 162 | formObj.popupmenubar.checked = getOption(onClickWindowOptions, 'menubar') == "yes"; | ||
| 163 | formObj.popupresizable.checked = getOption(onClickWindowOptions, 'resizable') == "yes"; | ||
| 164 | formObj.popuptoolbar.checked = getOption(onClickWindowOptions, 'toolbar') == "yes"; | ||
| 165 | formObj.popupstatus.checked = getOption(onClickWindowOptions, 'status') == "yes"; | ||
| 166 | formObj.popupdependent.checked = getOption(onClickWindowOptions, 'dependent') == "yes"; | ||
| 167 | |||
| 168 | buildOnClick(); | ||
| 169 | } | ||
| 170 | } | ||
| 171 | |||
| 172 | function parseFunction(onclick) { | ||
| 173 | var formObj = document.forms[0]; | ||
| 174 | var onClickData = parseLink(onclick); | ||
| 175 | |||
| 176 | // TODO: Add stuff here | ||
| 177 | } | ||
| 178 | |||
| 179 | function getOption(opts, name) { | ||
| 180 | return typeof(opts[name]) == "undefined" ? "" : opts[name]; | ||
| 181 | } | ||
| 182 | |||
| 183 | function setPopupControlsDisabled(state) { | ||
| 184 | var formObj = document.forms[0]; | ||
| 185 | |||
| 186 | formObj.popupname.disabled = state; | ||
| 187 | formObj.popupurl.disabled = state; | ||
| 188 | formObj.popupwidth.disabled = state; | ||
| 189 | formObj.popupheight.disabled = state; | ||
| 190 | formObj.popupleft.disabled = state; | ||
| 191 | formObj.popuptop.disabled = state; | ||
| 192 | formObj.popuplocation.disabled = state; | ||
| 193 | formObj.popupscrollbars.disabled = state; | ||
| 194 | formObj.popupmenubar.disabled = state; | ||
| 195 | formObj.popupresizable.disabled = state; | ||
| 196 | formObj.popuptoolbar.disabled = state; | ||
| 197 | formObj.popupstatus.disabled = state; | ||
| 198 | formObj.popupreturn.disabled = state; | ||
| 199 | formObj.popupdependent.disabled = state; | ||
| 200 | |||
| 201 | setBrowserDisabled('popupurlbrowser', state); | ||
| 202 | } | ||
| 203 | |||
| 204 | function parseLink(link) { | ||
| 205 | link = link.replace(new RegExp(''', 'g'), "'"); | ||
| 206 | |||
| 207 | var fnName = link.replace(new RegExp("\\s*([A-Za-z0-9\.]*)\\s*\\(.*", "gi"), "$1"); | ||
| 208 | |||
| 209 | // Is function name a template function | ||
| 210 | var template = templates[fnName]; | ||
| 211 | if (template) { | ||
| 212 | // Build regexp | ||
| 213 | var variableNames = template.match(new RegExp("'?\\$\\{[A-Za-z0-9\.]*\\}'?", "gi")); | ||
| 214 | var regExp = "\\s*[A-Za-z0-9\.]*\\s*\\("; | ||
| 215 | var replaceStr = ""; | ||
| 216 | for (var i=0; i<variableNames.length; i++) { | ||
| 217 | // Is string value | ||
| 218 | if (variableNames[i].indexOf("'${") != -1) | ||
| 219 | regExp += "'(.*)'"; | ||
| 220 | else // Number value | ||
| 221 | regExp += "([0-9]*)"; | ||
| 222 | |||
| 223 | replaceStr += "$" + (i+1); | ||
| 224 | |||
| 225 | // Cleanup variable name | ||
| 226 | variableNames[i] = variableNames[i].replace(new RegExp("[^A-Za-z0-9]", "gi"), ""); | ||
| 227 | |||
| 228 | if (i != variableNames.length-1) { | ||
| 229 | regExp += "\\s*,\\s*"; | ||
| 230 | replaceStr += "<delim>"; | ||
| 231 | } else | ||
| 232 | regExp += ".*"; | ||
| 233 | } | ||
| 234 | |||
| 235 | regExp += "\\);?"; | ||
| 236 | |||
| 237 | // Build variable array | ||
| 238 | var variables = []; | ||
| 239 | variables["_function"] = fnName; | ||
| 240 | var variableValues = link.replace(new RegExp(regExp, "gi"), replaceStr).split('<delim>'); | ||
| 241 | for (var i=0; i<variableNames.length; i++) | ||
| 242 | variables[variableNames[i]] = variableValues[i]; | ||
| 243 | |||
| 244 | return variables; | ||
| 245 | } | ||
| 246 | |||
| 247 | return null; | ||
| 248 | } | ||
| 249 | |||
| 250 | function parseOptions(opts) { | ||
| 251 | if (opts == null || opts == "") | ||
| 252 | return []; | ||
| 253 | |||
| 254 | // Cleanup the options | ||
| 255 | opts = opts.toLowerCase(); | ||
| 256 | opts = opts.replace(/;/g, ","); | ||
| 257 | opts = opts.replace(/[^0-9a-z=,]/g, ""); | ||
| 258 | |||
| 259 | var optionChunks = opts.split(','); | ||
| 260 | var options = []; | ||
| 261 | |||
| 262 | for (var i=0; i<optionChunks.length; i++) { | ||
| 263 | var parts = optionChunks[i].split('='); | ||
| 264 | |||
| 265 | if (parts.length == 2) | ||
| 266 | options[parts[0]] = parts[1]; | ||
| 267 | } | ||
| 268 | |||
| 269 | return options; | ||
| 270 | } | ||
| 271 | |||
| 272 | function buildOnClick() { | ||
| 273 | var formObj = document.forms[0]; | ||
| 274 | |||
| 275 | if (!formObj.ispopup.checked) { | ||
| 276 | formObj.onclick.value = ""; | ||
| 277 | return; | ||
| 278 | } | ||
| 279 | |||
| 280 | var onclick = "window.open('"; | ||
| 281 | var url = formObj.popupurl.value; | ||
| 282 | |||
| 283 | onclick += url + "','"; | ||
| 284 | onclick += formObj.popupname.value + "','"; | ||
| 285 | |||
| 286 | if (formObj.popuplocation.checked) | ||
| 287 | onclick += "location=yes,"; | ||
| 288 | |||
| 289 | if (formObj.popupscrollbars.checked) | ||
| 290 | onclick += "scrollbars=yes,"; | ||
| 291 | |||
| 292 | if (formObj.popupmenubar.checked) | ||
| 293 | onclick += "menubar=yes,"; | ||
| 294 | |||
| 295 | if (formObj.popupresizable.checked) | ||
| 296 | onclick += "resizable=yes,"; | ||
| 297 | |||
| 298 | if (formObj.popuptoolbar.checked) | ||
| 299 | onclick += "toolbar=yes,"; | ||
| 300 | |||
| 301 | if (formObj.popupstatus.checked) | ||
| 302 | onclick += "status=yes,"; | ||
| 303 | |||
| 304 | if (formObj.popupdependent.checked) | ||
| 305 | onclick += "dependent=yes,"; | ||
| 306 | |||
| 307 | if (formObj.popupwidth.value != "") | ||
| 308 | onclick += "width=" + formObj.popupwidth.value + ","; | ||
| 309 | |||
| 310 | if (formObj.popupheight.value != "") | ||
| 311 | onclick += "height=" + formObj.popupheight.value + ","; | ||
| 312 | |||
| 313 | if (formObj.popupleft.value != "") { | ||
| 314 | if (formObj.popupleft.value != "c") | ||
| 315 | onclick += "left=" + formObj.popupleft.value + ","; | ||
| 316 | else | ||
| 317 | onclick += "left='+(screen.availWidth/2-" + (formObj.popupwidth.value/2) + ")+',"; | ||
| 318 | } | ||
| 319 | |||
| 320 | if (formObj.popuptop.value != "") { | ||
| 321 | if (formObj.popuptop.value != "c") | ||
| 322 | onclick += "top=" + formObj.popuptop.value + ","; | ||
| 323 | else | ||
| 324 | onclick += "top='+(screen.availHeight/2-" + (formObj.popupheight.value/2) + ")+',"; | ||
| 325 | } | ||
| 326 | |||
| 327 | if (onclick.charAt(onclick.length-1) == ',') | ||
| 328 | onclick = onclick.substring(0, onclick.length-1); | ||
| 329 | |||
| 330 | onclick += "');"; | ||
| 331 | |||
| 332 | if (formObj.popupreturn.checked) | ||
| 333 | onclick += "return false;"; | ||
| 334 | |||
| 335 | // tinyMCE.debug(onclick); | ||
| 336 | |||
| 337 | formObj.onclick.value = onclick; | ||
| 338 | |||
| 339 | if (formObj.href.value == "") | ||
| 340 | formObj.href.value = url; | ||
| 341 | } | ||
| 342 | |||
| 343 | function setAttrib(elm, attrib, value) { | ||
| 344 | var formObj = document.forms[0]; | ||
| 345 | var valueElm = formObj.elements[attrib.toLowerCase()]; | ||
| 346 | var dom = tinyMCEPopup.editor.dom; | ||
| 347 | |||
| 348 | if (typeof(value) == "undefined" || value == null) { | ||
| 349 | value = ""; | ||
| 350 | |||
| 351 | if (valueElm) | ||
| 352 | value = valueElm.value; | ||
| 353 | } | ||
| 354 | |||
| 355 | // Clean up the style | ||
| 356 | if (attrib == 'style') | ||
| 357 | value = dom.serializeStyle(dom.parseStyle(value)); | ||
| 358 | |||
| 359 | dom.setAttrib(elm, attrib, value); | ||
| 360 | } | ||
| 361 | |||
| 362 | function getAnchorListHTML(id, target) { | ||
| 363 | var inst = tinyMCEPopup.editor; | ||
| 364 | var nodes = inst.dom.select('a.mceItemAnchor,img.mceItemAnchor'), name, i; | ||
| 365 | var html = ""; | ||
| 366 | |||
| 367 | html += '<select id="' + id + '" name="' + id + '" class="mceAnchorList" o2nfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target + '.value='; | ||
| 368 | html += 'this.options[this.selectedIndex].value;">'; | ||
| 369 | html += '<option value="">---</option>'; | ||
| 370 | |||
| 371 | for (i=0; i<nodes.length; i++) { | ||
| 372 | if ((name = inst.dom.getAttrib(nodes[i], "name")) != "") | ||
| 373 | html += '<option value="#' + name + '">' + name + '</option>'; | ||
| 374 | } | ||
| 375 | |||
| 376 | html += '</select>'; | ||
| 377 | |||
| 378 | return html; | ||
| 379 | } | ||
| 380 | |||
| 381 | function insertAction() { | ||
| 382 | var inst = tinyMCEPopup.editor; | ||
| 383 | var elm, elementArray, i; | ||
| 384 | |||
| 385 | elm = inst.selection.getNode(); | ||
| 386 | checkPrefix(document.forms[0].href); | ||
| 387 | |||
| 388 | elm = inst.dom.getParent(elm, "A"); | ||
| 389 | |||
| 390 | // Remove element if there is no href | ||
| 391 | if (!document.forms[0].href.value) { | ||
| 392 | tinyMCEPopup.execCommand("mceBeginUndoLevel"); | ||
| 393 | i = inst.selection.getBookmark(); | ||
| 394 | inst.dom.remove(elm, 1); | ||
| 395 | inst.selection.moveToBookmark(i); | ||
| 396 | tinyMCEPopup.execCommand("mceEndUndoLevel"); | ||
| 397 | tinyMCEPopup.close(); | ||
| 398 | return; | ||
| 399 | } | ||
| 400 | |||
| 401 | tinyMCEPopup.execCommand("mceBeginUndoLevel"); | ||
| 402 | |||
| 403 | // Create new anchor elements | ||
| 404 | if (elm == null) { | ||
| 405 | inst.getDoc().execCommand("unlink", false, null); | ||
| 406 | tinyMCEPopup.execCommand("CreateLink", false, "#mce_temp_url#", {skip_undo : 1}); | ||
| 407 | |||
| 408 | elementArray = tinymce.grep(inst.dom.select("a"), function(n) {return inst.dom.getAttrib(n, 'href') == '#mce_temp_url#';}); | ||
| 409 | for (i=0; i<elementArray.length; i++) | ||
| 410 | setAllAttribs(elm = elementArray[i]); | ||
| 411 | } else | ||
| 412 | setAllAttribs(elm); | ||
| 413 | |||
| 414 | // Don't move caret if selection was image | ||
| 415 | if (elm.childNodes.length != 1 || elm.firstChild.nodeName != 'IMG') { | ||
| 416 | inst.focus(); | ||
| 417 | inst.selection.select(elm); | ||
| 418 | inst.selection.collapse(0); | ||
| 419 | tinyMCEPopup.storeSelection(); | ||
| 420 | } | ||
| 421 | |||
| 422 | tinyMCEPopup.execCommand("mceEndUndoLevel"); | ||
| 423 | tinyMCEPopup.close(); | ||
| 424 | } | ||
| 425 | |||
| 426 | function setAllAttribs(elm) { | ||
| 427 | var formObj = document.forms[0]; | ||
| 428 | var href = formObj.href.value; | ||
| 429 | var target = getSelectValue(formObj, 'targetlist'); | ||
| 430 | |||
| 431 | setAttrib(elm, 'href', href); | ||
| 432 | setAttrib(elm, 'title'); | ||
| 433 | setAttrib(elm, 'target', target == '_self' ? '' : target); | ||
| 434 | setAttrib(elm, 'id'); | ||
| 435 | setAttrib(elm, 'style'); | ||
| 436 | setAttrib(elm, 'class', getSelectValue(formObj, 'classlist')); | ||
| 437 | setAttrib(elm, 'rel'); | ||
| 438 | setAttrib(elm, 'rev'); | ||
| 439 | setAttrib(elm, 'charset'); | ||
| 440 | setAttrib(elm, 'hreflang'); | ||
| 441 | setAttrib(elm, 'dir'); | ||
| 442 | setAttrib(elm, 'lang'); | ||
| 443 | setAttrib(elm, 'tabindex'); | ||
| 444 | setAttrib(elm, 'accesskey'); | ||
| 445 | setAttrib(elm, 'type'); | ||
| 446 | setAttrib(elm, 'onfocus'); | ||
| 447 | setAttrib(elm, 'onblur'); | ||
| 448 | setAttrib(elm, 'onclick'); | ||
| 449 | setAttrib(elm, 'ondblclick'); | ||
| 450 | setAttrib(elm, 'onmousedown'); | ||
| 451 | setAttrib(elm, 'onmouseup'); | ||
| 452 | setAttrib(elm, 'onmouseover'); | ||
| 453 | setAttrib(elm, 'onmousemove'); | ||
| 454 | setAttrib(elm, 'onmouseout'); | ||
| 455 | setAttrib(elm, 'onkeypress'); | ||
| 456 | setAttrib(elm, 'onkeydown'); | ||
| 457 | setAttrib(elm, 'onkeyup'); | ||
| 458 | |||
| 459 | // Refresh in old MSIE | ||
| 460 | if (tinyMCE.isMSIE5) | ||
| 461 | elm.outerHTML = elm.outerHTML; | ||
| 462 | } | ||
| 463 | |||
| 464 | function getSelectValue(form_obj, field_name) { | ||
| 465 | var elm = form_obj.elements[field_name]; | ||
| 466 | |||
| 467 | if (!elm || elm.options == null || elm.selectedIndex == -1) | ||
| 468 | return ""; | ||
| 469 | |||
| 470 | return elm.options[elm.selectedIndex].value; | ||
| 471 | } | ||
| 472 | |||
| 473 | function getLinkListHTML(elm_id, target_form_element, onchange_func) { | ||
| 474 | if (typeof(tinyMCELinkList) == "undefined" || tinyMCELinkList.length == 0) | ||
| 475 | return ""; | ||
| 476 | |||
| 477 | var html = ""; | ||
| 478 | |||
| 479 | html += '<select id="' + elm_id + '" name="' + elm_id + '"'; | ||
| 480 | html += ' class="mceLinkList" onfoc2us="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value='; | ||
| 481 | html += 'this.options[this.selectedIndex].value;'; | ||
| 482 | |||
| 483 | if (typeof(onchange_func) != "undefined") | ||
| 484 | html += onchange_func + '(\'' + target_form_element + '\',this.options[this.selectedIndex].text,this.options[this.selectedIndex].value);'; | ||
| 485 | |||
| 486 | html += '"><option value="">---</option>'; | ||
| 487 | |||
| 488 | for (var i=0; i<tinyMCELinkList.length; i++) | ||
| 489 | html += '<option value="' + tinyMCELinkList[i][1] + '">' + tinyMCELinkList[i][0] + '</option>'; | ||
| 490 | |||
| 491 | html += '</select>'; | ||
| 492 | |||
| 493 | return html; | ||
| 494 | |||
| 495 | // tinyMCE.debug('-- image list start --', html, '-- image list end --'); | ||
| 496 | } | ||
| 497 | |||
| 498 | function getTargetListHTML(elm_id, target_form_element) { | ||
| 499 | var targets = tinyMCEPopup.getParam('theme_advanced_link_targets', '').split(';'); | ||
| 500 | var html = ''; | ||
| 501 | |||
| 502 | html += '<select id="' + elm_id + '" name="' + elm_id + '" onf2ocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value='; | ||
| 503 | html += 'this.options[this.selectedIndex].value;">'; | ||
| 504 | html += '<option value="_self">' + tinyMCEPopup.getLang('advlink_dlg.target_same') + '</option>'; | ||
| 505 | html += '<option value="_blank">' + tinyMCEPopup.getLang('advlink_dlg.target_blank') + ' (_blank)</option>'; | ||
| 506 | html += '<option value="_parent">' + tinyMCEPopup.getLang('advlink_dlg.target_parent') + ' (_parent)</option>'; | ||
| 507 | html += '<option value="_top">' + tinyMCEPopup.getLang('advlink_dlg.target_top') + ' (_top)</option>'; | ||
| 508 | |||
| 509 | for (var i=0; i<targets.length; i++) { | ||
| 510 | var key, value; | ||
| 511 | |||
| 512 | if (targets[i] == "") | ||
| 513 | continue; | ||
| 514 | |||
| 515 | key = targets[i].split('=')[0]; | ||
| 516 | value = targets[i].split('=')[1]; | ||
| 517 | |||
| 518 | html += '<option value="' + key + '">' + value + ' (' + key + ')</option>'; | ||
| 519 | } | ||
| 520 | |||
| 521 | html += '</select>'; | ||
| 522 | |||
| 523 | return html; | ||
| 524 | } | ||
| 525 | |||
| 526 | // While loading | ||
| 527 | preinit(); | ||
| 528 | tinyMCEPopup.onInit.add(init); | ||
diff --git a/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js b/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js deleted file mode 100644 index c71ffbd..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js +++ /dev/null | |||
| @@ -1,52 +0,0 @@ | |||
| 1 | tinyMCE.addI18n('en.advlink_dlg',{ | ||
| 2 | title:"Insert/edit link", | ||
| 3 | url:"Link URL", | ||
| 4 | target:"Target", | ||
| 5 | titlefield:"Title", | ||
| 6 | is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?", | ||
| 7 | is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?", | ||
| 8 | list:"Link list", | ||
| 9 | general_tab:"General", | ||
| 10 | popup_tab:"Popup", | ||
| 11 | events_tab:"Events", | ||
| 12 | advanced_tab:"Advanced", | ||
| 13 | general_props:"General properties", | ||
| 14 | popup_props:"Popup properties", | ||
| 15 | event_props:"Events", | ||
| 16 | advanced_props:"Advanced properties", | ||
| 17 | popup_opts:"Options", | ||
| 18 | anchor_names:"Anchors", | ||
| 19 | target_same:"Open in this window / frame", | ||
| 20 | target_parent:"Open in parent window / frame", | ||
| 21 | target_top:"Open in top frame (replaces all frames)", | ||
| 22 | target_blank:"Open in new window", | ||
| 23 | popup:"Javascript popup", | ||
| 24 | popup_url:"Popup URL", | ||
| 25 | popup_name:"Window name", | ||
| 26 | popup_return:"Insert 'return false'", | ||
| 27 | popup_scrollbars:"Show scrollbars", | ||
| 28 | popup_statusbar:"Show status bar", | ||
| 29 | popup_toolbar:"Show toolbars", | ||
| 30 | popup_menubar:"Show menu bar", | ||
| 31 | popup_location:"Show location bar", | ||
| 32 | popup_resizable:"Make window resizable", | ||
| 33 | popup_dependent:"Dependent (Mozilla/Firefox only)", | ||
| 34 | popup_size:"Size", | ||
| 35 | popup_position:"Position (X/Y)", | ||
| 36 | id:"Id", | ||
| 37 | style:"Style", | ||
| 38 | classes:"Classes", | ||
| 39 | target_name:"Target name", | ||
| 40 | langdir:"Language direction", | ||
| 41 | target_langcode:"Target language", | ||
| 42 | langcode:"Language code", | ||
| 43 | encoding:"Target character encoding", | ||
| 44 | mime:"Target MIME type", | ||
| 45 | rel:"Relationship page to target", | ||
| 46 | rev:"Relationship target to page", | ||
| 47 | tabindex:"Tabindex", | ||
| 48 | accesskey:"Accesskey", | ||
| 49 | ltr:"Left to right", | ||
| 50 | rtl:"Right to left", | ||
| 51 | link_list:"Link list" | ||
| 52 | }); \ No newline at end of file | ||
diff --git a/public/javascripts/tiny_mce/plugins/advlink/link.htm b/public/javascripts/tiny_mce/plugins/advlink/link.htm deleted file mode 100644 index cc8b0b8..0000000 --- a/public/javascripts/tiny_mce/plugins/advlink/link.htm +++ /dev/null | |||
| @@ -1,338 +0,0 @@ | |||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
| 2 | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 3 | <head> | ||
| 4 | <title>{#advlink_dlg.title}</title> | ||
| 5 | <script type="text/javascript" src="../../tiny_mce_popup.js"></script> | ||
| 6 | <script type="text/javascript" src="../../utils/mctabs.js"></script> | ||
| 7 | <script type="text/javascript" src="../../utils/form_utils.js"></script> | ||
| 8 | <script type="text/javascript" src="../../utils/validate.js"></script> | ||
| 9 | <script type="text/javascript" src="js/advlink.js"></script> | ||
| 10 | <link href="css/advlink.css" rel="stylesheet" type="text/css" /> | ||
| 11 | </head> | ||
| 12 | <body id="advlink" style="display: none"> | ||
| 13 | <form onsubmit="insertAction();return false;" action="#"> | ||
| 14 | <div class="tabs"> | ||
| 15 | <ul> | ||
| 16 | <li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advlink_dlg.general_tab}</a></span></li> | ||
| 17 | <li id="popup_tab"><span><a href="javascript:mcTabs.displayTab('popup_tab','popup_panel');" onmousedown="return false;">{#advlink_dlg.popup_tab}</a></span></li> | ||
| 18 | <li id="events_tab"><span><a href="javascript:mcTabs.displayTab('events_tab','events_panel');" onmousedown="return false;">{#advlink_dlg.events_tab}</a></span></li> | ||
| 19 | <li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advlink_dlg.advanced_tab}</a></span></li> | ||
| 20 | </ul> | ||
| 21 | </div> | ||
| 22 | |||
| 23 | <div class="panel_wrapper"> | ||
| 24 | <div id="general_panel" class="panel current"> | ||
| 25 | <fieldset> | ||
| 26 | <legend>{#advlink_dlg.general_props}</legend> | ||
| 27 | |||
| 28 | <table border="0" cellpadding="4" cellspacing="0"> | ||
| 29 | <tr> | ||
| 30 | <td class="nowrap"><label id="hreflabel" for="href">{#advlink_dlg.url}</label></td> | ||
| 31 | <td><table border="0" cellspacing="0" cellpadding="0"> | ||
| 32 | <tr> | ||
| 33 | <td><input id="href" name="href" type="text" class="mceFocus" value="" onchange="selectByValue(this.form,'linklisthref',this.value);" /></td> | ||
| 34 | <td id="hrefbrowsercontainer"> </td> | ||
| 35 | </tr> | ||
| 36 | </table></td> | ||
| 37 | </tr> | ||
| 38 | <tr id="linklisthrefrow"> | ||
| 39 | <td class="column1"><label for="linklisthref">{#advlink_dlg.list}</label></td> | ||
| 40 | <td colspan="2" id="linklisthrefcontainer"><select id="linklisthref"><option value=""></option></select></td> | ||
| 41 | </tr> | ||
| 42 | <tr> | ||
| 43 | <td class="column1"><label for="anchorlist">{#advlink_dlg.anchor_names}</label></td> | ||
| 44 | <td colspan="2" id="anchorlistcontainer"><select id="anchorlist"><option value=""></option></select></td> | ||
| 45 | </tr> | ||
| 46 | <tr> | ||
| 47 | <td><label id="targetlistlabel" for="targetlist">{#advlink_dlg.target}</label></td> | ||
| 48 | <td id="targetlistcontainer"><select id="targetlist"><option value=""></option></select></td> | ||
| 49 | </tr> | ||
| 50 | <tr> | ||
| 51 | <td class="nowrap"><label id="titlelabel" for="title">{#advlink_dlg.titlefield}</label></td> | ||
| 52 | <td><input id="title" name="title" type="text" value="" /></td> | ||
| 53 | </tr> | ||
| 54 | <tr> | ||
| 55 | <td><label id="classlabel" for="classlist">{#class_name}</label></td> | ||
| 56 | <td> | ||
| 57 | <select id="classlist" name="classlist" onchange="changeClass();"> | ||
| 58 | <option value="" selected="selected">{#not_set}</option> | ||
| 59 | </select> | ||
| 60 | </td> | ||
| 61 | </tr> | ||
| 62 | </table> | ||
| 63 | </fieldset> | ||
| 64 | </div> | ||
| 65 | |||
| 66 | <div id="popup_panel" class="panel"> | ||
| 67 | <fieldset> | ||
| 68 | <legend>{#advlink_dlg.popup_props}</legend> | ||
| 69 | |||
| 70 | <input type="checkbox" id="ispopup" name="ispopup" class="radio" onclick="setPopupControlsDisabled(!this.checked);buildOnClick();" /> | ||
| 71 | <label id="ispopuplabel" for="ispopup">{#advlink_dlg.popup}</label> | ||
| 72 | |||
| 73 | <table border="0" cellpadding="0" cellspacing="4"> | ||
| 74 | <tr> | ||
| 75 | <td class="nowrap"><label for="popupurl">{#advlink_dlg.popup_url}</label> </td> | ||
| 76 | <td> | ||
| 77 | <table border="0" cellspacing="0" cellpadding="0"> | ||
| 78 | <tr> | ||
| 79 | <td><input type="text" name="popupurl" id="popupurl" value="" onchange="buildOnClick();" /></td> | ||
| 80 | <td id="popupurlbrowsercontainer"> </td> | ||
| 81 | </tr> | ||
| 82 | </table> | ||
| 83 | </td> | ||
| 84 | </tr> | ||
| 85 | <tr> | ||
| 86 | <td class="nowrap"><label for="popupname">{#advlink_dlg.popup_name}</label> </td> | ||
| 87 | <td><input type="text" name="popupname" id="popupname" value="" onchange="buildOnClick();" /></td> | ||
| 88 | </tr> | ||
| 89 | <tr> | ||
| 90 | <td class="nowrap"><label>{#advlink_dlg.popup_size}</label> </td> | ||
| 91 | <td class="nowrap"> | ||
| 92 | <input type="text" id="popupwidth" name="popupwidth" value="" onchange="buildOnClick();" /> x | ||
| 93 | <input type="text" id="popupheight" name="popupheight" value="" onchange="buildOnClick();" /> px | ||
| 94 | </td> | ||
| 95 | </tr> | ||
| 96 | <tr> | ||
| 97 | <td class="nowrap" id="labelleft"><label>{#advlink_dlg.popup_position}</label> </td> | ||
| 98 | <td class="nowrap"> | ||
| 99 | <input type="text" id="popupleft" name="popupleft" value="" onchange="buildOnClick();" /> / | ||
| 100 | <input type="text" id="popuptop" name="popuptop" value="" onchange="buildOnClick();" /> (c /c = center) | ||
| 101 | </td> | ||
| 102 | </tr> | ||
| 103 | </table> | ||
| 104 | |||
| 105 | <fieldset> | ||
| 106 | <legend>{#advlink_dlg.popup_opts}</legend> | ||
| 107 | |||
| 108 | <table border="0" cellpadding="0" cellspacing="4"> | ||
| 109 | <tr> | ||
| 110 | <td><input type="checkbox" id="popuplocation" name="popuplocation" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 111 | <td class="nowrap"><label id="popuplocationlabel" for="popuplocation">{#advlink_dlg.popup_location}</label></td> | ||
| 112 | <td><input type="checkbox" id="popupscrollbars" name="popupscrollbars" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 113 | <td class="nowrap"><label id="popupscrollbarslabel" for="popupscrollbars">{#advlink_dlg.popup_scrollbars}</label></td> | ||
| 114 | </tr> | ||
| 115 | <tr> | ||
| 116 | <td><input type="checkbox" id="popupmenubar" name="popupmenubar" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 117 | <td class="nowrap"><label id="popupmenubarlabel" for="popupmenubar">{#advlink_dlg.popup_menubar}</label></td> | ||
| 118 | <td><input type="checkbox" id="popupresizable" name="popupresizable" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 119 | <td class="nowrap"><label id="popupresizablelabel" for="popupresizable">{#advlink_dlg.popup_resizable}</label></td> | ||
| 120 | </tr> | ||
| 121 | <tr> | ||
| 122 | <td><input type="checkbox" id="popuptoolbar" name="popuptoolbar" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 123 | <td class="nowrap"><label id="popuptoolbarlabel" for="popuptoolbar">{#advlink_dlg.popup_toolbar}</label></td> | ||
| 124 | <td><input type="checkbox" id="popupdependent" name="popupdependent" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 125 | <td class="nowrap"><label id="popupdependentlabel" for="popupdependent">{#advlink_dlg.popup_dependent}</label></td> | ||
| 126 | </tr> | ||
| 127 | <tr> | ||
| 128 | <td><input type="checkbox" id="popupstatus" name="popupstatus" class="checkbox" onchange="buildOnClick();" /></td> | ||
| 129 | <td class="nowrap"><label id="popupstatuslabel" for="popupstatus">{#advlink_dlg.popup_statusbar}</label></td> | ||
| 130 | <td><input type="checkbox" id="popupreturn" name="popupreturn" class="checkbox" onchange="buildOnClick();" checked="checked" /></td> | ||
| 131 | <td class="nowrap"><label id="popupreturnlabel" for="popupreturn">{#advlink_dlg.popup_return}</label></td> | ||
| 132 | </tr> | ||
| 133 | </table> | ||
| 134 | </fieldset> | ||
| 135 | </fieldset> | ||
| 136 | </div> | ||
| 137 | |||
| 138 | <div id="advanced_panel" class="panel"> | ||
| 139 | <fieldset> | ||
| 140 | <legend>{#advlink_dlg.advanced_props}</legend> | ||
| 141 | |||
| 142 | <table border="0" cellpadding="0" cellspacing="4"> | ||
| 143 | <tr> | ||
| 144 | <td class="column1"><label id="idlabel" for="id">{#advlink_dlg.id}</label></td> | ||
| 145 | <td><input id="id" name="id" type="text" value="" /></td> | ||
| 146 | </tr> | ||
| 147 | |||
| 148 | <tr> | ||
| 149 | <td><label id="stylelabel" for="style">{#advlink_dlg.style}</label></td> | ||
| 150 | <td><input type="text" id="style" name="style" value="" /></td> | ||
| 151 | </tr> | ||
| 152 | |||
| 153 | <tr> | ||
| 154 | <td><label id="classeslabel" for="classes">{#advlink_dlg.classes}</label></td> | ||
| 155 | <td><input type="text" id="classes" name="classes" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td> | ||
| 156 | </tr> | ||
| 157 | |||
| 158 | <tr> | ||
| 159 | <td><label id="targetlabel" for="target">{#advlink_dlg.target_name}</label></td> | ||
| 160 | <td><input type="text" id="target" name="target" value="" onchange="selectByValue(this.form,'targetlist',this.value,true);" /></td> | ||
| 161 | </tr> | ||
| 162 | |||
| 163 | <tr> | ||
| 164 | <td class="column1"><label id="dirlabel" for="dir">{#advlink_dlg.langdir}</label></td> | ||
| 165 | <td> | ||
| 166 | <select id="dir" name="dir"> | ||
| 167 | <option value="">{#not_set}</option> | ||
| 168 | <option value="ltr">{#advlink_dlg.ltr}</option> | ||
| 169 | <option value="rtl">{#advlink_dlg.rtl}</option> | ||
| 170 | </select> | ||
| 171 | </td> | ||
| 172 | </tr> | ||
| 173 | |||
| 174 | <tr> | ||
| 175 | <td><label id="hreflanglabel" for="hreflang">{#advlink_dlg.target_langcode}</label></td> | ||
| 176 | <td><input type="text" id="hreflang" name="hreflang" value="" /></td> | ||
| 177 | </tr> | ||
| 178 | |||
| 179 | <tr> | ||
| 180 | <td class="column1"><label id="langlabel" for="lang">{#advlink_dlg.langcode}</label></td> | ||
| 181 | <td> | ||
| 182 | <input id="lang" name="lang" type="text" value="" /> | ||
| 183 | </td> | ||
| 184 | </tr> | ||
| 185 | |||
| 186 | <tr> | ||
| 187 | <td><label id="charsetlabel" for="charset">{#advlink_dlg.encoding}</label></td> | ||
| 188 | <td><input type="text" id="charset" name="charset" value="" /></td> | ||
| 189 | </tr> | ||
| 190 | |||
| 191 | <tr> | ||
| 192 | <td><label id="typelabel" for="type">{#advlink_dlg.mime}</label></td> | ||
| 193 | <td><input type="text" id="type" name="type" value="" /></td> | ||
| 194 | </tr> | ||
| 195 | |||
| 196 | <tr> | ||
| 197 | <td><label id="rellabel" for="rel">{#advlink_dlg.rel}</label></td> | ||
| 198 | <td><select id="rel" name="rel"> | ||
| 199 | <option value="">{#not_set}</option> | ||
| 200 | <option value="lightbox">Lightbox</option> | ||
| 201 | <option value="alternate">Alternate</option> | ||
| 202 | <option value="designates">Designates</option> | ||
| 203 | <option value="stylesheet">Stylesheet</option> | ||
| 204 | <option value="start">Start</option> | ||
| 205 | <option value="next">Next</option> | ||
| 206 | <option value="prev">Prev</option> | ||
| 207 | <option value="contents">Contents</option> | ||
| 208 | <option value="index">Index</option> | ||
| 209 | <option value="glossary">Glossary</option> | ||
| 210 | <option value="copyright">Copyright</option> | ||
| 211 | <option value="chapter">Chapter</option> | ||
| 212 | <option value="subsection">Subsection</option> | ||
| 213 | <option value="appendix">Appendix</option> | ||
| 214 | <option value="help">Help</option> | ||
| 215 | <option value="bookmark">Bookmark</option> | ||
| 216 | <option value="nofollow">No Follow</option> | ||
| 217 | <option value="tag">Tag</option> | ||
| 218 | </select> | ||
| 219 | </td> | ||
| 220 | </tr> | ||
| 221 | |||
| 222 | <tr> | ||
| 223 | <td><label id="revlabel" for="rev">{#advlink_dlg.rev}</label></td> | ||
| 224 | <td><select id="rev" name="rev"> | ||
| 225 | <option value="">{#not_set}</option> | ||
| 226 | <option value="alternate">Alternate</option> | ||
| 227 | <option value="designates">Designates</option> | ||
| 228 | <option value="stylesheet">Stylesheet</option> | ||
| 229 | <option value="start">Start</option> | ||
| 230 | <option value="next">Next</option> | ||
| 231 | <option value="prev">Prev</option> | ||
| 232 | <option value="contents">Contents</option> | ||
| 233 | <option value="index">Index</option> | ||
| 234 | <option value="glossary">Glossary</option> | ||
| 235 | <option value="copyright">Copyright</option> | ||
| 236 | <option value="chapter">Chapter</option> | ||
| 237 | <option value="subsection">Subsection</option> | ||
| 238 | <option value="appendix">Appendix</option> | ||
| 239 | <option value="help">Help</option> | ||
| 240 | <option value="bookmark">Bookmark</option> | ||
| 241 | </select> | ||
| 242 | </td> | ||
| 243 | </tr> | ||
| 244 | |||
| 245 | <tr> | ||
| 246 | <td><label id="tabindexlabel" for="tabindex">{#advlink_dlg.tabindex}</label></td> | ||
| 247 | <td><input type="text" id="tabindex" name="tabindex" value="" /></td> | ||
| 248 | </tr> | ||
| 249 | |||
| 250 | <tr> | ||
| 251 | <td><label id="accesskeylabel" for="accesskey">{#advlink_dlg.accesskey}</label></td> | ||
| 252 | <td><input type="text" id="accesskey" name="accesskey" value="" /></td> | ||
| 253 | </tr> | ||
| 254 | </table> | ||
| 255 | </fieldset> | ||
| 256 | </div> | ||
| 257 | |||
| 258 | <div id="events_panel" class="panel"> | ||
| 259 | <fieldset> | ||
| 260 | <legend>{#advlink_dlg.event_props}</legend> | ||
| 261 | |||
| 262 | <table border="0" cellpadding="0" cellspacing="4"> | ||
| 263 | <tr> | ||
| 264 | <td class="column1"><label for="onfocus">onfocus</label></td> | ||
| 265 | <td><input id="onfocus" name="onfocus" type="text" value="" /></td> | ||
| 266 | </tr> | ||
| 267 | |||
| 268 | <tr> | ||
| 269 | <td class="column1"><label for="onblur">onblur</label></td> | ||
| 270 | <td><input id="onblur" name="onblur" type="text" value="" /></td> | ||
| 271 | </tr> | ||
| 272 | |||
| 273 | <tr> | ||
| 274 | <td class="column1"><label for="onclick">onclick</label></td> | ||
| 275 | <td><input id="onclick" name="onclick" type="text" value="" /></td> | ||
| 276 | </tr> | ||
| 277 | |||
| 278 | <tr> | ||
| 279 | <td class="column1"><label for="ondblclick">ondblclick</label></td> | ||
| 280 | <td><input id="ondblclick" name="ondblclick" type="text" value="" /></td> | ||
| 281 | </tr> | ||
| 282 | |||
| 283 | <tr> | ||
| 284 | <td class="column1"><label for="onmousedown">onmousedown</label></td> | ||
| 285 | <td><input id="onmousedown" name="onmousedown" type="text" value="" /></td> | ||
| 286 | </tr> | ||
| 287 | |||
| 288 | <tr> | ||
| 289 | <td class="column1"><label for="onmouseup">onmouseup</label></td> | ||
| 290 | <td><input id="onmouseup" name="onmouseup" type="text" value="" /></td> | ||
| 291 | </tr> | ||
| 292 | |||
| 293 | <tr> | ||
| 294 | <td class="column1"><label for="onmouseover">onmouseover</label></td> | ||
| 295 | <td><input id="onmouseover" name="onmouseover" type="text" value="" /></td> | ||
| 296 | </tr> | ||
| 297 | |||
| 298 | <tr> | ||
| 299 | <td class="column1"><label for="onmousemove">onmousemove</label></td> | ||
| 300 | <td><input id="onmousemove" name="onmousemove" type="text" value="" /></td> | ||
| 301 | </tr> | ||
| 302 | |||
| 303 | <tr> | ||
| 304 | <td class="column1"><label for="onmouseout">onmouseout</label></td> | ||
| 305 | <td><input id="onmouseout" name="onmouseout" type="text" value="" /></td> | ||
| 306 | </tr> | ||
| 307 | |||
| 308 | <tr> | ||
| 309 | <td class="column1"><label for="onkeypress">onkeypress</label></td> | ||
| 310 | <td><input id="onkeypress" name="onkeypress" type="text" value="" /></td> | ||
| 311 | </tr> | ||
| 312 | |||
| 313 | <tr> | ||
| 314 | <td class="column1"><label for="onkeydown">onkeydown</label></td> | ||
| 315 | <td><input id="onkeydown" name="onkeydown" type="text" value="" /></td> | ||
| 316 | </tr> | ||
| 317 | |||
| 318 | <tr> | ||
| 319 | <td class="column1"><label for="onkeyup">onkeyup</label></td> | ||
| 320 | <td><input id="onkeyup" name="onkeyup" type="text" value="" /></td> | ||
| 321 | </tr> | ||
| 322 | </table> | ||
| 323 | </fieldset> | ||
| 324 | </div> | ||
| 325 | </div> | ||
| 326 | |||
| 327 | <div class="mceActionPanel"> | ||
| 328 | <div style="float: left"> | ||
| 329 | <input type="submit" id="insert" name="insert" value="{#insert}" /> | ||
| 330 | </div> | ||
| 331 | |||
| 332 | <div style="float: right"> | ||
| 333 | <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> | ||
| 334 | </div> | ||
| 335 | </div> | ||
| 336 | </form> | ||
| 337 | </body> | ||
| 338 | </html> | ||
