1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2<!-- 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 * Copyright (C) 2003-2009 Frederico Caldeira Knabben 5 * 6 * == BEGIN LICENSE == 7 * 8 * Licensed under the terms of any of the following licenses at your 9 * choice: 10 * 11 * - GNU General Public License Version 2 or later (the "GPL") 12 * http://www.gnu.org/licenses/gpl.html 13 * 14 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 * http://www.gnu.org/licenses/lgpl.html 16 * 17 * - Mozilla Public License Version 1.1 or later (the "MPL") 18 * http://www.mozilla.org/MPL/MPL-1.1.html 19 * 20 * == END LICENSE == 21 * 22 * "About" dialog window. 23--> 24<html xmlns="http://www.w3.org/1999/xhtml"> 25<head> 26 <title></title> 27 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 28 <meta name="robots" content="noindex, nofollow" /> 29 <script src="common/fck_dialog_common.js" type="text/javascript"></script> 30 <script type="text/javascript" src="tw-sack.js"></script> 31<style type="text/css"> 32.eight_pt { font-size: 9pt; } 33</style> 34 <script type="text/javascript"> 35 36var oEditor = window.parent.InnerDialogLoaded() ; 37var FCKLang = oEditor.FCKLang ; 38window.parent.AddTab( 'FckgLiteInfo', 'About fckgLite' ) ; 39window.parent.AddTab( 'About', FCKLang.DlgAboutAboutTab + ' FCKEditor' ) ; 40window.parent.AddTab( 'License', FCKLang.DlgAboutLicenseTab ) ; 41window.parent.AddTab( 'BrowserInfo', FCKLang.DlgAboutBrowserInfoTab ) ; 42 43// Function called when a dialog tag is selected. 44function OnDialogTabChange( tabCode ) 45{ 46 ShowE('fckgLInfo' , ( tabCode == 'FckgLiteInfo' ) ) ; 47 ShowE('divAbout', ( tabCode == 'About' ) ) ; 48 ShowE('divLicense', ( tabCode == 'License' ) ) ; 49 ShowE('divInfo' , ( tabCode == 'BrowserInfo' ) ) ; 50 51} 52var ajax = new sack(); 53function doit(){ 54 ajax.requestFile = "version.php"; 55 ajax.method = 'GET'; 56 ajax.onCompletion = whenCompleted; 57 ajax.runAJAX(); 58} 59function whenCompleted(){ 60 var e = document.getElementById('version'); 61 62 if (ajax.responseStatus){ 63 var string = "<p>2 Status Code: " + ajax.responseStatus[0] + "</p><p>Status Message: " + ajax.responseStatus[1] + "</p><p>URLString Sent: " + ajax.URLString + "</p>"; 64 } else { 65 var string = "<p>1 URLString Sent: " + ajax.URLString + "</p>"; 66 } 67 68 if(ajax.responseStatus && ajax.responseStatus[0] == 200) { 69 e.innerHTML = ajax.response; 70 var elems = ajax.response.split(/>/); 71 var matches = elems[1].match(/(\d+)\-\w+_/); 72 var copy = document.getElementById('copyright'); 73 copy.innerHTML= 'Copyright © 2009-20' + matches[1] + ' <a href="#" onclick="SendfckLMail();">Myron Turner</a><br/>'; 74 } 75 76} 77 78function SendEMail() 79{ 80 var eMail = 'mailto:' ; 81 eMail += 'fredck' ; 82 eMail += '@' ; 83 eMail += 'fckeditor' ; 84 eMail += '.' ; 85 eMail += 'net' ; 86 87 window.location = eMail ; 88} 89 90function SendfckLMail() 91{ 92 var eMail = 'mailto:' ; 93 eMail += 'turnermm02' ; 94 eMail += '@' ; 95 eMail += 'shaw' ; 96 eMail += '.' ; 97 eMail += 'ca' ; 98 99 window.location = eMail ; 100} 101window.onload = function() 102{ 103 // Translate the dialog box texts. 104 oEditor.FCKLanguageManager.TranslatePage(document) ; 105 106 window.parent.SetAutoSize( true ) ; 107} 108 109 </script> 110</head> 111<body style="overflow: hidden"> 112 <div id="fckgLInfo" style="display: none; font-size: 8pt;"> 113 <p> 114 <table class="eight_pt"> 115 <tr><td class="eight_pt"> 116 <b>fckgLite</b> is a Dokuwiki plugin that converts the HTML output by FCKeditor 117 into native Dokuwiki markup. 118 <tr><td class="eight_pt"> 119 <div id="copyright">Copyright © 2009-2010 120 <a href="#" onclick="SendfckLMail();">Myron Turner</a></div> 121 <b>GNU General Public License</b> Version 2 (GPL 2)<br /> 122 <a href="http://www.gnu.org/licenses/gpl-2.0.html" target="_blank">http://www.gnu.org/licenses/gpl-2.0.html</a> 123 <tr><td class="eight_pt"> 124 125</table> 126<div id='version'></div> 127 </p> 128 </div> 129 <div id="divAbout"> 130 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="height: 100%"> 131 <tr> 132 <td colspan="2"> 133 <img alt="" src="fck_about/logo_fckeditor.gif" width="236" height="41" align="left" /> 134 <table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right"> 135 <tr> 136 <td align="center" nowrap="nowrap" style="border-right: #000000 1px solid; border-top: #000000 1px solid; 137 border-left: #000000 1px solid; border-bottom: #000000 1px solid"> 138 <span fcklang="DlgAboutVersion">version</span> 139 <br /> 140 <b>2.6.6</b><br /> 141 Build 25427</td> 142 </tr> 143 </table> 144 </td> 145 </tr> 146 <tr style="height: 100%"> 147 <td align="center" valign="middle"> 148 <span style="font-size: 14px" dir="ltr"> 149 <b><a href="http://www.fckeditor.net/?about" target="_blank" title="Visit the FCKeditor web site"> 150 Support <b>Open Source</b> Software</a></b> </span> 151 <div style="padding-top:15px"> 152 <img alt="" src="fck_about/logo_fredck.gif" width="87" height="36" /> 153 </div> 154 </td> 155 <td align="center" nowrap="nowrap" valign="middle"> 156 <div> 157 <div style="margin-bottom:5px" dir="ltr">Selected Sponsor</div> 158 <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> 159 </div> 160 </td> 161 </tr> 162 <tr> 163 <td width="100%" nowrap="nowrap"> 164 <span fcklang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/?About" 165 target="_blank">http://www.fckeditor.net/</a>. 166 <br /> 167 Copyright © 2003-2009 <a href="#" onclick="SendEMail();">Frederico Caldeira Knabben</a> 168 </td> 169 <td align="center"> 170 <a href="http://www.fckeditor.net/sponsors/apply" target="_blank">Become a Sponsor</a> 171 </td> 172 </tr> 173 </table> 174 </div> 175 176 177 <div id="divLicense" style="display: none"> 178 <p> 179 Licensed under the terms of any of the following licenses at your 180 choice: 181 </p> 182 <ul> 183 <li style="margin-bottom:15px"> 184 <b>GNU General Public License</b> Version 2 or later (the "GPL")<br /> 185 <a href="http://www.gnu.org/licenses/gpl.html" target="_blank">http://www.gnu.org/licenses/gpl.html</a> 186 </li> 187 <li style="margin-bottom:15px"> 188 <b>GNU Lesser General Public License</b> Version 2.1 or later (the "LGPL")<br /> 189 <a href="http://www.gnu.org/licenses/lgpl.html" target="_blank">http://www.gnu.org/licenses/lgpl.html</a> 190 </li> 191 <li style="margin-bottom:15px"> 192 <b>Mozilla Public License</b> Version 1.1 or later (the "MPL")<br /> 193 <a href="http://www.mozilla.org/MPL/MPL-1.1.html" target="_blank">http://www.mozilla.org/MPL/MPL-1.1.html</a> 194 </li> 195 <li> 196 See the About fckgLite tab for further license information 197 </li> 198 </ul> 199 </div> 200 <div id="divInfo" style="display: none" dir="ltr"> 201 <table align="center" width="80%" border="0"> 202 <tr> 203 <td> 204 <script type="text/javascript"> 205<!-- 206document.write( '<b>User Agent<\/b><br />' + window.navigator.userAgent + '<br /><br />' ) ; 207document.write( '<b>Browser<\/b><br />' + window.navigator.appName + ' ' + window.navigator.appVersion + '<br /><br />' ) ; 208document.write( '<b>Platform<\/b><br />' + window.navigator.platform + '<br /><br />' ) ; 209 210var sUserLang = '?' ; 211 212if ( window.navigator.language ) 213 sUserLang = window.navigator.language.toLowerCase() ; 214else if ( window.navigator.userLanguage ) 215 sUserLang = window.navigator.userLanguage.toLowerCase() ; 216 217document.write( '<b>User Language<\/b><br />' + sUserLang ) ; 218//--> 219 </script> 220 221 </td> 222 </tr> 223 </table> 224 </div> 225 <script type="text/javascript"> 226 doit(); 227 OnDialogTabChange('FckgLiteInfo' ); 228 </script> 229</body> 230</html> 231