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

数据库编程

开发平台:

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.  * Useful functions used by almost all dialog window pages.
  22.  */
  23. // Gets a element by its Id. Used for shorter coding.
  24. function GetE( elementId )
  25. {
  26. return document.getElementById( elementId )  ;
  27. }
  28. function ShowE( element, isVisible )
  29. {
  30. if ( typeof( element ) == 'string' )
  31. element = GetE( element ) ;
  32. element.style.display = isVisible ? '' : 'none' ;
  33. }
  34. function SetAttribute( element, attName, attValue )
  35. {
  36. if ( attValue == null || attValue.length == 0 )
  37. element.removeAttribute( attName, 0 ) ; // 0 : Case Insensitive
  38. else
  39. element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive
  40. }
  41. function GetAttribute( element, attName, valueIfNull )
  42. {
  43. var oAtt = element.attributes[attName] ;
  44. if ( oAtt == null || !oAtt.specified )
  45. return valueIfNull ? valueIfNull : '' ;
  46. var oValue = element.getAttribute( attName, 2 ) ;
  47. if ( oValue == null )
  48. oValue = oAtt.nodeValue ;
  49. return ( oValue == null ? valueIfNull : oValue ) ;
  50. }
  51. var KeyIdentifierMap = 
  52. {
  53. End : 35,
  54. Home : 36,
  55. Left : 37,
  56. Right : 39,
  57. 'U+00007F' : 46 // Delete
  58. // Functions used by text fields to accept numbers only.
  59. function IsDigit( e )
  60. {
  61. if ( !e )
  62. e = event ;
  63. var iCode = ( e.keyCode || e.charCode ) ;
  64. if ( !iCode && e.keyIdentifier && ( e.keyIdentifier in KeyIdentifierMap ) ) 
  65. iCode = KeyIdentifierMap[ e.keyIdentifier ] ;
  66. return (
  67. ( iCode >= 48 && iCode <= 57 ) // Numbers
  68. || (iCode >= 35 && iCode <= 40) // Arrows, Home, End
  69. || iCode == 8 // Backspace
  70. || iCode == 46 // Delete
  71. || iCode == 9 // Tab
  72. ) ;
  73. }
  74. String.prototype.Trim = function()
  75. {
  76. return this.replace( /(^s*)|(s*$)/g, '' ) ;
  77. }
  78. String.prototype.StartsWith = function( value )
  79. {
  80. return ( this.substr( 0, value.length ) == value ) ;
  81. }
  82. String.prototype.Remove = function( start, length )
  83. {
  84. var s = '' ;
  85. if ( start > 0 )
  86. s = this.substring( 0, start ) ;
  87. if ( start + length < this.length )
  88. s += this.substring( start + length , this.length ) ;
  89. return s ;
  90. }
  91. String.prototype.ReplaceAll = function( searchArray, replaceArray )
  92. {
  93. var replaced = this ;
  94. for ( var i = 0 ; i < searchArray.length ; i++ )
  95. {
  96. replaced = replaced.replace( searchArray[i], replaceArray[i] ) ;
  97. }
  98. return replaced ;
  99. }
  100. function OpenFileBrowser( url, width, height )
  101. {
  102. // oEditor must be defined.
  103. var iLeft = ( oEditor.FCKConfig.ScreenWidth  - width ) / 2 ;
  104. var iTop  = ( oEditor.FCKConfig.ScreenHeight - height ) / 2 ;
  105. var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes,scrollbars=yes" ;
  106. sOptions += ",width=" + width ;
  107. sOptions += ",height=" + height ;
  108. sOptions += ",left=" + iLeft ;
  109. sOptions += ",top=" + iTop ;
  110. // The "PreserveSessionOnFileBrowser" because the above code could be
  111. // blocked by popup blockers.
  112. if ( oEditor.FCKConfig.PreserveSessionOnFileBrowser && oEditor.FCKBrowserInfo.IsIE )
  113. {
  114. // The following change has been made otherwise IE will open the file
  115. // browser on a different server session (on some cases):
  116. // http://support.microsoft.com/default.aspx?scid=kb;en-us;831678
  117. // by Simone Chiaretta.
  118. var oWindow = oEditor.window.open( url, 'FCKBrowseWindow', sOptions ) ;
  119. if ( oWindow )
  120. {
  121. // Detect Yahoo popup blocker.
  122. try
  123. {
  124. var sTest = oWindow.name ; // Yahoo returns "something", but we can't access it, so detect that and avoid strange errors for the user.
  125. oWindow.opener = window ;
  126. }
  127. catch(e)
  128. {
  129. alert( oEditor.FCKLang.BrowseServerBlocked ) ;
  130. }
  131. }
  132. else
  133. alert( oEditor.FCKLang.BrowseServerBlocked ) ;
  134.     }
  135.     else
  136. window.open( url, 'FCKBrowseWindow', sOptions ) ;
  137. }