aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
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/lib
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/lib')
-rw-r--r--src/lib/sos/plugins/i18n.py26
1 files changed, 26 insertions, 0 deletions
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
+