From: Karl MacMillan <kmacmillan@mentalrootkit.com>
To: Daniel J Walsh <dwalsh@redhat.com>
Cc: SE Linux <selinux@tycho.nsa.gov>, Stephen Smalley <sds@tycho.nsa.gov>
Subject: Re: translation patch for semanage
Date: Tue, 16 Jan 2007 10:46:30 -0500 [thread overview]
Message-ID: <45ACF356.3070501@mentalrootkit.com> (raw)
In-Reply-To: <45A64526.2050701@redhat.com>
Daniel J Walsh wrote:
> This patch works around a unicode problem in python.
>
Acked-by: Karl MacMillan <kmacmillan@mentalrootkit.com>
Both this patch and the related seobject patch are merged as of
policycoreutils 1.33.13.
Karl
>
> ------------------------------------------------------------------------
>
> --- nsapolicycoreutils/semanage/semanage 2006-11-16 17:14:26.000000000 -0500
> +++ policycoreutils-1.33.10/semanage/semanage 2007-01-09 11:55:52.000000000 -0500
> @@ -23,12 +23,21 @@
> import os, sys, getopt
> import seobject
> import selinux
> +PROGNAME="policycoreutils"
> +
> import gettext
> +gettext.bindtextdomain(PROGNAME, "/usr/share/locale")
> +gettext.textdomain(PROGNAME)
> +import codecs
> +import locale
> +sys.stderr = codecs.getwriter(locale.getpreferredencoding())(sys.__stderr__, 'replace')
> +sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.__stdout__, 'replace')
>
> try:
> - gettext.install('policycoreutils')
> -except:
> - pass
> + gettext.install(PROGNAME, localedir="/usr/share/locale", unicode=1)
> +except IOError:
> + import __builtin__
> + __builtin__.__dict__['_'] = unicode
>
> is_mls_enabled=selinux.is_selinux_mls_enabled()
>
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
prev parent reply other threads:[~2007-01-16 15:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-11 14:09 translation patch for semanage Daniel J Walsh
2007-01-11 18:33 ` Karl MacMillan
2007-01-11 21:20 ` Daniel J Walsh
2007-01-16 15:46 ` Karl MacMillan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=45ACF356.3070501@mentalrootkit.com \
--to=kmacmillan@mentalrootkit.com \
--cc=dwalsh@redhat.com \
--cc=sds@tycho.nsa.gov \
--cc=selinux@tycho.nsa.gov \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.