Skip to content

Commit

Permalink
Updated install.rdf to point to 1ec5.org as the new homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Jul 4, 2008
1 parent 3392d1f commit e7e90cb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,5 @@ Version 20080224.91 (Thursday, July 3, 2008)
- Optimized the toolbar button images.

Version ${Version} (${Date})
- Updated home page to point to 1ec5.org.
- Made ignored textbox IDs case-insensitive.
12 changes: 6 additions & 6 deletions content/avim.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ var AVIMGlobalConfig = {
//IDs of the fields you DON'T want to let users type Vietnamese in
exclude: ["colorzilla-textbox-hex", // Hex box, Color Picker, ColorZilla
"email", "e-mail", // don't want it for e-mail fields in general
"TextboxEval", // Code bar, Firefox Error Console
"tx_tagName", // Tag Name, Insert Node, DOM Inspector
"textboxeval", // Code bar, Firefox Error Console
"tx_tagname", // Tag Name, Insert Node, DOM Inspector
]
};

Expand Down Expand Up @@ -838,8 +838,8 @@ function AVIM() {
this.prefs.setBoolPref("oldAccents", !!AVIMGlobalConfig.oldAccent);
this.prefs.setBoolPref("statusBarPanel",
AVIMGlobalConfig.statusBarPanel);
this.prefs.setCharPref("ignoredFieldIds",
AVIMGlobalConfig.exclude.join(" "));
var ids = AVIMGlobalConfig.exclude.join(" ").toLowerCase();
this.prefs.setCharPref("ignoredFieldIds", ids);
// Auto method configuration
this.prefs.setBoolPref("auto.telex", AVIMAutoConfig.telex);
this.prefs.setBoolPref("auto.vni", AVIMAutoConfig.vni);
Expand Down Expand Up @@ -885,8 +885,8 @@ function AVIM() {
this.prefs.getBoolPref("statusBarPanel");
}
if (!changedPref || changedPref == "ignoredFieldIds") {
AVIMGlobalConfig.exclude =
this.prefs.getCharPref("ignoredFieldIds").split(/\s+/);
var ids = this.prefs.getCharPref("ignoredFieldIds").toLowerCase();
AVIMGlobalConfig.exclude = ids.split(/\s+/);
}
// Auto method configuration
if (!changedPref || changedPref == "auto.telex") {
Expand Down
5 changes: 3 additions & 2 deletions defaults/preferences/avim.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ pref("extensions.avim.statusBarPanel", true);

/*
* Ignore any fields that contain e-mail addresses, as well as the code
* evaluation bar in the Error Console. Field IDs are separated by spaces.
* evaluation bar in the Error Console. Field IDs are case-insensitive and
* separated by spaces.
*/
pref("extensions.avim.ignoredFieldIds", "TextboxEval colorzilla-textbox-hex e-mail email tx_tagName");
pref("extensions.avim.ignoredFieldIds", "colorzilla-textbox-hex e-mail email textboxeval tx_tagname");

/* Include some standard input methods in the Auto method. */
pref("extensions.avim.auto.telex", true);
Expand Down
6 changes: 3 additions & 3 deletions install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<em:description>Type fully-accented Vietnamese directly into any webpage or dialog box using a standard keyboard.</em:description>
<em:creator>Minh Nguyen</em:creator>
<em:contributor>Hieu Dang</em:contributor>
<em:homepageURL>http://avim.veneroida.com/</em:homepageURL>
<em:homepageURL>http://www.1ec5.org/software/avim/</em:homepageURL>
<em:iconURL>chrome://avim/content/avim.png</em:iconURL>

<!-- Spanish -->
Expand All @@ -46,7 +46,7 @@
<em:description>Teclar en vietnamita con todos los acentos, directamente en cualquier página Web o caja de diálogo, usando un teclado estándar.</em:description>
<em:creator>Minh Nguyen</em:creator>
<em:contributor>Hieu Dang</em:contributor>
<em:homepageURL>http://avim.veneroida.com/</em:homepageURL>
<em:homepageURL>http://www.1ec5.org/software/avim/</em:homepageURL>
</Description>
</em:localized>

Expand All @@ -58,7 +58,7 @@
<em:description>Gõ tiếng Việt có dấu thẳng vào bất cứ trang Web hay hộp thoại nào, chỉ cần bàn phím thường.</em:description>
<em:creator>Nguyễn Xuân Minh</em:creator>
<em:contributor>Đặng Trần Hiếu</em:contributor>
<em:homepageURL>http://avim.veneroida.com/</em:homepageURL>
<em:homepageURL>http://www.1ec5.org/software/avim/index.vi.html</em:homepageURL>
</Description>
</em:localized>
</Description>
Expand Down

0 comments on commit e7e90cb

Please sign in to comment.