diff options
author | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-12-14 09:48:19 +0000 |
---|---|---|
committer | navid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-12-14 09:48:19 +0000 |
commit | e201c1810c4b84f18efbde98bfe00845739ffaa5 (patch) | |
tree | c9f791926d7e9f3845ccad50354faca81e85254d /src | |
parent | 685b9693557895e37d0986f6d14c59f1e52e7b73 (diff) | |
download | sos-e201c1810c4b84f18efbde98bfe00845739ffaa5.tar.gz |
added i18n plugin from Qian Shen
updated contributors in README
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@472 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src')
-rw-r--r-- | src/README | 10 | ||||
-rw-r--r-- | src/lib/sos/plugins/i18n.py | 26 |
2 files changed, 33 insertions, 3 deletions
@@ -22,10 +22,14 @@ Maintainer: Developers and Contributors: - Steve Conklin <sconklin@redhat.com> - Pierre Amadio <pamadio@redhat.com> - John Berninger <jwb@redhat.com> Adam Stokes <astokes@redhat.com> + Cris Lalancette <clalance@redhat.com> + Eugene Teo <eteo@redhat.com> + John Berninger <jwb@redhat.com> + Justin Payne <jpayne@redhat.com> + Pierre Amadio <pamadio@redhat.com> + Qian Shen <qshen@redhat.com> + Steve Conklin <sconklin@redhat.com> Thanks to: diff --git a/src/lib/sos/plugins/i18n.py b/src/lib/sos/plugins/i18n.py new file mode 100644 index 00000000..0a793d0f --- /dev/null +++ b/src/lib/sos/plugins/i18n.py @@ -0,0 +1,26 @@ +### This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. + +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. + +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +import sos.plugintools +import os + +class i18n(sos.plugintools.PluginBase): + """i18n related information + """ + def setup(self): + self.addCopySpec("/etc/sysconfig/i18n") + self.addCopySpec("/etc/X11/xinit/xinput.d/*") + self.collectExtOutput("/usr/bin/locale") + return + |