aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authornavid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-12-14 09:48:19 +0000
committernavid <navid@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-12-14 09:48:19 +0000
commite201c1810c4b84f18efbde98bfe00845739ffaa5 (patch)
treec9f791926d7e9f3845ccad50354faca81e85254d /src
parent685b9693557895e37d0986f6d14c59f1e52e7b73 (diff)
downloadsos-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/README10
-rw-r--r--src/lib/sos/plugins/i18n.py26
2 files changed, 33 insertions, 3 deletions
diff --git a/src/README b/src/README
index 74fcb2b2..808b8572 100644
--- a/src/README
+++ b/src/README
@@ -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
+