1075 |
ddelon |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
2 |
<!--
|
|
|
3 |
* FCKeditor - The text editor for internet
|
|
|
4 |
* Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
|
|
5 |
*
|
|
|
6 |
* Licensed under the terms of the GNU Lesser General Public License:
|
|
|
7 |
* http://www.opensource.org/licenses/lgpl-license.php
|
|
|
8 |
*
|
|
|
9 |
* For further information visit:
|
|
|
10 |
* http://www.fckeditor.net/
|
|
|
11 |
*
|
|
|
12 |
* "Support Open Source software. What about a donation today?"
|
|
|
13 |
*
|
|
|
14 |
* File Name: fck_about.html
|
|
|
15 |
* "About" dialog window.
|
|
|
16 |
*
|
|
|
17 |
* File Authors:
|
|
|
18 |
* Frederico Caldeira Knabben (fredck@fckeditor.net)
|
|
|
19 |
-->
|
|
|
20 |
<html>
|
|
|
21 |
<head>
|
|
|
22 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
23 |
<meta name="robots" content="noindex, nofollow">
|
|
|
24 |
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
|
|
|
25 |
<script language="javascript">
|
|
|
26 |
|
|
|
27 |
var oEditor = window.parent.InnerDialogLoaded() ;
|
|
|
28 |
var FCKLang = oEditor.FCKLang ;
|
|
|
29 |
|
|
|
30 |
window.parent.AddTab( 'About', FCKLang.DlgAboutAboutTab ) ;
|
|
|
31 |
window.parent.AddTab( 'License', FCKLang.DlgAboutLicenseTab ) ;
|
|
|
32 |
window.parent.AddTab( 'BrowserInfo', FCKLang.DlgAboutBrowserInfoTab ) ;
|
|
|
33 |
|
|
|
34 |
// Function called when a dialog tag is selected.
|
|
|
35 |
function OnDialogTabChange( tabCode )
|
|
|
36 |
{
|
|
|
37 |
ShowE('divAbout', ( tabCode == 'About' ) ) ;
|
|
|
38 |
ShowE('divLicense', ( tabCode == 'License' ) ) ;
|
|
|
39 |
ShowE('divInfo' , ( tabCode == 'BrowserInfo' ) ) ;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
function SendEMail()
|
|
|
43 |
{
|
|
|
44 |
var eMail = 'mailto:' ;
|
|
|
45 |
eMail += 'fredck' ;
|
|
|
46 |
eMail += '@' ;
|
|
|
47 |
eMail += 'fckeditor' ;
|
|
|
48 |
eMail += '.' ;
|
|
|
49 |
eMail += 'net' ;
|
|
|
50 |
|
|
|
51 |
window.location = eMail ;
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
window.onload = function()
|
|
|
55 |
{
|
|
|
56 |
// Translate the dialog box texts.
|
|
|
57 |
oEditor.FCKLanguageManager.TranslatePage(document) ;
|
|
|
58 |
|
|
|
59 |
window.parent.SetAutoSize( true ) ;
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
</script>
|
|
|
63 |
</head>
|
|
|
64 |
<body scroll="no" style="OVERFLOW: hidden">
|
|
|
65 |
<div id="divAbout">
|
|
|
66 |
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
|
|
|
67 |
<tr>
|
|
|
68 |
<td>
|
|
|
69 |
<img alt="" src="fck_about/logo_fckeditor.gif" width="236" height="41" align="left">
|
|
|
70 |
<table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right">
|
|
|
71 |
<tr>
|
|
|
72 |
<td align="center" nowrap style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid">
|
|
|
73 |
<span fckLang="DlgAboutVersion">version</span>
|
|
|
74 |
<br>
|
|
|
75 |
<b>2.3.2</b><br />
|
|
|
76 |
Build 1082</td>
|
|
|
77 |
</tr>
|
|
|
78 |
</table>
|
|
|
79 |
</td>
|
|
|
80 |
</tr>
|
|
|
81 |
<tr height="100%">
|
|
|
82 |
<td align="center">
|
|
|
83 |
<br>
|
|
|
84 |
<span style="FONT-SIZE: 14px" dir="ltr"><br>
|
|
|
85 |
<b><a href="http://www.fckeditor.net/?about" target="_blank" title="Visit the FCKeditor web site">
|
|
|
86 |
Support <b>Open Source</b> Software</a></b> </span>
|
|
|
87 |
<br><br><br>
|
|
|
88 |
<span fckLang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/?About" target="_blank">
|
|
|
89 |
http://www.fckeditor.net/</a>.
|
|
|
90 |
<br>
|
|
|
91 |
Copyright © 2003-2006 <a href="#" onclick="SendEMail();">Frederico Caldeira
|
|
|
92 |
Knabben</a>
|
|
|
93 |
</td>
|
|
|
94 |
</tr>
|
|
|
95 |
<tr>
|
|
|
96 |
<td align="center">
|
|
|
97 |
<img alt="" src="fck_about/logo_fredck.gif" width="87" height="36">
|
|
|
98 |
</td>
|
|
|
99 |
</tr>
|
|
|
100 |
</table>
|
|
|
101 |
</div>
|
|
|
102 |
<div id="divLicense" style="DISPLAY: none">
|
|
|
103 |
<table height="100%" width="100%">
|
|
|
104 |
<tr>
|
|
|
105 |
<td>
|
|
|
106 |
<span fckLang="DlgAboutLicense">Licensed under the terms of the GNU Lesser General
|
|
|
107 |
Public License</span>
|
|
|
108 |
<br>
|
|
|
109 |
<a href="http://www.opensource.org/licenses/lgpl-license.php" target="_blank">http://www.opensource.org/licenses/lgpl-license.php</a>
|
|
|
110 |
<br>
|
|
|
111 |
</td>
|
|
|
112 |
</tr>
|
|
|
113 |
<tr>
|
|
|
114 |
<td height="100%">
|
|
|
115 |
<iframe height="100%" width="100%" src="fck_about/lgpl.html"></iframe>
|
|
|
116 |
</td>
|
|
|
117 |
</tr>
|
|
|
118 |
</table>
|
|
|
119 |
</div>
|
|
|
120 |
<div id="divInfo" style="DISPLAY: none" dir="ltr">
|
|
|
121 |
<table align="center" width="80%" border="0">
|
|
|
122 |
<tr>
|
|
|
123 |
<td>
|
|
|
124 |
<script language="javascript">
|
|
|
125 |
<!--
|
|
|
126 |
document.write( '<b>User Agent<\/b><br>' + window.navigator.userAgent + '<br><br>' ) ;
|
|
|
127 |
document.write( '<b>Browser<\/b><br>' + window.navigator.appName + ' ' + window.navigator.appVersion + '<br><br>' ) ;
|
|
|
128 |
document.write( '<b>Platform<\/b><br>' + window.navigator.platform + '<br><br>' ) ;
|
|
|
129 |
|
|
|
130 |
var sUserLang = '?' ;
|
|
|
131 |
|
|
|
132 |
if ( window.navigator.language )
|
|
|
133 |
sUserLang = window.navigator.language.toLowerCase() ;
|
|
|
134 |
else if ( window.navigator.userLanguage )
|
|
|
135 |
sUserLang = window.navigator.userLanguage.toLowerCase() ;
|
|
|
136 |
|
|
|
137 |
document.write( '<b>User Language<\/b><br>' + sUserLang ) ;
|
|
|
138 |
//-->
|
|
|
139 |
</script>
|
|
|
140 |
</td>
|
|
|
141 |
</tr>
|
|
|
142 |
</table>
|
|
|
143 |
</div>
|
|
|
144 |
</body>
|
|
|
145 |
</html>
|