fckregexlib.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: fckregexlib.js
  12.  *  These are some Regular Expresions used by the editor.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKRegexLib = new Object() ;
  18. // This is the Regular expression used by the SetHTML method for the "'" entity.
  19. FCKRegexLib.AposEntity = /'/gi ;
  20. // Used by the Styles combo to identify styles that can't be applied to text.
  21. FCKRegexLib.ObjectElements = /^(?:IMG|TABLE|TR|TD|INPUT|SELECT|TEXTAREA|HR|OBJECT)$/i ;
  22. // Block Elements.
  23. FCKRegexLib.BlockElements = /^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TD)$/i ;
  24. // Elements marked as empty "Empty" in the XHTML DTD.
  25. FCKRegexLib.EmptyElements = /^(?:BASE|META|LINK|HR|BR|PARAM|IMG|AREA|INPUT)$/i ;
  26. // List all named commands (commands that can be interpreted by the browser "execCommand" method.
  27. FCKRegexLib.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 ;
  28. FCKRegexLib.BodyContents = /([sS]*<body[^>]*>)([sS]*)(</body>[sS]*)/i ;
  29. // Temporary text used to solve some browser specific limitations.
  30. FCKRegexLib.ToReplace = /___fcktoreplace:([w]+)/ig ;
  31. // Get the META http-equiv attribute from the tag.
  32. FCKRegexLib.MetaHttpEquiv = /http-equivs*=s*["']?([^"' ]+)/i ;
  33. FCKRegexLib.HasBaseTag = /<base /i ;
  34. FCKRegexLib.HeadCloser = /</heads*>/i ;
  35. FCKRegexLib.TableBorderClass = /s*FCK__ShowTableBorderss*/ ;
  36. // Validate element names.
  37. FCKRegexLib.ElementName = /^[A-Za-z_:][w.-:]*$/ ;
  38. // Used in conjuction with the FCKConfig.ForceSimpleAmpersand configuration option.
  39. FCKRegexLib.ForceSimpleAmpersand = /___FCKAmp___/g ;
  40. // Get the closing parts of the tags with no closing tags, like <br/>... gets the "/>" part.
  41. FCKRegexLib.SpaceNoClose = //>/g ;
  42. FCKRegexLib.EmptyParagraph = /^<(p|div)>s*</1>$/i ;
  43. FCKRegexLib.TagBody = /></ ;