fckcodeformatter.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:3k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Format the HTML.
  22.  */
  23. var FCKCodeFormatter = new Object() ;
  24. FCKCodeFormatter.Init = function()
  25. {
  26. var oRegex = this.Regex = new Object() ;
  27. // Regex for line breaks.
  28. oRegex.BlocksOpener = /<(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|TH|AREA|OPTION)[^>]*>/gi ;
  29. oRegex.BlocksCloser = /</(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|TH|AREA|OPTION)[^>]*>/gi ;
  30. oRegex.NewLineTags = /<(BR|HR)[^>]*>/gi ;
  31. oRegex.MainTags = /</?(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR)[^>]*>/gi ;
  32. oRegex.LineSplitter = /s*n+s*/g ;
  33. // Regex for indentation.
  34. oRegex.IncreaseIndent = /^<(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL)[ />]/i ;
  35. oRegex.DecreaseIndent = /^</(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL)[ >]/i ;
  36. oRegex.FormatIndentatorRemove = new RegExp( '^' + FCKConfig.FormatIndentator ) ;
  37. oRegex.ProtectedTags = /(<PRE[^>]*>)([sS]*?)(</PRE>)/gi ;
  38. }
  39. FCKCodeFormatter._ProtectData = function( outer, opener, data, closer )
  40. {
  41. return opener + '___FCKpd___' + FCKCodeFormatter.ProtectedData.AddItem( data ) + closer ;
  42. }
  43. FCKCodeFormatter.Format = function( html )
  44. {
  45. if ( !this.Regex )
  46. this.Init() ;
  47. // Protected content that remain untouched during the
  48. // process go in the following array.
  49. FCKCodeFormatter.ProtectedData = new Array() ;
  50. var sFormatted = html.replace( this.Regex.ProtectedTags, FCKCodeFormatter._ProtectData ) ;
  51. // Line breaks.
  52. sFormatted = sFormatted.replace( this.Regex.BlocksOpener, 'n$&' ) ;
  53. sFormatted = sFormatted.replace( this.Regex.BlocksCloser, '$&n' ) ;
  54. sFormatted = sFormatted.replace( this.Regex.NewLineTags, '$&n' ) ;
  55. sFormatted = sFormatted.replace( this.Regex.MainTags, 'n$&n' ) ;
  56. // Indentation.
  57. var sIndentation = '' ;
  58. var asLines = sFormatted.split( this.Regex.LineSplitter ) ;
  59. sFormatted = '' ;
  60. for ( var i = 0 ; i < asLines.length ; i++ )
  61. {
  62. var sLine = asLines[i] ;
  63. if ( sLine.length == 0 )
  64. continue ;
  65. if ( this.Regex.DecreaseIndent.test( sLine ) )
  66. sIndentation = sIndentation.replace( this.Regex.FormatIndentatorRemove, '' ) ;
  67. sFormatted += sIndentation + sLine + 'n' ;
  68. if ( this.Regex.IncreaseIndent.test( sLine ) )
  69. sIndentation += FCKConfig.FormatIndentator ;
  70. }
  71. // Now we put back the protected data.
  72. for ( var j = 0 ; j < FCKCodeFormatter.ProtectedData.length ; j++ )
  73. {
  74. var oRegex = new RegExp( '___FCKpd___' + j ) ;
  75. sFormatted = sFormatted.replace( oRegex, FCKCodeFormatter.ProtectedData[j].replace( /$/g, '$$$$' ) ) ;
  76. }
  77. return sFormatted.Trim() ;
  78. }