芝麻web文件管理V1.00
编辑当前文件:/home/krishnamexports/www/panel/vendors/tinymce/plugins/autolink/plugin.js
(function () { var defs = {}; // id -> {dependencies, definition, instance (possibly undefined)} // Used when there is no 'main' module. // The name is probably (hopefully) unique so minification removes for releases. var register_3795 = function (id) { var module = dem(id); var fragments = id.split('.'); var target = Function('return this;')(); for (var i = 0; i < fragments.length - 1; ++i) { if (target[fragments[i]] === undefined) target[fragments[i]] = {}; target = target[fragments[i]]; } target[fragments[fragments.length - 1]] = module; }; var instantiate = function (id) { var actual = defs[id]; var dependencies = actual.deps; var definition = actual.defn; var len = dependencies.length; var instances = new Array(len); for (var i = 0; i < len; ++i) instances[i] = dem(dependencies[i]); var defResult = definition.apply(null, instances); if (defResult === undefined) throw 'module [' + id + '] returned undefined'; actual.instance = defResult; }; var def = function (id, dependencies, definition) { if (typeof id !== 'string') throw 'module id must be a string'; else if (dependencies === undefined) throw 'no dependencies for ' + id; else if (definition === undefined) throw 'no definition function for ' + id; defs[id] = { deps: dependencies, defn: definition, instance: undefined }; }; var dem = function (id) { var actual = defs[id]; if (actual === undefined) throw 'module [' + id + '] was undefined'; else if (actual.instance === undefined) instantiate(id); return actual.instance; }; var req = function (ids, callback) { var len = ids.length; var instances = new Array(len); for (var i = 0; i < len; ++i) instances.push(dem(ids[i])); callback.apply(null, callback); }; var ephox = {}; ephox.bolt = { module: { api: { define: def, require: req, demand: dem } } }; var define = def; var require = req; var demand = dem; // this helps with minificiation when using a lot of global references var defineGlobal = function (id, ref) { define(id, [], function () { return ref; }); }; /*jsc ["tinymce.plugins.autolink.Plugin","tinymce.core.Env","tinymce.core.PluginManager","global!tinymce.util.Tools.resolve"] jsc*/ defineGlobal("global!tinymce.util.Tools.resolve", tinymce.util.Tools.resolve); /** * ResolveGlobal.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define( 'tinymce.core.Env', [ 'global!tinymce.util.Tools.resolve' ], function (resolve) { return resolve('tinymce.Env'); } ); /** * ResolveGlobal.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define( 'tinymce.core.PluginManager', [ 'global!tinymce.util.Tools.resolve' ], function (resolve) { return resolve('tinymce.PluginManager'); } ); /** * Plugin.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ /** * This class contains all core logic for the autolink plugin. * * @class tinymce.autolink.Plugin * @private */ define( 'tinymce.plugins.autolink.Plugin', [ 'tinymce.core.Env', 'tinymce.core.PluginManager' ], function (Env, PluginManager) { PluginManager.add('autolink', function (editor) { var AutoUrlDetectState; var AutoLinkPattern = /^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i; if (editor.settings.autolink_pattern) { AutoLinkPattern = editor.settings.autolink_pattern; } editor.on("keydown", function (e) { if (e.keyCode == 13) { return handleEnter(editor); } }); // Internet Explorer has built-in automatic linking for most cases if (Env.ie) { editor.on("focus", function () { if (!AutoUrlDetectState) { AutoUrlDetectState = true; try { editor.execCommand('AutoUrlDetect', false, true); } catch (ex) { // Ignore } } }); return; } editor.on("keypress", function (e) { if (e.keyCode == 41) { return handleEclipse(editor); } }); editor.on("keyup", function (e) { if (e.keyCode == 32) { return handleSpacebar(editor); } }); function handleEclipse(editor) { parseCurrentLine(editor, -1, '(', true); } function handleSpacebar(editor) { parseCurrentLine(editor, 0, '', true); } function handleEnter(editor) { parseCurrentLine(editor, -1, '', false); } function parseCurrentLine(editor, endOffset, delimiter) { var rng, end, start, endContainer, bookmark, text, matches, prev, len, rngText; function scopeIndex(container, index) { if (index < 0) { index = 0; } if (container.nodeType == 3) { var len = container.data.length; if (index > len) { index = len; } } return index; } function setStart(container, offset) { if (container.nodeType != 1 || container.hasChildNodes()) { rng.setStart(container, scopeIndex(container, offset)); } else { rng.setStartBefore(container); } } function setEnd(container, offset) { if (container.nodeType != 1 || container.hasChildNodes()) { rng.setEnd(container, scopeIndex(container, offset)); } else { rng.setEndAfter(container); } } // Never create a link when we are inside a link if (editor.selection.getNode().tagName == 'A') { return; } // We need at least five characters to form a URL, // hence, at minimum, five characters from the beginning of the line. rng = editor.selection.getRng(true).cloneRange(); if (rng.startOffset < 5) { // During testing, the caret is placed between two text nodes. // The previous text node contains the URL. prev = rng.endContainer.previousSibling; if (!prev) { if (!rng.endContainer.firstChild || !rng.endContainer.firstChild.nextSibling) { return; } prev = rng.endContainer.firstChild.nextSibling; } len = prev.length; setStart(prev, len); setEnd(prev, len); if (rng.endOffset < 5) { return; } end = rng.endOffset; endContainer = prev; } else { endContainer = rng.endContainer; // Get a text node if (endContainer.nodeType != 3 && endContainer.firstChild) { while (endContainer.nodeType != 3 && endContainer.firstChild) { endContainer = endContainer.firstChild; } // Move range to text node if (endContainer.nodeType == 3) { setStart(endContainer, 0); setEnd(endContainer, endContainer.nodeValue.length); } } if (rng.endOffset == 1) { end = 2; } else { end = rng.endOffset - 1 - endOffset; } } start = end; do { // Move the selection one character backwards. setStart(endContainer, end >= 2 ? end - 2 : 0); setEnd(endContainer, end >= 1 ? end - 1 : 0); end -= 1; rngText = rng.toString(); // Loop until one of the following is found: a blank space, , delimiter, (end-2) >= 0 } while (rngText != ' ' && rngText !== '' && rngText.charCodeAt(0) != 160 && (end - 2) >= 0 && rngText != delimiter); if (rng.toString() == delimiter || rng.toString().charCodeAt(0) == 160) { setStart(endContainer, end); setEnd(endContainer, start); end += 1; } else if (rng.startOffset === 0) { setStart(endContainer, 0); setEnd(endContainer, start); } else { setStart(endContainer, end); setEnd(endContainer, start); } // Exclude last . from word like "www.site.com." text = rng.toString(); if (text.charAt(text.length - 1) == '.') { setEnd(endContainer, start - 1); } text = rng.toString(); matches = text.match(AutoLinkPattern); if (matches) { if (matches[1] == 'www.') { matches[1] = 'http://www.'; } else if (/@$/.test(matches[1]) && !/^mailto:/.test(matches[1])) { matches[1] = 'mailto:' + matches[1]; } bookmark = editor.selection.getBookmark(); editor.selection.setRng(rng); editor.execCommand('createlink', false, matches[1] + matches[2]); if (editor.settings.default_link_target) { editor.dom.setAttrib(editor.selection.getNode(), 'target', editor.settings.default_link_target); } editor.selection.moveToBookmark(bookmark); editor.nodeChanged(); } } }); return function () { }; } ); dem('tinymce.plugins.autolink.Plugin')(); })();