1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
8
* Licensed under the terms of any of the following licenses at your
11
* - GNU General Public License Version 2 or later (the "GPL")
12
* http://www.gnu.org/licenses/gpl.html
14
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15
* http://www.gnu.org/licenses/lgpl.html
17
* - Mozilla Public License Version 1.1 or later (the "MPL")
18
* http://www.mozilla.org/MPL/MPL-1.1.html
22
* "About" dialog window.
24
<html xmlns="http://www.w3.org/1999/xhtml">
27
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
28
<meta name="robots" content="noindex, nofollow" />
29
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
30
<script type="text/javascript">
32
var oEditor = window.parent.InnerDialogLoaded() ;
33
var FCKLang = oEditor.FCKLang ;
35
window.parent.AddTab( 'About', FCKLang.DlgAboutAboutTab ) ;
36
window.parent.AddTab( 'License', FCKLang.DlgAboutLicenseTab ) ;
37
window.parent.AddTab( 'BrowserInfo', FCKLang.DlgAboutBrowserInfoTab ) ;
39
// Function called when a dialog tag is selected.
40
function OnDialogTabChange( tabCode )
42
ShowE('divAbout', ( tabCode == 'About' ) ) ;
43
ShowE('divLicense', ( tabCode == 'License' ) ) ;
44
ShowE('divInfo' , ( tabCode == 'BrowserInfo' ) ) ;
49
var eMail = 'mailto:' ;
52
eMail += 'fckeditor' ;
56
window.location = eMail ;
59
window.onload = function()
61
// Translate the dialog box texts.
62
oEditor.FCKLanguageManager.TranslatePage(document) ;
64
window.parent.SetAutoSize( true ) ;
69
<body style="overflow: hidden">
71
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="height: 100%">
74
<img alt="" src="fck_about/logo_fckeditor.gif" width="236" height="41" align="left" />
75
<table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right">
77
<td align="center" nowrap="nowrap" style="border-right: #000000 1px solid; border-top: #000000 1px solid;
78
border-left: #000000 1px solid; border-bottom: #000000 1px solid">
79
<span fcklang="DlgAboutVersion">version</span>
87
<tr style="height: 100%">
88
<td align="center" valign="middle">
89
<span style="font-size: 14px" dir="ltr">
90
<b><a href="http://www.fckeditor.net/?about" target="_blank" title="Visit the FCKeditor web site">
91
Support <b>Open Source</b> Software</a></b> </span>
92
<div style="padding-top:15px">
93
<img alt="" src="fck_about/logo_fredck.gif" width="87" height="36" />
96
<td align="center" nowrap="nowrap" valign="middle">
98
<div style="margin-bottom:5px" dir="ltr">Selected Sponsor</div>
99
<a href="http://www.spellchecker.net/fckeditor/" target="_blank"><img alt="Selected Sponsor" border="0" src="fck_about/sponsors/spellchecker_net.gif" width="75" height="75" /></a>
104
<td width="100%" nowrap="nowrap">
105
<span fcklang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/?About"
106
target="_blank">http://www.fckeditor.net/</a>.
108
Copyright © 2003-2010 <a href="#" onclick="SendEMail();">Frederico Caldeira Knabben</a>
111
<a href="http://www.fckeditor.net/sponsors/apply" target="_blank">Become a Sponsor</a>
116
<div id="divLicense" style="display: none">
118
Licensed under the terms of any of the following licenses at your
122
<li style="margin-bottom:15px">
123
<b>GNU General Public License</b> Version 2 or later (the "GPL")<br />
124
<a href="http://www.gnu.org/licenses/gpl.html" target="_blank">http://www.gnu.org/licenses/gpl.html</a>
126
<li style="margin-bottom:15px">
127
<b>GNU Lesser General Public License</b> Version 2.1 or later (the "LGPL")<br />
128
<a href="http://www.gnu.org/licenses/lgpl.html" target="_blank">http://www.gnu.org/licenses/lgpl.html</a>
131
<b>Mozilla Public License</b> Version 1.1 or later (the "MPL")<br />
132
<a href="http://www.mozilla.org/MPL/MPL-1.1.html" target="_blank">http://www.mozilla.org/MPL/MPL-1.1.html</a>
136
<div id="divInfo" style="display: none" dir="ltr">
137
<table align="center" width="80%" border="0">
140
<script type="text/javascript">
142
document.write( '<b>User Agent<\/b><br />' + window.navigator.userAgent + '<br /><br />' ) ;
143
document.write( '<b>Browser<\/b><br />' + window.navigator.appName + ' ' + window.navigator.appVersion + '<br /><br />' ) ;
144
document.write( '<b>Platform<\/b><br />' + window.navigator.platform + '<br /><br />' ) ;
146
var sUserLang = '?' ;
148
if ( window.navigator.language )
149
sUserLang = window.navigator.language ;
150
else if ( window.navigator.userLanguage )
151
sUserLang = window.navigator.userLanguage ;
153
document.write( '<b>Language<\/b><br />' + sUserLang ) ;