commit/unicodeBrailleInput: pzajda: Replace the regular space character by 0x2800 to be ISO standard compliant.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Mon, 30 Sep 2013 06:58:07 -0000

1 new commit in unicodeBrailleInput:

https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/commits/a000e926f5bd/
Changeset:   a000e926f5bd
Branch:      master
User:        pzajda
Date:        2013-09-30 08:57:21
Summary:     Replace the regular space character by 0x2800 to be ISO standard 
compliant.

Affected #:  2 files

diff --git a/addon/globalPlugins/unicodeBrailleInput/interface.py 
b/addon/globalPlugins/unicodeBrailleInput/interface.py
index 1462927..b0c3996 100644
--- a/addon/globalPlugins/unicodeBrailleInput/interface.py
+++ b/addon/globalPlugins/unicodeBrailleInput/interface.py
@@ -56,7 +56,7 @@ def dots2uni(cells):
                        val |= 0x2800
                        out.append(conv(val))
                else:
-                       out.append(" ")
+                       out.append(conv(0x2800))
        return "".join(out)
 
 class B2UDialog(gui.SettingsDialog):

diff --git a/readme.md b/readme.md
index 81d8a2c..4fceda6 100644
--- a/readme.md
+++ b/readme.md
@@ -22,6 +22,7 @@ and to add automatic tests for your language.
 * New languages: Aragonese, Arabic, Brazilian Portuguese, Dutch, Finnish, 
German, Galician, Hungarian, Italian, Japanese, Nepali, Russian, Slovak, 
Slovenian, Spanish.
 * Use the new addon template so provide documentation under NVDA help menu.
 * Add a menu item named Unicode Braille Input under NVDA help menu which calls 
the script.
+* Replace the regular space character by 0x2800 to be ISO standard compliant.
 
 ## Changes for 1.0 ##

Repository URL: https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/unicodeBrailleInput: pzajda: Replace the regular space character by 0x2800 to be ISO standard compliant. - commits-noreply