fck_link.js
上传用户:saigedz
上传日期:2019-10-14
资源大小:997k
文件大小:20k
源码类别:

中间件编程

开发平台:

HTML/CSS

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2008 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.  * Scripts related to the Link dialog window (see fck_link.html).
  22.  */
  23. var dialog = window.parent ;
  24. var oEditor = dialog.InnerDialogLoaded() ;
  25. var FCK = oEditor.FCK ;
  26. var FCKLang = oEditor.FCKLang ;
  27. var FCKConfig = oEditor.FCKConfig ;
  28. var FCKRegexLib = oEditor.FCKRegexLib ;
  29. var FCKTools = oEditor.FCKTools ;
  30. //#### Dialog Tabs
  31. // Set the dialog tabs.
  32. dialog.AddTab( 'Info', FCKLang.DlgLnkInfoTab ) ;
  33. if ( !FCKConfig.LinkDlgHideTarget )
  34. dialog.AddTab( 'Target', FCKLang.DlgLnkTargetTab, true ) ;
  35. if ( FCKConfig.LinkUpload )
  36. dialog.AddTab( 'Upload', FCKLang.DlgLnkUpload, true ) ;
  37. if ( !FCKConfig.LinkDlgHideAdvanced )
  38. dialog.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ;
  39. // Function called when a dialog tag is selected.
  40. function OnDialogTabChange( tabCode )
  41. {
  42. ShowE('divInfo' , ( tabCode == 'Info' ) ) ;
  43. ShowE('divTarget' , ( tabCode == 'Target' ) ) ;
  44. ShowE('divUpload' , ( tabCode == 'Upload' ) ) ;
  45. ShowE('divAttribs' , ( tabCode == 'Advanced' ) ) ;
  46. dialog.SetAutoSize( true ) ;
  47. }
  48. //#### Regular Expressions library.
  49. var oRegex = new Object() ;
  50. oRegex.UriProtocol = /^(((http|https|ftp|news)://)|mailto:)/gi ;
  51. oRegex.UrlOnChangeProtocol = /^(http|https|ftp|news)://(?=.)/gi ;
  52. oRegex.UrlOnChangeTestOther = /^((javascript:)|[#/.])/gi ;
  53. oRegex.ReserveTarget = /^_(blank|self|top|parent)$/i ;
  54. oRegex.PopupUri = /^javascript:void(s*window.open(s*'([^']+)'s*,s*(?:'([^']*)'|null)s*,s*'([^']*)'s*)s*)s*$/ ;
  55. // Accessible popups
  56. oRegex.OnClickPopup = /^s*on[cC]lick="s*window.open(s*this.hrefs*,s*(?:'([^']*)'|null)s*,s*'([^']*)'s*)s*;s*returns*false;*s*"$/ ;
  57. oRegex.PopupFeatures = /(?:^|,)([^=]+)=(d+|yes|no)/gi ;
  58. //#### Parser Functions
  59. var oParser = new Object() ;
  60. oParser.ParseEMailUrl = function( emailUrl )
  61. {
  62. // Initializes the EMailInfo object.
  63. var oEMailInfo = new Object() ;
  64. oEMailInfo.Address = '' ;
  65. oEMailInfo.Subject = '' ;
  66. oEMailInfo.Body = '' ;
  67. var oParts = emailUrl.match( /^([^?]+)??(.+)?/ ) ;
  68. if ( oParts )
  69. {
  70. // Set the e-mail address.
  71. oEMailInfo.Address = oParts[1] ;
  72. // Look for the optional e-mail parameters.
  73. if ( oParts[2] )
  74. {
  75. var oMatch = oParts[2].match( /(^|&)subject=([^&]+)/i ) ;
  76. if ( oMatch ) oEMailInfo.Subject = decodeURIComponent( oMatch[2] ) ;
  77. oMatch = oParts[2].match( /(^|&)body=([^&]+)/i ) ;
  78. if ( oMatch ) oEMailInfo.Body = decodeURIComponent( oMatch[2] ) ;
  79. }
  80. }
  81. return oEMailInfo ;
  82. }
  83. oParser.CreateEMailUri = function( address, subject, body )
  84. {
  85. var sBaseUri = 'mailto:' + address ;
  86. var sParams = '' ;
  87. if ( subject.length > 0 )
  88. sParams = '?subject=' + encodeURIComponent( subject ) ;
  89. if ( body.length > 0 )
  90. {
  91. sParams += ( sParams.length == 0 ? '?' : '&' ) ;
  92. sParams += 'body=' + encodeURIComponent( body ) ;
  93. }
  94. return sBaseUri + sParams ;
  95. }
  96. //#### Initialization Code
  97. // oLink: The actual selected link in the editor.
  98. var oLink = dialog.Selection.GetSelection().MoveToAncestorNode( 'A' ) ;
  99. if ( oLink )
  100. FCK.Selection.SelectNode( oLink ) ;
  101. window.onload = function()
  102. {
  103. // Translate the dialog box texts.
  104. oEditor.FCKLanguageManager.TranslatePage(document) ;
  105. // Fill the Anchor Names and Ids combos.
  106. LoadAnchorNamesAndIds() ;
  107. // Load the selected link information (if any).
  108. LoadSelection() ;
  109. // Update the dialog box.
  110. SetLinkType( GetE('cmbLinkType').value ) ;
  111. // Show/Hide the "Browse Server" button.
  112. GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ;
  113. // Show the initial dialog content.
  114. GetE('divInfo').style.display = '' ;
  115. // Set the actual uploader URL.
  116. if ( FCKConfig.LinkUpload )
  117. GetE('frmUpload').action = FCKConfig.LinkUploadURL ;
  118. // Set the default target (from configuration).
  119. SetDefaultTarget() ;
  120. // Activate the "OK" button.
  121. dialog.SetOkButton( true ) ;
  122. // Select the first field.
  123. switch( GetE('cmbLinkType').value )
  124. {
  125. case 'url' :
  126. SelectField( 'txtUrl' ) ;
  127. break ;
  128. case 'email' :
  129. SelectField( 'txtEMailAddress' ) ;
  130. break ;
  131. case 'anchor' :
  132. if ( GetE('divSelAnchor').style.display != 'none' )
  133. SelectField( 'cmbAnchorName' ) ;
  134. else
  135. SelectField( 'cmbLinkType' ) ;
  136. }
  137. }
  138. var bHasAnchors ;
  139. function LoadAnchorNamesAndIds()
  140. {
  141. // Since version 2.0, the anchors are replaced in the DOM by IMGs so the user see the icon
  142. // to edit them. So, we must look for that images now.
  143. var aAnchors = new Array() ;
  144. var i ;
  145. var oImages = oEditor.FCK.EditorDocument.getElementsByTagName( 'IMG' ) ;
  146. for( i = 0 ; i < oImages.length ; i++ )
  147. {
  148. if ( oImages[i].getAttribute('_fckanchor') )
  149. aAnchors[ aAnchors.length ] = oEditor.FCK.GetRealElement( oImages[i] ) ;
  150. }
  151. // Add also real anchors
  152. var oLinks = oEditor.FCK.EditorDocument.getElementsByTagName( 'A' ) ;
  153. for( i = 0 ; i < oLinks.length ; i++ )
  154. {
  155. if ( oLinks[i].name && ( oLinks[i].name.length > 0 ) )
  156. aAnchors[ aAnchors.length ] = oLinks[i] ;
  157. }
  158. var aIds = FCKTools.GetAllChildrenIds( oEditor.FCK.EditorDocument.body ) ;
  159. bHasAnchors = ( aAnchors.length > 0 || aIds.length > 0 ) ;
  160. for ( i = 0 ; i < aAnchors.length ; i++ )
  161. {
  162. var sName = aAnchors[i].name ;
  163. if ( sName && sName.length > 0 )
  164. FCKTools.AddSelectOption( GetE('cmbAnchorName'), sName, sName ) ;
  165. }
  166. for ( i = 0 ; i < aIds.length ; i++ )
  167. {
  168. FCKTools.AddSelectOption( GetE('cmbAnchorId'), aIds[i], aIds[i] ) ;
  169. }
  170. ShowE( 'divSelAnchor' , bHasAnchors ) ;
  171. ShowE( 'divNoAnchor' , !bHasAnchors ) ;
  172. }
  173. function LoadSelection()
  174. {
  175. if ( !oLink ) return ;
  176. var sType = 'url' ;
  177. // Get the actual Link href.
  178. var sHRef = oLink.getAttribute( '_fcksavedurl' ) ;
  179. if ( sHRef == null )
  180. sHRef = oLink.getAttribute( 'href' , 2 ) || '' ;
  181. // Look for a popup javascript link.
  182. var oPopupMatch = oRegex.PopupUri.exec( sHRef ) ;
  183. if( oPopupMatch )
  184. {
  185. GetE('cmbTarget').value = 'popup' ;
  186. sHRef = oPopupMatch[1] ;
  187. FillPopupFields( oPopupMatch[2], oPopupMatch[3] ) ;
  188. SetTarget( 'popup' ) ;
  189. }
  190. // Accessible popups, the popup data is in the onclick attribute
  191. if ( !oPopupMatch )
  192. {
  193. var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
  194. if ( onclick )
  195. {
  196. // Decode the protected string
  197. onclick = decodeURIComponent( onclick ) ;
  198. oPopupMatch = oRegex.OnClickPopup.exec( onclick ) ;
  199. if( oPopupMatch )
  200. {
  201. GetE( 'cmbTarget' ).value = 'popup' ;
  202. FillPopupFields( oPopupMatch[1], oPopupMatch[2] ) ;
  203. SetTarget( 'popup' ) ;
  204. }
  205. }
  206. }
  207. // Search for the protocol.
  208. var sProtocol = oRegex.UriProtocol.exec( sHRef ) ;
  209. if ( sProtocol )
  210. {
  211. sProtocol = sProtocol[0].toLowerCase() ;
  212. GetE('cmbLinkProtocol').value = sProtocol ;
  213. // Remove the protocol and get the remaining URL.
  214. var sUrl = sHRef.replace( oRegex.UriProtocol, '' ) ;
  215. if ( sProtocol == 'mailto:' ) // It is an e-mail link.
  216. {
  217. sType = 'email' ;
  218. var oEMailInfo = oParser.ParseEMailUrl( sUrl ) ;
  219. GetE('txtEMailAddress').value = oEMailInfo.Address ;
  220. GetE('txtEMailSubject').value = oEMailInfo.Subject ;
  221. GetE('txtEMailBody').value = oEMailInfo.Body ;
  222. }
  223. else // It is a normal link.
  224. {
  225. sType = 'url' ;
  226. GetE('txtUrl').value = sUrl ;
  227. }
  228. }
  229. else if ( sHRef.substr(0,1) == '#' && sHRef.length > 1 ) // It is an anchor link.
  230. {
  231. sType = 'anchor' ;
  232. GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
  233. }
  234. else // It is another type of link.
  235. {
  236. sType = 'url' ;
  237. GetE('cmbLinkProtocol').value = '' ;
  238. GetE('txtUrl').value = sHRef ;
  239. }
  240. if ( !oPopupMatch )
  241. {
  242. // Get the target.
  243. var sTarget = oLink.target ;
  244. if ( sTarget && sTarget.length > 0 )
  245. {
  246. if ( oRegex.ReserveTarget.test( sTarget ) )
  247. {
  248. sTarget = sTarget.toLowerCase() ;
  249. GetE('cmbTarget').value = sTarget ;
  250. }
  251. else
  252. GetE('cmbTarget').value = 'frame' ;
  253. GetE('txtTargetFrame').value = sTarget ;
  254. }
  255. }
  256. // Get Advances Attributes
  257. GetE('txtAttId').value = oLink.id ;
  258. GetE('txtAttName').value = oLink.name ;
  259. GetE('cmbAttLangDir').value = oLink.dir ;
  260. GetE('txtAttLangCode').value = oLink.lang ;
  261. GetE('txtAttAccessKey').value = oLink.accessKey ;
  262. GetE('txtAttTabIndex').value = oLink.tabIndex <= 0 ? '' : oLink.tabIndex ;
  263. GetE('txtAttTitle').value = oLink.title ;
  264. GetE('txtAttContentType').value = oLink.type ;
  265. GetE('txtAttCharSet').value = oLink.charset ;
  266. var sClass ;
  267. if ( oEditor.FCKBrowserInfo.IsIE )
  268. {
  269. sClass = oLink.getAttribute('className',2) || '' ;
  270. // Clean up temporary classes for internal use:
  271. sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ;
  272. GetE('txtAttStyle').value = oLink.style.cssText ;
  273. }
  274. else
  275. {
  276. sClass = oLink.getAttribute('class',2) || '' ;
  277. GetE('txtAttStyle').value = oLink.getAttribute('style',2) || '' ;
  278. }
  279. GetE('txtAttClasses').value = sClass ;
  280. // Update the Link type combo.
  281. GetE('cmbLinkType').value = sType ;
  282. }
  283. //#### Link type selection.
  284. function SetLinkType( linkType )
  285. {
  286. ShowE('divLinkTypeUrl' , (linkType == 'url') ) ;
  287. ShowE('divLinkTypeAnchor' , (linkType == 'anchor') ) ;
  288. ShowE('divLinkTypeEMail' , (linkType == 'email') ) ;
  289. if ( !FCKConfig.LinkDlgHideTarget )
  290. dialog.SetTabVisibility( 'Target' , (linkType == 'url') ) ;
  291. if ( FCKConfig.LinkUpload )
  292. dialog.SetTabVisibility( 'Upload' , (linkType == 'url') ) ;
  293. if ( !FCKConfig.LinkDlgHideAdvanced )
  294. dialog.SetTabVisibility( 'Advanced' , (linkType != 'anchor' || bHasAnchors) ) ;
  295. if ( linkType == 'email' )
  296. dialog.SetAutoSize( true ) ;
  297. }
  298. //#### Target type selection.
  299. function SetTarget( targetType )
  300. {
  301. GetE('tdTargetFrame').style.display = ( targetType == 'popup' ? 'none' : '' ) ;
  302. GetE('tdPopupName').style.display =
  303. GetE('tablePopupFeatures').style.display = ( targetType == 'popup' ? '' : 'none' ) ;
  304. switch ( targetType )
  305. {
  306. case "_blank" :
  307. case "_self" :
  308. case "_parent" :
  309. case "_top" :
  310. GetE('txtTargetFrame').value = targetType ;
  311. break ;
  312. case "" :
  313. GetE('txtTargetFrame').value = '' ;
  314. break ;
  315. }
  316. if ( targetType == 'popup' )
  317. dialog.SetAutoSize( true ) ;
  318. }
  319. //#### Called while the user types the URL.
  320. function OnUrlChange()
  321. {
  322. var sUrl = GetE('txtUrl').value ;
  323. var sProtocol = oRegex.UrlOnChangeProtocol.exec( sUrl ) ;
  324. if ( sProtocol )
  325. {
  326. sUrl = sUrl.substr( sProtocol[0].length ) ;
  327. GetE('txtUrl').value = sUrl ;
  328. GetE('cmbLinkProtocol').value = sProtocol[0].toLowerCase() ;
  329. }
  330. else if ( oRegex.UrlOnChangeTestOther.test( sUrl ) )
  331. {
  332. GetE('cmbLinkProtocol').value = '' ;
  333. }
  334. }
  335. //#### Called while the user types the target name.
  336. function OnTargetNameChange()
  337. {
  338. var sFrame = GetE('txtTargetFrame').value ;
  339. if ( sFrame.length == 0 )
  340. GetE('cmbTarget').value = '' ;
  341. else if ( oRegex.ReserveTarget.test( sFrame ) )
  342. GetE('cmbTarget').value = sFrame.toLowerCase() ;
  343. else
  344. GetE('cmbTarget').value = 'frame' ;
  345. }
  346. // Accessible popups
  347. function BuildOnClickPopup()
  348. {
  349. var sWindowName = "'" + GetE('txtPopupName').value.replace(/W/gi, "") + "'" ;
  350. var sFeatures = '' ;
  351. var aChkFeatures = document.getElementsByName( 'chkFeature' ) ;
  352. for ( var i = 0 ; i < aChkFeatures.length ; i++ )
  353. {
  354. if ( i > 0 ) sFeatures += ',' ;
  355. sFeatures += aChkFeatures[i].value + '=' + ( aChkFeatures[i].checked ? 'yes' : 'no' ) ;
  356. }
  357. if ( GetE('txtPopupWidth').value.length > 0 ) sFeatures += ',width=' + GetE('txtPopupWidth').value ;
  358. if ( GetE('txtPopupHeight').value.length > 0 ) sFeatures += ',height=' + GetE('txtPopupHeight').value ;
  359. if ( GetE('txtPopupLeft').value.length > 0 ) sFeatures += ',left=' + GetE('txtPopupLeft').value ;
  360. if ( GetE('txtPopupTop').value.length > 0 ) sFeatures += ',top=' + GetE('txtPopupTop').value ;
  361. if ( sFeatures != '' )
  362. sFeatures = sFeatures + ",status" ;
  363. return ( "window.open(this.href," + sWindowName + ",'" + sFeatures + "'); return false" ) ;
  364. }
  365. //#### Fills all Popup related fields.
  366. function FillPopupFields( windowName, features )
  367. {
  368. if ( windowName )
  369. GetE('txtPopupName').value = windowName ;
  370. var oFeatures = new Object() ;
  371. var oFeaturesMatch ;
  372. while( ( oFeaturesMatch = oRegex.PopupFeatures.exec( features ) ) != null )
  373. {
  374. var sValue = oFeaturesMatch[2] ;
  375. if ( sValue == ( 'yes' || '1' ) )
  376. oFeatures[ oFeaturesMatch[1] ] = true ;
  377. else if ( ! isNaN( sValue ) && sValue != 0 )
  378. oFeatures[ oFeaturesMatch[1] ] = sValue ;
  379. }
  380. // Update all features check boxes.
  381. var aChkFeatures = document.getElementsByName('chkFeature') ;
  382. for ( var i = 0 ; i < aChkFeatures.length ; i++ )
  383. {
  384. if ( oFeatures[ aChkFeatures[i].value ] )
  385. aChkFeatures[i].checked = true ;
  386. }
  387. // Update position and size text boxes.
  388. if ( oFeatures['width'] ) GetE('txtPopupWidth').value = oFeatures['width'] ;
  389. if ( oFeatures['height'] ) GetE('txtPopupHeight').value = oFeatures['height'] ;
  390. if ( oFeatures['left'] ) GetE('txtPopupLeft').value = oFeatures['left'] ;
  391. if ( oFeatures['top'] ) GetE('txtPopupTop').value = oFeatures['top'] ;
  392. }
  393. //#### The OK button was hit.
  394. function Ok()
  395. {
  396. var sUri, sInnerHtml ;
  397. oEditor.FCKUndo.SaveUndoStep() ;
  398. switch ( GetE('cmbLinkType').value )
  399. {
  400. case 'url' :
  401. sUri = GetE('txtUrl').value ;
  402. if ( sUri.length == 0 )
  403. {
  404. alert( FCKLang.DlnLnkMsgNoUrl ) ;
  405. return false ;
  406. }
  407. sUri = GetE('cmbLinkProtocol').value + sUri ;
  408. break ;
  409. case 'email' :
  410. sUri = GetE('txtEMailAddress').value ;
  411. if ( sUri.length == 0 )
  412. {
  413. alert( FCKLang.DlnLnkMsgNoEMail ) ;
  414. return false ;
  415. }
  416. sUri = oParser.CreateEMailUri(
  417. sUri,
  418. GetE('txtEMailSubject').value,
  419. GetE('txtEMailBody').value ) ;
  420. break ;
  421. case 'anchor' :
  422. var sAnchor = GetE('cmbAnchorName').value ;
  423. if ( sAnchor.length == 0 ) sAnchor = GetE('cmbAnchorId').value ;
  424. if ( sAnchor.length == 0 )
  425. {
  426. alert( FCKLang.DlnLnkMsgNoAnchor ) ;
  427. return false ;
  428. }
  429. sUri = '#' + sAnchor ;
  430. break ;
  431. }
  432. // If no link is selected, create a new one (it may result in more than one link creation - #220).
  433. var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri, true ) ;
  434. // If no selection, no links are created, so use the uri as the link text (by dom, 2006-05-26)
  435. var aHasSelection = ( aLinks.length > 0 ) ;
  436. if ( !aHasSelection )
  437. {
  438. sInnerHtml = sUri;
  439. // Built a better text for empty links.
  440. switch ( GetE('cmbLinkType').value )
  441. {
  442. // anchor: use old behavior --> return true
  443. case 'anchor':
  444. sInnerHtml = sInnerHtml.replace( /^#/, '' ) ;
  445. break ;
  446. // url: try to get path
  447. case 'url':
  448. var oLinkPathRegEx = new RegExp("//?([^?"']+)([?].*)?$") ;
  449. var asLinkPath = oLinkPathRegEx.exec( sUri ) ;
  450. if (asLinkPath != null)
  451. sInnerHtml = asLinkPath[1];  // use matched path
  452. break ;
  453. // mailto: try to get email address
  454. case 'email':
  455. sInnerHtml = GetE('txtEMailAddress').value ;
  456. break ;
  457. }
  458. // Create a new (empty) anchor.
  459. aLinks = [ oEditor.FCK.InsertElement( 'a' ) ] ;
  460. }
  461. for ( var i = 0 ; i < aLinks.length ; i++ )
  462. {
  463. oLink = aLinks[i] ;
  464. if ( aHasSelection )
  465. sInnerHtml = oLink.innerHTML ; // Save the innerHTML (IE changes it if it is like an URL).
  466. oLink.href = sUri ;
  467. SetAttribute( oLink, '_fcksavedurl', sUri ) ;
  468. var onclick;
  469. // Accessible popups
  470. if( GetE('cmbTarget').value == 'popup' )
  471. {
  472. onclick = BuildOnClickPopup() ;
  473. // Encode the attribute
  474. onclick = encodeURIComponent( " onclick="" + onclick + """ )  ;
  475. SetAttribute( oLink, 'onclick_fckprotectedatt', onclick ) ;
  476. }
  477. else
  478. {
  479. // Check if the previous onclick was for a popup:
  480. // In that case remove the onclick handler.
  481. onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
  482. if ( onclick )
  483. {
  484. // Decode the protected string
  485. onclick = decodeURIComponent( onclick ) ;
  486. if( oRegex.OnClickPopup.test( onclick ) )
  487. SetAttribute( oLink, 'onclick_fckprotectedatt', '' ) ;
  488. }
  489. }
  490. oLink.innerHTML = sInnerHtml ; // Set (or restore) the innerHTML
  491. // Target
  492. if( GetE('cmbTarget').value != 'popup' )
  493. SetAttribute( oLink, 'target', GetE('txtTargetFrame').value ) ;
  494. else
  495. SetAttribute( oLink, 'target', null ) ;
  496. // Let's set the "id" only for the first link to avoid duplication.
  497. if ( i == 0 )
  498. SetAttribute( oLink, 'id', GetE('txtAttId').value ) ;
  499. // Advances Attributes
  500. SetAttribute( oLink, 'name' , GetE('txtAttName').value ) ;
  501. SetAttribute( oLink, 'dir' , GetE('cmbAttLangDir').value ) ;
  502. SetAttribute( oLink, 'lang' , GetE('txtAttLangCode').value ) ;
  503. SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ;
  504. SetAttribute( oLink, 'tabindex' , ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ;
  505. SetAttribute( oLink, 'title' , GetE('txtAttTitle').value ) ;
  506. SetAttribute( oLink, 'type' , GetE('txtAttContentType').value ) ;
  507. SetAttribute( oLink, 'charset' , GetE('txtAttCharSet').value ) ;
  508. if ( oEditor.FCKBrowserInfo.IsIE )
  509. {
  510. var sClass = GetE('txtAttClasses').value ;
  511. // If it's also an anchor add an internal class
  512. if ( GetE('txtAttName').value.length != 0 )
  513. sClass += ' FCK__AnchorC' ;
  514. SetAttribute( oLink, 'className', sClass ) ;
  515. oLink.style.cssText = GetE('txtAttStyle').value ;
  516. }
  517. else
  518. {
  519. SetAttribute( oLink, 'class', GetE('txtAttClasses').value ) ;
  520. SetAttribute( oLink, 'style', GetE('txtAttStyle').value ) ;
  521. }
  522. }
  523. // Select the (first) link.
  524. oEditor.FCKSelection.SelectNode( aLinks[0] );
  525. return true ;
  526. }
  527. function BrowseServer()
  528. {
  529. OpenFileBrowser( FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ;
  530. }
  531. function SetUrl( url )
  532. {
  533. GetE('txtUrl').value = url ;
  534. OnUrlChange() ;
  535. dialog.SetSelectedTab( 'Info' ) ;
  536. }
  537. function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
  538. {
  539. // Remove animation
  540. window.parent.Throbber.Hide() ;
  541. GetE( 'divUpload' ).style.display  = '' ;
  542. switch ( errorNumber )
  543. {
  544. case 0 : // No errors
  545. alert( 'Your file has been successfully uploaded' ) ;
  546. break ;
  547. case 1 : // Custom error
  548. alert( customMsg ) ;
  549. return ;
  550. case 101 : // Custom warning
  551. alert( customMsg ) ;
  552. break ;
  553. case 201 :
  554. alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ;
  555. break ;
  556. case 202 :
  557. alert( 'Invalid file type' ) ;
  558. return ;
  559. case 203 :
  560. alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ;
  561. return ;
  562. case 500 :
  563. alert( 'The connector is disabled' ) ;
  564. break ;
  565. default :
  566. alert( 'Error on file upload. Error number: ' + errorNumber ) ;
  567. return ;
  568. }
  569. SetUrl( fileUrl ) ;
  570. GetE('frmUpload').reset() ;
  571. }
  572. var oUploadAllowedExtRegex = new RegExp( FCKConfig.LinkUploadAllowedExtensions, 'i' ) ;
  573. var oUploadDeniedExtRegex = new RegExp( FCKConfig.LinkUploadDeniedExtensions, 'i' ) ;
  574. function CheckUpload()
  575. {
  576. var sFile = GetE('txtUploadFile').value ;
  577. if ( sFile.length == 0 )
  578. {
  579. alert( 'Please select a file to upload' ) ;
  580. return false ;
  581. }
  582. if ( ( FCKConfig.LinkUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) ||
  583. ( FCKConfig.LinkUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) )
  584. {
  585. OnUploadCompleted( 202 ) ;
  586. return false ;
  587. }
  588. // Show animation
  589. window.parent.Throbber.Show( 100 ) ;
  590. GetE( 'divUpload' ).style.display  = 'none' ;
  591. return true ;
  592. }
  593. function SetDefaultTarget()
  594. {
  595. var target = FCKConfig.DefaultLinkTarget || '' ;
  596. if ( oLink || target.length == 0 )
  597. return ;
  598. switch ( target )
  599. {
  600. case '_blank' :
  601. case '_self' :
  602. case '_parent' :
  603. case '_top' :
  604. GetE('cmbTarget').value = target ;
  605. break ;
  606. default :
  607. GetE('cmbTarget').value = 'frame' ;
  608. break ;
  609. }
  610. GetE('txtTargetFrame').value = target ;
  611. }