Project

General

Profile

« Previous | Next » 

Revision 1039

Added by Matthias almost 15 years ago

- Updated FCKEditor Modul Version Number to 2.8.9

- added in FCKEditor Advisory Relation to Links (thanks to Luisehahne)

View differences:

trunk/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.8.0 -------------------------------------
14
07-July-2009 Matthias Gallas
15
!	Updated FCKEditor Modul Version Number to 2.8.9
16
+	added in FCKEditor Advisory Relation to Links (thanks to Luisehahne)
14 17
06-July-2009 Matthias Gallas
15 18
!	Updated FCKEditor to Version 2.6.4.1 (ticket #738) (Thanks to doc)
16 19
#	Fixed Backend-Themes to get more valide output (Thanks to Luisehahne)
trunk/wb/modules/fckeditor/info.php
26 26
  Authors: P. Widlund, S. Braunewell, M. Gallas (ruebenwurzel), Wouldlouper, C. Sommer (doc)
27 27
	Started to track applied changes in info.php from 27.03.2007 onwards (cs)
28 28
 -----------------------------------------------------------------------------------------------------------
29
	v2.89 (ruebenwurzel.. Matthias Gallas; Jul 6, 2009)
30
		+	update to FCKEditor release v2.6.4.1
31
		+	added WB Droplet Plugin
32
		+	added Advisory Relation to Links (thanks to Luisehahne)
33

  
29 34
	v2.88 (ruebenwurzel.. Matthias Gallas; Feb 1, 2009)
30 35
		+	update to FCKEditor release v2.64
31 36
	
......
115 120
*/
116 121

  
117 122
$module_directory		= 'fckeditor';
118
$module_name				= 'FCKeditor';
123
$module_name			= 'FCKeditor';
119 124
$module_function		= 'WYSIWYG';
120
$module_version			= '2.88';
125
$module_version			= '2.89';
121 126
$module_platform		= '2.7';
122 127
$module_author 			= 'Christian Sommer, P. Widlund, S. Braunewell, M. Gallas, Wouldlouper';
123 128
$module_license 		= 'GNU General Public License';
trunk/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link.html
205 205
				</tr>
206 206
			</table>
207 207
		</div>
208
		<div id="divAttribs" style="DISPLAY: none">
208
		<div id="divAttribs" style="display: none">
209 209
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
210 210
				<tr>
211 211
					<td valign="top" width="50%">
......
284 284
			</table>
285 285
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
286 286
				<tr>
287
					<td>
287
					<td nowrap="nowrap" >
288 288
						<span fckLang="DlgGenStyle">Style</span><br />
289
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
289
						<input id="txtAttStyle" style="width: 100%" type="text" />
290 290
					</td>
291 291
				</tr>
292
				<tr>
293
					<td nowrap="nowrap">
294
						<span fckLang="DlgGenContRel">Advisory Relation</span><br />
295
						<select id="cmbAttContentRel"  style="width: 40%">
296
							<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
297
							<option value="lightbox" fckLang="Lightbox">Lightbox</option>
298
							<option value="thumbnail" fckLang="Thumbnail">Thumbnail</option>
299
							<option value="stylesheet" fckLang="Stylesheet">Stylesheet</option>
300
							<option value="alternate" fckLang="Alternate">Alternate</option>
301
						</select>
302
					</td>
303
				</tr>
292 304
			</table>
293 305
		</div>
294 306
	</body>
trunk/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link/fck_link_org.js
1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2009 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

  
24
var dialog	= window.parent ;
25
var oEditor = dialog.InnerDialogLoaded() ;
26

  
27
var FCK			= oEditor.FCK ;
28
var FCKLang		= oEditor.FCKLang ;
29
var FCKConfig	= oEditor.FCKConfig ;
30
var FCKRegexLib	= oEditor.FCKRegexLib ;
31
var FCKTools	= oEditor.FCKTools ;
32

  
33
//#### Dialog Tabs
34

  
35
// Set the dialog tabs.
36
dialog.AddTab( 'Info', FCKLang.DlgLnkInfoTab ) ;
37

  
38
if ( !FCKConfig.LinkDlgHideTarget )
39
	dialog.AddTab( 'Target', FCKLang.DlgLnkTargetTab, true ) ;
40

  
41
if ( FCKConfig.LinkUpload )
42
	dialog.AddTab( 'Upload', FCKLang.DlgLnkUpload, true ) ;
43

  
44
if ( !FCKConfig.LinkDlgHideAdvanced )
45
	dialog.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ;
46

  
47
// Function called when a dialog tag is selected.
48
function OnDialogTabChange( tabCode )
49
{
50
	ShowE('divInfo'		, ( tabCode == 'Info' ) ) ;
51
	ShowE('divTarget'	, ( tabCode == 'Target' ) ) ;
52
	ShowE('divUpload'	, ( tabCode == 'Upload' ) ) ;
53
	ShowE('divAttribs'	, ( tabCode == 'Advanced' ) ) ;
54

  
55
	dialog.SetAutoSize( true ) ;
56
}
57

  
58
//#### Regular Expressions library.
59
var oRegex = new Object() ;
60

  
61
oRegex.UriProtocol = /^(((http|https|ftp|news):\/\/)|mailto:)/gi ;
62

  
63
oRegex.UrlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/gi ;
64

  
65
oRegex.UrlOnChangeTestOther = /^((javascript:)|[#\/\.])/gi ;
66

  
67
oRegex.ReserveTarget = /^_(blank|self|top|parent)$/i ;
68

  
69
oRegex.PopupUri = /^javascript:void\(\s*window.open\(\s*'([^']+)'\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*\)\s*$/ ;
70

  
71
// Accessible popups
72
oRegex.OnClickPopup = /^\s*on[cC]lick="\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*"$/ ;
73

  
74
oRegex.PopupFeatures = /(?:^|,)([^=]+)=(\d+|yes|no)/gi ;
75

  
76
//#### Parser Functions
77

  
78
var oParser = new Object() ;
79

  
80
// This method simply returns the two inputs in numerical order. You can even
81
// provide strings, as the method would parseInt() the values.
82
oParser.SortNumerical = function(a, b)
83
{
84
	return parseInt( a, 10 ) - parseInt( b, 10 ) ;
85
}
86

  
87
oParser.ParseEMailParams = function(sParams)
88
{
89
	// Initialize the oEMailParams object.
90
	var oEMailParams = new Object() ;
91
	oEMailParams.Subject = '' ;
92
	oEMailParams.Body = '' ;
93

  
94
	var aMatch = sParams.match( /(^|^\?|&)subject=([^&]+)/i ) ;
95
	if ( aMatch ) oEMailParams.Subject = decodeURIComponent( aMatch[2] ) ;
96

  
97
	aMatch = sParams.match( /(^|^\?|&)body=([^&]+)/i ) ;
98
	if ( aMatch ) oEMailParams.Body = decodeURIComponent( aMatch[2] ) ;
99

  
100
	return oEMailParams ;
101
}
102

  
103
// This method returns either an object containing the email info, or FALSE
104
// if the parameter is not an email link.
105
oParser.ParseEMailUri = function( sUrl )
106
{
107
	// Initializes the EMailInfo object.
108
	var oEMailInfo = new Object() ;
109
	oEMailInfo.Address = '' ;
110
	oEMailInfo.Subject = '' ;
111
	oEMailInfo.Body = '' ;
112

  
113
	var aLinkInfo = sUrl.match( /^(\w+):(.*)$/ ) ;
114
	if ( aLinkInfo && aLinkInfo[1] == 'mailto' )
115
	{
116
		// This seems to be an unprotected email link.
117
		var aParts = aLinkInfo[2].match( /^([^\?]+)\??(.+)?/ ) ;
118
		if ( aParts )
119
		{
120
			// Set the e-mail address.
121
			oEMailInfo.Address = aParts[1] ;
122

  
123
			// Look for the optional e-mail parameters.
124
			if ( aParts[2] )
125
			{
126
				var oEMailParams = oParser.ParseEMailParams( aParts[2] ) ;
127
				oEMailInfo.Subject = oEMailParams.Subject ;
128
				oEMailInfo.Body = oEMailParams.Body ;
129
			}
130
		}
131
		return oEMailInfo ;
132
	}
133
	else if ( aLinkInfo && aLinkInfo[1] == 'javascript' )
134
	{
135
		// This may be a protected email.
136

  
137
		// Try to match the url against the EMailProtectionFunction.
138
		var func = FCKConfig.EMailProtectionFunction ;
139
		if ( func != null )
140
		{
141
			try
142
			{
143
				// Escape special chars.
144
				func = func.replace( /([\/^$*+.?()\[\]])/g, '\\$1' ) ;
145

  
146
				// Define the possible keys.
147
				var keys = new Array('NAME', 'DOMAIN', 'SUBJECT', 'BODY') ;
148

  
149
				// Get the order of the keys (hold them in the array <pos>) and
150
				// the function replaced by regular expression patterns.
151
				var sFunc = func ;
152
				var pos = new Array() ;
153
				for ( var i = 0 ; i < keys.length ; i ++ )
154
				{
155
					var rexp = new RegExp( keys[i] ) ;
156
					var p = func.search( rexp ) ;
157
					if ( p >= 0 )
158
					{
159
						sFunc = sFunc.replace( rexp, '\'([^\']*)\'' ) ;
160
						pos[pos.length] = p + ':' + keys[i] ;
161
					}
162
				}
163

  
164
				// Sort the available keys.
165
				pos.sort( oParser.SortNumerical ) ;
166

  
167
				// Replace the excaped single quotes in the url, such they do
168
				// not affect the regexp afterwards.
169
				aLinkInfo[2] = aLinkInfo[2].replace( /\\'/g, '###SINGLE_QUOTE###' ) ;
170

  
171
				// Create the regexp and execute it.
172
				var rFunc = new RegExp( '^' + sFunc + '$' ) ;
173
				var aMatch = rFunc.exec( aLinkInfo[2] ) ;
174
				if ( aMatch )
175
				{
176
					var aInfo = new Array();
177
					for ( var i = 1 ; i < aMatch.length ; i ++ )
178
					{
179
						var k = pos[i-1].match(/^\d+:(.+)$/) ;
180
						aInfo[k[1]] = aMatch[i].replace(/###SINGLE_QUOTE###/g, '\'') ;
181
					}
182

  
183
					// Fill the EMailInfo object that will be returned
184
					oEMailInfo.Address = aInfo['NAME'] + '@' + aInfo['DOMAIN'] ;
185
					oEMailInfo.Subject = decodeURIComponent( aInfo['SUBJECT'] ) ;
186
					oEMailInfo.Body = decodeURIComponent( aInfo['BODY'] ) ;
187

  
188
					return oEMailInfo ;
189
				}
190
			}
191
			catch (e)
192
			{
193
			}
194
		}
195

  
196
		// Try to match the email against the encode protection.
197
		var aMatch = aLinkInfo[2].match( /^(?:void\()?location\.href='mailto:'\+(String\.fromCharCode\([\d,]+\))\+'(.*)'\)?$/ ) ;
198
		if ( aMatch )
199
		{
200
			// The link is encoded
201
			oEMailInfo.Address = eval( aMatch[1] ) ;
202
			if ( aMatch[2] )
203
			{
204
				var oEMailParams = oParser.ParseEMailParams( aMatch[2] ) ;
205
				oEMailInfo.Subject = oEMailParams.Subject ;
206
				oEMailInfo.Body = oEMailParams.Body ;
207
			}
208
			return oEMailInfo ;
209
		}
210
	}
211
	return false;
212
}
213

  
214
oParser.CreateEMailUri = function( address, subject, body )
215
{
216
	// Switch for the EMailProtection setting.
217
	switch ( FCKConfig.EMailProtection )
218
	{
219
		case 'function' :
220
			var func = FCKConfig.EMailProtectionFunction ;
221
			if ( func == null )
222
			{
223
				if ( FCKConfig.Debug )
224
				{
225
					alert('EMailProtection alert!\nNo function defined. Please set "FCKConfig.EMailProtectionFunction"') ;
226
				}
227
				return '';
228
			}
229

  
230
			// Split the email address into name and domain parts.
231
			var aAddressParts = address.split( '@', 2 ) ;
232
			if ( aAddressParts[1] == undefined )
233
			{
234
				aAddressParts[1] = '' ;
235
			}
236

  
237
			// Replace the keys by their values (embedded in single quotes).
238
			func = func.replace(/NAME/g, "'" + aAddressParts[0].replace(/'/g, '\\\'') + "'") ;
239
			func = func.replace(/DOMAIN/g, "'" + aAddressParts[1].replace(/'/g, '\\\'') + "'") ;
240
			func = func.replace(/SUBJECT/g, "'" + encodeURIComponent( subject ).replace(/'/g, '\\\'') + "'") ;
241
			func = func.replace(/BODY/g, "'" + encodeURIComponent( body ).replace(/'/g, '\\\'') + "'") ;
242

  
243
			return 'javascript:' + func ;
244

  
245
		case 'encode' :
246
			var aParams = [] ;
247
			var aAddressCode = [] ;
248

  
249
			if ( subject.length > 0 )
250
				aParams.push( 'subject='+ encodeURIComponent( subject ) ) ;
251
			if ( body.length > 0 )
252
				aParams.push( 'body=' + encodeURIComponent( body ) ) ;
253
			for ( var i = 0 ; i < address.length ; i++ )
254
				aAddressCode.push( address.charCodeAt( i ) ) ;
255

  
256
			return 'javascript:void(location.href=\'mailto:\'+String.fromCharCode(' + aAddressCode.join( ',' ) + ')+\'?' + aParams.join( '&' ) + '\')' ;
257
	}
258

  
259
	// EMailProtection 'none'
260

  
261
	var sBaseUri = 'mailto:' + address ;
262

  
263
	var sParams = '' ;
264

  
265
	if ( subject.length > 0 )
266
		sParams = '?subject=' + encodeURIComponent( subject ) ;
267

  
268
	if ( body.length > 0 )
269
	{
270
		sParams += ( sParams.length == 0 ? '?' : '&' ) ;
271
		sParams += 'body=' + encodeURIComponent( body ) ;
272
	}
273

  
274
	return sBaseUri + sParams ;
275
}
276

  
277
//#### Initialization Code
278

  
279
// oLink: The actual selected link in the editor.
280
var oLink = dialog.Selection.GetSelection().MoveToAncestorNode( 'A' ) ;
281
if ( oLink )
282
	FCK.Selection.SelectNode( oLink ) ;
283

  
284
window.onload = function()
285
{
286
	// Translate the dialog box texts.
287
	oEditor.FCKLanguageManager.TranslatePage(document) ;
288

  
289
	// Fill the Anchor Names and Ids combos.
290
	LoadAnchorNamesAndIds() ;
291

  
292
	// Load the selected link information (if any).
293
	LoadSelection() ;
294

  
295
	// Update the dialog box.
296
	SetLinkType( GetE('cmbLinkType').value ) ;
297

  
298
	// Show/Hide the "Browse Server" button.
299
	GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ;
300

  
301
	// Show the initial dialog content.
302
	GetE('divInfo').style.display = '' ;
303

  
304
	// Set the actual uploader URL.
305
	if ( FCKConfig.LinkUpload )
306
		GetE('frmUpload').action = FCKConfig.LinkUploadURL ;
307

  
308
	// Set the default target (from configuration).
309
	SetDefaultTarget() ;
310

  
311
	// Activate the "OK" button.
312
	dialog.SetOkButton( true ) ;
313

  
314
	// Select the first field.
315
	switch( GetE('cmbLinkType').value )
316
	{
317
		case 'url' :
318
			SelectField( 'txtUrl' ) ;
319
			break ;
320
		case 'email' :
321
			SelectField( 'txtEMailAddress' ) ;
322
			break ;
323
		case 'anchor' :
324
			if ( GetE('divSelAnchor').style.display != 'none' )
325
				SelectField( 'cmbAnchorName' ) ;
326
			else
327
				SelectField( 'cmbLinkType' ) ;
328
	}
329
}
330

  
331
var bHasAnchors ;
332

  
333
function LoadAnchorNamesAndIds()
334
{
335
	// Since version 2.0, the anchors are replaced in the DOM by IMGs so the user see the icon
336
	// to edit them. So, we must look for that images now.
337
	var aAnchors = new Array() ;
338
	var i ;
339
	var oImages = oEditor.FCK.EditorDocument.getElementsByTagName( 'IMG' ) ;
340
	for( i = 0 ; i < oImages.length ; i++ )
341
	{
342
		if ( oImages[i].getAttribute('_fckanchor') )
343
			aAnchors[ aAnchors.length ] = oEditor.FCK.GetRealElement( oImages[i] ) ;
344
	}
345

  
346
	// Add also real anchors
347
	var oLinks = oEditor.FCK.EditorDocument.getElementsByTagName( 'A' ) ;
348
	for( i = 0 ; i < oLinks.length ; i++ )
349
	{
350
		if ( oLinks[i].name && ( oLinks[i].name.length > 0 ) )
351
			aAnchors[ aAnchors.length ] = oLinks[i] ;
352
	}
353

  
354
	var aIds = FCKTools.GetAllChildrenIds( oEditor.FCK.EditorDocument.body ) ;
355

  
356
	bHasAnchors = ( aAnchors.length > 0 || aIds.length > 0 ) ;
357

  
358
	for ( i = 0 ; i < aAnchors.length ; i++ )
359
	{
360
		var sName = aAnchors[i].name ;
361
		if ( sName && sName.length > 0 )
362
			FCKTools.AddSelectOption( GetE('cmbAnchorName'), sName, sName ) ;
363
	}
364

  
365
	for ( i = 0 ; i < aIds.length ; i++ )
366
	{
367
		FCKTools.AddSelectOption( GetE('cmbAnchorId'), aIds[i], aIds[i] ) ;
368
	}
369

  
370
	ShowE( 'divSelAnchor'	, bHasAnchors ) ;
371
	ShowE( 'divNoAnchor'	, !bHasAnchors ) ;
372
}
373

  
374
function LoadSelection()
375
{
376
	if ( !oLink ) return ;
377

  
378
	var sType = 'url' ;
379

  
380
	// Get the actual Link href.
381
	var sHRef = oLink.getAttribute( '_fcksavedurl' ) ;
382
	if ( sHRef == null )
383
		sHRef = oLink.getAttribute( 'href' , 2 ) || '' ;
384

  
385
	// Look for a popup javascript link.
386
	var oPopupMatch = oRegex.PopupUri.exec( sHRef ) ;
387
	if( oPopupMatch )
388
	{
389
		GetE('cmbTarget').value = 'popup' ;
390
		sHRef = oPopupMatch[1] ;
391
		FillPopupFields( oPopupMatch[2], oPopupMatch[3] ) ;
392
		SetTarget( 'popup' ) ;
393
	}
394

  
395
	// Accessible popups, the popup data is in the onclick attribute
396
	if ( !oPopupMatch )
397
	{
398
		var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
399
		if ( onclick )
400
		{
401
			// Decode the protected string
402
			onclick = decodeURIComponent( onclick ) ;
403

  
404
			oPopupMatch = oRegex.OnClickPopup.exec( onclick ) ;
405
			if( oPopupMatch )
406
			{
407
				GetE( 'cmbTarget' ).value = 'popup' ;
408
				FillPopupFields( oPopupMatch[1], oPopupMatch[2] ) ;
409
				SetTarget( 'popup' ) ;
410
			}
411
		}
412
	}
413

  
414
	// Search for the protocol.
415
	var sProtocol = oRegex.UriProtocol.exec( sHRef ) ;
416

  
417
	// Search for a protected email link.
418
	var oEMailInfo = oParser.ParseEMailUri( sHRef );
419

  
420
	if ( oEMailInfo )
421
	{
422
		sType = 'email' ;
423

  
424
		GetE('txtEMailAddress').value = oEMailInfo.Address ;
425
		GetE('txtEMailSubject').value = oEMailInfo.Subject ;
426
		GetE('txtEMailBody').value    = oEMailInfo.Body ;
427
	}
428
	else if ( sProtocol )
429
	{
430
		sProtocol = sProtocol[0].toLowerCase() ;
431
		GetE('cmbLinkProtocol').value = sProtocol ;
432

  
433
		// Remove the protocol and get the remaining URL.
434
		var sUrl = sHRef.replace( oRegex.UriProtocol, '' ) ;
435
		sType = 'url' ;
436
		GetE('txtUrl').value = sUrl ;
437
	}
438
	else if ( sHRef.substr(0,1) == '#' && sHRef.length > 1 )	// It is an anchor link.
439
	{
440
		sType = 'anchor' ;
441
		GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
442
	}
443
	else					// It is another type of link.
444
	{
445
		sType = 'url' ;
446

  
447
		GetE('cmbLinkProtocol').value = '' ;
448
		GetE('txtUrl').value = sHRef ;
449
	}
450

  
451
	if ( !oPopupMatch )
452
	{
453
		// Get the target.
454
		var sTarget = oLink.target ;
455

  
456
		if ( sTarget && sTarget.length > 0 )
457
		{
458
			if ( oRegex.ReserveTarget.test( sTarget ) )
459
			{
460
				sTarget = sTarget.toLowerCase() ;
461
				GetE('cmbTarget').value = sTarget ;
462
			}
463
			else
464
				GetE('cmbTarget').value = 'frame' ;
465
			GetE('txtTargetFrame').value = sTarget ;
466
		}
467
	}
468

  
469
	// Get Advances Attributes
470
	GetE('txtAttId').value			= oLink.id ;
471
	GetE('txtAttName').value		= oLink.name ;
472
	GetE('cmbAttLangDir').value		= oLink.dir ;
473
	GetE('txtAttLangCode').value	= oLink.lang ;
474
	GetE('txtAttAccessKey').value	= oLink.accessKey ;
475
	GetE('txtAttTabIndex').value	= oLink.tabIndex <= 0 ? '' : oLink.tabIndex ;
476
	GetE('txtAttTitle').value		= oLink.title ;
477
	GetE('txtAttContentType').value	= oLink.type ;
478
	GetE('txtAttCharSet').value		= oLink.charset ;
479

  
480
	var sClass ;
481
	if ( oEditor.FCKBrowserInfo.IsIE )
482
	{
483
		sClass	= oLink.getAttribute('className',2) || '' ;
484
		// Clean up temporary classes for internal use:
485
		sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ;
486

  
487
		GetE('txtAttStyle').value	= oLink.style.cssText ;
488
	}
489
	else
490
	{
491
		sClass	= oLink.getAttribute('class',2) || '' ;
492
		GetE('txtAttStyle').value	= oLink.getAttribute('style',2) || '' ;
493
	}
494
	GetE('txtAttClasses').value	= sClass ;
495

  
496
	// Update the Link type combo.
497
	GetE('cmbLinkType').value = sType ;
498
}
499

  
500
//#### Link type selection.
501
function SetLinkType( linkType )
502
{
503
	ShowE('divLinkTypeUrl'		, (linkType == 'url') ) ;
504
	ShowE('divLinkTypeAnchor'	, (linkType == 'anchor') ) ;
505
	ShowE('divLinkTypeEMail'	, (linkType == 'email') ) ;
506

  
507
	if ( !FCKConfig.LinkDlgHideTarget )
508
		dialog.SetTabVisibility( 'Target'	, (linkType == 'url') ) ;
509

  
510
	if ( FCKConfig.LinkUpload )
511
		dialog.SetTabVisibility( 'Upload'	, (linkType == 'url') ) ;
512

  
513
	if ( !FCKConfig.LinkDlgHideAdvanced )
514
		dialog.SetTabVisibility( 'Advanced'	, (linkType != 'anchor' || bHasAnchors) ) ;
515

  
516
	if ( linkType == 'email' )
517
		dialog.SetAutoSize( true ) ;
518
}
519

  
520
//#### Target type selection.
521
function SetTarget( targetType )
522
{
523
	GetE('tdTargetFrame').style.display	= ( targetType == 'popup' ? 'none' : '' ) ;
524
	GetE('tdPopupName').style.display	=
525
	GetE('tablePopupFeatures').style.display = ( targetType == 'popup' ? '' : 'none' ) ;
526

  
527
	switch ( targetType )
528
	{
529
		case "_blank" :
530
		case "_self" :
531
		case "_parent" :
532
		case "_top" :
533
			GetE('txtTargetFrame').value = targetType ;
534
			break ;
535
		case "" :
536
			GetE('txtTargetFrame').value = '' ;
537
			break ;
538
	}
539

  
540
	if ( targetType == 'popup' )
541
		dialog.SetAutoSize( true ) ;
542
}
543

  
544
//#### Called while the user types the URL.
545
function OnUrlChange()
546
{
547
	var sUrl = GetE('txtUrl').value ;
548
	var sProtocol = oRegex.UrlOnChangeProtocol.exec( sUrl ) ;
549

  
550
	if ( sProtocol )
551
	{
552
		sUrl = sUrl.substr( sProtocol[0].length ) ;
553
		GetE('txtUrl').value = sUrl ;
554
		GetE('cmbLinkProtocol').value = sProtocol[0].toLowerCase() ;
555
	}
556
	else if ( oRegex.UrlOnChangeTestOther.test( sUrl ) )
557
	{
558
		GetE('cmbLinkProtocol').value = '' ;
559
	}
560
}
561

  
562
//#### Called while the user types the target name.
563
function OnTargetNameChange()
564
{
565
	var sFrame = GetE('txtTargetFrame').value ;
566

  
567
	if ( sFrame.length == 0 )
568
		GetE('cmbTarget').value = '' ;
569
	else if ( oRegex.ReserveTarget.test( sFrame ) )
570
		GetE('cmbTarget').value = sFrame.toLowerCase() ;
571
	else
572
		GetE('cmbTarget').value = 'frame' ;
573
}
574

  
575
// Accessible popups
576
function BuildOnClickPopup()
577
{
578
	var sWindowName = "'" + GetE('txtPopupName').value.replace(/\W/gi, "") + "'" ;
579

  
580
	var sFeatures = '' ;
581
	var aChkFeatures = document.getElementsByName( 'chkFeature' ) ;
582
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
583
	{
584
		if ( i > 0 ) sFeatures += ',' ;
585
		sFeatures += aChkFeatures[i].value + '=' + ( aChkFeatures[i].checked ? 'yes' : 'no' ) ;
586
	}
587

  
588
	if ( GetE('txtPopupWidth').value.length > 0 )	sFeatures += ',width=' + GetE('txtPopupWidth').value ;
589
	if ( GetE('txtPopupHeight').value.length > 0 )	sFeatures += ',height=' + GetE('txtPopupHeight').value ;
590
	if ( GetE('txtPopupLeft').value.length > 0 )	sFeatures += ',left=' + GetE('txtPopupLeft').value ;
591
	if ( GetE('txtPopupTop').value.length > 0 )		sFeatures += ',top=' + GetE('txtPopupTop').value ;
592

  
593
	if ( sFeatures != '' )
594
		sFeatures = sFeatures + ",status" ;
595

  
596
	return ( "window.open(this.href," + sWindowName + ",'" + sFeatures + "'); return false" ) ;
597
}
598

  
599
//#### Fills all Popup related fields.
600
function FillPopupFields( windowName, features )
601
{
602
	if ( windowName )
603
		GetE('txtPopupName').value = windowName ;
604

  
605
	var oFeatures = new Object() ;
606
	var oFeaturesMatch ;
607
	while( ( oFeaturesMatch = oRegex.PopupFeatures.exec( features ) ) != null )
608
	{
609
		var sValue = oFeaturesMatch[2] ;
610
		if ( sValue == ( 'yes' || '1' ) )
611
			oFeatures[ oFeaturesMatch[1] ] = true ;
612
		else if ( ! isNaN( sValue ) && sValue != 0 )
613
			oFeatures[ oFeaturesMatch[1] ] = sValue ;
614
	}
615

  
616
	// Update all features check boxes.
617
	var aChkFeatures = document.getElementsByName('chkFeature') ;
618
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
619
	{
620
		if ( oFeatures[ aChkFeatures[i].value ] )
621
			aChkFeatures[i].checked = true ;
622
	}
623

  
624
	// Update position and size text boxes.
625
	if ( oFeatures['width'] )	GetE('txtPopupWidth').value		= oFeatures['width'] ;
626
	if ( oFeatures['height'] )	GetE('txtPopupHeight').value	= oFeatures['height'] ;
627
	if ( oFeatures['left'] )	GetE('txtPopupLeft').value		= oFeatures['left'] ;
628
	if ( oFeatures['top'] )		GetE('txtPopupTop').value		= oFeatures['top'] ;
629
}
630

  
631
//#### The OK button was hit.
632
function Ok()
633
{
634
	var sUri, sInnerHtml ;
635
	oEditor.FCKUndo.SaveUndoStep() ;
636

  
637
	switch ( GetE('cmbLinkType').value )
638
	{
639
		case 'url' :
640
			sUri = GetE('txtUrl').value ;
641

  
642
			if ( sUri.length == 0 )
643
			{
644
				alert( FCKLang.DlnLnkMsgNoUrl ) ;
645
				return false ;
646
			}
647

  
648
			sUri = GetE('cmbLinkProtocol').value + sUri ;
649

  
650
			break ;
651

  
652
		case 'email' :
653
			sUri = GetE('txtEMailAddress').value ;
654

  
655
			if ( sUri.length == 0 )
656
			{
657
				alert( FCKLang.DlnLnkMsgNoEMail ) ;
658
				return false ;
659
			}
660

  
661
			sUri = oParser.CreateEMailUri(
662
				sUri,
663
				GetE('txtEMailSubject').value,
664
				GetE('txtEMailBody').value ) ;
665
			break ;
666

  
667
		case 'anchor' :
668
			var sAnchor = GetE('cmbAnchorName').value ;
669
			if ( sAnchor.length == 0 ) sAnchor = GetE('cmbAnchorId').value ;
670

  
671
			if ( sAnchor.length == 0 )
672
			{
673
				alert( FCKLang.DlnLnkMsgNoAnchor ) ;
674
				return false ;
675
			}
676

  
677
			sUri = '#' + sAnchor ;
678
			break ;
679
	}
680

  
681
	// If no link is selected, create a new one (it may result in more than one link creation - #220).
682
	var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri, true ) ;
683

  
684
	// If no selection, no links are created, so use the uri as the link text (by dom, 2006-05-26)
685
	var aHasSelection = ( aLinks.length > 0 ) ;
686
	if ( !aHasSelection )
687
	{
688
		sInnerHtml = sUri;
689

  
690
		// Built a better text for empty links.
691
		switch ( GetE('cmbLinkType').value )
692
		{
693
			// anchor: use old behavior --> return true
694
			case 'anchor':
695
				sInnerHtml = sInnerHtml.replace( /^#/, '' ) ;
696
				break ;
697

  
698
			// url: try to get path
699
			case 'url':
700
				var oLinkPathRegEx = new RegExp("//?([^?\"']+)([?].*)?$") ;
701
				var asLinkPath = oLinkPathRegEx.exec( sUri ) ;
702
				if (asLinkPath != null)
703
					sInnerHtml = asLinkPath[1];  // use matched path
704
				break ;
705

  
706
			// mailto: try to get email address
707
			case 'email':
708
				sInnerHtml = GetE('txtEMailAddress').value ;
709
				break ;
710
		}
711

  
712
		// Create a new (empty) anchor.
713
		aLinks = [ oEditor.FCK.InsertElement( 'a' ) ] ;
714
	}
715

  
716
	for ( var i = 0 ; i < aLinks.length ; i++ )
717
	{
718
		oLink = aLinks[i] ;
719

  
720
		if ( aHasSelection )
721
			sInnerHtml = oLink.innerHTML ;		// Save the innerHTML (IE changes it if it is like an URL).
722

  
723
		oLink.href = sUri ;
724
		SetAttribute( oLink, '_fcksavedurl', sUri ) ;
725

  
726
		var onclick;
727
		// Accessible popups
728
		if( GetE('cmbTarget').value == 'popup' )
729
		{
730
			onclick = BuildOnClickPopup() ;
731
			// Encode the attribute
732
			onclick = encodeURIComponent( " onclick=\"" + onclick + "\"" )  ;
733
			SetAttribute( oLink, 'onclick_fckprotectedatt', onclick ) ;
734
		}
735
		else
736
		{
737
			// Check if the previous onclick was for a popup:
738
			// In that case remove the onclick handler.
739
			onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
740
			if ( onclick )
741
			{
742
				// Decode the protected string
743
				onclick = decodeURIComponent( onclick ) ;
744

  
745
				if( oRegex.OnClickPopup.test( onclick ) )
746
					SetAttribute( oLink, 'onclick_fckprotectedatt', '' ) ;
747
			}
748
		}
749

  
750
		oLink.innerHTML = sInnerHtml ;		// Set (or restore) the innerHTML
751

  
752
		// Target
753
		if( GetE('cmbTarget').value != 'popup' )
754
			SetAttribute( oLink, 'target', GetE('txtTargetFrame').value ) ;
755
		else
756
			SetAttribute( oLink, 'target', null ) ;
757

  
758
		// Let's set the "id" only for the first link to avoid duplication.
759
		if ( i == 0 )
760
			SetAttribute( oLink, 'id', GetE('txtAttId').value ) ;
761

  
762
		// Advances Attributes
763
		SetAttribute( oLink, 'name'		, GetE('txtAttName').value ) ;
764
		SetAttribute( oLink, 'dir'		, GetE('cmbAttLangDir').value ) ;
765
		SetAttribute( oLink, 'lang'		, GetE('txtAttLangCode').value ) ;
766
		SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ;
767
		SetAttribute( oLink, 'tabindex'	, ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ;
768
		SetAttribute( oLink, 'title'	, GetE('txtAttTitle').value ) ;
769
		SetAttribute( oLink, 'type'		, GetE('txtAttContentType').value ) ;
770
		SetAttribute( oLink, 'charset'	, GetE('txtAttCharSet').value ) ;
771

  
772
		if ( oEditor.FCKBrowserInfo.IsIE )
773
		{
774
			var sClass = GetE('txtAttClasses').value ;
775
			// If it's also an anchor add an internal class
776
			if ( GetE('txtAttName').value.length != 0 )
777
				sClass += ' FCK__AnchorC' ;
778
			SetAttribute( oLink, 'className', sClass ) ;
779

  
780
			oLink.style.cssText = GetE('txtAttStyle').value ;
781
		}
782
		else
783
		{
784
			SetAttribute( oLink, 'class', GetE('txtAttClasses').value ) ;
785
			SetAttribute( oLink, 'style', GetE('txtAttStyle').value ) ;
786
		}
787
	}
788

  
789
	// Select the (first) link.
790
	oEditor.FCKSelection.SelectNode( aLinks[0] );
791

  
792
	return true ;
793
}
794

  
795
function BrowseServer()
796
{
797
	OpenFileBrowser( FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ;
798
}
799

  
800
function SetUrl( url )
801
{
802
	GetE('txtUrl').value = url ;
803
	OnUrlChange() ;
804
	dialog.SetSelectedTab( 'Info' ) ;
805
}
806

  
807
function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
808
{
809
	// Remove animation
810
	window.parent.Throbber.Hide() ;
811
	GetE( 'divUpload' ).style.display  = '' ;
812

  
813
	switch ( errorNumber )
814
	{
815
		case 0 :	// No errors
816
			alert( 'Your file has been successfully uploaded' ) ;
817
			break ;
818
		case 1 :	// Custom error
819
			alert( customMsg ) ;
820
			return ;
821
		case 101 :	// Custom warning
822
			alert( customMsg ) ;
823
			break ;
824
		case 201 :
825
			alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ;
826
			break ;
827
		case 202 :
828
			alert( 'Invalid file type' ) ;
829
			return ;
830
		case 203 :
831
			alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ;
832
			return ;
833
		case 500 :
834
			alert( 'The connector is disabled' ) ;
835
			break ;
836
		default :
837
			alert( 'Error on file upload. Error number: ' + errorNumber ) ;
838
			return ;
839
	}
840

  
841
	SetUrl( fileUrl ) ;
842
	GetE('frmUpload').reset() ;
843
}
844

  
845
var oUploadAllowedExtRegex	= new RegExp( FCKConfig.LinkUploadAllowedExtensions, 'i' ) ;
846
var oUploadDeniedExtRegex	= new RegExp( FCKConfig.LinkUploadDeniedExtensions, 'i' ) ;
847

  
848
function CheckUpload()
849
{
850
	var sFile = GetE('txtUploadFile').value ;
851

  
852
	if ( sFile.length == 0 )
853
	{
854
		alert( 'Please select a file to upload' ) ;
855
		return false ;
856
	}
857

  
858
	if ( ( FCKConfig.LinkUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) ||
859
		( FCKConfig.LinkUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) )
860
	{
861
		OnUploadCompleted( 202 ) ;
862
		return false ;
863
	}
864

  
865
	// Show animation
866
	window.parent.Throbber.Show( 100 ) ;
867
	GetE( 'divUpload' ).style.display  = 'none' ;
868

  
869
	return true ;
870
}
871

  
872
function SetDefaultTarget()
873
{
874
	var target = FCKConfig.DefaultLinkTarget || '' ;
875

  
876
	if ( oLink || target.length == 0 )
877
		return ;
878

  
879
	switch ( target )
880
	{
881
		case '_blank' :
882
		case '_self' :
883
		case '_parent' :
884
		case '_top' :
885
			GetE('cmbTarget').value = target ;
886
			break ;
887
		default :
888
			GetE('cmbTarget').value = 'frame' ;
889
			break ;
890
	}
891

  
892
	GetE('txtTargetFrame').value = target ;
893
}
trunk/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link/fck_link.js
475 475
	GetE('txtAttTabIndex').value	= oLink.tabIndex <= 0 ? '' : oLink.tabIndex ;
476 476
	GetE('txtAttTitle').value		= oLink.title ;
477 477
	GetE('txtAttContentType').value	= oLink.type ;
478
	GetE('cmbAttContentRel').value	= oLink.rel ;
478 479
	GetE('txtAttCharSet').value		= oLink.charset ;
479 480

  
480 481
	var sClass ;
......
767 768
		SetAttribute( oLink, 'tabindex'	, ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ;
768 769
		SetAttribute( oLink, 'title'	, GetE('txtAttTitle').value ) ;
769 770
		SetAttribute( oLink, 'type'		, GetE('txtAttContentType').value ) ;
771
		SetAttribute( oLink, 'rel'		, GetE('cmbAttContentRel').value ) ;
770 772
		SetAttribute( oLink, 'charset'	, GetE('txtAttCharSet').value ) ;
771 773

  
772 774
		if ( oEditor.FCKBrowserInfo.IsIE )
trunk/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link_org.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<!--
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
5
 *
6
 * == BEGIN LICENSE ==
7
 *
8
 * Licensed under the terms of any of the following licenses at your
9
 * choice:
10
 *
11
 *  - GNU General Public License Version 2 or later (the "GPL")
12
 *    http://www.gnu.org/licenses/gpl.html
13
 *
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15
 *    http://www.gnu.org/licenses/lgpl.html
16
 *
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
19
 *
20
 * == END LICENSE ==
21
 *
22
 * Link dialog window.
23
-->
24
<html>
25
	<head>
26
		<title>Link Properties</title>
27
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
28
		<meta name="robots" content="noindex, nofollow" />
29
		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
30
		<script src="fck_link/fck_link.js" type="text/javascript"></script>
31
	</head>
32
	<body scroll="no" style="OVERFLOW: hidden">
33
		<div id="divInfo" style="DISPLAY: none">
34
			<span fckLang="DlgLnkType">Link Type</span><br />
35
			<select id="cmbLinkType" onchange="SetLinkType(this.value);">
36
				<option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option>
37
				<option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option>
38
				<option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option>
39
			</select>
40
			<br />
41
			<br />
42
			<div id="divLinkTypeUrl">
43
				<table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr">
44
					<tr>
45
						<td nowrap="nowrap">
46
							<span fckLang="DlgLnkProto">Protocol</span><br />
47
							<select id="cmbLinkProtocol">
48
								<option value="http://" selected="selected">http://</option>
49
								<option value="https://">https://</option>
50
								<option value="ftp://">ftp://</option>
51
								<option value="news://">news://</option>
52
								<option value="" fckLang="DlgLnkProtoOther">&lt;other&gt;</option>
53
							</select>
54
						</td>
55
						<td nowrap="nowrap">&nbsp;</td>
56
						<td nowrap="nowrap" width="100%">
57
							<span fckLang="DlgLnkURL">URL</span><br />
58
							<input id="txtUrl" style="WIDTH: 100%" type="text" onkeyup="OnUrlChange();" onchange="OnUrlChange();" />
59
						</td>
60
					</tr>
61
				</table>
62
				<br />
63
				<div id="divBrowseServer">
64
				<input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="BrowseServer();" />
65
				</div>
66
			</div>
67
			<div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">
68
				<div id="divSelAnchor" style="DISPLAY: none">
69
					<table cellspacing="0" cellpadding="0" border="0" width="70%">
70
						<tr>
71
							<td colspan="3">
72
								<span fckLang="DlgLnkAnchorSel">Select an Anchor</span>
73
							</td>
74
						</tr>
75
						<tr>
76
							<td width="50%">
77
								<span fckLang="DlgLnkAnchorByName">By Anchor Name</span><br />
78
								<select id="cmbAnchorName" onchange="GetE('cmbAnchorId').value='';" style="WIDTH: 100%">
79
									<option value="" selected="selected"></option>
80
								</select>
81
							</td>
82
							<td>&nbsp;&nbsp;&nbsp;</td>
83
							<td width="50%">
84
								<span fckLang="DlgLnkAnchorById">By Element Id</span><br />
85
								<select id="cmbAnchorId" onchange="GetE('cmbAnchorName').value='';" style="WIDTH: 100%">
86
									<option value="" selected="selected"></option>
87
								</select>
88
							</td>
89
						</tr>
90
					</table>
91
				</div>
92
				<div id="divNoAnchor" style="DISPLAY: none">
93
					<span fckLang="DlgLnkNoAnchors">&lt;No anchors available in the document&gt;</span>
94
				</div>
95
			</div>
96
			<div id="divLinkTypeEMail" style="DISPLAY: none">
97
				<span fckLang="DlgLnkEMail">E-Mail Address</span><br />
98
				<input id="txtEMailAddress" style="WIDTH: 100%" type="text" /><br />
99
				<span fckLang="DlgLnkEMailSubject">Message Subject</span><br />
100
				<input id="txtEMailSubject" style="WIDTH: 100%" type="text" /><br />
101
				<span fckLang="DlgLnkEMailBody">Message Body</span><br />
102
				<textarea id="txtEMailBody" style="WIDTH: 100%" rows="3" cols="20"></textarea>
103
			</div>
104
		</div>
105
		<div id="divUpload" style="DISPLAY: none">
106
			<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">
107
				<span fckLang="DlgLnkUpload">Upload</span><br />
108
				<input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
109
				<br />
110
				<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
111
				<script type="text/javascript">
112
					document.write( '<iframe name="UploadWindow" style="display: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
113
				</script>
114
			</form>
115
		</div>
116
		<div id="divTarget" style="DISPLAY: none">
117
			<table cellspacing="0" cellpadding="0" width="100%" border="0">
118
				<tr>
119
					<td nowrap="nowrap">
120
						<span fckLang="DlgLnkTarget">Target</span><br />
121
						<select id="cmbTarget" onchange="SetTarget(this.value);">
122
							<option value="" fckLang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
123
							<option value="frame" fckLang="DlgLnkTargetFrame">&lt;frame&gt;</option>
124
							<option value="popup" fckLang="DlgLnkTargetPopup">&lt;popup window&gt;</option>
125
							<option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option>
126
							<option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option>
127
							<option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option>
128
							<option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option>
129
						</select>
130
					</td>
131
					<td>&nbsp;</td>
132
					<td id="tdTargetFrame" nowrap="nowrap" width="100%">
133
						<span fckLang="DlgLnkTargetFrameName">Target Frame Name</span><br />
134
						<input id="txtTargetFrame" style="WIDTH: 100%" type="text" onkeyup="OnTargetNameChange();"
135
							onchange="OnTargetNameChange();" />
136
					</td>
137
					<td id="tdPopupName" style="DISPLAY: none" nowrap="nowrap" width="100%">
138
						<span fckLang="DlgLnkPopWinName">Popup Window Name</span><br />
139
						<input id="txtPopupName" style="WIDTH: 100%" type="text" />
140
					</td>
141
				</tr>
142
			</table>
143
			<br />
144
			<table id="tablePopupFeatures" style="DISPLAY: none" cellspacing="0" cellpadding="0" align="center"
145
				border="0">
146
				<tr>
147
					<td>
148
						<span fckLang="DlgLnkPopWinFeat">Popup Window Features</span><br />
149
						<table cellspacing="0" cellpadding="0" border="0">
150
							<tr>
151
								<td valign="top" nowrap="nowrap" width="50%">
152
									<input id="chkPopupResizable" name="chkFeature" value="resizable" type="checkbox" /><label for="chkPopupResizable" fckLang="DlgLnkPopResize">Resizable</label><br />
153
									<input id="chkPopupLocationBar" name="chkFeature" value="location" type="checkbox" /><label for="chkPopupLocationBar" fckLang="DlgLnkPopLocation">Location
154
										Bar</label><br />
155
									<input id="chkPopupManuBar" name="chkFeature" value="menubar" type="checkbox" /><label for="chkPopupManuBar" fckLang="DlgLnkPopMenu">Menu
156
										Bar</label><br />
157
									<input id="chkPopupScrollBars" name="chkFeature" value="scrollbars" type="checkbox" /><label for="chkPopupScrollBars" fckLang="DlgLnkPopScroll">Scroll
158
										Bars</label>
159
								</td>
160
								<td></td>
161
								<td valign="top" nowrap="nowrap" width="50%">
162
									<input id="chkPopupStatusBar" name="chkFeature" value="status" type="checkbox" /><label for="chkPopupStatusBar" fckLang="DlgLnkPopStatus">Status
163
										Bar</label><br />
164
									<input id="chkPopupToolbar" name="chkFeature" value="toolbar" type="checkbox" /><label for="chkPopupToolbar" fckLang="DlgLnkPopToolbar">Toolbar</label><br />
165
									<input id="chkPopupFullScreen" name="chkFeature" value="fullscreen" type="checkbox" /><label for="chkPopupFullScreen" fckLang="DlgLnkPopFullScrn">Full
166
										Screen (IE)</label><br />
167
									<input id="chkPopupDependent" name="chkFeature" value="dependent" type="checkbox" /><label for="chkPopupDependent" fckLang="DlgLnkPopDependent">Dependent
168
										(Netscape)</label>
169
								</td>
170
							</tr>
171
							<tr>
172
								<td valign="top" nowrap="nowrap" width="50%">&nbsp;</td>
173
								<td></td>
174
								<td valign="top" nowrap="nowrap" width="50%"></td>
175
							</tr>
176
							<tr>
177
								<td valign="top">
178
									<table cellspacing="0" cellpadding="0" border="0">
179
										<tr>
180
											<td nowrap="nowrap"><span fckLang="DlgLnkPopWidth">Width</span></td>
181
											<td>&nbsp;<input id="txtPopupWidth" type="text" maxlength="4" size="4" /></td>
182
										</tr>
183
										<tr>
184
											<td nowrap="nowrap"><span fckLang="DlgLnkPopHeight">Height</span></td>
185
											<td>&nbsp;<input id="txtPopupHeight" type="text" maxlength="4" size="4" /></td>
186
										</tr>
187
									</table>
188
								</td>
189
								<td>&nbsp;&nbsp;</td>
190
								<td valign="top">
191
									<table cellspacing="0" cellpadding="0" border="0">
192
										<tr>
193
											<td nowrap="nowrap"><span fckLang="DlgLnkPopLeft">Left Position</span></td>
194
											<td>&nbsp;<input id="txtPopupLeft" type="text" maxlength="4" size="4" /></td>
195
										</tr>
196
										<tr>
197
											<td nowrap="nowrap"><span fckLang="DlgLnkPopTop">Top Position</span></td>
198
											<td>&nbsp;<input id="txtPopupTop" type="text" maxlength="4" size="4" /></td>
199
										</tr>
200
									</table>
201
								</td>
202
							</tr>
203
						</table>
204
					</td>
205
				</tr>
206
			</table>
207
		</div>
208
		<div id="divAttribs" style="DISPLAY: none">
209
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
210
				<tr>
211
					<td valign="top" width="50%">
212
						<span fckLang="DlgGenId">Id</span><br />
213
						<input id="txtAttId" style="WIDTH: 100%" type="text" />
214
					</td>
215
					<td width="1"></td>
216
					<td valign="top">
217
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
218
							<tr>
219
								<td width="60%">
220
									<span fckLang="DlgGenLangDir">Language Direction</span><br />
221
									<select id="cmbAttLangDir" style="WIDTH: 100%">
222
										<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
223
										<option value="ltr" fckLang="DlgGenLangDirLtr">Left to Right (LTR)</option>
224
										<option value="rtl" fckLang="DlgGenLangDirRtl">Right to Left (RTL)</option>
225
									</select>
226
								</td>
227
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
228
								<td nowrap="nowrap"><span fckLang="DlgGenAccessKey">Access Key</span><br />
229
									<input id="txtAttAccessKey" style="WIDTH: 100%" type="text" maxlength="1" size="1" />
230
								</td>
231
							</tr>
232
						</table>
233
					</td>
234
				</tr>
235
				<tr>
236
					<td valign="top" width="50%">
237
						<span fckLang="DlgGenName">Name</span><br />
238
						<input id="txtAttName" style="WIDTH: 100%" type="text" />
239
					</td>
240
					<td width="1"></td>
241
					<td valign="top">
242
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
243
							<tr>
244
								<td width="60%">
245
									<span fckLang="DlgGenLangCode">Language Code</span><br />
246
									<input id="txtAttLangCode" style="WIDTH: 100%" type="text" />
247
								</td>
248
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
249
								<td nowrap="nowrap">
250
									<span fckLang="DlgGenTabIndex">Tab Index</span><br />
251
									<input id="txtAttTabIndex" style="WIDTH: 100%" type="text" maxlength="5" size="5" />
252
								</td>
253
							</tr>
254
						</table>
255
					</td>
256
				</tr>
257
				<tr>
258
					<td valign="top" width="50%">&nbsp;</td>
259
					<td width="1"></td>
260
					<td valign="top"></td>
261
				</tr>
262
				<tr>
263
					<td valign="top" width="50%">
264
						<span fckLang="DlgGenTitle">Advisory Title</span><br />
265
						<input id="txtAttTitle" style="WIDTH: 100%" type="text" />
266
					</td>
267
					<td width="1">&nbsp;&nbsp;&nbsp;</td>
268
					<td valign="top">
269
						<span fckLang="DlgGenContType">Advisory Content Type</span><br />
270
						<input id="txtAttContentType" style="WIDTH: 100%" type="text" />
271
					</td>
272
				</tr>
273
				<tr>
274
					<td valign="top">
275
						<span fckLang="DlgGenClass">Stylesheet Classes</span><br />
276
						<input id="txtAttClasses" style="WIDTH: 100%" type="text" />
277
					</td>
278
					<td></td>
279
					<td valign="top">
280
						<span fckLang="DlgGenLinkCharset">Linked Resource Charset</span><br />
281
						<input id="txtAttCharSet" style="WIDTH: 100%" type="text" />
282
					</td>
283
				</tr>
284
			</table>
285
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
286
				<tr>
287
					<td>
288
						<span fckLang="DlgGenStyle">Style</span><br />
289
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
290
					</td>
291
				</tr>
292
			</table>
293
		</div>
294
	</body>
295
</html>

Also available in: Unified diff