fckregexlib.js

来自「国外很不错的一个开源OA系统Group-Office」· JavaScript 代码 · 共 96 行

JS
96
字号
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * *  - GNU General Public License Version 2 or later (the "GPL") *    http://www.gnu.org/licenses/gpl.html * *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL") *    http://www.gnu.org/licenses/lgpl.html * *  - Mozilla Public License Version 1.1 or later (the "MPL") *    http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * These are some Regular Expresions used by the editor. */var FCKRegexLib ={// This is the Regular expression used by the SetHTML method for the "&apos;" entity.AposEntity		: /&apos;/gi ,// Used by the Styles combo to identify styles that can't be applied to text.ObjectElements	: /^(?:IMG|TABLE|TR|TD|TH|INPUT|SELECT|TEXTAREA|HR|OBJECT|A|UL|OL|LI)$/i ,// List all named commands (commands that can be interpreted by the browser "execCommand" method.NamedCommands	: /^(?:Cut|Copy|Paste|Print|SelectAll|RemoveFormat|Unlink|Undo|Redo|Bold|Italic|Underline|StrikeThrough|Subscript|Superscript|JustifyLeft|JustifyCenter|JustifyRight|JustifyFull|Outdent|Indent|InsertOrderedList|InsertUnorderedList|InsertHorizontalRule)$/i ,BodyContents	: /([\s\S]*\<body[^\>]*\>)([\s\S]*)(\<\/body\>[\s\S]*)/i ,// Temporary text used to solve some browser specific limitations.ToReplace		: /___fcktoreplace:([\w]+)/ig ,// Get the META http-equiv attribute from the tag.MetaHttpEquiv	: /http-equiv\s*=\s*["']?([^"' ]+)/i ,HasBaseTag		: /<base /i ,HtmlOpener		: /<html\s?[^>]*>/i ,HeadOpener		: /<head\s?[^>]*>/i ,HeadCloser		: /<\/head\s*>/i ,// Temporary classes (Tables without border, Anchors with content) used in IEFCK_Class		: /(\s*FCK__[A-Za-z]*\s*)/ ,// Validate element names (it must be in lowercase).ElementName		: /(^[a-z_:][\w.\-:]*\w$)|(^[a-z_]$)/ ,// Used in conjuction with the FCKConfig.ForceSimpleAmpersand configuration option.ForceSimpleAmpersand : /___FCKAmp___/g ,// Get the closing parts of the tags with no closing tags, like <br/>... gets the "/>" part.SpaceNoClose	: /\/>/g ,// Empty elements may be <p></p> or even a simple opening <p> (see #211).EmptyParagraph	: /^<([^ >]+)[^>]*>\s*(<\/\1>)?$/ ,EmptyOutParagraph : /^<([^ >]+)[^>]*>(?:\s*|&nbsp;)(<\/\1>)?$/ ,TagBody			: /></ ,StrongOpener	: /<STRONG([ \>])/gi ,StrongCloser	: /<\/STRONG>/gi ,EmOpener		: /<EM([ \>])/gi ,EmCloser		: /<\/EM>/gi ,//AbbrOpener		: /<ABBR([ \>])/gi ,//AbbrCloser		: /<\/ABBR>/gi ,GeckoEntitiesMarker : /#\?-\:/g ,// We look for the "src" and href attribute with the " or ' or whithout one of// them. We have to do all in one, otherwhise we will have problems with URLs// like "thumbnail.php?src=someimage.jpg" (SF-BUG 1554141).ProtectUrlsImg	: /<img(?=\s).*?\ssrc=((?:("|').*?\2)|(?:[^"'][^ >]+))/gi ,ProtectUrlsA	: /<a(?=\s).*?\shref=((?:("|').*?\2)|(?:[^"'][^ >]+))/gi ,Html4DocType	: /HTML 4\.0 Transitional/i ,DocTypeTag		: /<!DOCTYPE[^>]*>/i ,// These regex are used to save the original event attributes in the HTML.TagsWithEvent	: /<[^\>]+ on\w+[\s\r\n]*=[\s\r\n]*?('|")[\s\S]+?\>/g ,EventAttributes	: /\s(on\w+)[\s\r\n]*=[\s\r\n]*?('|")([\s\S]*?)\2/g,ProtectedEvents : /\s\w+_fckprotectedatt="([^"]+)"/g,StyleProperties : /\S+\s*:/g,// [a-zA-Z0-9:]+ seams to be more efficient than [\w:]+InvalidSelfCloseTags : /(<(?!base|meta|link|hr|br|param|img|area|input)([a-zA-Z0-9:]+)[^>]*)\/>/gi} ;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?