This file is indexed.

/usr/share/pyshared/spambayes/i18n.py is in spambayes 1.1a6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
"""Internationalisation

Classes:
    LanguageManager - Interface class for languages.

Abstract:

Manages the internationalisation (i18n) aspects of SpamBayes.
"""

# This module is part of the spambayes project, which is Copyright 2002-2007
# The Python Software Foundation and is covered by the Python Software
# Foundation license.

__author__ = "Hernan Martinez Foffani <hfoffani@yahoo.com>"
__credits__ = "Tony Meyer, All the SpamBayes folk."

import os
import sys
from locale import getdefaultlocale
from gettext import translation, NullTranslations
# Note, we must not import spambayes.Options, or Outlook will not be happy.

## Set language environment for gettext and for dynamic load of dialogs.
##
## Our directory layout with source is:
##   spambayes
##       spambayes (or spambayes.modules with the binary)
##           i18n.py                 <-- this file
##           languages               <-- the directory for lang packs
##               es                  <-- generic language data
##                   DIALOGS
##                   LC_MESSAGES     <-- gettext message files
##                   __init__.py     <-- resourcepackage __init__.py
##                  ui.html          <-- web interface translation
##               es_ES               <-- specific language/country data.
##                   DIALOGS         <-- resource dialogs
##                   LC_MESSAGES     <-- gettext message files
##                   __init__.py     <-- resourcepackage __init__.py
##                  ui.html          <-- web interface translation
##               zn
##               zn_TW
##       Outlook2000
##       utilities
##       ..etc..
##
## Our directory layout with the binaries is:
##   lib
##       spambayes.modules
##           i18n.py                 <-- this file
##           languages               <-- the directory for lang packs
##               es                  <-- generic language data
##                   DIALOGS
##                   __init__.py     <-- resourcepackage __init__.py
##                  ui.html          <-- web interface translation
##               es_ES               <-- specific language/country data.
##                   DIALOGS         <-- resource dialogs
##                   __init__.py     <-- resourcepackage __init__.py
##                  ui.html          <-- web interface translation
##               zn
##               zn_TW
##       languages
##           es                  <-- generic language data
##               LC_MESSAGES     <-- gettext message files
##           es_ES               <-- specific language/country data.
##               LC_MESSAGES     <-- gettext message files
##           zn
##           zn_TW
##       ..etc..
##
## A distutils installation will not currently work.  I don't know
## where to put the .mo files, so setup.py ignores them.

if hasattr(sys, "frozen"):
    # LC_MESSAGES are harder to find.
    if sys.frozen == "dll":
        # Outlook
        import win32api
        this_filename = win32api.GetModuleFileName(sys.frozendllhandle)
    else:
        # Not Outlook
        this_filename = __file__
    LC_DIR = os.path.dirname(os.path.dirname(this_filename))
    LANG_DIR = os.path.join(os.path.dirname(__file__), "languages")

else:
    this_filename = os.path.abspath(__file__)
    LANG_DIR = os.path.join(os.path.dirname(this_filename), "languages")
    LC_DIR = LANG_DIR


class LanguageManager:
    def __init__(self):
        self.current_langs_codes = []
        self._sys_path_modifications = []

    def set_language(self, lang_code=None):
        """Set a language as the current one."""
        if not lang_code:
            return
        self.current_langs_codes = [ lang_code ]
        self._rebuild_syspath_for_dialogs()
        self._install_gettext()
        
    def locale_default_lang(self):
        """Get the default language for the locale."""
        # Note that this may return None.
        try:
            return os.environ["SPAMBAYES_LANG"]
        except KeyError:
            return getdefaultlocale()[0] 

    def add_language(self, lang_code=None):
        """Add a language to the current languages list.

        The list acts as a fallback mechanism, where the first language of
        the list is used if possible, and if not the second one, and so on.
        """
        if not lang_code:
            return
        self.current_langs_codes.insert(0, lang_code)
        self._rebuild_syspath_for_dialogs()
        self._install_gettext()

    def clear_language(self):
        """Clear the current language(s) and set SpamBayes to use
        the default."""
        self.current_langs_codes = []
        self._clear_syspath()
        lang = NullTranslations()
        lang.install()

    def import_ui_html(self):
        """Load and return the appropriate ui_html.py module for the
        current language."""
        for language in self.current_langs_codes:
            moduleName = 'spambayes.languages.%s.i18n_ui_html' % (language, )
            try:
                module = __import__(moduleName, {}, {}, ('spambayes.languages',
                                                         language))
            except ImportError:
                # That language isn't available - fall back to the
                # next one.
                pass
            else:
                return module
        # Nothing available - use the default.
        from spambayes.resources import ui_html
        return ui_html

    def _install_gettext(self):
        """Set the gettext specific environment."""
        lang = translation("messages", LC_DIR,
                            self.current_langs_codes, fallback=True)
        lang.install()

    def _rebuild_syspath_for_dialogs(self):
        """Add to sys.path the directories of the translated dialogs.

        For each language of the current list, we add two directories,
        one for language code and country and the other for the language
        code only, so we can simulate the fallback procedures."""
        self._clear_syspath()
        for lcode in self.current_langs_codes:
            code_and_country = os.path.join(LANG_DIR, lcode, 'DIALOGS')
            code_only = os.path.join(LANG_DIR, lcode.split("_")[0], 'DIALOGS')
            if code_and_country not in sys.path:
                sys.path.append(code_and_country)
                self._sys_path_modifications.append(code_and_country)
            if code_only not in sys.path:
                sys.path.append(code_only)
                self._sys_path_modifications.append(code_only)

    def _clear_syspath(self):
        """Clean sys.path of the stuff that we put in it."""
        for path in self._sys_path_modifications:
            sys.path.remove(path)
        self._sys_path_modifications = []


def test():
    lm = LanguageManager()
    print "INIT: len(sys.path): ", len(sys.path)
    print "TEST default lang"
    lm.set_language(lm.locale_default_lang())
    print "\tCurrent Languages: ", lm.current_langs_codes
    print "\tlen(sys.path): ", len(sys.path)
    print "\t", _("Help")

    print "TEST clear_language"
    lm.clear_language()
    print "\tCurrent Languages: ", lm.current_langs_codes
    print "\tlen(sys.path): ", len(sys.path)
    print "\t", _("Help")

    print "TEST set_language"
    for langcode in ["kk_KK", "z", "", "es", None, "es_AR"]:
        print "lang: ", langcode

        lm.set_language(langcode)
        print "\tCurrent Languages: ", lm.current_langs_codes
        print "\tlen(sys.path): ", len(sys.path)
        print "\t", _("Help")

    lm.clear_language()

    print "TEST add_language"
    for langcode in ["kk_KK", "z", "", "es", None, "es_AR"]:
        print "lang: ", langcode

        lm.add_language(langcode)
        print "\tCurrent Languages: ", lm.current_langs_codes
        print "\tlen(sys.path): ", len(sys.path)
        print "\t", _("Help")

if __name__ == '__main__':
    test()