[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog/fck_universalk
From: |
skwashd |
Subject: |
[Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog/fck_universalkey multihexa.js, 1.2 fck_universalkey.css, 1.2 dialogue.js, 1.2 diacritic.js, 1.2 data.js, 1.2 |
Date: |
Thu, 4 Aug 2005 05:54:00 +0200 |
Update of news_admin/js/fckeditor/editor/dialog/fck_universalkey
Modified Files:
Branch: MAIN
multihexa.js lines: +22 -25
fck_universalkey.css lines: +1 -4
dialogue.js lines: +1 -4
diacritic.js lines: +1 -4
data.js lines: +3 -4
Log Message:
new newsletter builder, updated FCK and a few other things
====================================================
Index: news_admin/js/fckeditor/editor/dialog/fck_universalkey/multihexa.js
diff -u news_admin/js/fckeditor/editor/dialog/fck_universalkey/multihexa.js:1.1
news_admin/js/fckeditor/editor/dialog/fck_universalkey/multihexa.js:1.2
--- news_admin/js/fckeditor/editor/dialog/fck_universalkey/multihexa.js:1.1
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/fck_universalkey/multihexa.js Thu Aug
4 03:54:31 2005
@@ -1,6 +1,6 @@
/*
* FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
@@ -12,9 +12,6 @@
* Scripts for the fck_universalkey.html page.
* Definition des 104 caracteres en hexa unicode.
*
- * Version: 2.0 RC3
- * Modified: 2005-02-10 17:58:53
- *
* File Authors:
* Michel Staelens (address@hidden)
* Bernadette Cierzniak
@@ -229,36 +226,36 @@
// Arabic Keystroke Translator
function arkey(a) {
if ((document.layers)|(navigator.userAgent.indexOf("MSIE
4")>-1)|(langue!="Arabic")) return true;
- key=event.keyCode;
+ keyCode=event.keyCode;
entry=true;
cont=event.srcElement ;
- if (key>64 && key<91) {
+ if (keyCode>64 && keyCode<91) {
entry=false;
- source='? ??? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ';
- shsource='? ??} ] ? [ ??? ÷ ? ? / ? à ? ? ? ? ?? {
? ? ? ~';
+ source='Ø´ ÙØ§Ø¤ Ù Ø« ب ٠ا ٠ت Ù Ù
Ø© Ù Ø®
Ø Ø¶ ٠س ٠ع ر ص Ø¡ غ ئ ';
+ shsource='Ù ÙØ¢} ] Ù [ ÙØ£Ø£ ÷ Ù Ø / Ø¢ à Ø
Ù Ù Ù ÙØ¥ { ٠٠إ ~';
- if (event.shiftKey) cont.value +=
shsource.substr((key-64)*2-2,2);
+ if (event.shiftKey) cont.value +=
shsource.substr((keyCode-64)*2-2,2);
else
- cont.value += source.substr((key-64)*2-2,2);
+ cont.value += source.substr((keyCode-64)*2-2,2);
if (cont.value.substr(cont.value.length-1,1)==' ')
cont.value=cont.value.substr(0,cont.value.length-1);
}
if (event.shiftKey) {
- if (key==186) {cont.value += ':';entry=false;}
- if (key==188) {cont.value += ',';entry=false;}
- if (key==190) {cont.value += '.';entry=false;}
- if (key==191) {cont.value += '?';entry=false;}
- if (key==192) {cont.value += '?';entry=false;}
- if (key==219) {cont.value += '<';entry=false;}
- if (key==221) {cont.value += '>';entry=false;}
+ if (keyCode==186) {cont.value += ':';entry=false;}
+ if (keyCode==188) {cont.value += ',';entry=false;}
+ if (keyCode==190) {cont.value += '.';entry=false;}
+ if (keyCode==191) {cont.value += 'Ø';entry=false;}
+ if (keyCode==192) {cont.value += 'Ù';entry=false;}
+ if (keyCode==219) {cont.value += '<';entry=false;}
+ if (keyCode==221) {cont.value += '>';entry=false;}
} else {
- if (key==186) {cont.value += '?';entry=false;}
- if (key==188) {cont.value += '?';entry=false;}
- if (key==190) {cont.value += '?';entry=false;}
- if (key==191) {cont.value += '?';entry=false;}
- if (key==192) {cont.value += '?';entry=false;}
- if (key==219) {cont.value += '?';entry=false;}
- if (key==221) {cont.value += '?';entry=false;}
- if (key==222) {cont.value += '?';entry=false;}
+ if (keyCode==186) {cont.value += 'Ù';entry=false;}
+ if (keyCode==188) {cont.value += 'Ù';entry=false;}
+ if (keyCode==190) {cont.value += 'ز';entry=false;}
+ if (keyCode==191) {cont.value += 'ظ';entry=false;}
+ if (keyCode==192) {cont.value += 'ذ';entry=false;}
+ if (keyCode==219) {cont.value += 'ج';entry=false;}
+ if (keyCode==221) {cont.value += 'د';entry=false;}
+ if (keyCode==222) {cont.value += 'Ø·';entry=false;}
}
====================================================
Index:
news_admin/js/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css
diff -u
news_admin/js/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css:1.1
news_admin/js/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css:1.2
---
news_admin/js/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css:1.1
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css
Thu Aug 4 03:54:31 2005
@@ -1,6 +1,6 @@
/*
* FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
@@ -10,9 +10,6 @@
*
* File Name: fck_universalkey.css
* CSS styles for the Universal Keyboard.
- *
- * Version: 2.0 RC3
- * Modified: 2005-02-10 18:06:16
*
* File Authors:
* Michel Staelens (address@hidden)
====================================================
Index: news_admin/js/fckeditor/editor/dialog/fck_universalkey/dialogue.js
diff -u news_admin/js/fckeditor/editor/dialog/fck_universalkey/dialogue.js:1.1
news_admin/js/fckeditor/editor/dialog/fck_universalkey/dialogue.js:1.2
--- news_admin/js/fckeditor/editor/dialog/fck_universalkey/dialogue.js:1.1
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/fck_universalkey/dialogue.js Thu Aug
4 03:54:31 2005
@@ -1,6 +1,6 @@
/*
* FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
@@ -10,9 +10,6 @@
*
* File Name: dialogue.js
* Scripts for the fck_universalkey.html page.
- *
- * Version: 2.0 RC3
- * Modified: 2005-02-10 17:56:14
*
* File Authors:
* Michel Staelens (address@hidden)
====================================================
Index: news_admin/js/fckeditor/editor/dialog/fck_universalkey/diacritic.js
diff -u news_admin/js/fckeditor/editor/dialog/fck_universalkey/diacritic.js:1.1
news_admin/js/fckeditor/editor/dialog/fck_universalkey/diacritic.js:1.2
--- news_admin/js/fckeditor/editor/dialog/fck_universalkey/diacritic.js:1.1
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/fck_universalkey/diacritic.js Thu Aug
4 03:54:31 2005
@@ -1,6 +1,6 @@
/*
* FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
@@ -10,9 +10,6 @@
*
* File Name: diacritic.js
* Scripts for the fck_universalkey.html page.
- *
- * Version: 2.0 RC3
- * Modified: 2005-02-28 17:13:47
*
* File Authors:
* Michel Staelens (address@hidden)
====================================================
Index: news_admin/js/fckeditor/editor/dialog/fck_universalkey/data.js
diff -u news_admin/js/fckeditor/editor/dialog/fck_universalkey/data.js:1.1
news_admin/js/fckeditor/editor/dialog/fck_universalkey/data.js:1.2
--- news_admin/js/fckeditor/editor/dialog/fck_universalkey/data.js:1.1 Tue May
24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/fck_universalkey/data.js Thu Aug
4 03:54:31 2005
@@ -1,6 +1,6 @@
/*
* FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
@@ -12,9 +12,6 @@
* Scripts for the fck_universalkey.html page.
* Definition des 104 caracteres en hexa unicode.
*
- * Version: 2.0 RC3
- * Modified: 2005-02-28 17:13:45
- *
* File Authors:
* Michel Staelens (address@hidden)
* Abdul-Aziz Al-Oraij (address@hidden)
@@ -35,6 +32,8 @@
Min["Czech (L)"]
="003B|002B|011B|0161|010D|0159|017E|00FD|00E1|00ED|00E9|003D|00B4|0071|0077|0065|0072|0074|007A|0075|0069|006F|0070|00FA|0029|0061|0073|0064|0066|0067|0068|006A|006B|006C|016F|00A7|0079|0078|0063|0076|0062|006E|006D|002C|002E|002D|005D|007D|00A8|0040|00F3|0165"
;
Maj["Danish (L)"]
="00A7|0021|0022|0023|00A4|0025|0026|002F|0028|0029|003D|003F|0060|0051|0057|0045|0052|0054|0059|0055|0049|004F|0050|00C5|005E|0041|0053|0044|0046|0047|0048|004A|004B|004C|00C6|00D8|003E|005A|0058|0043|0056|0042|004E|004D|003B|003A|002A|005F|007B|007D|005C|007E"
;
Min["Danish (L)"]
="00BD|0031|0032|0033|0034|0035|0036|0037|0038|0039|0030|002B|00B4|0071|0077|0065|0072|0074|0079|0075|0069|006F|0070|00E5|00A8|0061|0073|0064|0066|0067|0068|006A|006B|006C|00E6|00F8|003C|007A|0078|0063|0076|0062|006E|006D|002C|002E|0027|002D|005B|005D|007C|0040"
;
+Maj["Farsi"]
="0020|0021|0040|0023|0024|0025|005E|0026|002A|0029|0028|005F|002B|0020|0020|0020|0020|0020|0020|0020|00F7|00D7|0020|007D|007B|0020|0020|005D|005B|0623|0622|0640|060C|061B|003A|0022|007E|0020|0020|0020|0020|0020|2019|003E|003C|061F|007C|0020|0020|0020|0020|0020"
+Min["Farsi"]
="067E|0031|0032|0033|0034|0035|0036|0037|0038|0039|0030|002D|003D|0636|0635|062B|0642|0641|063A|0639|0647|062E|062D|062C|0686|0634|0633|064A|0628|0644|0627|062A|0646|0645|0643|06AF|0638|0637|0632|0631|0630|062F|0621|0648|002E|002F|005C|0020|0020|0020|0020|0020"
Maj["Finnish (L)"]
="00A7|0021|0022|0023|00A4|0025|0026|002F|0028|0029|003D|003F|0060|0051|0057|0045|0052|0054|0059|0055|0049|004F|0050|00C5|005E|0041|0053|0044|0046|0047|0048|004A|004B|004C|00D6|00C4|003E|005A|0058|0043|0056|0042|004E|004D|003B|003A|002A|005F|007B|007D|005C|007E"
;
Min["Finnish (L)"]
="00BD|0031|0032|0033|0034|0035|0036|0037|0038|0039|0030|002B|00B4|0071|0077|0065|0072|0074|0079|0075|0069|006F|0070|00E5|00A8|0061|0073|0064|0066|0067|0068|006A|006B|006C|00F6|00E4|003C|007A|0078|0063|0076|0062|006E|006D|002C|002E|0027|002D|005B|005D|007C|0040"
;
Maj["French (L)"]
="0031|0032|0033|0034|0035|0036|0037|0038|0039|0030|00B0|002B|0023|0041|005A|0045|0052|0054|0059|0055|0049|004F|0050|00A8|0025|0051|0053|0044|0046|0047|0048|004A|004B|004C|004D|00B5|0057|0058|0043|0056|0042|004E|003F|002E|002F|00A7|003C|005B|007B|00A3|007E|0020"
;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog/fck_universalkey multihexa.js, 1.2 fck_universalkey.css, 1.2 dialogue.js, 1.2 diacritic.js, 1.2 data.js, 1.2,
skwashd <=
- Prev by Date:
[Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog fck_select.html, 1.2 fck_replace.html, 1.2 fck_smiley.html, 1.2 fck_specialchar.html, 1.2 fck_table.html, 1.2 fck_spellerpages.html, 1.2 fck_radiobutton.html, 1.2 fck_paste.html, 1.2 fck_hiddenfield.html, 1.2 fck_form.html, 1.2 fck_image.html, 1.2 fck_link.html, 1.2 fck_listprop.html, 1.2 fck_tablecell.html, 1.2 fck_textarea.html, 1.2 fck_universalkey.html, 1.2 fck_textfield.html, 1.2 fck_find.html, 1.2 fck_docprops.html, 1.2 fck_anchor.html, 1.2 fck_about.html, 1.2 fck_button.html, 1.2 fck_checkbox.html, 1.2 fck_colorselector.html, 1.2
- Next by Date:
[Phpgroupware-cvs] news_admin/inc/phpmailer/docs extending.html, 1.1 faq.html, 1.1 timeoutfix.diff, 1.1
- Previous by thread:
[Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog fck_select.html, 1.2 fck_replace.html, 1.2 fck_smiley.html, 1.2 fck_specialchar.html, 1.2 fck_table.html, 1.2 fck_spellerpages.html, 1.2 fck_radiobutton.html, 1.2 fck_paste.html, 1.2 fck_hiddenfield.html, 1.2 fck_form.html, 1.2 fck_image.html, 1.2 fck_link.html, 1.2 fck_listprop.html, 1.2 fck_tablecell.html, 1.2 fck_textarea.html, 1.2 fck_universalkey.html, 1.2 fck_textfield.html, 1.2 fck_find.html, 1.2 fck_docprops.html, 1.2 fck_anchor.html, 1.2 fck_about.html, 1.2 fck_button.html, 1.2 fck_checkbox.html, 1.2 fck_colorselector.html, 1.2
- Next by thread:
[Phpgroupware-cvs] news_admin/inc/phpmailer/docs extending.html, 1.1 faq.html, 1.1 timeoutfix.diff, 1.1
- Index(es):