fckcodeformatter.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: fckcodeformatter.js
  12.  *  Format the HTML.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKCodeFormatter ;
  18. if ( !( FCKCodeFormatter = NS.FCKCodeFormatter ) )
  19. {
  20. FCKCodeFormatter = NS.FCKCodeFormatter = new Object() ;
  21. FCKCodeFormatter.Regex = new Object() ;
  22. // Regex for line breaks.
  23. FCKCodeFormatter.Regex.BlocksOpener = /<(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|AREA|OPTION)[^>]*>/gi ;
  24. FCKCodeFormatter.Regex.BlocksCloser = /</(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|AREA|OPTION)[^>]*>/gi ;
  25. FCKCodeFormatter.Regex.NewLineTags = /<(BR|HR)[^>]>/gi ;
  26. FCKCodeFormatter.Regex.MainTags = /</?(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR)[^>]*>/gi ;
  27. FCKCodeFormatter.Regex.LineSplitter = /s*n+s*/g ;
  28. // Regex for indentation.
  29. FCKCodeFormatter.Regex.IncreaseIndent = /^<(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL)[ />]/i ;
  30. FCKCodeFormatter.Regex.DecreaseIndent = /^</(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL)[ >]/i ;
  31. FCKCodeFormatter.Regex.FormatIndentatorRemove = new RegExp( FCKConfig.FormatIndentator ) ;
  32. FCKCodeFormatter.Format = function( html )
  33. {
  34. // Line breaks.
  35. var sFormatted = html.replace( this.Regex.BlocksOpener, 'n$&' ) ; ;
  36. sFormatted = sFormatted.replace( this.Regex.BlocksCloser, '$&n' ) ;
  37. sFormatted = sFormatted.replace( this.Regex.NewLineTags, '$&n' ) ;
  38. sFormatted = sFormatted.replace( this.Regex.MainTags, 'n$&n' ) ;
  39. // Indentation.
  40. var sIndentation = '' ;
  41. var asLines = sFormatted.split( this.Regex.LineSplitter ) ;
  42. sFormatted = '' ;
  43. for ( var i = 0 ; i < asLines.length ; i++ )
  44. {
  45. var sLine = asLines[i] ;
  46. if ( sLine.length == 0 )
  47. continue ;
  48. if ( this.Regex.DecreaseIndent.test( sLine ) )
  49. sIndentation = sIndentation.replace( this.Regex.FormatIndentatorRemove, '' ) ;
  50. sFormatted += sIndentation + sLine + 'n' ;
  51. if ( this.Regex.IncreaseIndent.test( sLine ) )
  52. sIndentation += FCKConfig.FormatIndentator ;
  53. }
  54. return sFormatted.trim() ;
  55. }
  56. }