Revision 1359
Added by Dietmar almost 14 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
14 | 14 |
28 Dec-2010 Build 1358 Dietmar Woellbrink (Luisehahne) |
15 |
! upgrade FCKeditor to Version 2.6.6 |
|
16 |
28 Dec-2010 Build 1358 Dietmar Woellbrink (Luisehahne) |
|
15 | 17 |
! validation fixes in pages backend theme |
16 | 18 |
27 Dec-2010 Build 1357 Frank Heyne (FrankH) |
17 | 19 |
# security fix: in path admin/pages/ - added FTAN check |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC2'); |
55 |
if(!defined('REVISION')) define('REVISION', '1358');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1359');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/modules/fckeditor/uninstall.php | ||
---|---|---|
1 | 1 |
<?php |
2 |
/** |
|
3 |
* |
|
4 |
* @category modules |
|
5 |
* @package wysiwyg |
|
6 |
* @author WebsiteBaker Project |
|
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
8 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
9 |
* @link http://www.websitebaker2.org/ |
|
10 |
* @license http://www.gnu.org/licenses/gpl.html |
|
11 |
* @platform WebsiteBaker 2.8.x |
|
12 |
* @requirements PHP 5.2.2 and higher |
|
13 |
* @version $Id$ |
|
14 |
* @filesource $HeadURL: http://svn29.websitebaker2.org/trunk/wb/modules/fckeditor/uninstall.php $ |
|
15 |
* @lastmodified $Date: 2010-11-23 00:55:43 +0100 (Di, 23. Nov 2010) $ |
|
16 |
* |
|
17 |
*/ |
|
2 | 18 |
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 | 19 |
// Must include code to stop this file being access directly |
27 | 20 |
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); } |
28 | 21 |
|
29 | 22 |
// Delete the editor directory |
30 | 23 |
rm_full_dir(WB_PATH.'/modules/fckeditor/fckeditor'); |
31 |
|
|
32 |
?> |
branches/2.8.x/wb/modules/fckeditor/info.php | ||
---|---|---|
1 |
<?php |
|
2 |
/** |
|
3 |
* |
|
4 |
* @category modules |
|
5 |
* @package wysiwyg |
|
6 |
* @author WebsiteBaker Project |
|
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
8 |
* @copyright 2009-2011, Website Baker Org. e.V. |
|
9 |
* @link http://www.websitebaker2.org/ |
|
10 |
* @license http://www.gnu.org/licenses/gpl.html |
|
11 |
* @platform WebsiteBaker 2.8.x |
|
12 |
* @requirements PHP 5.2.2 and higher |
|
13 |
* @version $Id$ |
|
14 |
* @filesource $HeadURL$ |
|
15 |
* @lastmodified $Date$ |
|
16 |
* |
|
17 |
*/ |
|
18 |
|
|
19 |
$module_directory = 'fckeditor'; |
|
20 |
$module_name = 'FCKeditor'; |
|
21 |
$module_function = 'WYSIWYG'; |
|
22 |
$module_version = '2.9.4'; |
|
23 |
$module_guid = 'ED3B82C1-DB1E-447A-A0FD-E952AFC5F3B9'; |
|
24 |
$module_status = 'Beta'; |
|
25 |
$module_platform = '2.7 | 2.8.x'; |
|
26 |
$module_requirements = 'PHP 5.2.2 or higher, WB 2.7 or higher'; |
|
27 |
$module_author = 'Christian Sommer, P. Widlund, S. Braunewell, M. Gallas, Wouldlouper, Aldus, Luisehahne'; |
|
28 |
$module_license = 'GNU General Public License'; |
|
29 |
$module_description = 'This module allows you to edit the contents of a page using <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a>.'; |
|
30 |
|
|
31 |
?> |
|
1 |
<?php |
|
2 |
/** |
|
3 |
* |
|
4 |
* @category modules |
|
5 |
* @package wysiwyg |
|
6 |
* @author WebsiteBaker Project |
|
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
8 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
9 |
* @link http://www.websitebaker2.org/ |
|
10 |
* @license http://www.gnu.org/licenses/gpl.html |
|
11 |
* @platform WebsiteBaker 2.8.x |
|
12 |
* @requirements PHP 5.2.2 and higher |
|
13 |
* @version $Id$ |
|
14 |
* @filesource $HeadURL$ |
|
15 |
* @lastmodified $Date$ |
|
16 |
* |
|
17 |
*/ |
|
18 |
|
|
19 |
$module_directory = 'fckeditor'; |
|
20 |
$module_name = 'FCKeditor'; |
|
21 |
$module_function = 'WYSIWYG'; |
|
22 |
$module_version = '2.9.6'; |
|
23 |
$module_platform = '2.7 | 2.8.x'; |
|
24 |
$module_requirements = 'PHP 4.3.11 or higher, WB 2.7 or higher'; |
|
25 |
$module_author = 'Christian Sommer, P. Widlund, S. Braunewell, M. Gallas, Wouldlouper, Aldus, Luisehahne'; |
|
26 |
$module_license = 'GNU General Public License'; |
|
27 |
$module_description = 'This module allows you to edit the contents of a page using <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a>.'; |
branches/2.8.x/wb/modules/fckeditor/languages/NL.php | ||
---|---|---|
27 | 27 |
*/ |
28 | 28 |
|
29 | 29 |
// Nederlandstalige beschrijving van de module |
30 |
$module_description = 'Met deze <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a> module kunt u de inhoud van een pagina wijzigen.';
|
|
30 |
$module_description = 'Met deze <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a> module kunt u de inhoud van een pagina wijzigen.';
|
|
31 | 31 |
|
32 | 32 |
?> |
branches/2.8.x/wb/modules/fckeditor/languages/NO.php | ||
---|---|---|
27 | 27 |
*/ |
28 | 28 |
|
29 | 29 |
//Module Description |
30 |
$module_description = 'Med denne modulen kan du redigere innholdet på sidene dine ved å benytte redigeringsverktøyet <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a>.';
|
|
30 |
$module_description = 'Med denne modulen kan du redigere innholdet på sidene dine ved å benytte redigeringsverktøyet <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a>.';
|
|
31 | 31 |
|
32 | 32 |
?> |
branches/2.8.x/wb/modules/fckeditor/languages/DA.php | ||
---|---|---|
27 | 27 |
*/ |
28 | 28 |
|
29 | 29 |
// Dansk modulbeskrivelse |
30 |
$module_description = 'Dette modul muliggør redigering af sideindhold ved hjælp af <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a>.';
|
|
30 |
$module_description = 'Dette modul muliggør redigering af sideindhold ved hjælp af <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a>.';
|
|
31 | 31 |
|
32 | 32 |
?> |
branches/2.8.x/wb/modules/fckeditor/languages/FR.php | ||
---|---|---|
27 | 27 |
----------------------------------------------------------------------------------------- |
28 | 28 |
*/ |
29 | 29 |
//Module Description |
30 |
$module_description = 'Ce module permet de modifier le contenu de la page avec <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a>.';
|
|
30 |
$module_description = 'Ce module permet de modifier le contenu de la page avec <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a>.';
|
|
31 | 31 |
|
32 | 32 |
?> |
branches/2.8.x/wb/modules/fckeditor/languages/DE.php | ||
---|---|---|
27 | 27 |
*/ |
28 | 28 |
|
29 | 29 |
// Deutsche Modulbeschreibung |
30 |
$module_description = 'Dieses Modul erlaubt das bearbeiten von Seiteninhalten mit dem <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.5</a>.';
|
|
30 |
$module_description = 'Dieses Modul erlaubt das bearbeiten von Seiteninhalten mit dem <a href="http://www.fckeditor.net/" target="_blank">FCKeditor v2.6.6</a>.';
|
|
31 | 31 |
|
32 | 32 |
?> |
branches/2.8.x/wb/modules/fckeditor/include.php | ||
---|---|---|
2 | 2 |
/** |
3 | 3 |
* |
4 | 4 |
* @category modules |
5 |
* @package fckeditor
|
|
5 |
* @package wysiwyg
|
|
6 | 6 |
* @author WebsiteBaker Project |
7 | 7 |
* @copyright 2004-2009, Ryan Djurovich |
8 |
* @copyright 2009-2011, Website Baker Org. e.V.
|
|
8 |
* @copyright 2009-2010, Website Baker Org. e.V.
|
|
9 | 9 |
* @link http://www.websitebaker2.org/ |
10 | 10 |
* @license http://www.gnu.org/licenses/gpl.html |
11 | 11 |
* @platform WebsiteBaker 2.8.x |
... | ... | |
22 | 22 |
} |
23 | 23 |
|
24 | 24 |
function get_template_name() { |
25 |
global $database; |
|
25 | 26 |
// returns the template name of the current displayed page |
26 | 27 |
|
27 | 28 |
// Loading config.php is not needed here, it is loaded before. It breaks the module when the editor is called form another dir as WB_PATH/modules/mymodule |
28 | 29 |
// require_once('../../config.php'); |
29 |
require_once(WB_PATH. '/framework/class.database.php'); |
|
30 | 30 |
|
31 | 31 |
// work out default editor.css file for CKeditor |
32 | 32 |
if(file_exists(WB_PATH .'/templates/' .DEFAULT_TEMPLATE .'/editor.css')) { |
... | ... | |
40 | 40 |
$pageid = (int) $_GET["page_id"]; |
41 | 41 |
|
42 | 42 |
// obtain template folder of current page from the database |
43 |
if(!isset($admin)) { |
|
44 |
$database = new database(); |
|
45 |
} |
|
46 | 43 |
$query_page = "SELECT template FROM " .TABLE_PREFIX ."pages WHERE page_id =$pageid"; |
47 | 44 |
$pagetpl = $database->get_one($query_page); // if empty, default template is used |
48 | 45 |
|
... | ... | |
114 | 111 |
$oFCKeditor->Height = $height; |
115 | 112 |
$oFCKeditor->Create(); |
116 | 113 |
} |
117 |
|
|
118 |
?> |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fckeditor.php | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
/* |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fckpackager.xml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8" ?> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
... | ... | |
27 | 27 |
<Package> |
28 | 28 |
<Header><![CDATA[/* |
29 | 29 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
30 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
30 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
31 | 31 |
* |
32 | 32 |
* == BEGIN LICENSE == |
33 | 33 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/license.txt | ||
---|---|---|
1 | 1 |
FCKeditor - The text editor for Internet - http://www.fckeditor.net |
2 |
Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
2 |
Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
3 | 3 |
|
4 | 4 |
Licensed under the terms of any of the following licenses at your |
5 | 5 |
choice: |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fcktemplates.xml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8" ?> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fckconfig.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
55 | 55 |
FCKConfig.AutoGrowMax = 400 ; |
56 | 56 |
|
57 | 57 |
// FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ; // ASP style server side code <%...%> |
58 |
// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code |
|
58 | 59 |
// FCKConfig.ProtectedSource.Add( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi ) ; // ASP.Net style tags <asp:control> |
59 |
// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code |
|
60 |
// FCKConfig.ProtectedSource.Add( /<object[\s|\S]+?<\/object>/gi ) ; |
|
61 | 60 |
|
62 | 61 |
FCKConfig.AutoDetectLanguage = true ; |
63 | 62 |
FCKConfig.DefaultLanguage = 'en' ; |
... | ... | |
201 | 200 |
// Attributes that will be removed |
202 | 201 |
FCKConfig.RemoveAttributes = 'class,style,lang,width,height,align,hspace,valign' ; |
203 | 202 |
|
204 |
FCKConfig.CustomStyles = |
|
205 |
{ |
|
206 |
'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } } |
|
207 |
}; |
|
203 |
//FCKConfig.CustomStyles =
|
|
204 |
//{
|
|
205 |
// 'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } }
|
|
206 |
//};
|
|
208 | 207 |
|
209 | 208 |
// Do not add, rename or remove styles here. Only apply definition changes. |
210 | 209 |
FCKConfig.CoreStyles = |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fckeditor.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
59 | 59 |
*/ |
60 | 60 |
FCKeditor.MinWidth = 750 ; |
61 | 61 |
|
62 |
FCKeditor.prototype.Version = '2.6.5' ;
|
|
63 |
FCKeditor.prototype.VersionBuild = '23959' ;
|
|
62 |
FCKeditor.prototype.Version = '2.6.6' ;
|
|
63 |
FCKeditor.prototype.VersionBuild = '25427' ;
|
|
64 | 64 |
|
65 | 65 |
FCKeditor.prototype.Create = function() |
66 | 66 |
{ |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_form.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_about.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
... | ... | |
78 | 78 |
border-left: #000000 1px solid; border-bottom: #000000 1px solid"> |
79 | 79 |
<span fcklang="DlgAboutVersion">version</span> |
80 | 80 |
<br /> |
81 |
<b>2.6.5</b><br />
|
|
82 |
Build 23959</td>
|
|
81 |
<b>2.6.6</b><br />
|
|
82 |
Build 25427</td>
|
|
83 | 83 |
</tr> |
84 | 84 |
</table> |
85 | 85 |
</td> |
... | ... | |
105 | 105 |
<span fcklang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/?About" |
106 | 106 |
target="_blank">http://www.fckeditor.net/</a>. |
107 | 107 |
<br /> |
108 |
Copyright © 2003-2009 <a href="#" onclick="SendEMail();">Frederico Caldeira Knabben</a>
|
|
108 |
Copyright © 2003-2010 <a href="#" onclick="SendEMail();">Frederico Caldeira Knabben</a>
|
|
109 | 109 |
</td> |
110 | 110 |
<td align="center"> |
111 | 111 |
<a href="http://www.fckeditor.net/sponsors/apply" target="_blank">Become a Sponsor</a> |
... | ... | |
118 | 118 |
<tr> |
119 | 119 |
<td align="center" valign="middle"> |
120 | 120 |
<span fcklang="DlgAboutModule" style="font-size: 12px" dir="ltr"> |
121 |
Modified for Website Baker Version 2.8.x<br />Modulversion 2.9.4
|
|
121 |
Modified for Website Baker Version 2.8.2 and higher<br />Modulversion 2.9.6
|
|
122 | 122 |
</span> |
123 | 123 |
</td> |
124 | 124 |
<td> </td> |
... | ... | |
126 | 126 |
<tr> |
127 | 127 |
<td align="center" valign="middle"> |
128 | 128 |
<span style="font-size: 12px" dir="ltr"> |
129 |
<b><a href="http://www.websitebaker.org" target="_blank" title="Visit the Website Baker web site"> |
|
129 |
<b><a href="http://www.websitebaker2.org" target="_blank" title="Visit the Website Baker web site">
|
|
130 | 130 |
Support <b>Website Baker</b> CMS</a></b> </span> |
131 | 131 |
<div style="padding-top:15px"> |
132 |
<a href="http://club.websitebakers.com/" target="_blank" title="The club is named Website Baker Org The club shall appear in the register of associations and then bear the additional e.V.">
|
|
133 |
<img alt="Website Baker Org e.V." src="fck_about/wb-logo.gif" title="The association has its seat in Schwanewede, Germany." />
|
|
132 |
<a href="http://www.websitebaker2.org/en/organisation/the-association.php" target="_blank" title="Website Baker Org e.V.">
|
|
133 |
<img alt="Website Baker Org e.V." src="fck_about/wb-logo.gif" title="Website Baker Org e.V." />
|
|
134 | 134 |
</a> |
135 | 135 |
</div> |
136 | 136 |
</td> |
137 | 137 |
<td></td> |
138 | 138 |
</tr> |
139 |
|
|
140 | 139 |
</table> |
141 | 140 |
</div> |
142 | 141 |
<div id="divLicense" style="display: none"> |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_anchor.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_replace.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_button.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_template.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_paste.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_specialchar.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_select.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_colorselector.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_image/fck_image.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
191 | 191 |
|
192 | 192 |
GetE('txtLnkUrl').value = sLinkUrl ; |
193 | 193 |
GetE('cmbLnkTarget').value = oLink.target ; |
194 |
GetE('cmbLnkContentRel').value = oLink.rel ; |
|
195 |
GetE('txtLnkTitle').value = oLink.title ; |
|
196 |
GetE('txtLnkId').value = oLink.id ; |
|
197 |
var sClass ; |
|
198 |
if ( oEditor.FCKBrowserInfo.IsIE ) |
|
199 |
{ |
|
200 |
sClass = oLink.getAttribute('className',2) || '' ; |
|
201 |
// Clean up temporary classes for internal use: |
|
202 |
sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ; |
|
203 |
|
|
204 |
GetE('txtLnkStyle').value = oLink.style.cssText ; |
|
205 | 194 |
} |
206 |
else |
|
207 |
{ |
|
208 |
sClass = oLink.getAttribute('class',2) || '' ; |
|
209 |
GetE('txtLnkStyle').value = oLink.getAttribute('style',2) || '' ; |
|
210 |
} |
|
211 |
GetE('txtLnkClasses').value = sClass ; |
|
212 | 195 |
|
213 |
} |
|
214 |
|
|
215 | 196 |
UpdatePreview() ; |
216 | 197 |
} |
217 | 198 |
|
... | ... | |
282 | 263 |
} |
283 | 264 |
|
284 | 265 |
SetAttribute( oLink, '_fcksavedurl', sLnkUrl ) ; |
285 |
SetAttribute( oLink, 'target', GetE('cmbLnkTarget').value ) ; |
|
286 |
SetAttribute( oLink, 'rel', GetE('cmbLnkContentRel').value ) ; |
|
287 |
SetAttribute( oLink, 'id', GetE('txtLnkId').value ) ; |
|
288 |
SetAttribute( oLink, 'title', GetE('txtLnkTitle').value ) ; |
|
289 |
|
|
290 |
if ( oEditor.FCKBrowserInfo.IsIE ) |
|
291 |
{ |
|
292 |
var sClass = GetE('txtAttClasses').value ; |
|
293 |
// If it's also an anchor add an internal class |
|
294 |
if ( GetE('txtLnkName').value.length != 0 ) |
|
295 |
sClass += ' FCK__AnchorC' ; |
|
296 |
SetAttribute( oLink, 'className', sClass ) ; |
|
297 |
|
|
298 |
oLink.style.cssText = GetE('txtLnkStyle').value ; |
|
299 |
} |
|
300 |
else |
|
301 |
{ |
|
302 |
SetAttribute( oLink, 'class', GetE('txtLnkClasses').value ) ; |
|
303 |
SetAttribute( oLink, 'style', GetE('txtLnkStyle').value ) ; |
|
304 |
} |
|
305 |
|
|
266 |
SetAttribute( oLink, 'target', GetE('cmbLnkTarget').value ) ; |
|
306 | 267 |
} |
307 | 268 |
|
308 | 269 |
return true ; |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_image/fck_image_preview.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_image.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_scayt.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_tablecell.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_table.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_textfield.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_docprops.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link/fck_link_org.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link/fck_link.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_radiobutton.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_flash.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_hiddenfield.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_source.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.css | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_smiley.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_link_org.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_listprop.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_select/fck_select.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_textarea.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_scayt/index.php | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
|
3 |
// $Id: index.php 915 2009-01-21 19:27:01Z Ruebenwurzel $
|
|
3 |
// $Id: index.php 4 2010-11-22 23:55:43Z Luisehahne $
|
|
4 | 4 |
|
5 | 5 |
/* |
6 | 6 |
|
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_div.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_spellerpages.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_checkbox.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/fckeditor.original.html | ||
---|---|---|
1 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
<!-- |
3 | 3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
4 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
4 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
5 | 5 |
* |
6 | 6 |
* == BEGIN LICENSE == |
7 | 7 |
* |
... | ... | |
375 | 375 |
|
376 | 376 |
// Gecko and Webkit browsers don't calculate well the IFRAME size so we must |
377 | 377 |
// recalculate it every time the window size changes. |
378 |
if ( FCKBrowserInfo.IsGecko || FCKBrowserInfo.IsSafari )
|
|
378 |
if ( FCKBrowserInfo.IsGecko || ( FCKBrowserInfo.IsSafari && !FCKBrowserInfo.IsSafari3 ) )
|
|
379 | 379 |
{ |
380 | 380 |
window.onresize = function( e ) |
381 | 381 |
{ |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/fo.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/bs.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/cs.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
532 | 532 |
DlgDivStyle : "Styl", |
533 | 533 |
DlgDivInlineStyle : "Vložený styl", |
534 | 534 |
|
535 |
ScaytTitle : "SCAYT", //MISSING
|
|
536 |
ScaytTitleOptions : "Options", //MISSING
|
|
537 |
ScaytTitleLangs : "Languages", //MISSING
|
|
538 |
ScaytTitleAbout : "About" //MISSING
|
|
535 |
ScaytTitle : "SCAYT", |
|
536 |
ScaytTitleOptions : "Nastavení",
|
|
537 |
ScaytTitleLangs : "Jazyky",
|
|
538 |
ScaytTitleAbout : "O aplikaci"
|
|
539 | 539 |
}; |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/en-au.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Stylesheet Classes", |
188 | 188 |
DlgGenTitle : "Advisory Title", |
189 | 189 |
DlgGenContType : "Advisory Content Type", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Linked Resource Charset", |
191 | 192 |
DlgGenStyle : "Style", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "License", |
526 | 527 |
DlgAboutVersion : "version", |
527 | 528 |
DlgAboutInfo : "For further information go to", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "General", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/es.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/km.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/eu.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/ko.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/is.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/gu.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/hu.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Stíluskészlet", |
188 | 188 |
DlgGenTitle : "Súgócimke", |
189 | 189 |
DlgGenContType : "Súgó tartalomtípusa", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Hivatkozott tartalom kódlapja", |
191 | 192 |
DlgGenStyle : "Stílus", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "Licensz", |
526 | 527 |
DlgAboutVersion : "verzió", |
527 | 528 |
DlgAboutInfo : "További információkért látogasson el ide:", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "General", //MISSING |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/no.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/sk.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Trieda štýlu", |
188 | 188 |
DlgGenTitle : "Pomocný titulok", |
189 | 189 |
DlgGenContType : "Pomocný typ obsahu", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Priradená znaková sada", |
191 | 192 |
DlgGenStyle : "Štýl", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "Licencia", |
526 | 527 |
DlgAboutVersion : "verzia", |
527 | 528 |
DlgAboutInfo : "Viac informácií získate na", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "Hlavné", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/vi.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/zh-cn.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/uk.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Клас CSS", |
188 | 188 |
DlgGenTitle : "Заголовок", |
189 | 189 |
DlgGenContType : "Тип вмісту", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Кодировка", |
191 | 192 |
DlgGenStyle : "Стиль CSS", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "Ліцензія", |
526 | 527 |
DlgAboutVersion : "Версія", |
527 | 528 |
DlgAboutInfo : "Додаткову інформацію дивіться на ", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "Загальна", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/en-uk.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Stylesheet Classes", |
188 | 188 |
DlgGenTitle : "Advisory Title", |
189 | 189 |
DlgGenContType : "Advisory Content Type", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Linked Resource Charset", |
191 | 192 |
DlgGenStyle : "Style", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "License", |
526 | 527 |
DlgAboutVersion : "version", |
527 | 528 |
DlgAboutInfo : "For further information go to", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "General", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/ms.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/ro.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/pt-br.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/ru.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Класс CSS", |
188 | 188 |
DlgGenTitle : "Заголовок", |
189 | 189 |
DlgGenContType : "Тип содержимого", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Кодировка", |
191 | 192 |
DlgGenStyle : "Стиль CSS", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "Лицензия", |
526 | 527 |
DlgAboutVersion : "Версия", |
527 | 528 |
DlgAboutInfo : "Для большей информации, посетите", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "Информация", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/af.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/fr-ca.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
187 | 187 |
DlgGenClass : "Classes de feuilles de style", |
188 | 188 |
DlgGenTitle : "Titre", |
189 | 189 |
DlgGenContType : "Type de contenu", |
190 |
DlgGenContRel : "Relationtyp", |
|
190 | 191 |
DlgGenLinkCharset : "Encodage de caractère", |
191 | 192 |
DlgGenStyle : "Style", |
192 | 193 |
|
... | ... | |
525 | 526 |
DlgAboutLicenseTab : "License", |
526 | 527 |
DlgAboutVersion : "Version", |
527 | 528 |
DlgAboutInfo : "Pour plus d'informations, visiter", |
528 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
529 | 530 |
|
530 | 531 |
// Div Dialog |
531 | 532 |
DlgDivGeneralTab : "Général", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/nb.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/bn.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/el.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/en.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
... | ... | |
526 | 526 |
DlgAboutLicenseTab : "License", |
527 | 527 |
DlgAboutVersion : "version", |
528 | 528 |
DlgAboutInfo : "For further information go to", |
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.4",
|
|
529 |
DlgAboutModule : "Developed for Website Baker<br />modul version 2.9.6",
|
|
530 | 530 |
|
531 | 531 |
// Div Dialog |
532 | 532 |
DlgDivGeneralTab : "General", |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/ar.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/lang/gl.js | ||
---|---|---|
1 | 1 |
/* |
2 | 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
3 |
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
|
3 |
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
|
4 | 4 |
* |
5 | 5 |
* == BEGIN LICENSE == |
6 | 6 |
* |
Also available in: Unified diff
upgrade FCKeditor to Version 2.6.6