2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
6 CKEDITOR.dialog.add( 'link', function( editor )
\r
8 var plugin = CKEDITOR.plugins.link;
\r
9 // Handles the event when the "Target" selection box is changed.
\r
10 var targetChanged = function()
\r
12 var dialog = this.getDialog(),
\r
13 popupFeatures = dialog.getContentElement( 'target', 'popupFeatures' ),
\r
14 targetName = dialog.getContentElement( 'target', 'linkTargetName' ),
\r
15 value = this.getValue();
\r
17 if ( !popupFeatures || !targetName )
\r
20 popupFeatures = popupFeatures.getElement();
\r
21 popupFeatures.hide();
\r
22 targetName.setValue( '' );
\r
27 targetName.setLabel( editor.lang.link.targetFrameName );
\r
28 targetName.getElement().show();
\r
31 popupFeatures.show();
\r
32 targetName.setLabel( editor.lang.link.targetPopupName );
\r
33 targetName.getElement().show();
\r
36 targetName.setValue( value );
\r
37 targetName.getElement().hide();
\r
43 // Handles the event when the "Type" selection box is changed.
\r
44 var linkTypeChanged = function()
\r
46 var dialog = this.getDialog(),
\r
47 partIds = [ 'urlOptions', 'anchorOptions', 'emailOptions' ],
\r
48 typeValue = this.getValue(),
\r
49 uploadTab = dialog.definition.getContents( 'upload' ),
\r
50 uploadInitiallyHidden = uploadTab && uploadTab.hidden;
\r
52 if ( typeValue == 'url' )
\r
54 if ( editor.config.linkShowTargetTab )
\r
55 dialog.showPage( 'target' );
\r
56 if ( !uploadInitiallyHidden )
\r
57 dialog.showPage( 'upload' );
\r
61 dialog.hidePage( 'target' );
\r
62 if ( !uploadInitiallyHidden )
\r
63 dialog.hidePage( 'upload' );
\r
66 for ( var i = 0 ; i < partIds.length ; i++ )
\r
68 var element = dialog.getContentElement( 'info', partIds[i] );
\r
72 element = element.getElement().getParent().getParent();
\r
73 if ( partIds[i] == typeValue + 'Options' )
\r
82 // Loads the parameters in a selected link to the link dialog fields.
\r
83 var javascriptProtocolRegex = /^javascript:/,
\r
84 emailRegex = /^mailto:([^?]+)(?:\?(.+))?$/,
\r
85 emailSubjectRegex = /subject=([^;?:@&=$,\/]*)/,
\r
86 emailBodyRegex = /body=([^;?:@&=$,\/]*)/,
\r
87 anchorRegex = /^#(.*)$/,
\r
88 urlRegex = /^((?:http|https|ftp|news):\/\/)?(.*)$/,
\r
89 selectableTargets = /^(_(?:self|top|parent|blank))$/,
\r
90 encodedEmailLinkRegex = /^javascript:void\(location\.href='mailto:'\+String\.fromCharCode\(([^)]+)\)(?:\+'(.*)')?\)$/,
\r
91 functionCallProtectedEmailLinkRegex = /^javascript:([^(]+)\(([^)]+)\)$/;
\r
94 /\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/;
\r
95 var popupFeaturesRegex = /(?:^|,)([^=]+)=(\d+|yes|no)/gi;
\r
97 var parseLink = function( editor, element )
\r
99 var href = ( element && ( element.data( 'cke-saved-href' ) || element.getAttribute( 'href' ) ) ) || '',
\r
106 if ( ( javascriptMatch = href.match( javascriptProtocolRegex ) ) )
\r
108 if ( emailProtection == 'encode' )
\r
110 href = href.replace( encodedEmailLinkRegex,
\r
111 function ( match, protectedAddress, rest )
\r
114 String.fromCharCode.apply( String, protectedAddress.split( ',' ) ) +
\r
115 ( rest && unescapeSingleQuote( rest ) );
\r
118 // Protected email link as function call.
\r
119 else if ( emailProtection )
\r
121 href.replace( functionCallProtectedEmailLinkRegex, function( match, funcName, funcArgs )
\r
123 if ( funcName == compiledProtectionFunction.name )
\r
125 retval.type = 'email';
\r
126 var email = retval.email = {};
\r
128 var paramRegex = /[^,\s]+/g,
\r
129 paramQuoteRegex = /(^')|('$)/g,
\r
130 paramsMatch = funcArgs.match( paramRegex ),
\r
131 paramsMatchLength = paramsMatch.length,
\r
135 for ( var i = 0; i < paramsMatchLength; i++ )
\r
137 paramVal = decodeURIComponent( unescapeSingleQuote( paramsMatch[ i ].replace( paramQuoteRegex, '' ) ) );
\r
138 paramName = compiledProtectionFunction.params[ i ].toLowerCase();
\r
139 email[ paramName ] = paramVal;
\r
141 email.address = [ email.name, email.domain ].join( '@' );
\r
147 if ( !retval.type )
\r
149 if ( ( anchorMatch = href.match( anchorRegex ) ) )
\r
151 retval.type = 'anchor';
\r
152 retval.anchor = {};
\r
153 retval.anchor.name = retval.anchor.id = anchorMatch[1];
\r
155 // Protected email link as encoded string.
\r
156 else if ( ( emailMatch = href.match( emailRegex ) ) )
\r
158 var subjectMatch = href.match( emailSubjectRegex ),
\r
159 bodyMatch = href.match( emailBodyRegex );
\r
161 retval.type = 'email';
\r
162 var email = ( retval.email = {} );
\r
163 email.address = emailMatch[ 1 ];
\r
164 subjectMatch && ( email.subject = decodeURIComponent( subjectMatch[ 1 ] ) );
\r
165 bodyMatch && ( email.body = decodeURIComponent( bodyMatch[ 1 ] ) );
\r
167 // urlRegex matches empty strings, so need to check for href as well.
\r
168 else if ( href && ( urlMatch = href.match( urlRegex ) ) )
\r
170 retval.type = 'url';
\r
172 retval.url.protocol = urlMatch[1];
\r
173 retval.url.url = urlMatch[2];
\r
176 retval.type = 'url';
\r
179 // Load target and popup settings.
\r
182 var target = element.getAttribute( 'target' );
\r
183 retval.target = {};
\r
186 // IE BUG: target attribute is an empty string instead of null in IE if it's not set.
\r
189 var onclick = element.data( 'cke-pa-onclick' ) || element.getAttribute( 'onclick' ),
\r
190 onclickMatch = onclick && onclick.match( popupRegex );
\r
191 if ( onclickMatch )
\r
193 retval.target.type = 'popup';
\r
194 retval.target.name = onclickMatch[1];
\r
197 while ( ( featureMatch = popupFeaturesRegex.exec( onclickMatch[2] ) ) )
\r
199 // Some values should remain numbers (#7300)
\r
200 if ( ( featureMatch[2] == 'yes' || featureMatch[2] == '1' ) && !( featureMatch[1] in { height:1, width:1, top:1, left:1 } ) )
\r
201 retval.target[ featureMatch[1] ] = true;
\r
202 else if ( isFinite( featureMatch[2] ) )
\r
203 retval.target[ featureMatch[1] ] = featureMatch[2];
\r
209 var targetMatch = target.match( selectableTargets );
\r
211 retval.target.type = retval.target.name = target;
\r
214 retval.target.type = 'frame';
\r
215 retval.target.name = target;
\r
220 var advAttr = function( inputName, attrName )
\r
222 var value = element.getAttribute( attrName );
\r
223 if ( value !== null )
\r
224 retval.adv[ inputName ] = value || '';
\r
226 advAttr( 'advId', 'id' );
\r
227 advAttr( 'advLangDir', 'dir' );
\r
228 advAttr( 'advAccessKey', 'accessKey' );
\r
230 retval.adv.advName =
\r
231 element.data( 'cke-saved-name' )
\r
232 || element.getAttribute( 'name' )
\r
234 advAttr( 'advLangCode', 'lang' );
\r
235 advAttr( 'advTabIndex', 'tabindex' );
\r
236 advAttr( 'advTitle', 'title' );
\r
237 advAttr( 'advContentType', 'type' );
\r
238 advAttr( 'advCSSClasses', 'class' );
\r
239 advAttr( 'advCharset', 'charset' );
\r
240 advAttr( 'advStyles', 'style' );
\r
241 advAttr( 'advRel', 'rel' );
\r
244 // Find out whether we have any anchors in the editor.
\r
245 // Get all IMG elements in CK document.
\r
246 var elements = editor.document.getElementsByTag( 'img' ),
\r
247 realAnchors = new CKEDITOR.dom.nodeList( editor.document.$.anchors ),
\r
248 anchors = retval.anchors = [];
\r
250 for ( var i = 0; i < elements.count() ; i++ )
\r
252 var item = elements.getItem( i );
\r
253 if ( item.data( 'cke-realelement' ) && item.data( 'cke-real-element-type' ) == 'anchor' )
\r
254 anchors.push( editor.restoreRealElement( item ) );
\r
257 for ( i = 0 ; i < realAnchors.count() ; i++ )
\r
258 anchors.push( realAnchors.getItem( i ) );
\r
260 for ( i = 0 ; i < anchors.length ; i++ )
\r
262 item = anchors[ i ];
\r
263 anchors[ i ] = { name : item.getAttribute( 'name' ), id : item.getAttribute( 'id' ) };
\r
266 // Record down the selected element in the dialog.
\r
267 this._.selectedElement = element;
\r
272 var setupParams = function( page, data )
\r
275 this.setValue( data[page][this.id] || '' );
\r
278 var setupPopupParams = function( data )
\r
280 return setupParams.call( this, 'target', data );
\r
283 var setupAdvParams = function( data )
\r
285 return setupParams.call( this, 'adv', data );
\r
288 var commitParams = function( page, data )
\r
293 data[page][this.id] = this.getValue() || '';
\r
296 var commitPopupParams = function( data )
\r
298 return commitParams.call( this, 'target', data );
\r
301 var commitAdvParams = function( data )
\r
303 return commitParams.call( this, 'adv', data );
\r
306 function unescapeSingleQuote( str )
\r
308 return str.replace( /\\'/g, '\'' );
\r
311 function escapeSingleQuote( str )
\r
313 return str.replace( /'/g, '\\$&' );
\r
316 var emailProtection = editor.config.emailProtection || '';
\r
318 // Compile the protection function pattern.
\r
319 if ( emailProtection && emailProtection != 'encode' )
\r
321 var compiledProtectionFunction = {};
\r
323 emailProtection.replace( /^([^(]+)\(([^)]+)\)$/, function( match, funcName, params )
\r
325 compiledProtectionFunction.name = funcName;
\r
326 compiledProtectionFunction.params = [];
\r
327 params.replace( /[^,\s]+/g, function( param )
\r
329 compiledProtectionFunction.params.push( param );
\r
334 function protectEmailLinkAsFunction( email )
\r
337 name = compiledProtectionFunction.name,
\r
338 params = compiledProtectionFunction.params,
\r
342 retval = [ name, '(' ];
\r
343 for ( var i = 0; i < params.length; i++ )
\r
345 paramName = params[ i ].toLowerCase();
\r
346 paramValue = email[ paramName ];
\r
348 i > 0 && retval.push( ',' );
\r
351 escapeSingleQuote( encodeURIComponent( email[ paramName ] ) )
\r
355 retval.push( ')' );
\r
356 return retval.join( '' );
\r
359 function protectEmailAddressAsEncodedString( address )
\r
362 length = address.length,
\r
364 for ( var i = 0; i < length; i++ )
\r
366 charCode = address.charCodeAt( i );
\r
367 encodedChars.push( charCode );
\r
369 return 'String.fromCharCode(' + encodedChars.join( ',' ) + ')';
\r
372 var commonLang = editor.lang.common,
\r
373 linkLang = editor.lang.link;
\r
376 title : linkLang.title,
\r
382 label : linkLang.info,
\r
383 title : linkLang.info,
\r
389 label : linkLang.type,
\r
393 [ linkLang.toUrl, 'url' ],
\r
394 [ linkLang.toAnchor, 'anchor' ],
\r
395 [ linkLang.toEmail, 'email' ]
\r
397 onChange : linkTypeChanged,
\r
398 setup : function( data )
\r
401 this.setValue( data.type );
\r
403 commit : function( data )
\r
405 data.type = this.getValue();
\r
415 widths : [ '25%', '75%' ],
\r
421 label : commonLang.protocol,
\r
422 'default' : 'http://',
\r
425 // Force 'ltr' for protocol names in BIDI. (#5433)
\r
426 [ 'http://\u200E', 'http://' ],
\r
427 [ 'https://\u200E', 'https://' ],
\r
428 [ 'ftp://\u200E', 'ftp://' ],
\r
429 [ 'news://\u200E', 'news://' ],
\r
430 [ linkLang.other , '' ]
\r
432 setup : function( data )
\r
435 this.setValue( data.url.protocol || '' );
\r
437 commit : function( data )
\r
442 data.url.protocol = this.getValue();
\r
448 label : commonLang.url,
\r
450 onLoad : function ()
\r
452 this.allowOnChange = true;
\r
454 onKeyUp : function()
\r
456 this.allowOnChange = false;
\r
457 var protocolCmb = this.getDialog().getContentElement( 'info', 'protocol' ),
\r
458 url = this.getValue(),
\r
459 urlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/i,
\r
460 urlOnChangeTestOther = /^((javascript:)|[#\/\.\?])/i;
\r
462 var protocol = urlOnChangeProtocol.exec( url );
\r
465 this.setValue( url.substr( protocol[ 0 ].length ) );
\r
466 protocolCmb.setValue( protocol[ 0 ].toLowerCase() );
\r
468 else if ( urlOnChangeTestOther.test( url ) )
\r
469 protocolCmb.setValue( '' );
\r
471 this.allowOnChange = true;
\r
473 onChange : function()
\r
475 if ( this.allowOnChange ) // Dont't call on dialog load.
\r
478 validate : function()
\r
480 var dialog = this.getDialog();
\r
482 if ( dialog.getContentElement( 'info', 'linkType' ) &&
\r
483 dialog.getValueOf( 'info', 'linkType' ) != 'url' )
\r
486 if ( this.getDialog().fakeObj ) // Edit Anchor.
\r
489 var func = CKEDITOR.dialog.validate.notEmpty( linkLang.noUrl );
\r
490 return func.apply( this );
\r
492 setup : function( data )
\r
494 this.allowOnChange = false;
\r
496 this.setValue( data.url.url );
\r
497 this.allowOnChange = true;
\r
500 commit : function( data )
\r
502 // IE will not trigger the onChange event if the mouse has been used
\r
503 // to carry all the operations #4724
\r
509 data.url.url = this.getValue();
\r
510 this.allowOnChange = false;
\r
514 setup : function( data )
\r
516 if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
\r
517 this.getElement().show();
\r
524 filebrowser : 'info:url',
\r
525 label : commonLang.browseServer
\r
531 id : 'anchorOptions',
\r
539 id : 'selectAnchorText',
\r
540 label : linkLang.selectAnchor,
\r
541 setup : function( data )
\r
543 if ( data.anchors.length > 0 )
\r
544 this.getElement().show();
\r
546 this.getElement().hide();
\r
552 id : 'selectAnchor',
\r
559 label : linkLang.anchorName,
\r
560 style : 'width: 100%;',
\r
565 setup : function( data )
\r
569 for ( var i = 0 ; i < data.anchors.length ; i++ )
\r
571 if ( data.anchors[i].name )
\r
572 this.add( data.anchors[i].name );
\r
576 this.setValue( data.anchor.name );
\r
578 var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
\r
579 if ( linkType && linkType.getValue() == 'email' )
\r
582 commit : function( data )
\r
584 if ( !data.anchor )
\r
587 data.anchor.name = this.getValue();
\r
594 label : linkLang.anchorId,
\r
595 style : 'width: 100%;',
\r
600 setup : function( data )
\r
604 for ( var i = 0 ; i < data.anchors.length ; i++ )
\r
606 if ( data.anchors[i].id )
\r
607 this.add( data.anchors[i].id );
\r
611 this.setValue( data.anchor.id );
\r
613 commit : function( data )
\r
615 if ( !data.anchor )
\r
618 data.anchor.id = this.getValue();
\r
622 setup : function( data )
\r
624 if ( data.anchors.length > 0 )
\r
625 this.getElement().show();
\r
627 this.getElement().hide();
\r
635 style : 'text-align: center;',
\r
636 html : '<div role="label" tabIndex="-1">' + CKEDITOR.tools.htmlEncode( linkLang.noAnchors ) + '</div>',
\r
637 // Focus the first element defined in above html.
\r
639 setup : function( data )
\r
641 if ( data.anchors.length < 1 )
\r
642 this.getElement().show();
\r
644 this.getElement().hide();
\r
648 setup : function( data )
\r
650 if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
\r
651 this.getElement().hide();
\r
656 id : 'emailOptions',
\r
662 id : 'emailAddress',
\r
663 label : linkLang.emailAddress,
\r
665 validate : function()
\r
667 var dialog = this.getDialog();
\r
669 if ( !dialog.getContentElement( 'info', 'linkType' ) ||
\r
670 dialog.getValueOf( 'info', 'linkType' ) != 'email' )
\r
673 var func = CKEDITOR.dialog.validate.notEmpty( linkLang.noEmail );
\r
674 return func.apply( this );
\r
676 setup : function( data )
\r
679 this.setValue( data.email.address );
\r
681 var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
\r
682 if ( linkType && linkType.getValue() == 'email' )
\r
685 commit : function( data )
\r
690 data.email.address = this.getValue();
\r
695 id : 'emailSubject',
\r
696 label : linkLang.emailSubject,
\r
697 setup : function( data )
\r
700 this.setValue( data.email.subject );
\r
702 commit : function( data )
\r
707 data.email.subject = this.getValue();
\r
713 label : linkLang.emailBody,
\r
716 setup : function( data )
\r
719 this.setValue( data.email.body );
\r
721 commit : function( data )
\r
726 data.email.body = this.getValue();
\r
730 setup : function( data )
\r
732 if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
\r
733 this.getElement().hide();
\r
740 label : linkLang.target,
\r
741 title : linkLang.target,
\r
746 widths : [ '50%', '50%' ],
\r
751 id : 'linkTargetType',
\r
752 label : commonLang.target,
\r
753 'default' : 'notSet',
\r
754 style : 'width : 100%;',
\r
757 [ commonLang.notSet, 'notSet' ],
\r
758 [ linkLang.targetFrame, 'frame' ],
\r
759 [ linkLang.targetPopup, 'popup' ],
\r
760 [ commonLang.targetNew, '_blank' ],
\r
761 [ commonLang.targetTop, '_top' ],
\r
762 [ commonLang.targetSelf, '_self' ],
\r
763 [ commonLang.targetParent, '_parent' ]
\r
765 onChange : targetChanged,
\r
766 setup : function( data )
\r
769 this.setValue( data.target.type || 'notSet' );
\r
770 targetChanged.call( this );
\r
772 commit : function( data )
\r
774 if ( !data.target )
\r
777 data.target.type = this.getValue();
\r
782 id : 'linkTargetName',
\r
783 label : linkLang.targetFrameName,
\r
785 setup : function( data )
\r
788 this.setValue( data.target.name );
\r
790 commit : function( data )
\r
792 if ( !data.target )
\r
795 data.target.name = this.getValue().replace(/\W/gi, '');
\r
805 id : 'popupFeatures',
\r
810 label : linkLang.popupFeatures,
\r
820 label : linkLang.popupResizable,
\r
821 setup : setupPopupParams,
\r
822 commit : commitPopupParams
\r
827 label : linkLang.popupStatusBar,
\r
828 setup : setupPopupParams,
\r
829 commit : commitPopupParams
\r
841 label : linkLang.popupLocationBar,
\r
842 setup : setupPopupParams,
\r
843 commit : commitPopupParams
\r
849 label : linkLang.popupToolbar,
\r
850 setup : setupPopupParams,
\r
851 commit : commitPopupParams
\r
863 label : linkLang.popupMenuBar,
\r
864 setup : setupPopupParams,
\r
865 commit : commitPopupParams
\r
871 label : linkLang.popupFullScreen,
\r
872 setup : setupPopupParams,
\r
873 commit : commitPopupParams
\r
885 label : linkLang.popupScrollBars,
\r
886 setup : setupPopupParams,
\r
887 commit : commitPopupParams
\r
893 label : linkLang.popupDependent,
\r
894 setup : setupPopupParams,
\r
895 commit : commitPopupParams
\r
906 widths : [ '50%', '50%' ],
\r
907 labelLayout : 'horizontal',
\r
908 label : commonLang.width,
\r
910 setup : setupPopupParams,
\r
911 commit : commitPopupParams
\r
916 labelLayout : 'horizontal',
\r
917 widths : [ '50%', '50%' ],
\r
918 label : linkLang.popupLeft,
\r
920 setup : setupPopupParams,
\r
921 commit : commitPopupParams
\r
932 labelLayout : 'horizontal',
\r
933 widths : [ '50%', '50%' ],
\r
934 label : commonLang.height,
\r
936 setup : setupPopupParams,
\r
937 commit : commitPopupParams
\r
942 labelLayout : 'horizontal',
\r
943 label : linkLang.popupTop,
\r
944 widths : [ '50%', '50%' ],
\r
946 setup : setupPopupParams,
\r
947 commit : commitPopupParams
\r
960 label : linkLang.upload,
\r
961 title : linkLang.upload,
\r
963 filebrowser : 'uploadButton',
\r
969 label : commonLang.upload,
\r
970 style: 'height:40px',
\r
974 type : 'fileButton',
\r
975 id : 'uploadButton',
\r
976 label : commonLang.uploadSubmit,
\r
977 filebrowser : 'info:url',
\r
978 'for' : [ 'upload', 'upload' ]
\r
984 label : linkLang.advanced,
\r
985 title : linkLang.advanced,
\r
995 widths : [ '45%', '35%', '20%' ],
\r
1001 label : linkLang.id,
\r
1002 setup : setupAdvParams,
\r
1003 commit : commitAdvParams
\r
1007 id : 'advLangDir',
\r
1008 label : linkLang.langDir,
\r
1010 style : 'width:110px',
\r
1013 [ commonLang.notSet, '' ],
\r
1014 [ linkLang.langDirLTR, 'ltr' ],
\r
1015 [ linkLang.langDirRTL, 'rtl' ]
\r
1017 setup : setupAdvParams,
\r
1018 commit : commitAdvParams
\r
1022 id : 'advAccessKey',
\r
1024 label : linkLang.acccessKey,
\r
1026 setup : setupAdvParams,
\r
1027 commit : commitAdvParams
\r
1034 widths : [ '45%', '35%', '20%' ],
\r
1039 label : linkLang.name,
\r
1041 setup : setupAdvParams,
\r
1042 commit : commitAdvParams
\r
1047 label : linkLang.langCode,
\r
1048 id : 'advLangCode',
\r
1051 setup : setupAdvParams,
\r
1052 commit : commitAdvParams
\r
1057 label : linkLang.tabIndex,
\r
1058 id : 'advTabIndex',
\r
1061 setup : setupAdvParams,
\r
1062 commit : commitAdvParams
\r
1076 widths : [ '45%', '55%' ],
\r
1081 label : linkLang.advisoryTitle,
\r
1084 setup : setupAdvParams,
\r
1085 commit : commitAdvParams
\r
1090 label : linkLang.advisoryContentType,
\r
1092 id : 'advContentType',
\r
1093 setup : setupAdvParams,
\r
1094 commit : commitAdvParams
\r
1101 widths : [ '45%', '55%' ],
\r
1106 label : linkLang.cssClasses,
\r
1108 id : 'advCSSClasses',
\r
1109 setup : setupAdvParams,
\r
1110 commit : commitAdvParams
\r
1115 label : linkLang.charset,
\r
1117 id : 'advCharset',
\r
1118 setup : setupAdvParams,
\r
1119 commit : commitAdvParams
\r
1126 widths : [ '45%', '55%' ],
\r
1131 label : linkLang.rel,
\r
1134 setup : setupAdvParams,
\r
1135 commit : commitAdvParams
\r
1139 label : linkLang.styles,
\r
1142 setup : setupAdvParams,
\r
1143 commit : commitAdvParams
\r
1152 onShow : function()
\r
1154 this.fakeObj = false;
\r
1156 var editor = this.getParentEditor(),
\r
1157 selection = editor.getSelection(),
\r
1160 // Fill in all the relevant fields if there's already one link selected.
\r
1161 if ( ( element = plugin.getSelectedLink( editor ) ) && element.hasAttribute( 'href' ) )
\r
1162 selection.selectElement( element );
\r
1163 else if ( ( element = selection.getSelectedElement() ) && element.is( 'img' )
\r
1164 && element.data( 'cke-real-element-type' )
\r
1165 && element.data( 'cke-real-element-type' ) == 'anchor' )
\r
1167 this.fakeObj = element;
\r
1168 element = editor.restoreRealElement( this.fakeObj );
\r
1169 selection.selectElement( this.fakeObj );
\r
1174 this.setupContent( parseLink.apply( this, [ editor, element ] ) );
\r
1178 var attributes = {},
\r
1179 removeAttributes = [],
\r
1182 editor = this.getParentEditor();
\r
1184 this.commitContent( data );
\r
1186 // Compose the URL.
\r
1187 switch ( data.type || 'url' )
\r
1190 var protocol = ( data.url && data.url.protocol != undefined ) ? data.url.protocol : 'http://',
\r
1191 url = ( data.url && data.url.url ) || '';
\r
1192 attributes[ 'data-cke-saved-href' ] = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
\r
1195 var name = ( data.anchor && data.anchor.name ),
\r
1196 id = ( data.anchor && data.anchor.id );
\r
1197 attributes[ 'data-cke-saved-href' ] = '#' + ( name || id || '' );
\r
1202 email = data.email,
\r
1203 address = email.address;
\r
1205 switch( emailProtection )
\r
1210 var subject = encodeURIComponent( email.subject || '' ),
\r
1211 body = encodeURIComponent( email.body || '' );
\r
1213 // Build the e-mail parameters first.
\r
1215 subject && argList.push( 'subject=' + subject );
\r
1216 body && argList.push( 'body=' + body );
\r
1217 argList = argList.length ? '?' + argList.join( '&' ) : '';
\r
1219 if ( emailProtection == 'encode' )
\r
1221 linkHref = [ 'javascript:void(location.href=\'mailto:\'+',
\r
1222 protectEmailAddressAsEncodedString( address ) ];
\r
1223 // parameters are optional.
\r
1224 argList && linkHref.push( '+\'', escapeSingleQuote( argList ), '\'' );
\r
1226 linkHref.push( ')' );
\r
1229 linkHref = [ 'mailto:', address, argList ];
\r
1235 // Separating name and domain.
\r
1236 var nameAndDomain = address.split( '@', 2 );
\r
1237 email.name = nameAndDomain[ 0 ];
\r
1238 email.domain = nameAndDomain[ 1 ];
\r
1240 linkHref = [ 'javascript:', protectEmailLinkAsFunction( email ) ];
\r
1244 attributes[ 'data-cke-saved-href' ] = linkHref.join( '' );
\r
1248 // Popups and target.
\r
1249 if ( data.target )
\r
1251 if ( data.target.type == 'popup' )
\r
1253 var onclickList = [ 'window.open(this.href, \'',
\r
1254 data.target.name || '', '\', \'' ];
\r
1255 var featureList = [ 'resizable', 'status', 'location', 'toolbar', 'menubar', 'fullscreen',
\r
1256 'scrollbars', 'dependent' ];
\r
1257 var featureLength = featureList.length;
\r
1258 var addFeature = function( featureName )
\r
1260 if ( data.target[ featureName ] )
\r
1261 featureList.push( featureName + '=' + data.target[ featureName ] );
\r
1264 for ( var i = 0 ; i < featureLength ; i++ )
\r
1265 featureList[i] = featureList[i] + ( data.target[ featureList[i] ] ? '=yes' : '=no' ) ;
\r
1266 addFeature( 'width' );
\r
1267 addFeature( 'left' );
\r
1268 addFeature( 'height' );
\r
1269 addFeature( 'top' );
\r
1271 onclickList.push( featureList.join( ',' ), '\'); return false;' );
\r
1272 attributes[ 'data-cke-pa-onclick' ] = onclickList.join( '' );
\r
1274 // Add the "target" attribute. (#5074)
\r
1275 removeAttributes.push( 'target' );
\r
1279 if ( data.target.type != 'notSet' && data.target.name )
\r
1280 attributes.target = data.target.name;
\r
1282 removeAttributes.push( 'target' );
\r
1284 removeAttributes.push( 'data-cke-pa-onclick', 'onclick' );
\r
1288 // Advanced attributes.
\r
1291 var advAttr = function( inputName, attrName )
\r
1293 var value = data.adv[ inputName ];
\r
1295 attributes[attrName] = value;
\r
1297 removeAttributes.push( attrName );
\r
1300 advAttr( 'advId', 'id' );
\r
1301 advAttr( 'advLangDir', 'dir' );
\r
1302 advAttr( 'advAccessKey', 'accessKey' );
\r
1304 if ( data.adv[ 'advName' ] )
\r
1306 attributes[ 'name' ] = attributes[ 'data-cke-saved-name' ] = data.adv[ 'advName' ];
\r
1307 attributes[ 'class' ] = ( attributes[ 'class' ] ? attributes[ 'class' ] + ' ' : '' ) + 'cke_anchor';
\r
1310 removeAttributes = removeAttributes.concat( [ 'data-cke-saved-name', 'name' ] );
\r
1312 advAttr( 'advLangCode', 'lang' );
\r
1313 advAttr( 'advTabIndex', 'tabindex' );
\r
1314 advAttr( 'advTitle', 'title' );
\r
1315 advAttr( 'advContentType', 'type' );
\r
1316 advAttr( 'advCSSClasses', 'class' );
\r
1317 advAttr( 'advCharset', 'charset' );
\r
1318 advAttr( 'advStyles', 'style' );
\r
1319 advAttr( 'advRel', 'rel' );
\r
1323 // Browser need the "href" fro copy/paste link to work. (#6641)
\r
1324 attributes.href = attributes[ 'data-cke-saved-href' ];
\r
1326 if ( !this._.selectedElement )
\r
1328 // Create element if current selection is collapsed.
\r
1329 var selection = editor.getSelection(),
\r
1330 ranges = selection.getRanges( true );
\r
1331 if ( ranges.length == 1 && ranges[0].collapsed )
\r
1333 // Short mailto link text view (#5736).
\r
1334 var text = new CKEDITOR.dom.text( data.type == 'email' ?
\r
1335 data.email.address : attributes[ 'data-cke-saved-href' ], editor.document );
\r
1336 ranges[0].insertNode( text );
\r
1337 ranges[0].selectNodeContents( text );
\r
1338 selection.selectRanges( ranges );
\r
1342 var style = new CKEDITOR.style( { element : 'a', attributes : attributes } );
\r
1343 style.type = CKEDITOR.STYLE_INLINE; // need to override... dunno why.
\r
1344 style.apply( editor.document );
\r
1348 // We're only editing an existing link, so just overwrite the attributes.
\r
1349 var element = this._.selectedElement,
\r
1350 href = element.data( 'cke-saved-href' ),
\r
1351 textView = element.getHtml();
\r
1353 // IE BUG: Setting the name attribute to an existing link doesn't work.
\r
1354 // Must re-create the link from weired syntax to workaround.
\r
1355 if ( CKEDITOR.env.ie && !( CKEDITOR.document.$.documentMode >= 8 ) && attributes.name != element.getAttribute( 'name' ) )
\r
1357 var newElement = new CKEDITOR.dom.element( '<a name="' + CKEDITOR.tools.htmlEncode( attributes.name ) + '">',
\r
1358 editor.document );
\r
1360 selection = editor.getSelection();
\r
1362 element.copyAttributes( newElement, { name : 1 } );
\r
1363 element.moveChildren( newElement );
\r
1364 newElement.replace( element );
\r
1365 element = newElement;
\r
1367 selection.selectElement( element );
\r
1370 element.setAttributes( attributes );
\r
1371 element.removeAttributes( removeAttributes );
\r
1372 // Update text view when user changes protocol (#4612).
\r
1373 if ( href == textView || data.type == 'email' && textView.indexOf( '@' ) != -1 )
\r
1375 // Short mailto link text view (#5736).
\r
1376 element.setHtml( data.type == 'email' ?
\r
1377 data.email.address : attributes[ 'data-cke-saved-href' ] );
\r
1379 // Make the element display as an anchor if a name has been set.
\r
1380 if ( element.getAttribute( 'name' ) )
\r
1381 element.addClass( 'cke_anchor' );
\r
1383 element.removeClass( 'cke_anchor' );
\r
1385 if ( this.fakeObj )
\r
1386 editor.createFakeElement( element, 'cke_anchor', 'anchor' ).replace( this.fakeObj );
\r
1388 delete this._.selectedElement;
\r
1391 onLoad : function()
\r
1393 if ( !editor.config.linkShowAdvancedTab )
\r
1394 this.hidePage( 'advanced' ); //Hide Advanded tab.
\r
1396 if ( !editor.config.linkShowTargetTab )
\r
1397 this.hidePage( 'target' ); //Hide Target tab.
\r
1400 // Inital focus on 'url' field if link is of type URL.
\r
1401 onFocus : function()
\r
1403 var linkType = this.getContentElement( 'info', 'linkType' ),
\r
1405 if ( linkType && linkType.getValue() == 'url' )
\r
1407 urlField = this.getContentElement( 'info', 'url' );
\r
1408 urlField.select();
\r
1415 * The e-mail address anti-spam protection option. The protection will be
\r
1416 * applied when creating or modifying e-mail links through the editor interface.<br>
\r
1417 * Two methods of protection can be choosed:
\r
1418 * <ol> <li>The e-mail parts (name, domain and any other query string) are
\r
1419 * assembled into a function call pattern. Such function must be
\r
1420 * provided by the developer in the pages that will use the contents.
\r
1421 * <li>Only the e-mail address is obfuscated into a special string that
\r
1422 * has no meaning for humans or spam bots, but which is properly
\r
1423 * rendered and accepted by the browser.</li></ol>
\r
1424 * Both approaches require JavaScript to be enabled.
\r
1425 * @name CKEDITOR.config.emailProtection
\r
1428 * @default '' (empty string = disabled)
\r
1430 * // href="mailto:tester@ckeditor.com?subject=subject&body=body"
\r
1431 * config.emailProtection = '';
\r
1433 * // href="<a href=\"javascript:void(location.href=\'mailto:\'+String.fromCharCode(116,101,115,116,101,114,64,99,107,101,100,105,116,111,114,46,99,111,109)+\'?subject=subject&body=body\')\">e-mail</a>"
\r
1434 * config.emailProtection = 'encode';
\r
1436 * // href="javascript:mt('tester','ckeditor.com','subject','body')"
\r
1437 * config.emailProtection = 'mt(NAME,DOMAIN,SUBJECT,BODY)';
\r