~ubuntu-branches/ubuntu/quantal/brltty/quantal-proposed

« back to all changes in this revision

Viewing changes to Programs/ttb_gnome.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2012-06-08 14:56:32 UTC
  • mfrom: (2.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120608145632-xr5cg5x2is0mo8ng
Tags: 4.4-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Add brltty-setup, installed in both the udeb and the normal system.
  - Add initramfs integration to run brltty-setup if necessary before
    usplash starts.
  - Add ubiquity integration to propagate any brltty configuration to the
    target system.
  - Add udev rules and /lib/brltty/brltty.sh to the normal (non-udeb)
    package as well.
  - Enable brltty if /etc/default/brltty has RUN_BRLTTY=yes, which is set
    by the installer if brltty is configured; add a NEWS entry for
    upgraders.
  - Don't install /etc/brltty.conf in the package
  - Install udev rules with the same name (85-brltty.rules) in the udeb as
    in the deb.
  - Remove the dh-lisp build-dependency, remove the cl-brlapi package, and
    adjust the brltty package description accordingly. dh-lisp is not
    in main.
  - Build for all python versions (python 2.6), not just the current
    version.
  - Enable brltty at startup on the target system if the alternate installer
    is used.
  - Create separate rules file for the brltty deb, with the rules now
    pointing to a separate script
  - Add gbp.conf file for git buildpackage
  - Do not build the at-spi driver, the legacy at-spi stack is no longer in
    the archive.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * BRLTTY - A background process providing access to the console screen (when in
3
3
 *          text mode) for a blind person using a refreshable braille display.
4
4
 *
5
 
 * Copyright (C) 1995-2011 by The BRLTTY Developers.
 
5
 * Copyright (C) 1995-2012 by The BRLTTY Developers.
6
6
 *
7
7
 * BRLTTY comes with ABSOLUTELY NO WARRANTY.
8
8
 *
173
173
 
174
174
  if (inUcsBlock) {
175
175
    static const DataProperty propertyTable[] = {
176
 
      {.name=WC_C("UCS-BLOCK"), .processor=processUcsBlockOperands},
 
176
      {.name=WS_C("UCS-BLOCK"), .processor=processUcsBlockOperands},
177
177
      {.name=NULL, .processor=processUcsCharOperands}
178
178
    };
179
179
 
180
180
    properties = propertyTable;
181
181
  } else {
182
182
    static const DataProperty propertyTable[] = {
183
 
      {.name=WC_C("ENCODING"), .processor=processEncodingOperands},
184
 
  //  {.name=WC_C("NAME"), .processor=processNameOperands},
185
 
  //  {.name=WC_C("LOCALES"), .processor=processLocalesOperands},
186
 
  //  {.name=WC_C("UCS-SUFFIX"), .processor=processUcsSuffixOperands},
187
 
      {.name=WC_C("DELEGATE"), .processor=processDelegateOperands},
188
 
  //  {.name=WC_C("UTF8-STRING"), .processor=processUtf8StringOperands},
189
 
      {.name=WC_C("UCS-BLOCK"), .processor=processUcsBlockOperands},
190
 
      {.name=WC_C("UCS-CHAR"), .processor=processUcsCharOperands},
191
 
      {.name=WC_C("UNICODE-CHAR"), .processor=processUnicodeCharOperands},
192
 
  //  {.name=WC_C("UNKNOWN-CHAR"), .processor=processUnknownCharOperands},
 
183
      {.name=WS_C("ENCODING"), .processor=processEncodingOperands},
 
184
  //  {.name=WS_C("NAME"), .processor=processNameOperands},
 
185
  //  {.name=WS_C("LOCALES"), .processor=processLocalesOperands},
 
186
  //  {.name=WS_C("UCS-SUFFIX"), .processor=processUcsSuffixOperands},
 
187
      {.name=WS_C("DELEGATE"), .processor=processDelegateOperands},
 
188
  //  {.name=WS_C("UTF8-STRING"), .processor=processUtf8StringOperands},
 
189
      {.name=WS_C("UCS-BLOCK"), .processor=processUcsBlockOperands},
 
190
      {.name=WS_C("UCS-CHAR"), .processor=processUcsCharOperands},
 
191
      {.name=WS_C("UNICODE-CHAR"), .processor=processUnicodeCharOperands},
 
192
  //  {.name=WS_C("UNKNOWN-CHAR"), .processor=processUnknownCharOperands},
193
193
      {.name=NULL, .processor=NULL}
194
194
    };
195
195