diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:33:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:33:16 -0600 |
commit | 01bd7e2ffdc3caa95228e03ad501d778b05270a9 (patch) | |
tree | 9d6b8caebcd8a7700581d36459c784628d4322a5 /examples | |
parent | 4385133a0d7974f0c0f7d741ee14d80a6aa9f671 (diff) | |
download | pytde-01bd7e2ffdc3caa95228e03ad501d778b05270a9.tar.gz pytde-01bd7e2ffdc3caa95228e03ad501d778b05270a9.zip |
Part 1 of 2 rename pykde to pytde
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pykde-sampler/HOWTO.samples | 2 | ||||
-rw-r--r-- | examples/pykde-sampler/about.py | 4 | ||||
-rw-r--r-- | examples/uimodules/uidialogs.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/pykde-sampler/HOWTO.samples b/examples/pykde-sampler/HOWTO.samples index 0ccf630..2b20c52 100644 --- a/examples/pykde-sampler/HOWTO.samples +++ b/examples/pykde-sampler/HOWTO.samples @@ -33,7 +33,7 @@ In side the module, add the following: example: ('tdeui', 'KAboutDialog') If specified, this sequence should contain two items, first item - name of pykde module, second item name of class within the module. + name of pytde module, second item name of class within the module. These two values are used to form the URL to the documentation for the sample. diff --git a/examples/pykde-sampler/about.py b/examples/pykde-sampler/about.py index ae35b99..108194b 100644 --- a/examples/pykde-sampler/about.py +++ b/examples/pykde-sampler/about.py @@ -8,7 +8,7 @@ from os.path import dirname, join from tdecore import KAboutData -appName = 'pykdesampler' +appName = 'pytdesampler' progName = 'PyKDE Sampler' authorName = 'Troy Melhase' authorEmail = bugsEmailAddress = 'troy@gci.net' @@ -16,7 +16,7 @@ version = '0.1' shortDescription = 'The PyKDE Sampler' licenseType = KAboutData.License_GPL_V2 copyrightStatement = '(c) 2006, %s' % (authorName, ) -homePageAddress = 'http://www.riverbankcomputing.co.uk/pykde/' +homePageAddress = 'http://www.riverbankcomputing.co.uk/pytde/' aboutText = ("The application sampler for PyKDE.") contributors = [] # module-level global for keeping the strings around; intentional diff --git a/examples/uimodules/uidialogs.py b/examples/uimodules/uidialogs.py index 1c85fbe..ba03a9a 100644 --- a/examples/uimodules/uidialogs.py +++ b/examples/uimodules/uidialogs.py @@ -130,7 +130,7 @@ def dlgKAboutDialog (parent): dlg.setTitle ("UISampler for PyKDE") dlg.setAuthor ("Jim Bublitz", "jbublitz@nwinternet.com", "http://www.riverbankcomputing.co.uk",\ "\n\nPyKDE -- Python bindings\n\tfor KDE") - dlg.addContributor ("PyKDE list", "pykde@mats.gmd.de", TQString.null, TQString.null) + dlg.addContributor ("PyKDE list", "pytde@mats.gmd.de", TQString.null, TQString.null) dlg.show () |