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-2007 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 * Special Chars Selector dialog window. 23--> 24<html> 25 <head> 26 <meta name="robots" content="noindex, nofollow"> 27 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 28 <style type="text/css"> 29 .Hand 30 { 31 cursor: pointer ; 32 cursor: hand ; 33 } 34 .Sample { font-size: 24px; } 35 </style> 36 <script type="text/javascript"> 37 38var oEditor = window.parent.InnerDialogLoaded() ; 39 40var oSample ; 41 42function insertChar(charValue) 43{ 44 oEditor.FCKUndo.SaveUndoStep() ; 45 oEditor.FCK.InsertHtml( charValue || "" ) ; 46 window.parent.Cancel() ; 47} 48 49function over(td) 50{ 51 if ( ! oSample ) 52 return ; 53 oSample.innerHTML = td.innerHTML ; 54 td.className = 'LightBackground SpecialCharsOver Hand' ; 55} 56 57function out(td) 58{ 59 if ( ! oSample ) 60 return ; 61 oSample.innerHTML = " " ; 62 td.className = 'DarkBackground SpecialCharsOut Hand' ; 63} 64 65function setDefaults() 66{ 67 // Gets the sample placeholder. 68 oSample = document.getElementById("SampleTD") ; 69 70 // First of all, translates the dialog box texts. 71 oEditor.FCKLanguageManager.TranslatePage(document) ; 72} 73 74 </script> 75 </HEAD> 76 <BODY onload="setDefaults()" scroll="no"> 77 <table cellpadding="0" cellspacing="0" width="100%" height="100%"> 78 <tr> 79 <td width="100%"> 80 <table cellpadding="1" cellspacing="1" align="center" border="0" width="100%" height="100%"> 81 <script type="text/javascript"> 82var aChars = ["!",""","#","$","%","&","\\'","(",")","*","+","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","€","‘","’","’","“","”","–","—","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ü","ý","þ","ÿ","Œ","œ","‚","‛","„","…","™","►","•","→","⇒","⇔","♦","≈"] ; 83 84var cols = 20 ; 85 86var i = 0 ; 87while (i < aChars.length) 88{ 89 document.write("<TR>") ; 90 for(var j = 0 ; j < cols ; j++) 91 { 92 if (aChars[i]) 93 { 94 document.write('<TD width="1%" class="DarkBackground SpecialCharsOut Hand" align="center" onclick="insertChar(\'' + aChars[i].replace(/&/g, "&") + '\')" onmouseover="over(this)" onmouseout="out(this)">') ; 95 document.write(aChars[i]) ; 96 } 97 else 98 document.write("<TD class='DarkBackground SpecialCharsOut'> ") ; 99 document.write("<\/TD>") ; 100 i++ ; 101 } 102 document.write("<\/TR>") ; 103} 104 </script> 105 </table> 106 </td> 107 <td nowrap> </td> 108 <td valign="top"> 109 <table width="40" cellpadding="0" cellspacing="0" border="0"> 110 <tr> 111 <td id="SampleTD" width="40" height="40" align="center" class="DarkBackground SpecialCharsOut Sample"> </td> 112 </tr> 113 </table> 114 </td> 115 </tr> 116 </table> 117 </BODY> 118</HTML> 119