source: kde/kreadconfig/kreadconfig.py@ 795

Last change on this file since 795 was 795, checked in by joergs, on Sep 2, 2009 at 6:45:46 PM

extended tests

  • Property svn:executable set to *
  • Property svn:keywords set to
    Id
    Rev
File size: 3.0 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4"""
5kreadconfig.py dumps KDE configuration files.
6It is usefull for debugging KDE Kiosks settings,
7where multiple config files are merged into the final configuration.
8
9The directory hierarchie for config files
10is based on the KDEDIRS environment variable
11and can be made visible by the command
12kde4-config --path config
13
14kreadconfig has a similiar purpose,
15but is limited to a single value
16"""
17
18# $Id: kreadconfig.py 795 2009-09-02 16:45:46Z joergs $
19
20import sys
21from PyKDE4.kdecore import ki18n, KAboutData, KCmdLineArgs, KCmdLineOptions, KConfig
22from PyKDE4.kdeui import KApplication
23
24#import pprint
25#pp = pprint.PrettyPrinter(indent=4)
26
27def getFullName( config ):
28 """get the full name of a config group"""
29 if config.name() == "<default>":
30 return ""
31
32 # check, if function config.parent is defined
33 try: config.parent
34 except AttributeError:
35 # x doesn't exist, do something
36 return "[" + config.name() + "]"
37 else:
38 # x exists, do something else
39 parentsNames = getFullName( config.parent() )
40 return parentsNames + "[" + config.name() + "]"
41
42
43
44def dumpGroup( config ):
45 """print the entries of a config group"""
46
47 # print secton name only if entries exists
48 if config.entryMap():
49 print getFullName( config )
50 #print dir(config)
51 for i in config.entryMap():
52 #for i in config.keys():
53 try:
54 print i, "=", config.readEntry( i ).toUtf8()
55 except AttributeError:
56 # ignore when readEntry does not exist
57 print i + " => readEntry not defined"
58 #, i.count(), dir(i)
59 pass
60 except UnicodeEncodeError:
61 print i + " => encoding error"
62 pass
63 print
64
65
66
67def dumpSubGroups( config ):
68 """print entries of the config group and all subgroups"""
69 dumpGroup( config )
70 #print dir( config )
71 for i in config.groupList():
72 configGroup=config.group(str(i))
73 dumpSubGroups( configGroup )
74
75
76appName = "kreadconfig.py"
77catalog = ""
78programName = ki18n ("kreadconfig.py")
79version = "$Rev: 795 $"
80description = ki18n ("show KDE configuration files")
81license = KAboutData.License_GPL
82copyright = ki18n ("(c) 2009 Jörg Steffens")
83text = ki18n ("none")
84homePage = "www.dass-it.de"
85bugEmail = "rt@dass-it.de"
86
87aboutData = KAboutData (appName, catalog, programName, version, description,
88 license, copyright, text, homePage, bugEmail)
89
90# command line argument handling
91options = KCmdLineOptions()
92options.add("+configfile", ki18n("KDE config file name"))
93
94KCmdLineArgs.init(sys.argv, aboutData)
95# Register the supported options
96KCmdLineArgs.addCmdLineOptions( options )
97
98app = KApplication ()
99
100args = KCmdLineArgs.parsedArgs();
101
102# TODO: why is this not detected automatically?
103if args.count() != 1:
104 args.usage()
105
106configfilename = args.arg(0)
107#print configfilename
108
109config = KConfig(configfilename, KConfig.NoGlobals)
110
111
112# only show the sub-groups.
113# top-level entries will be in the section [MainWindow]
114#dumpSubGroups( config )
115for i in config.groupList():
116 configGroup=config.group(str(i))
117 dumpSubGroups( configGroup )
Note: See TracBrowser for help on using the repository browser.