Subversion Repositories Applications.papyrus

Rev

Rev 1925 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1925 Rev 2048
1
/*
1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
3
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
4
 *
4
 *
5
 * == BEGIN LICENSE ==
5
 * == BEGIN LICENSE ==
6
 *
6
 *
7
 * Licensed under the terms of any of the following licenses at your
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
8
 * choice:
9
 *
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
18
 *
19
 * == END LICENSE ==
19
 * == END LICENSE ==
20
 *
20
 *
21
 * Scripts related to the Link dialog window (see fck_link.html).
21
 * Scripts related to the Link dialog window (see fck_link.html).
22
 */
22
 */
23
 
23
 
24
var dialog	= window.parent ;
24
var dialog	= window.parent ;
25
var oEditor = dialog.InnerDialogLoaded() ;
25
var oEditor = dialog.InnerDialogLoaded() ;
26
 
26
 
27
var FCK			= oEditor.FCK ;
27
var FCK			= oEditor.FCK ;
28
var FCKLang		= oEditor.FCKLang ;
28
var FCKLang		= oEditor.FCKLang ;
29
var FCKConfig	= oEditor.FCKConfig ;
29
var FCKConfig	= oEditor.FCKConfig ;
30
var FCKRegexLib	= oEditor.FCKRegexLib ;
30
var FCKRegexLib	= oEditor.FCKRegexLib ;
31
var FCKTools	= oEditor.FCKTools ;
31
var FCKTools	= oEditor.FCKTools ;
32
 
32
 
33
//#### Dialog Tabs
33
//#### Dialog Tabs
34
 
34
 
35
// Set the dialog tabs.
35
// Set the dialog tabs.
36
dialog.AddTab( 'Info', FCKLang.DlgLnkInfoTab ) ;
36
dialog.AddTab( 'Info', FCKLang.DlgLnkInfoTab ) ;
37
 
37
 
38
if ( !FCKConfig.LinkDlgHideTarget )
38
if ( !FCKConfig.LinkDlgHideTarget )
39
	dialog.AddTab( 'Target', FCKLang.DlgLnkTargetTab, true ) ;
39
	dialog.AddTab( 'Target', FCKLang.DlgLnkTargetTab, true ) ;
40
 
40
 
41
if ( FCKConfig.LinkUpload )
41
if ( FCKConfig.LinkUpload )
42
	dialog.AddTab( 'Upload', FCKLang.DlgLnkUpload, true ) ;
42
	dialog.AddTab( 'Upload', FCKLang.DlgLnkUpload, true ) ;
43
 
43
 
44
if ( !FCKConfig.LinkDlgHideAdvanced )
44
if ( !FCKConfig.LinkDlgHideAdvanced )
45
	dialog.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ;
45
	dialog.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ;
46
 
46
 
47
// Function called when a dialog tag is selected.
47
// Function called when a dialog tag is selected.
48
function OnDialogTabChange( tabCode )
48
function OnDialogTabChange( tabCode )
49
{
49
{
50
	ShowE('divInfo'		, ( tabCode == 'Info' ) ) ;
50
	ShowE('divInfo'		, ( tabCode == 'Info' ) ) ;
51
	ShowE('divTarget'	, ( tabCode == 'Target' ) ) ;
51
	ShowE('divTarget'	, ( tabCode == 'Target' ) ) ;
52
	ShowE('divUpload'	, ( tabCode == 'Upload' ) ) ;
52
	ShowE('divUpload'	, ( tabCode == 'Upload' ) ) ;
53
	ShowE('divAttribs'	, ( tabCode == 'Advanced' ) ) ;
53
	ShowE('divAttribs'	, ( tabCode == 'Advanced' ) ) ;
54
 
54
 
55
	dialog.SetAutoSize( true ) ;
55
	dialog.SetAutoSize( true ) ;
56
}
56
}
57
 
57
 
58
//#### Regular Expressions library.
58
//#### Regular Expressions library.
59
var oRegex = new Object() ;
59
var oRegex = new Object() ;
60
 
60
 
61
oRegex.UriProtocol = /^(((http|https|ftp|news):\/\/)|mailto:)/gi ;
61
oRegex.UriProtocol = /^(((http|https|ftp|news):\/\/)|mailto:)/gi ;
62
 
62
 
63
oRegex.UrlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/gi ;
63
oRegex.UrlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/gi ;
64
 
64
 
65
oRegex.UrlOnChangeTestOther = /^((javascript:)|[#\/\.])/gi ;
65
oRegex.UrlOnChangeTestOther = /^((javascript:)|[#\/\.])/gi ;
66
 
66
 
67
oRegex.ReserveTarget = /^_(blank|self|top|parent)$/i ;
67
oRegex.ReserveTarget = /^_(blank|self|top|parent)$/i ;
68
 
68
 
69
oRegex.PopupUri = /^javascript:void\(\s*window.open\(\s*'([^']+)'\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*\)\s*$/ ;
69
oRegex.PopupUri = /^javascript:void\(\s*window.open\(\s*'([^']+)'\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*\)\s*$/ ;
70
 
70
 
71
// Accessible popups
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*"$/ ;
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
 
73
 
74
oRegex.PopupFeatures = /(?:^|,)([^=]+)=(\d+|yes|no)/gi ;
74
oRegex.PopupFeatures = /(?:^|,)([^=]+)=(\d+|yes|no)/gi ;
75
 
75
 
76
//#### Parser Functions
76
//#### Parser Functions
77
 
77
 
78
var oParser = new Object() ;
78
var oParser = new Object() ;
79
 
79
 
80
// This method simply returns the two inputs in numerical order. You can even
80
// This method simply returns the two inputs in numerical order. You can even
81
// provide strings, as the method would parseInt() the values.
81
// provide strings, as the method would parseInt() the values.
82
oParser.SortNumerical = function(a, b)
82
oParser.SortNumerical = function(a, b)
83
{
83
{
84
	return parseInt( a, 10 ) - parseInt( b, 10 ) ;
84
	return parseInt( a, 10 ) - parseInt( b, 10 ) ;
85
}
85
}
86
 
86
 
87
oParser.ParseEMailParams = function(sParams)
87
oParser.ParseEMailParams = function(sParams)
88
{
88
{
89
	// Initialize the oEMailParams object.
89
	// Initialize the oEMailParams object.
90
	var oEMailParams = new Object() ;
90
	var oEMailParams = new Object() ;
91
	oEMailParams.Subject = '' ;
91
	oEMailParams.Subject = '' ;
92
	oEMailParams.Body = '' ;
92
	oEMailParams.Body = '' ;
93
 
93
 
94
	var aMatch = sParams.match( /(^|^\?|&)subject=([^&]+)/i ) ;
94
	var aMatch = sParams.match( /(^|^\?|&)subject=([^&]+)/i ) ;
95
	if ( aMatch ) oEMailParams.Subject = decodeURIComponent( aMatch[2] ) ;
95
	if ( aMatch ) oEMailParams.Subject = decodeURIComponent( aMatch[2] ) ;
96
 
96
 
97
	aMatch = sParams.match( /(^|^\?|&)body=([^&]+)/i ) ;
97
	aMatch = sParams.match( /(^|^\?|&)body=([^&]+)/i ) ;
98
	if ( aMatch ) oEMailParams.Body = decodeURIComponent( aMatch[2] ) ;
98
	if ( aMatch ) oEMailParams.Body = decodeURIComponent( aMatch[2] ) ;
99
 
99
 
100
	return oEMailParams ;
100
	return oEMailParams ;
101
}
101
}
102
 
102
 
103
// This method returns either an object containing the email info, or FALSE
103
// This method returns either an object containing the email info, or FALSE
104
// if the parameter is not an email link.
104
// if the parameter is not an email link.
105
oParser.ParseEMailUri = function( sUrl )
105
oParser.ParseEMailUri = function( sUrl )
106
{
106
{
107
	// Initializes the EMailInfo object.
107
	// Initializes the EMailInfo object.
108
	var oEMailInfo = new Object() ;
108
	var oEMailInfo = new Object() ;
109
	oEMailInfo.Address = '' ;
109
	oEMailInfo.Address = '' ;
110
	oEMailInfo.Subject = '' ;
110
	oEMailInfo.Subject = '' ;
111
	oEMailInfo.Body = '' ;
111
	oEMailInfo.Body = '' ;
112
 
112
 
113
	var aLinkInfo = sUrl.match( /^(\w+):(.*)$/ ) ;
113
	var aLinkInfo = sUrl.match( /^(\w+):(.*)$/ ) ;
114
	if ( aLinkInfo && aLinkInfo[1] == 'mailto' )
114
	if ( aLinkInfo && aLinkInfo[1] == 'mailto' )
115
	{
115
	{
116
		// This seems to be an unprotected email link.
116
		// This seems to be an unprotected email link.
117
		var aParts = aLinkInfo[2].match( /^([^\?]+)\??(.+)?/ ) ;
117
		var aParts = aLinkInfo[2].match( /^([^\?]+)\??(.+)?/ ) ;
118
		if ( aParts )
118
		if ( aParts )
119
		{
119
		{
120
			// Set the e-mail address.
120
			// Set the e-mail address.
121
			oEMailInfo.Address = aParts[1] ;
121
			oEMailInfo.Address = aParts[1] ;
122
 
122
 
123
			// Look for the optional e-mail parameters.
123
			// Look for the optional e-mail parameters.
124
			if ( aParts[2] )
124
			if ( aParts[2] )
125
			{
125
			{
126
				var oEMailParams = oParser.ParseEMailParams( aParts[2] ) ;
126
				var oEMailParams = oParser.ParseEMailParams( aParts[2] ) ;
127
				oEMailInfo.Subject = oEMailParams.Subject ;
127
				oEMailInfo.Subject = oEMailParams.Subject ;
128
				oEMailInfo.Body = oEMailParams.Body ;
128
				oEMailInfo.Body = oEMailParams.Body ;
129
			}
129
			}
130
		}
130
		}
131
		return oEMailInfo ;
131
		return oEMailInfo ;
132
	}
132
	}
133
	else if ( aLinkInfo && aLinkInfo[1] == 'javascript' )
133
	else if ( aLinkInfo && aLinkInfo[1] == 'javascript' )
134
	{
134
	{
135
		// This may be a protected email.
135
		// This may be a protected email.
136
 
136
 
137
		// Try to match the url against the EMailProtectionFunction.
137
		// Try to match the url against the EMailProtectionFunction.
138
		var func = FCKConfig.EMailProtectionFunction ;
138
		var func = FCKConfig.EMailProtectionFunction ;
139
		if ( func != null )
139
		if ( func != null )
140
		{
140
		{
141
			try
141
			try
142
			{
142
			{
143
				// Escape special chars.
143
				// Escape special chars.
144
				func = func.replace( /([\/^$*+.?()\[\]])/g, '\\$1' ) ;
144
				func = func.replace( /([\/^$*+.?()\[\]])/g, '\\$1' ) ;
145
 
145
 
146
				// Define the possible keys.
146
				// Define the possible keys.
147
				var keys = new Array('NAME', 'DOMAIN', 'SUBJECT', 'BODY') ;
147
				var keys = new Array('NAME', 'DOMAIN', 'SUBJECT', 'BODY') ;
148
 
148
 
149
				// Get the order of the keys (hold them in the array <pos>) and
149
				// Get the order of the keys (hold them in the array <pos>) and
150
				// the function replaced by regular expression patterns.
150
				// the function replaced by regular expression patterns.
151
				var sFunc = func ;
151
				var sFunc = func ;
152
				var pos = new Array() ;
152
				var pos = new Array() ;
153
				for ( var i = 0 ; i < keys.length ; i ++ )
153
				for ( var i = 0 ; i < keys.length ; i ++ )
154
				{
154
				{
155
					var rexp = new RegExp( keys[i] ) ;
155
					var rexp = new RegExp( keys[i] ) ;
156
					var p = func.search( rexp ) ;
156
					var p = func.search( rexp ) ;
157
					if ( p >= 0 )
157
					if ( p >= 0 )
158
					{
158
					{
159
						sFunc = sFunc.replace( rexp, '\'([^\']*)\'' ) ;
159
						sFunc = sFunc.replace( rexp, '\'([^\']*)\'' ) ;
160
						pos[pos.length] = p + ':' + keys[i] ;
160
						pos[pos.length] = p + ':' + keys[i] ;
161
					}
161
					}
162
				}
162
				}
163
 
163
 
164
				// Sort the available keys.
164
				// Sort the available keys.
165
				pos.sort( oParser.SortNumerical ) ;
165
				pos.sort( oParser.SortNumerical ) ;
166
 
166
 
167
				// Replace the excaped single quotes in the url, such they do
167
				// Replace the excaped single quotes in the url, such they do
168
				// not affect the regexp afterwards.
168
				// not affect the regexp afterwards.
169
				aLinkInfo[2] = aLinkInfo[2].replace( /\\'/g, '###SINGLE_QUOTE###' ) ;
169
				aLinkInfo[2] = aLinkInfo[2].replace( /\\'/g, '###SINGLE_QUOTE###' ) ;
170
 
170
 
171
				// Create the regexp and execute it.
171
				// Create the regexp and execute it.
172
				var rFunc = new RegExp( '^' + sFunc + '$' ) ;
172
				var rFunc = new RegExp( '^' + sFunc + '$' ) ;
173
				var aMatch = rFunc.exec( aLinkInfo[2] ) ;
173
				var aMatch = rFunc.exec( aLinkInfo[2] ) ;
174
				if ( aMatch )
174
				if ( aMatch )
175
				{
175
				{
176
					var aInfo = new Array();
176
					var aInfo = new Array();
177
					for ( var i = 1 ; i < aMatch.length ; i ++ )
177
					for ( var i = 1 ; i < aMatch.length ; i ++ )
178
					{
178
					{
179
						var k = pos[i-1].match(/^\d+:(.+)$/) ;
179
						var k = pos[i-1].match(/^\d+:(.+)$/) ;
180
						aInfo[k[1]] = aMatch[i].replace(/###SINGLE_QUOTE###/g, '\'') ;
180
						aInfo[k[1]] = aMatch[i].replace(/###SINGLE_QUOTE###/g, '\'') ;
181
					}
181
					}
182
 
182
 
183
					// Fill the EMailInfo object that will be returned
183
					// Fill the EMailInfo object that will be returned
184
					oEMailInfo.Address = aInfo['NAME'] + '@' + aInfo['DOMAIN'] ;
184
					oEMailInfo.Address = aInfo['NAME'] + '@' + aInfo['DOMAIN'] ;
185
					oEMailInfo.Subject = decodeURIComponent( aInfo['SUBJECT'] ) ;
185
					oEMailInfo.Subject = decodeURIComponent( aInfo['SUBJECT'] ) ;
186
					oEMailInfo.Body = decodeURIComponent( aInfo['BODY'] ) ;
186
					oEMailInfo.Body = decodeURIComponent( aInfo['BODY'] ) ;
187
 
187
 
188
					return oEMailInfo ;
188
					return oEMailInfo ;
189
				}
189
				}
190
			}
190
			}
191
			catch (e)
191
			catch (e)
192
			{
192
			{
193
			}
193
			}
194
		}
194
		}
195
 
195
 
196
		// Try to match the email against the encode protection.
196
		// Try to match the email against the encode protection.
197
		var aMatch = aLinkInfo[2].match( /^location\.href='mailto:'\+(String\.fromCharCode\([\d,]+\))\+'(.*)'$/ ) ;
197
		var aMatch = aLinkInfo[2].match( /^(?:void\()?location\.href='mailto:'\+(String\.fromCharCode\([\d,]+\))\+'(.*)'\)?$/ ) ;
198
		if ( aMatch )
198
		if ( aMatch )
199
		{
199
		{
200
			// The link is encoded
200
			// The link is encoded
201
			oEMailInfo.Address = eval( aMatch[1] ) ;
201
			oEMailInfo.Address = eval( aMatch[1] ) ;
202
			if ( aMatch[2] )
202
			if ( aMatch[2] )
203
			{
203
			{
204
				var oEMailParams = oParser.ParseEMailParams( aMatch[2] ) ;
204
				var oEMailParams = oParser.ParseEMailParams( aMatch[2] ) ;
205
				oEMailInfo.Subject = oEMailParams.Subject ;
205
				oEMailInfo.Subject = oEMailParams.Subject ;
206
				oEMailInfo.Body = oEMailParams.Body ;
206
				oEMailInfo.Body = oEMailParams.Body ;
207
			}
207
			}
208
			return oEMailInfo ;
208
			return oEMailInfo ;
209
		}
209
		}
210
	}
210
	}
211
	return false;
211
	return false;
212
}
212
}
213
 
213
 
214
oParser.CreateEMailUri = function( address, subject, body )
214
oParser.CreateEMailUri = function( address, subject, body )
215
{
215
{
216
	// Switch for the EMailProtection setting.
216
	// Switch for the EMailProtection setting.
217
	switch ( FCKConfig.EMailProtection )
217
	switch ( FCKConfig.EMailProtection )
218
	{
218
	{
219
		case 'function' :
219
		case 'function' :
220
			var func = FCKConfig.EMailProtectionFunction ;
220
			var func = FCKConfig.EMailProtectionFunction ;
221
			if ( func == null )
221
			if ( func == null )
222
			{
222
			{
223
				if ( FCKConfig.Debug )
223
				if ( FCKConfig.Debug )
224
				{
224
				{
225
					alert('EMailProtection alert!\nNo function defined. Please set "FCKConfig.EMailProtectionFunction"') ;
225
					alert('EMailProtection alert!\nNo function defined. Please set "FCKConfig.EMailProtectionFunction"') ;
226
				}
226
				}
227
				return '';
227
				return '';
228
			}
228
			}
229
 
229
 
230
			// Split the email address into name and domain parts.
230
			// Split the email address into name and domain parts.
231
			var aAddressParts = address.split( '@', 2 ) ;
231
			var aAddressParts = address.split( '@', 2 ) ;
232
			if ( aAddressParts[1] == undefined )
232
			if ( aAddressParts[1] == undefined )
233
			{
233
			{
234
				aAddressParts[1] = '' ;
234
				aAddressParts[1] = '' ;
235
			}
235
			}
236
 
236
 
237
			// Replace the keys by their values (embedded in single quotes).
237
			// Replace the keys by their values (embedded in single quotes).
238
			func = func.replace(/NAME/g, "'" + aAddressParts[0].replace(/'/g, '\\\'') + "'") ;
238
			func = func.replace(/NAME/g, "'" + aAddressParts[0].replace(/'/g, '\\\'') + "'") ;
239
			func = func.replace(/DOMAIN/g, "'" + aAddressParts[1].replace(/'/g, '\\\'') + "'") ;
239
			func = func.replace(/DOMAIN/g, "'" + aAddressParts[1].replace(/'/g, '\\\'') + "'") ;
240
			func = func.replace(/SUBJECT/g, "'" + encodeURIComponent( subject ).replace(/'/g, '\\\'') + "'") ;
240
			func = func.replace(/SUBJECT/g, "'" + encodeURIComponent( subject ).replace(/'/g, '\\\'') + "'") ;
241
			func = func.replace(/BODY/g, "'" + encodeURIComponent( body ).replace(/'/g, '\\\'') + "'") ;
241
			func = func.replace(/BODY/g, "'" + encodeURIComponent( body ).replace(/'/g, '\\\'') + "'") ;
242
 
242
 
243
			return 'javascript:' + func ;
243
			return 'javascript:' + func ;
244
 
244
 
245
		case 'encode' :
245
		case 'encode' :
246
			var aParams = [] ;
246
			var aParams = [] ;
247
			var aAddressCode = [] ;
247
			var aAddressCode = [] ;
248
 
248
 
249
			if ( subject.length > 0 )
249
			if ( subject.length > 0 )
250
				aParams.push( 'subject='+ encodeURIComponent( subject ) ) ;
250
				aParams.push( 'subject='+ encodeURIComponent( subject ) ) ;
251
			if ( body.length > 0 )
251
			if ( body.length > 0 )
252
				aParams.push( 'body=' + encodeURIComponent( body ) ) ;
252
				aParams.push( 'body=' + encodeURIComponent( body ) ) ;
253
			for ( var i = 0 ; i < address.length ; i++ )
253
			for ( var i = 0 ; i < address.length ; i++ )
254
				aAddressCode.push( address.charCodeAt( i ) ) ;
254
				aAddressCode.push( address.charCodeAt( i ) ) ;
255
 
255
 
256
			return 'javascript:location.href=\'mailto:\'+String.fromCharCode(' + aAddressCode.join( ',' ) + ')+\'?' + aParams.join( '&' ) + '\'' ;
256
			return 'javascript:void(location.href=\'mailto:\'+String.fromCharCode(' + aAddressCode.join( ',' ) + ')+\'?' + aParams.join( '&' ) + '\')' ;
257
	}
257
	}
258
 
258
 
259
	// EMailProtection 'none'
259
	// EMailProtection 'none'
260
 
260
 
261
	var sBaseUri = 'mailto:' + address ;
261
	var sBaseUri = 'mailto:' + address ;
262
 
262
 
263
	var sParams = '' ;
263
	var sParams = '' ;
264
 
264
 
265
	if ( subject.length > 0 )
265
	if ( subject.length > 0 )
266
		sParams = '?subject=' + encodeURIComponent( subject ) ;
266
		sParams = '?subject=' + encodeURIComponent( subject ) ;
267
 
267
 
268
	if ( body.length > 0 )
268
	if ( body.length > 0 )
269
	{
269
	{
270
		sParams += ( sParams.length == 0 ? '?' : '&' ) ;
270
		sParams += ( sParams.length == 0 ? '?' : '&' ) ;
271
		sParams += 'body=' + encodeURIComponent( body ) ;
271
		sParams += 'body=' + encodeURIComponent( body ) ;
272
	}
272
	}
273
 
273
 
274
	return sBaseUri + sParams ;
274
	return sBaseUri + sParams ;
275
}
275
}
276
 
276
 
277
//#### Initialization Code
277
//#### Initialization Code
278
 
278
 
279
// oLink: The actual selected link in the editor.
279
// oLink: The actual selected link in the editor.
280
var oLink = dialog.Selection.GetSelection().MoveToAncestorNode( 'A' ) ;
280
var oLink = dialog.Selection.GetSelection().MoveToAncestorNode( 'A' ) ;
281
if ( oLink )
281
if ( oLink )
282
	FCK.Selection.SelectNode( oLink ) ;
282
	FCK.Selection.SelectNode( oLink ) ;
283
 
283
 
284
window.onload = function()
284
window.onload = function()
285
{
285
{
286
	// Translate the dialog box texts.
286
	// Translate the dialog box texts.
287
	oEditor.FCKLanguageManager.TranslatePage(document) ;
287
	oEditor.FCKLanguageManager.TranslatePage(document) ;
288
 
288
 
289
	// Fill the Anchor Names and Ids combos.
289
	// Fill the Anchor Names and Ids combos.
290
	LoadAnchorNamesAndIds() ;
290
	LoadAnchorNamesAndIds() ;
291
 
291
 
292
	// Load the selected link information (if any).
292
	// Load the selected link information (if any).
293
	LoadSelection() ;
293
	LoadSelection() ;
294
 
294
 
295
	// Update the dialog box.
295
	// Update the dialog box.
296
	SetLinkType( GetE('cmbLinkType').value ) ;
296
	SetLinkType( GetE('cmbLinkType').value ) ;
297
 
297
 
298
	// Show/Hide the "Browse Server" button.
298
	// Show/Hide the "Browse Server" button.
299
	GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ;
299
	GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ;
300
 
300
 
301
	// Show the initial dialog content.
301
	// Show the initial dialog content.
302
	GetE('divInfo').style.display = '' ;
302
	GetE('divInfo').style.display = '' ;
303
 
303
 
304
	// Set the actual uploader URL.
304
	// Set the actual uploader URL.
305
	if ( FCKConfig.LinkUpload )
305
	if ( FCKConfig.LinkUpload )
306
		GetE('frmUpload').action = FCKConfig.LinkUploadURL ;
306
		GetE('frmUpload').action = FCKConfig.LinkUploadURL ;
307
 
307
 
308
	// Set the default target (from configuration).
308
	// Set the default target (from configuration).
309
	SetDefaultTarget() ;
309
	SetDefaultTarget() ;
310
 
310
 
311
	// Activate the "OK" button.
311
	// Activate the "OK" button.
312
	dialog.SetOkButton( true ) ;
312
	dialog.SetOkButton( true ) ;
313
 
313
 
314
	// Select the first field.
314
	// Select the first field.
315
	switch( GetE('cmbLinkType').value )
315
	switch( GetE('cmbLinkType').value )
316
	{
316
	{
317
		case 'url' :
317
		case 'url' :
318
			SelectField( 'txtUrl' ) ;
318
			SelectField( 'txtUrl' ) ;
319
			break ;
319
			break ;
320
		case 'email' :
320
		case 'email' :
321
			SelectField( 'txtEMailAddress' ) ;
321
			SelectField( 'txtEMailAddress' ) ;
322
			break ;
322
			break ;
323
		case 'anchor' :
323
		case 'anchor' :
324
			if ( GetE('divSelAnchor').style.display != 'none' )
324
			if ( GetE('divSelAnchor').style.display != 'none' )
325
				SelectField( 'cmbAnchorName' ) ;
325
				SelectField( 'cmbAnchorName' ) ;
326
			else
326
			else
327
				SelectField( 'cmbLinkType' ) ;
327
				SelectField( 'cmbLinkType' ) ;
328
	}
328
	}
329
}
329
}
330
 
330
 
331
var bHasAnchors ;
331
var bHasAnchors ;
332
 
332
 
333
function LoadAnchorNamesAndIds()
333
function LoadAnchorNamesAndIds()
334
{
334
{
335
	// Since version 2.0, the anchors are replaced in the DOM by IMGs so the user see the icon
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.
336
	// to edit them. So, we must look for that images now.
337
	var aAnchors = new Array() ;
337
	var aAnchors = new Array() ;
338
	var i ;
338
	var i ;
339
	var oImages = oEditor.FCK.EditorDocument.getElementsByTagName( 'IMG' ) ;
339
	var oImages = oEditor.FCK.EditorDocument.getElementsByTagName( 'IMG' ) ;
340
	for( i = 0 ; i < oImages.length ; i++ )
340
	for( i = 0 ; i < oImages.length ; i++ )
341
	{
341
	{
342
		if ( oImages[i].getAttribute('_fckanchor') )
342
		if ( oImages[i].getAttribute('_fckanchor') )
343
			aAnchors[ aAnchors.length ] = oEditor.FCK.GetRealElement( oImages[i] ) ;
343
			aAnchors[ aAnchors.length ] = oEditor.FCK.GetRealElement( oImages[i] ) ;
344
	}
344
	}
345
 
345
 
346
	// Add also real anchors
346
	// Add also real anchors
347
	var oLinks = oEditor.FCK.EditorDocument.getElementsByTagName( 'A' ) ;
347
	var oLinks = oEditor.FCK.EditorDocument.getElementsByTagName( 'A' ) ;
348
	for( i = 0 ; i < oLinks.length ; i++ )
348
	for( i = 0 ; i < oLinks.length ; i++ )
349
	{
349
	{
350
		if ( oLinks[i].name && ( oLinks[i].name.length > 0 ) )
350
		if ( oLinks[i].name && ( oLinks[i].name.length > 0 ) )
351
			aAnchors[ aAnchors.length ] = oLinks[i] ;
351
			aAnchors[ aAnchors.length ] = oLinks[i] ;
352
	}
352
	}
353
 
353
 
354
	var aIds = FCKTools.GetAllChildrenIds( oEditor.FCK.EditorDocument.body ) ;
354
	var aIds = FCKTools.GetAllChildrenIds( oEditor.FCK.EditorDocument.body ) ;
355
 
355
 
356
	bHasAnchors = ( aAnchors.length > 0 || aIds.length > 0 ) ;
356
	bHasAnchors = ( aAnchors.length > 0 || aIds.length > 0 ) ;
357
 
357
 
358
	for ( i = 0 ; i < aAnchors.length ; i++ )
358
	for ( i = 0 ; i < aAnchors.length ; i++ )
359
	{
359
	{
360
		var sName = aAnchors[i].name ;
360
		var sName = aAnchors[i].name ;
361
		if ( sName && sName.length > 0 )
361
		if ( sName && sName.length > 0 )
362
			FCKTools.AddSelectOption( GetE('cmbAnchorName'), sName, sName ) ;
362
			FCKTools.AddSelectOption( GetE('cmbAnchorName'), sName, sName ) ;
363
	}
363
	}
364
 
364
 
365
	for ( i = 0 ; i < aIds.length ; i++ )
365
	for ( i = 0 ; i < aIds.length ; i++ )
366
	{
366
	{
367
		FCKTools.AddSelectOption( GetE('cmbAnchorId'), aIds[i], aIds[i] ) ;
367
		FCKTools.AddSelectOption( GetE('cmbAnchorId'), aIds[i], aIds[i] ) ;
368
	}
368
	}
369
 
369
 
370
	ShowE( 'divSelAnchor'	, bHasAnchors ) ;
370
	ShowE( 'divSelAnchor'	, bHasAnchors ) ;
371
	ShowE( 'divNoAnchor'	, !bHasAnchors ) ;
371
	ShowE( 'divNoAnchor'	, !bHasAnchors ) ;
372
}
372
}
373
 
373
 
374
function LoadSelection()
374
function LoadSelection()
375
{
375
{
376
	if ( !oLink ) return ;
376
	if ( !oLink ) return ;
377
 
377
 
378
	var sType = 'url' ;
378
	var sType = 'url' ;
379
 
379
 
380
	// Get the actual Link href.
380
	// Get the actual Link href.
381
	var sHRef = oLink.getAttribute( '_fcksavedurl' ) ;
381
	var sHRef = oLink.getAttribute( '_fcksavedurl' ) ;
382
	if ( sHRef == null )
382
	if ( sHRef == null )
383
		sHRef = oLink.getAttribute( 'href' , 2 ) || '' ;
383
		sHRef = oLink.getAttribute( 'href' , 2 ) || '' ;
384
 
384
 
385
	// Look for a popup javascript link.
385
	// Look for a popup javascript link.
386
	var oPopupMatch = oRegex.PopupUri.exec( sHRef ) ;
386
	var oPopupMatch = oRegex.PopupUri.exec( sHRef ) ;
387
	if( oPopupMatch )
387
	if( oPopupMatch )
388
	{
388
	{
389
		GetE('cmbTarget').value = 'popup' ;
389
		GetE('cmbTarget').value = 'popup' ;
390
		sHRef = oPopupMatch[1] ;
390
		sHRef = oPopupMatch[1] ;
391
		FillPopupFields( oPopupMatch[2], oPopupMatch[3] ) ;
391
		FillPopupFields( oPopupMatch[2], oPopupMatch[3] ) ;
392
		SetTarget( 'popup' ) ;
392
		SetTarget( 'popup' ) ;
393
	}
393
	}
394
 
394
 
395
	// Accessible popups, the popup data is in the onclick attribute
395
	// Accessible popups, the popup data is in the onclick attribute
396
	if ( !oPopupMatch )
396
	if ( !oPopupMatch )
397
	{
397
	{
398
		var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
398
		var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
399
		if ( onclick )
399
		if ( onclick )
400
		{
400
		{
401
			// Decode the protected string
401
			// Decode the protected string
402
			onclick = decodeURIComponent( onclick ) ;
402
			onclick = decodeURIComponent( onclick ) ;
403
 
403
 
404
			oPopupMatch = oRegex.OnClickPopup.exec( onclick ) ;
404
			oPopupMatch = oRegex.OnClickPopup.exec( onclick ) ;
405
			if( oPopupMatch )
405
			if( oPopupMatch )
406
			{
406
			{
407
				GetE( 'cmbTarget' ).value = 'popup' ;
407
				GetE( 'cmbTarget' ).value = 'popup' ;
408
				FillPopupFields( oPopupMatch[1], oPopupMatch[2] ) ;
408
				FillPopupFields( oPopupMatch[1], oPopupMatch[2] ) ;
409
				SetTarget( 'popup' ) ;
409
				SetTarget( 'popup' ) ;
410
			}
410
			}
411
		}
411
		}
412
	}
412
	}
413
 
413
 
414
	// Search for the protocol.
414
	// Search for the protocol.
415
	var sProtocol = oRegex.UriProtocol.exec( sHRef ) ;
415
	var sProtocol = oRegex.UriProtocol.exec( sHRef ) ;
416
 
416
 
417
	// Search for a protected email link.
417
	// Search for a protected email link.
418
	var oEMailInfo = oParser.ParseEMailUri( sHRef );
418
	var oEMailInfo = oParser.ParseEMailUri( sHRef );
419
 
419
 
420
	if ( oEMailInfo )
420
	if ( oEMailInfo )
421
	{
421
	{
422
		sType = 'email' ;
422
		sType = 'email' ;
423
 
423
 
424
		GetE('txtEMailAddress').value = oEMailInfo.Address ;
424
		GetE('txtEMailAddress').value = oEMailInfo.Address ;
425
		GetE('txtEMailSubject').value = oEMailInfo.Subject ;
425
		GetE('txtEMailSubject').value = oEMailInfo.Subject ;
426
		GetE('txtEMailBody').value    = oEMailInfo.Body ;
426
		GetE('txtEMailBody').value    = oEMailInfo.Body ;
427
	}
427
	}
428
	else if ( sProtocol )
428
	else if ( sProtocol )
429
	{
429
	{
430
		sProtocol = sProtocol[0].toLowerCase() ;
430
		sProtocol = sProtocol[0].toLowerCase() ;
431
		GetE('cmbLinkProtocol').value = sProtocol ;
431
		GetE('cmbLinkProtocol').value = sProtocol ;
432
 
432
 
433
		// Remove the protocol and get the remaining URL.
433
		// Remove the protocol and get the remaining URL.
434
		var sUrl = sHRef.replace( oRegex.UriProtocol, '' ) ;
434
		var sUrl = sHRef.replace( oRegex.UriProtocol, '' ) ;
435
		sType = 'url' ;
435
		sType = 'url' ;
436
		GetE('txtUrl').value = sUrl ;
436
		GetE('txtUrl').value = sUrl ;
437
	}
437
	}
438
	else if ( sHRef.substr(0,1) == '#' && sHRef.length > 1 )	// It is an anchor link.
438
	else if ( sHRef.substr(0,1) == '#' && sHRef.length > 1 )	// It is an anchor link.
439
	{
439
	{
440
		sType = 'anchor' ;
440
		sType = 'anchor' ;
441
		GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
441
		GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
442
	}
442
	}
443
	else					// It is another type of link.
443
	else					// It is another type of link.
444
	{
444
	{
445
		sType = 'url' ;
445
		sType = 'url' ;
446
 
446
 
447
		GetE('cmbLinkProtocol').value = '' ;
447
		GetE('cmbLinkProtocol').value = '' ;
448
		GetE('txtUrl').value = sHRef ;
448
		GetE('txtUrl').value = sHRef ;
449
	}
449
	}
450
 
450
 
451
	if ( !oPopupMatch )
451
	if ( !oPopupMatch )
452
	{
452
	{
453
		// Get the target.
453
		// Get the target.
454
		var sTarget = oLink.target ;
454
		var sTarget = oLink.target ;
455
 
455
 
456
		if ( sTarget && sTarget.length > 0 )
456
		if ( sTarget && sTarget.length > 0 )
457
		{
457
		{
458
			if ( oRegex.ReserveTarget.test( sTarget ) )
458
			if ( oRegex.ReserveTarget.test( sTarget ) )
459
			{
459
			{
460
				sTarget = sTarget.toLowerCase() ;
460
				sTarget = sTarget.toLowerCase() ;
461
				GetE('cmbTarget').value = sTarget ;
461
				GetE('cmbTarget').value = sTarget ;
462
			}
462
			}
463
			else
463
			else
464
				GetE('cmbTarget').value = 'frame' ;
464
				GetE('cmbTarget').value = 'frame' ;
465
			GetE('txtTargetFrame').value = sTarget ;
465
			GetE('txtTargetFrame').value = sTarget ;
466
		}
466
		}
467
	}
467
	}
468
 
468
 
469
	// Get Advances Attributes
469
	// Get Advances Attributes
470
	GetE('txtAttId').value			= oLink.id ;
470
	GetE('txtAttId').value			= oLink.id ;
471
	GetE('txtAttName').value		= oLink.name ;
471
	GetE('txtAttName').value		= oLink.name ;
472
	GetE('cmbAttLangDir').value		= oLink.dir ;
472
	GetE('cmbAttLangDir').value		= oLink.dir ;
473
	GetE('txtAttLangCode').value	= oLink.lang ;
473
	GetE('txtAttLangCode').value	= oLink.lang ;
474
	GetE('txtAttAccessKey').value	= oLink.accessKey ;
474
	GetE('txtAttAccessKey').value	= oLink.accessKey ;
475
	GetE('txtAttTabIndex').value	= oLink.tabIndex <= 0 ? '' : oLink.tabIndex ;
475
	GetE('txtAttTabIndex').value	= oLink.tabIndex <= 0 ? '' : oLink.tabIndex ;
476
	GetE('txtAttTitle').value		= oLink.title ;
476
	GetE('txtAttTitle').value		= oLink.title ;
477
	GetE('txtAttContentType').value	= oLink.type ;
477
	GetE('txtAttContentType').value	= oLink.type ;
478
	GetE('txtAttCharSet').value		= oLink.charset ;
478
	GetE('txtAttCharSet').value		= oLink.charset ;
479
 
479
 
480
	var sClass ;
480
	var sClass ;
481
	if ( oEditor.FCKBrowserInfo.IsIE )
481
	if ( oEditor.FCKBrowserInfo.IsIE )
482
	{
482
	{
483
		sClass	= oLink.getAttribute('className',2) || '' ;
483
		sClass	= oLink.getAttribute('className',2) || '' ;
484
		// Clean up temporary classes for internal use:
484
		// Clean up temporary classes for internal use:
485
		sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ;
485
		sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ;
486
 
486
 
487
		GetE('txtAttStyle').value	= oLink.style.cssText ;
487
		GetE('txtAttStyle').value	= oLink.style.cssText ;
488
	}
488
	}
489
	else
489
	else
490
	{
490
	{
491
		sClass	= oLink.getAttribute('class',2) || '' ;
491
		sClass	= oLink.getAttribute('class',2) || '' ;
492
		GetE('txtAttStyle').value	= oLink.getAttribute('style',2) || '' ;
492
		GetE('txtAttStyle').value	= oLink.getAttribute('style',2) || '' ;
493
	}
493
	}
494
	GetE('txtAttClasses').value	= sClass ;
494
	GetE('txtAttClasses').value	= sClass ;
495
 
495
 
496
	// Update the Link type combo.
496
	// Update the Link type combo.
497
	GetE('cmbLinkType').value = sType ;
497
	GetE('cmbLinkType').value = sType ;
498
}
498
}
499
 
499
 
500
//#### Link type selection.
500
//#### Link type selection.
501
function SetLinkType( linkType )
501
function SetLinkType( linkType )
502
{
502
{
503
	ShowE('divLinkTypeUrl'		, (linkType == 'url') ) ;
503
	ShowE('divLinkTypeUrl'		, (linkType == 'url') ) ;
504
	ShowE('divLinkTypeAnchor'	, (linkType == 'anchor') ) ;
504
	ShowE('divLinkTypeAnchor'	, (linkType == 'anchor') ) ;
505
	ShowE('divLinkTypeEMail'	, (linkType == 'email') ) ;
505
	ShowE('divLinkTypeEMail'	, (linkType == 'email') ) ;
506
 
506
 
507
	if ( !FCKConfig.LinkDlgHideTarget )
507
	if ( !FCKConfig.LinkDlgHideTarget )
508
		dialog.SetTabVisibility( 'Target'	, (linkType == 'url') ) ;
508
		dialog.SetTabVisibility( 'Target'	, (linkType == 'url') ) ;
509
 
509
 
510
	if ( FCKConfig.LinkUpload )
510
	if ( FCKConfig.LinkUpload )
511
		dialog.SetTabVisibility( 'Upload'	, (linkType == 'url') ) ;
511
		dialog.SetTabVisibility( 'Upload'	, (linkType == 'url') ) ;
512
 
512
 
513
	if ( !FCKConfig.LinkDlgHideAdvanced )
513
	if ( !FCKConfig.LinkDlgHideAdvanced )
514
		dialog.SetTabVisibility( 'Advanced'	, (linkType != 'anchor' || bHasAnchors) ) ;
514
		dialog.SetTabVisibility( 'Advanced'	, (linkType != 'anchor' || bHasAnchors) ) ;
515
 
515
 
516
	if ( linkType == 'email' )
516
	if ( linkType == 'email' )
517
		dialog.SetAutoSize( true ) ;
517
		dialog.SetAutoSize( true ) ;
518
}
518
}
519
 
519
 
520
//#### Target type selection.
520
//#### Target type selection.
521
function SetTarget( targetType )
521
function SetTarget( targetType )
522
{
522
{
523
	GetE('tdTargetFrame').style.display	= ( targetType == 'popup' ? 'none' : '' ) ;
523
	GetE('tdTargetFrame').style.display	= ( targetType == 'popup' ? 'none' : '' ) ;
524
	GetE('tdPopupName').style.display	=
524
	GetE('tdPopupName').style.display	=
525
	GetE('tablePopupFeatures').style.display = ( targetType == 'popup' ? '' : 'none' ) ;
525
	GetE('tablePopupFeatures').style.display = ( targetType == 'popup' ? '' : 'none' ) ;
526
 
526
 
527
	switch ( targetType )
527
	switch ( targetType )
528
	{
528
	{
529
		case "_blank" :
529
		case "_blank" :
530
		case "_self" :
530
		case "_self" :
531
		case "_parent" :
531
		case "_parent" :
532
		case "_top" :
532
		case "_top" :
533
			GetE('txtTargetFrame').value = targetType ;
533
			GetE('txtTargetFrame').value = targetType ;
534
			break ;
534
			break ;
535
		case "" :
535
		case "" :
536
			GetE('txtTargetFrame').value = '' ;
536
			GetE('txtTargetFrame').value = '' ;
537
			break ;
537
			break ;
538
	}
538
	}
539
 
539
 
540
	if ( targetType == 'popup' )
540
	if ( targetType == 'popup' )
541
		dialog.SetAutoSize( true ) ;
541
		dialog.SetAutoSize( true ) ;
542
}
542
}
543
 
543
 
544
//#### Called while the user types the URL.
544
//#### Called while the user types the URL.
545
function OnUrlChange()
545
function OnUrlChange()
546
{
546
{
547
	var sUrl = GetE('txtUrl').value ;
547
	var sUrl = GetE('txtUrl').value ;
548
	var sProtocol = oRegex.UrlOnChangeProtocol.exec( sUrl ) ;
548
	var sProtocol = oRegex.UrlOnChangeProtocol.exec( sUrl ) ;
549
 
549
 
550
	if ( sProtocol )
550
	if ( sProtocol )
551
	{
551
	{
552
		sUrl = sUrl.substr( sProtocol[0].length ) ;
552
		sUrl = sUrl.substr( sProtocol[0].length ) ;
553
		GetE('txtUrl').value = sUrl ;
553
		GetE('txtUrl').value = sUrl ;
554
		GetE('cmbLinkProtocol').value = sProtocol[0].toLowerCase() ;
554
		GetE('cmbLinkProtocol').value = sProtocol[0].toLowerCase() ;
555
	}
555
	}
556
	else if ( oRegex.UrlOnChangeTestOther.test( sUrl ) )
556
	else if ( oRegex.UrlOnChangeTestOther.test( sUrl ) )
557
	{
557
	{
558
		GetE('cmbLinkProtocol').value = '' ;
558
		GetE('cmbLinkProtocol').value = '' ;
559
	}
559
	}
560
}
560
}
561
 
561
 
562
//#### Called while the user types the target name.
562
//#### Called while the user types the target name.
563
function OnTargetNameChange()
563
function OnTargetNameChange()
564
{
564
{
565
	var sFrame = GetE('txtTargetFrame').value ;
565
	var sFrame = GetE('txtTargetFrame').value ;
566
 
566
 
567
	if ( sFrame.length == 0 )
567
	if ( sFrame.length == 0 )
568
		GetE('cmbTarget').value = '' ;
568
		GetE('cmbTarget').value = '' ;
569
	else if ( oRegex.ReserveTarget.test( sFrame ) )
569
	else if ( oRegex.ReserveTarget.test( sFrame ) )
570
		GetE('cmbTarget').value = sFrame.toLowerCase() ;
570
		GetE('cmbTarget').value = sFrame.toLowerCase() ;
571
	else
571
	else
572
		GetE('cmbTarget').value = 'frame' ;
572
		GetE('cmbTarget').value = 'frame' ;
573
}
573
}
574
 
574
 
575
// Accessible popups
575
// Accessible popups
576
function BuildOnClickPopup()
576
function BuildOnClickPopup()
577
{
577
{
578
	var sWindowName = "'" + GetE('txtPopupName').value.replace(/\W/gi, "") + "'" ;
578
	var sWindowName = "'" + GetE('txtPopupName').value.replace(/\W/gi, "") + "'" ;
579
 
579
 
580
	var sFeatures = '' ;
580
	var sFeatures = '' ;
581
	var aChkFeatures = document.getElementsByName( 'chkFeature' ) ;
581
	var aChkFeatures = document.getElementsByName( 'chkFeature' ) ;
582
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
582
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
583
	{
583
	{
584
		if ( i > 0 ) sFeatures += ',' ;
584
		if ( i > 0 ) sFeatures += ',' ;
585
		sFeatures += aChkFeatures[i].value + '=' + ( aChkFeatures[i].checked ? 'yes' : 'no' ) ;
585
		sFeatures += aChkFeatures[i].value + '=' + ( aChkFeatures[i].checked ? 'yes' : 'no' ) ;
586
	}
586
	}
587
 
587
 
588
	if ( GetE('txtPopupWidth').value.length > 0 )	sFeatures += ',width=' + GetE('txtPopupWidth').value ;
588
	if ( GetE('txtPopupWidth').value.length > 0 )	sFeatures += ',width=' + GetE('txtPopupWidth').value ;
589
	if ( GetE('txtPopupHeight').value.length > 0 )	sFeatures += ',height=' + GetE('txtPopupHeight').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 ;
590
	if ( GetE('txtPopupLeft').value.length > 0 )	sFeatures += ',left=' + GetE('txtPopupLeft').value ;
591
	if ( GetE('txtPopupTop').value.length > 0 )		sFeatures += ',top=' + GetE('txtPopupTop').value ;
591
	if ( GetE('txtPopupTop').value.length > 0 )		sFeatures += ',top=' + GetE('txtPopupTop').value ;
592
 
592
 
593
	if ( sFeatures != '' )
593
	if ( sFeatures != '' )
594
		sFeatures = sFeatures + ",status" ;
594
		sFeatures = sFeatures + ",status" ;
595
 
595
 
596
	return ( "window.open(this.href," + sWindowName + ",'" + sFeatures + "'); return false" ) ;
596
	return ( "window.open(this.href," + sWindowName + ",'" + sFeatures + "'); return false" ) ;
597
}
597
}
598
 
598
 
599
//#### Fills all Popup related fields.
599
//#### Fills all Popup related fields.
600
function FillPopupFields( windowName, features )
600
function FillPopupFields( windowName, features )
601
{
601
{
602
	if ( windowName )
602
	if ( windowName )
603
		GetE('txtPopupName').value = windowName ;
603
		GetE('txtPopupName').value = windowName ;
604
 
604
 
605
	var oFeatures = new Object() ;
605
	var oFeatures = new Object() ;
606
	var oFeaturesMatch ;
606
	var oFeaturesMatch ;
607
	while( ( oFeaturesMatch = oRegex.PopupFeatures.exec( features ) ) != null )
607
	while( ( oFeaturesMatch = oRegex.PopupFeatures.exec( features ) ) != null )
608
	{
608
	{
609
		var sValue = oFeaturesMatch[2] ;
609
		var sValue = oFeaturesMatch[2] ;
610
		if ( sValue == ( 'yes' || '1' ) )
610
		if ( sValue == ( 'yes' || '1' ) )
611
			oFeatures[ oFeaturesMatch[1] ] = true ;
611
			oFeatures[ oFeaturesMatch[1] ] = true ;
612
		else if ( ! isNaN( sValue ) && sValue != 0 )
612
		else if ( ! isNaN( sValue ) && sValue != 0 )
613
			oFeatures[ oFeaturesMatch[1] ] = sValue ;
613
			oFeatures[ oFeaturesMatch[1] ] = sValue ;
614
	}
614
	}
615
 
615
 
616
	// Update all features check boxes.
616
	// Update all features check boxes.
617
	var aChkFeatures = document.getElementsByName('chkFeature') ;
617
	var aChkFeatures = document.getElementsByName('chkFeature') ;
618
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
618
	for ( var i = 0 ; i < aChkFeatures.length ; i++ )
619
	{
619
	{
620
		if ( oFeatures[ aChkFeatures[i].value ] )
620
		if ( oFeatures[ aChkFeatures[i].value ] )
621
			aChkFeatures[i].checked = true ;
621
			aChkFeatures[i].checked = true ;
622
	}
622
	}
623
 
623
 
624
	// Update position and size text boxes.
624
	// Update position and size text boxes.
625
	if ( oFeatures['width'] )	GetE('txtPopupWidth').value		= oFeatures['width'] ;
625
	if ( oFeatures['width'] )	GetE('txtPopupWidth').value		= oFeatures['width'] ;
626
	if ( oFeatures['height'] )	GetE('txtPopupHeight').value	= oFeatures['height'] ;
626
	if ( oFeatures['height'] )	GetE('txtPopupHeight').value	= oFeatures['height'] ;
627
	if ( oFeatures['left'] )	GetE('txtPopupLeft').value		= oFeatures['left'] ;
627
	if ( oFeatures['left'] )	GetE('txtPopupLeft').value		= oFeatures['left'] ;
628
	if ( oFeatures['top'] )		GetE('txtPopupTop').value		= oFeatures['top'] ;
628
	if ( oFeatures['top'] )		GetE('txtPopupTop').value		= oFeatures['top'] ;
629
}
629
}
630
 
630
 
631
//#### The OK button was hit.
631
//#### The OK button was hit.
632
function Ok()
632
function Ok()
633
{
633
{
634
	var sUri, sInnerHtml ;
634
	var sUri, sInnerHtml ;
635
	oEditor.FCKUndo.SaveUndoStep() ;
635
	oEditor.FCKUndo.SaveUndoStep() ;
636
 
636
 
637
	switch ( GetE('cmbLinkType').value )
637
	switch ( GetE('cmbLinkType').value )
638
	{
638
	{
639
		case 'url' :
639
		case 'url' :
640
			sUri = GetE('txtUrl').value ;
640
			sUri = GetE('txtUrl').value ;
641
 
641
 
642
			if ( sUri.length == 0 )
642
			if ( sUri.length == 0 )
643
			{
643
			{
644
				alert( FCKLang.DlnLnkMsgNoUrl ) ;
644
				alert( FCKLang.DlnLnkMsgNoUrl ) ;
645
				return false ;
645
				return false ;
646
			}
646
			}
647
 
647
 
648
			sUri = GetE('cmbLinkProtocol').value + sUri ;
648
			sUri = GetE('cmbLinkProtocol').value + sUri ;
649
 
649
 
650
			break ;
650
			break ;
651
 
651
 
652
		case 'email' :
652
		case 'email' :
653
			sUri = GetE('txtEMailAddress').value ;
653
			sUri = GetE('txtEMailAddress').value ;
654
 
654
 
655
			if ( sUri.length == 0 )
655
			if ( sUri.length == 0 )
656
			{
656
			{
657
				alert( FCKLang.DlnLnkMsgNoEMail ) ;
657
				alert( FCKLang.DlnLnkMsgNoEMail ) ;
658
				return false ;
658
				return false ;
659
			}
659
			}
660
 
660
 
661
			sUri = oParser.CreateEMailUri(
661
			sUri = oParser.CreateEMailUri(
662
				sUri,
662
				sUri,
663
				GetE('txtEMailSubject').value,
663
				GetE('txtEMailSubject').value,
664
				GetE('txtEMailBody').value ) ;
664
				GetE('txtEMailBody').value ) ;
665
			break ;
665
			break ;
666
 
666
 
667
		case 'anchor' :
667
		case 'anchor' :
668
			var sAnchor = GetE('cmbAnchorName').value ;
668
			var sAnchor = GetE('cmbAnchorName').value ;
669
			if ( sAnchor.length == 0 ) sAnchor = GetE('cmbAnchorId').value ;
669
			if ( sAnchor.length == 0 ) sAnchor = GetE('cmbAnchorId').value ;
670
 
670
 
671
			if ( sAnchor.length == 0 )
671
			if ( sAnchor.length == 0 )
672
			{
672
			{
673
				alert( FCKLang.DlnLnkMsgNoAnchor ) ;
673
				alert( FCKLang.DlnLnkMsgNoAnchor ) ;
674
				return false ;
674
				return false ;
675
			}
675
			}
676
 
676
 
677
			sUri = '#' + sAnchor ;
677
			sUri = '#' + sAnchor ;
678
			break ;
678
			break ;
679
	}
679
	}
680
 
680
 
681
	// If no link is selected, create a new one (it may result in more than one link creation - #220).
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 ) ;
682
	var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri, true ) ;
683
 
683
 
684
	// If no selection, no links are created, so use the uri as the link text (by dom, 2006-05-26)
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 ) ;
685
	var aHasSelection = ( aLinks.length > 0 ) ;
686
	if ( !aHasSelection )
686
	if ( !aHasSelection )
687
	{
687
	{
688
		sInnerHtml = sUri;
688
		sInnerHtml = sUri;
689
 
689
 
690
		// Built a better text for empty links.
690
		// Built a better text for empty links.
691
		switch ( GetE('cmbLinkType').value )
691
		switch ( GetE('cmbLinkType').value )
692
		{
692
		{
693
			// anchor: use old behavior --> return true
693
			// anchor: use old behavior --> return true
694
			case 'anchor':
694
			case 'anchor':
695
				sInnerHtml = sInnerHtml.replace( /^#/, '' ) ;
695
				sInnerHtml = sInnerHtml.replace( /^#/, '' ) ;
696
				break ;
696
				break ;
697
 
697
 
698
			// url: try to get path
698
			// url: try to get path
699
			case 'url':
699
			case 'url':
700
				var oLinkPathRegEx = new RegExp("//?([^?\"']+)([?].*)?$") ;
700
				var oLinkPathRegEx = new RegExp("//?([^?\"']+)([?].*)?$") ;
701
				var asLinkPath = oLinkPathRegEx.exec( sUri ) ;
701
				var asLinkPath = oLinkPathRegEx.exec( sUri ) ;
702
				if (asLinkPath != null)
702
				if (asLinkPath != null)
703
					sInnerHtml = asLinkPath[1];  // use matched path
703
					sInnerHtml = asLinkPath[1];  // use matched path
704
				break ;
704
				break ;
705
 
705
 
706
			// mailto: try to get email address
706
			// mailto: try to get email address
707
			case 'email':
707
			case 'email':
708
				sInnerHtml = GetE('txtEMailAddress').value ;
708
				sInnerHtml = GetE('txtEMailAddress').value ;
709
				break ;
709
				break ;
710
		}
710
		}
711
 
711
 
712
		// Create a new (empty) anchor.
712
		// Create a new (empty) anchor.
713
		aLinks = [ oEditor.FCK.InsertElement( 'a' ) ] ;
713
		aLinks = [ oEditor.FCK.InsertElement( 'a' ) ] ;
714
	}
714
	}
715
 
715
 
716
	for ( var i = 0 ; i < aLinks.length ; i++ )
716
	for ( var i = 0 ; i < aLinks.length ; i++ )
717
	{
717
	{
718
		oLink = aLinks[i] ;
718
		oLink = aLinks[i] ;
719
 
719
 
720
		if ( aHasSelection )
720
		if ( aHasSelection )
721
			sInnerHtml = oLink.innerHTML ;		// Save the innerHTML (IE changes it if it is like an URL).
721
			sInnerHtml = oLink.innerHTML ;		// Save the innerHTML (IE changes it if it is like an URL).
722
 
722
 
723
		oLink.href = sUri ;
723
		oLink.href = sUri ;
724
		SetAttribute( oLink, '_fcksavedurl', sUri ) ;
724
		SetAttribute( oLink, '_fcksavedurl', sUri ) ;
725
 
725
 
726
		var onclick;
726
		var onclick;
727
		// Accessible popups
727
		// Accessible popups
728
		if( GetE('cmbTarget').value == 'popup' )
728
		if( GetE('cmbTarget').value == 'popup' )
729
		{
729
		{
730
			onclick = BuildOnClickPopup() ;
730
			onclick = BuildOnClickPopup() ;
731
			// Encode the attribute
731
			// Encode the attribute
732
			onclick = encodeURIComponent( " onclick=\"" + onclick + "\"" )  ;
732
			onclick = encodeURIComponent( " onclick=\"" + onclick + "\"" )  ;
733
			SetAttribute( oLink, 'onclick_fckprotectedatt', onclick ) ;
733
			SetAttribute( oLink, 'onclick_fckprotectedatt', onclick ) ;
734
		}
734
		}
735
		else
735
		else
736
		{
736
		{
737
			// Check if the previous onclick was for a popup:
737
			// Check if the previous onclick was for a popup:
738
			// In that case remove the onclick handler.
738
			// In that case remove the onclick handler.
739
			onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
739
			onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ;
740
			if ( onclick )
740
			if ( onclick )
741
			{
741
			{
742
				// Decode the protected string
742
				// Decode the protected string
743
				onclick = decodeURIComponent( onclick ) ;
743
				onclick = decodeURIComponent( onclick ) ;
744
 
744
 
745
				if( oRegex.OnClickPopup.test( onclick ) )
745
				if( oRegex.OnClickPopup.test( onclick ) )
746
					SetAttribute( oLink, 'onclick_fckprotectedatt', '' ) ;
746
					SetAttribute( oLink, 'onclick_fckprotectedatt', '' ) ;
747
			}
747
			}
748
		}
748
		}
749
 
749
 
750
		oLink.innerHTML = sInnerHtml ;		// Set (or restore) the innerHTML
750
		oLink.innerHTML = sInnerHtml ;		// Set (or restore) the innerHTML
751
 
751
 
752
		// Target
752
		// Target
753
		if( GetE('cmbTarget').value != 'popup' )
753
		if( GetE('cmbTarget').value != 'popup' )
754
			SetAttribute( oLink, 'target', GetE('txtTargetFrame').value ) ;
754
			SetAttribute( oLink, 'target', GetE('txtTargetFrame').value ) ;
755
		else
755
		else
756
			SetAttribute( oLink, 'target', null ) ;
756
			SetAttribute( oLink, 'target', null ) ;
757
 
757
 
758
		// Let's set the "id" only for the first link to avoid duplication.
758
		// Let's set the "id" only for the first link to avoid duplication.
759
		if ( i == 0 )
759
		if ( i == 0 )
760
			SetAttribute( oLink, 'id', GetE('txtAttId').value ) ;
760
			SetAttribute( oLink, 'id', GetE('txtAttId').value ) ;
761
 
761
 
762
		// Advances Attributes
762
		// Advances Attributes
763
		SetAttribute( oLink, 'name'		, GetE('txtAttName').value ) ;
763
		SetAttribute( oLink, 'name'		, GetE('txtAttName').value ) ;
764
		SetAttribute( oLink, 'dir'		, GetE('cmbAttLangDir').value ) ;
764
		SetAttribute( oLink, 'dir'		, GetE('cmbAttLangDir').value ) ;
765
		SetAttribute( oLink, 'lang'		, GetE('txtAttLangCode').value ) ;
765
		SetAttribute( oLink, 'lang'		, GetE('txtAttLangCode').value ) ;
766
		SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ;
766
		SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ;
767
		SetAttribute( oLink, 'tabindex'	, ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ;
767
		SetAttribute( oLink, 'tabindex'	, ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ;
768
		SetAttribute( oLink, 'title'	, GetE('txtAttTitle').value ) ;
768
		SetAttribute( oLink, 'title'	, GetE('txtAttTitle').value ) ;
769
		SetAttribute( oLink, 'type'		, GetE('txtAttContentType').value ) ;
769
		SetAttribute( oLink, 'type'		, GetE('txtAttContentType').value ) ;
770
		SetAttribute( oLink, 'charset'	, GetE('txtAttCharSet').value ) ;
770
		SetAttribute( oLink, 'charset'	, GetE('txtAttCharSet').value ) ;
771
 
771
 
772
		if ( oEditor.FCKBrowserInfo.IsIE )
772
		if ( oEditor.FCKBrowserInfo.IsIE )
773
		{
773
		{
774
			var sClass = GetE('txtAttClasses').value ;
774
			var sClass = GetE('txtAttClasses').value ;
775
			// If it's also an anchor add an internal class
775
			// If it's also an anchor add an internal class
776
			if ( GetE('txtAttName').value.length != 0 )
776
			if ( GetE('txtAttName').value.length != 0 )
777
				sClass += ' FCK__AnchorC' ;
777
				sClass += ' FCK__AnchorC' ;
778
			SetAttribute( oLink, 'className', sClass ) ;
778
			SetAttribute( oLink, 'className', sClass ) ;
779
 
779
 
780
			oLink.style.cssText = GetE('txtAttStyle').value ;
780
			oLink.style.cssText = GetE('txtAttStyle').value ;
781
		}
781
		}
782
		else
782
		else
783
		{
783
		{
784
			SetAttribute( oLink, 'class', GetE('txtAttClasses').value ) ;
784
			SetAttribute( oLink, 'class', GetE('txtAttClasses').value ) ;
785
			SetAttribute( oLink, 'style', GetE('txtAttStyle').value ) ;
785
			SetAttribute( oLink, 'style', GetE('txtAttStyle').value ) ;
786
		}
786
		}
787
	}
787
	}
788
 
788
 
789
	// Select the (first) link.
789
	// Select the (first) link.
790
	oEditor.FCKSelection.SelectNode( aLinks[0] );
790
	oEditor.FCKSelection.SelectNode( aLinks[0] );
791
 
791
 
792
	return true ;
792
	return true ;
793
}
793
}
794
 
794
 
795
function BrowseServer()
795
function BrowseServer()
796
{
796
{
797
	OpenFileBrowser( FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ;
797
	OpenFileBrowser( FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ;
798
}
798
}
799
 
799
 
800
function SetUrl( url )
800
function SetUrl( url )
801
{
801
{
802
	GetE('txtUrl').value = url ;
802
	GetE('txtUrl').value = url ;
803
	OnUrlChange() ;
803
	OnUrlChange() ;
804
	dialog.SetSelectedTab( 'Info' ) ;
804
	dialog.SetSelectedTab( 'Info' ) ;
805
}
805
}
806
 
806
 
807
function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
807
function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
808
{
808
{
809
	// Remove animation
809
	// Remove animation
810
	window.parent.Throbber.Hide() ;
810
	window.parent.Throbber.Hide() ;
811
	GetE( 'divUpload' ).style.display  = '' ;
811
	GetE( 'divUpload' ).style.display  = '' ;
812
 
812
 
813
	switch ( errorNumber )
813
	switch ( errorNumber )
814
	{
814
	{
815
		case 0 :	// No errors
815
		case 0 :	// No errors
816
			alert( 'Your file has been successfully uploaded' ) ;
816
			alert( 'Your file has been successfully uploaded' ) ;
817
			break ;
817
			break ;
818
		case 1 :	// Custom error
818
		case 1 :	// Custom error
819
			alert( customMsg ) ;
819
			alert( customMsg ) ;
820
			return ;
820
			return ;
821
		case 101 :	// Custom warning
821
		case 101 :	// Custom warning
822
			alert( customMsg ) ;
822
			alert( customMsg ) ;
823
			break ;
823
			break ;
824
		case 201 :
824
		case 201 :
825
			alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ;
825
			alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ;
826
			break ;
826
			break ;
827
		case 202 :
827
		case 202 :
828
			alert( 'Invalid file type' ) ;
828
			alert( 'Invalid file type' ) ;
829
			return ;
829
			return ;
830
		case 203 :
830
		case 203 :
831
			alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ;
831
			alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ;
832
			return ;
832
			return ;
833
		case 500 :
833
		case 500 :
834
			alert( 'The connector is disabled' ) ;
834
			alert( 'The connector is disabled' ) ;
835
			break ;
835
			break ;
836
		default :
836
		default :
837
			alert( 'Error on file upload. Error number: ' + errorNumber ) ;
837
			alert( 'Error on file upload. Error number: ' + errorNumber ) ;
838
			return ;
838
			return ;
839
	}
839
	}
840
 
840
 
841
	SetUrl( fileUrl ) ;
841
	SetUrl( fileUrl ) ;
842
	GetE('frmUpload').reset() ;
842
	GetE('frmUpload').reset() ;
843
}
843
}
844
 
844
 
845
var oUploadAllowedExtRegex	= new RegExp( FCKConfig.LinkUploadAllowedExtensions, 'i' ) ;
845
var oUploadAllowedExtRegex	= new RegExp( FCKConfig.LinkUploadAllowedExtensions, 'i' ) ;
846
var oUploadDeniedExtRegex	= new RegExp( FCKConfig.LinkUploadDeniedExtensions, 'i' ) ;
846
var oUploadDeniedExtRegex	= new RegExp( FCKConfig.LinkUploadDeniedExtensions, 'i' ) ;
847
 
847
 
848
function CheckUpload()
848
function CheckUpload()
849
{
849
{
850
	var sFile = GetE('txtUploadFile').value ;
850
	var sFile = GetE('txtUploadFile').value ;
851
 
851
 
852
	if ( sFile.length == 0 )
852
	if ( sFile.length == 0 )
853
	{
853
	{
854
		alert( 'Please select a file to upload' ) ;
854
		alert( 'Please select a file to upload' ) ;
855
		return false ;
855
		return false ;
856
	}
856
	}
857
 
857
 
858
	if ( ( FCKConfig.LinkUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) ||
858
	if ( ( FCKConfig.LinkUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) ||
859
		( FCKConfig.LinkUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) )
859
		( FCKConfig.LinkUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) )
860
	{
860
	{
861
		OnUploadCompleted( 202 ) ;
861
		OnUploadCompleted( 202 ) ;
862
		return false ;
862
		return false ;
863
	}
863
	}
864
 
864
 
865
	// Show animation
865
	// Show animation
866
	window.parent.Throbber.Show( 100 ) ;
866
	window.parent.Throbber.Show( 100 ) ;
867
	GetE( 'divUpload' ).style.display  = 'none' ;
867
	GetE( 'divUpload' ).style.display  = 'none' ;
868
 
868
 
869
	return true ;
869
	return true ;
870
}
870
}
871
 
871
 
872
function SetDefaultTarget()
872
function SetDefaultTarget()
873
{
873
{
874
	var target = FCKConfig.DefaultLinkTarget || '' ;
874
	var target = FCKConfig.DefaultLinkTarget || '' ;
875
 
875
 
876
	if ( oLink || target.length == 0 )
876
	if ( oLink || target.length == 0 )
877
		return ;
877
		return ;
878
 
878
 
879
	switch ( target )
879
	switch ( target )
880
	{
880
	{
881
		case '_blank' :
881
		case '_blank' :
882
		case '_self' :
882
		case '_self' :
883
		case '_parent' :
883
		case '_parent' :
884
		case '_top' :
884
		case '_top' :
885
			GetE('cmbTarget').value = target ;
885
			GetE('cmbTarget').value = target ;
886
			break ;
886
			break ;
887
		default :
887
		default :
888
			GetE('cmbTarget').value = 'frame' ;
888
			GetE('cmbTarget').value = 'frame' ;
889
			break ;
889
			break ;
890
	}
890
	}
891
 
891
 
892
	GetE('txtTargetFrame').value = target ;
892
	GetE('txtTargetFrame').value = target ;
893
}
893
}