summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2013-09-03 19:58:31 +0200
committerSlávek Banko <[email protected]>2013-09-03 19:58:31 +0200
commit7b4e49e1a69712dcb2943a15660f92ea3655233c (patch)
tree27276564d4895b312118ef7224e2d0b16822cfe2
parent704ef6982dc25952f1dde89ee6d26e5091ef83f2 (diff)
downloadtdeio-locate-7b4e49e1a69712dcb2943a15660f92ea3655233c.tar.gz
tdeio-locate-7b4e49e1a69712dcb2943a15660f92ea3655233c.zip
Additional k => tde renaming and fixes
-rw-r--r--CMakeLists.txt2
-rw-r--r--TODO2
-rw-r--r--admin/detect_uds_hidden.diff6
-rw-r--r--admin/generic.py8
-rw-r--r--admin/kde.py8
-rw-r--r--doc/en/CMakeLists.txt2
-rw-r--r--doc/en/index.docbook32
-rw-r--r--po/CMakeLists.txt2
-rw-r--r--po/de/tdeio-locate.po (renamed from po/de/kio-locate.po)18
-rw-r--r--po/fr/tdeio-locate.po (renamed from po/fr/kio-locate.po)10
-rwxr-xr-xpo/messages.sh2
-rw-r--r--po/tdeio_locate.pot6
-rw-r--r--src/klocateconfiglocatewidget.ui6
-rw-r--r--src/locate.protocol2
-rw-r--r--src/locater.cpp2
-rw-r--r--src/locater.h2
-rw-r--r--src/locater.protocol2
-rw-r--r--src/pattern.cpp2
-rw-r--r--src/pattern.h4
-rw-r--r--src/rlocate.protocol2
-rw-r--r--src/tdeio_locate.cpp8
-rw-r--r--src/tdeio_locate.h16
-rw-r--r--src/tdeio_locate.kcfg2
-rw-r--r--templates/cpp2
-rw-r--r--templates/h2
25 files changed, 75 insertions, 75 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 20610b3..b257110 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ cmake_minimum_required( VERSION 2.8 )
##### general package setup #####################
-project( kio-locate )
+project( tdeio-locate )
##### include essential cmake modules ###########
diff --git a/TODO b/TODO
index 75b6edb..c3f340d 100644
--- a/TODO
+++ b/TODO
@@ -1,7 +1,7 @@
Short Term
Mid Term
-+ Add kio-locate to kde-extragear.
++ Add tdeio-locate to kde-extragear.
+ Translations needed. Contact H�vard Dahle for Norwegian translation.
+ Support searches on remote servers via ssh. A possible search could
then look like "locate://username@server:port pattern". (Suggested
diff --git a/admin/detect_uds_hidden.diff b/admin/detect_uds_hidden.diff
index 98805c9..d92ccaf 100644
--- a/admin/detect_uds_hidden.diff
+++ b/admin/detect_uds_hidden.diff
@@ -1,7 +1,7 @@
-Only in kio-locate/admin/: .arch-ids
-diff -ur bksys-1.5.1.pre4/admin/kde.py kio-locate/admin/kde.py
+Only in tdeio-locate/admin/: .arch-ids
+diff -ur bksys-1.5.1.pre4/admin/kde.py tdeio-locate/admin/kde.py
--- bksys-1.5.1.pre4/admin/kde.py 2005-08-16 23:16:32.000000000 +0200
-+++ kio-locate/admin/kde.py 2005-08-17 12:27:49.000000000 +0200
++++ tdeio-locate/admin/kde.py 2005-08-17 12:27:49.000000000 +0200
@@ -242,6 +242,15 @@
qtlibs=qtdir+"/lib"+libsuffix
env['QTLIBPATH']=qtlibs
diff --git a/admin/generic.py b/admin/generic.py
index 0837fb9..b86d0b7 100644
--- a/admin/generic.py
+++ b/admin/generic.py
@@ -86,7 +86,7 @@ def pprint(env, col, str, label=''):
class genobj:
def __init__(self, val, env):
- if not val in "program shlib kioslave staticlib".split():
+ if not val in "program shlib tdeioslave staticlib".split():
print "unknown genobj given: "+val
env.Exit(1)
@@ -224,7 +224,7 @@ class genobj:
self.env.pprint('RED',"no target given to object - self.target")
self.env.Exit(1)
if not self.env.has_key('nosmart_includes'): self.env.AppendUnique(CPPPATH=['./'])
- if self.type == "kioslave": self.libprefix=''
+ if self.type == "tdeioslave": self.libprefix=''
if len(self.includes)>0: self.env.AppendUnique(CPPPATH=self.fixpath(self.includes))
if len(self.cxxflags)>0: self.env.AppendUnique(CXXFLAGS=self.env.make_list(self.cxxflags))
@@ -250,7 +250,7 @@ class genobj:
# the target to return - no more self.env modification is allowed after this part
ret=None
- if self.type=='shlib' or self.type=='kioslave':
+ if self.type=='shlib' or self.type=='tdeioslave':
ret=self.env.bksys_shlib(self.p_localtarget, self.p_localsource, self.instdir,
self.libprefix, self.vnum)
elif self.type=='program':
@@ -613,7 +613,7 @@ def generate(env):
for dir in ldirs:
lenv.BuildDir(buildto+os.path.sep+dir, dir)
- #valid_targets = "program shlib kioslave staticlib".split()
+ #valid_targets = "program shlib tdeioslave staticlib".split()
SConsEnvironment.bksys_install = bksys_install
SConsEnvironment.bksys_shlib = bksys_shlib
SConsEnvironment.subdirs = subdirs
diff --git a/admin/kde.py b/admin/kde.py
index d545474..3b7c179 100644
--- a/admin/kde.py
+++ b/admin/kde.py
@@ -373,7 +373,7 @@ def generate(env):
env['BUILDERS']['Uic']=Builder(action=uic_processing,emitter=uicEmitter,suffix='.h',src_suffix='.ui')
def kcfg_buildit(target, source, env):
- comp='kconfig_compiler -d%s %s %s' % (str(source[0].get_dir()), source[1].path, source[0].path)
+ comp='tdeconfig_compiler -d%s %s %s' % (str(source[0].get_dir()), source[1].path, source[0].path)
return env.Execute(comp)
def kcfg_stringit(target, source, env):
print "processing %s to get %s and %s" % (source[0].name, target[0].name, target[1].name)
@@ -522,7 +522,7 @@ def generate(env):
for ofile in other_files:
if ofile == file:
env.pprint('RED',"WARNING: You have included %s.kcfg and another file of the same prefix"%file)
- print "Files generated by kconfig_compiler (settings.h, settings.cpp) must not be included"
+ print "Files generated by tdeconfig_compiler (settings.h, settings.cpp) must not be included"
return src
@@ -785,7 +785,7 @@ def generate(env):
comp='mkdir -p %s && cd %s && rm -f common && ln -s ../common common' % (dir, dir)
lenv.Execute(comp)
- #valid_targets = "program shlib kioslave staticlib".split()
+ #valid_targets = "program shlib tdeioslave staticlib".split()
import generic
class kobject(generic.genobj):
def __init__(self, val, senv=None):
@@ -801,7 +801,7 @@ def generate(env):
self.unlockchdir()
self.executed=1
return
- if (self.type=='shlib' or self.type=='kioslave'):
+ if (self.type=='shlib' or self.type=='tdeioslave'):
install_dir = 'KDEMODULE'
if self.iskdelib==1: install_dir = 'KDELIB'
self.instdir=getInstDirForResType(self.orenv, install_dir)
diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt
index 11f01ea..df19cbd 100644
--- a/doc/en/CMakeLists.txt
+++ b/doc/en/CMakeLists.txt
@@ -9,4 +9,4 @@
#
#################################################
-tde_create_handbook( DESTINATION kio-locate )
+tde_create_handbook( DESTINATION tdeio-locate )
diff --git a/doc/en/index.docbook b/doc/en/index.docbook
index e3b93be..5669826 100644
--- a/doc/en/index.docbook
+++ b/doc/en/index.docbook
@@ -1,9 +1,9 @@
<?xml version="1.0" ?>
<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd" [
- <!ENTITY app "kio-locate">
+ <!ENTITY app "tdeio-locate">
<!ENTITY app_date "2005-09-15"> <!-- (YYYY-MM-DD) -->
<!ENTITY app_version "0.4.3"> <!-- (V.MM.LL) -->
- <!ENTITY kio-locate "<application>&app;</application>">
+ <!ENTITY tdeio-locate "<application>&app;</application>">
<!ENTITY kappname "<application>&app; &app_version;</application>"><!-- Do *not* replace kappname-->
<!ENTITY my_email "[email protected]">
@@ -70,18 +70,18 @@
<abstract>
<para>
-&kio-locate; is a KDE I/O Slave for the locate command.
+&tdeio-locate; is a KDE I/O Slave for the locate command.
</para>
</abstract>
<keywordset>
<keyword>KDE</keyword>
-<keyword>kio-locate</keyword>
+<keyword>tdeio-locate</keyword>
<keyword>tdeio_locate</keyword>
<keyword>kiolocate</keyword>
<keyword>locate</keyword>
<keyword>slocate</keyword>
-<keyword>kio-slave</keyword>
+<keyword>tdeio-slave</keyword>
<keyword>tdeio_slave</keyword>
<keyword>tdeioslave</keyword>
<keyword>search</keyword>
@@ -100,25 +100,25 @@ problems. Basically a long version of the abstract. Don't include a
revision history. (see installation appendix comment) -->
<para>
-&kio-locate; is a KDE I/O Slave for the locate command.
+&tdeio-locate; is a KDE I/O Slave for the locate command.
</para>
<para>
- This means that you can use &kio-locate; by simply typing in konquerors address box. You can e.g. type <command>locate:index.html</command> to find all files that contain "index.html" in their name.
+ This means that you can use &tdeio-locate; by simply typing in konquerors address box. You can e.g. type <command>locate:index.html</command> to find all files that contain "index.html" in their name.
</para>
<para>
-There's even more: You can use &kio-locate; in all TDE applications that accept URLs.
+There's even more: You can use &tdeio-locate; in all TDE applications that accept URLs.
</para>
<para>
-To find out more about &kio-locate; and to look for new versions, you should take a look at <ulink url="http://arminstraub.de">arminstraub.de</ulink>.
+To find out more about &tdeio-locate; and to look for new versions, you should take a look at <ulink url="http://arminstraub.de">arminstraub.de</ulink>.
</para>
</chapter>
-<chapter id="using-kio-locate">
+<chapter id="using-tdeio-locate">
<title>How to use this?</title>
<para>
- You can use &kio-locate; mostly as you use locate. Instead of typing <command>locate pattern</command> at a command prompt, you start the search with &kio-locate; directly in konqueror. You just enter <command>locate:pattern</command> as the address.
+ You can use &tdeio-locate; mostly as you use locate. Instead of typing <command>locate pattern</command> at a command prompt, you start the search with &tdeio-locate; directly in konqueror. You just enter <command>locate:pattern</command> as the address.
</para>
<para>
By default, a search <command>locate:pattern</command> is case insensitive if the pattern is lowercase. If the pattern is mixed- or uppercase the search is case sensitive. This default behaviour can be overridden.
@@ -127,12 +127,12 @@ To find out more about &kio-locate; and to look for new versions, you should tak
<emphasis>Hint:</emphasis> Type <command>locater:config</command> in the konqueror address bar to show the configuration dialog. Likewise, <command>locater:help</command> shows this help document.
</para>
-<sect1 id="kio-locate-patterns">
+<sect1 id="tdeio-locate-patterns">
<title>How to write patterns</title>
<para>
<itemizedlist>
- <listitem><para>Regular wildcard characters may be used in the patterns passed to &kio-locate;: A star (*) matches any string with nonzero length, a question mark (?) matches a single character, and a character list ([abc-z]) matches the characters in the list. A character list can be inverted by putting a caret after the first square bracket ([^abc-z]).</para></listitem>
+ <listitem><para>Regular wildcard characters may be used in the patterns passed to &tdeio-locate;: A star (*) matches any string with nonzero length, a question mark (?) matches a single character, and a character list ([abc-z]) matches the characters in the list. A character list can be inverted by putting a caret after the first square bracket ([^abc-z]).</para></listitem>
<listitem><para>Every plus (+) in a search is used just as a star (*) is. Instead of <command>locate:*.html</command> you may also type <command>locate:+.html</command>. This is because you can't use the star in konqueror. In other apps both ways are supported.</para></listitem>
<listitem><para>Should you need to use a plus in your search you have to escape it with a backslash. Instead of <command>locate:g++</command> you have to use <command>locate:g\+\+</command>.</para></listitem>
<listitem><para>Furthermore you can't use a slash as the last character of your query. O.k. you can, but KDE will ignore it. In such a case you can quote your pattern: Write <command>locate:"servicemenus/"</command> rather than <command>locate:servicemenus/</command>.</para></listitem>
@@ -146,12 +146,12 @@ To find out more about &kio-locate; and to look for new versions, you should tak
</sect1>
-<sect1 id="kio-locate-screenshot">
-<title>Take a look at &kio-locate;</title>
+<sect1 id="tdeio-locate-screenshot">
+<title>Take a look at &tdeio-locate;</title>
<para>
<screenshot>
- <screeninfo>Here's a screenshot of &kio-locate;</screeninfo>
+ <screeninfo>Here's a screenshot of &tdeio-locate;</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="screenshot.png" format="PNG"/>
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
index 61233cd..7d2e422 100644
--- a/po/CMakeLists.txt
+++ b/po/CMakeLists.txt
@@ -9,7 +9,7 @@
#
#################################################
-file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} kio-locate.po )
+file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} tdeio-locate.po )
foreach( _po ${po_files} )
get_filename_component( _lang ${_po} PATH )
diff --git a/po/de/kio-locate.po b/po/de/tdeio-locate.po
index 4d8b0e6..ea8b2c8 100644
--- a/po/de/kio-locate.po
+++ b/po/de/tdeio-locate.po
@@ -1,12 +1,12 @@
-# kio-locate: KDE I/O Slave for the locate command
+# tdeio-locate: KDE I/O Slave for the locate command
#
# Copyright (C) 2004 by Armin Straub
#
-# This file is distributed under the same license as kio-locate.
+# This file is distributed under the same license as tdeio-locate.
msgid ""
msgstr ""
-"Project-Id-Version: kio-locate\n"
+"Project-Id-Version: tdeio-locate\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-09-15 10:08+0200\n"
"PO-Revision-Date: 2004-09-29 12:59+0200\n"
@@ -27,8 +27,8 @@ msgid "Finished."
msgstr "Suche abgeschlossen."
#: ../src/tdeio_locate.cpp:752
-msgid "Configure - kio-locate"
-msgstr "Einstellungen - kio-locate"
+msgid "Configure - tdeio-locate"
+msgstr "Einstellungen - tdeio-locate"
#: ../src/tdeio_locate.cpp:755
msgid "General"
@@ -103,13 +103,13 @@ msgstr "Einstellungen f�r Locate"
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113
msgid ""
-"<p>kio-locate does not handle the settings of locate, because this setup "
+"<p>tdeio-locate does not handle the settings of locate, because this setup "
"varies among different distributions. There are even distributions that use "
"replacements like slocate.</p>\n"
"<p>To configure locate you should take a look at the manpage of locate. "
"Since most distributions use cron for updating locate's database, it may "
"also be useful to take a look at the manpage of crontab.</p>"
-msgstr "<p>Sie k�nnen die Einstellungen von locate nicht mit kio-locate vornehmen, da es dabei gro�e Unterschiede zwischen verschiedenen Distributionen gibt. Einige verwenden sogar ganz andere Ersatzprogramme.</p>\n"
+msgstr "<p>Sie k�nnen die Einstellungen von locate nicht mit tdeio-locate vornehmen, da es dabei gro�e Unterschiede zwischen verschiedenen Distributionen gibt. Einige verwenden sogar ganz andere Ersatzprogramme.</p>\n"
"<p>F�r die Einstellungen von locate lohnt es sich einen Blick in die Manpage zu locate zu werfen. Da die meisten Distributionen cron zur Aktualisierung der Datenbank f�r locate verwenden, kann es sich auch lohnen die Manpage zu crontab zu lesen.</p>"
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:115
@@ -138,9 +138,9 @@ msgstr "Zus�tzliche &Argumente:"
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120
msgid ""
-"<i>Hint:</i> Do not use -r or -i here. The first will confuse kio-locate, "
+"<i>Hint:</i> Do not use -r or -i here. The first will confuse tdeio-locate, "
"and the latter can be changed through the \"Case sensitivity\" option."
-msgstr "<i>Tipp:</i> Verwenden Sie nicht -r oder -i. Ersteres verwirrt kio-locate und letzteres kann durch die Option \"Gro�- und Kleinschreibung\" eingestellt werden."
+msgstr "<i>Tipp:</i> Verwenden Sie nicht -r oder -i. Ersteres verwirrt tdeio-locate und letzteres kann durch die Option \"Gro�- und Kleinschreibung\" eingestellt werden."
#: ../src/tmphack/klocateconfigwidget.ui.cpp:870
msgid "KLocateConfigWidget"
diff --git a/po/fr/kio-locate.po b/po/fr/tdeio-locate.po
index 6257c22..2f269a4 100644
--- a/po/fr/kio-locate.po
+++ b/po/fr/tdeio-locate.po
@@ -1,10 +1,10 @@
# translation of tdeio_locate.po to French
-# kio-locate: KDE I/O Slave for the locate command
+# tdeio-locate: KDE I/O Slave for the locate command
#
# Copyright (C) 2004 by Armin Straub
#
-# This file is distributed under the same license as kio-locate.
+# This file is distributed under the same license as tdeio-locate.
# Laurent Rathle <[email protected]>, 2004.
msgid ""
msgstr ""
@@ -28,7 +28,7 @@ msgid "Finished."
msgstr "Termin�."
#: ../src/tdeio_locate.cpp:752
-msgid "Configure - kio-locate"
+msgid "Configure - tdeio-locate"
msgstr ""
#: ../src/tdeio_locate.cpp:755
@@ -104,7 +104,7 @@ msgstr ""
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113
msgid ""
-"<p>kio-locate does not handle the settings of locate, because this setup "
+"<p>tdeio-locate does not handle the settings of locate, because this setup "
"varies among different distributions. There are even distributions that use "
"replacements like slocate.</p>\n"
"<p>To configure locate you should take a look at the manpage of locate. "
@@ -138,7 +138,7 @@ msgstr ""
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120
msgid ""
-"<i>Hint:</i> Do not use -r or -i here. The first will confuse kio-locate, "
+"<i>Hint:</i> Do not use -r or -i here. The first will confuse tdeio-locate, "
"and the latter can be changed through the \"Case sensitivity\" option."
msgstr ""
diff --git a/po/messages.sh b/po/messages.sh
index abec01b..dfddc84 100755
--- a/po/messages.sh
+++ b/po/messages.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# Modified by Tobi Vollebregt for use with kio-locate.
+# Modified by Tobi Vollebregt for use with tdeio-locate.
# Inspired by Makefile.common from coolo
# this script is used to update the .po files
diff --git a/po/tdeio_locate.pot b/po/tdeio_locate.pot
index b8c7a5a..3aec020 100644
--- a/po/tdeio_locate.pot
+++ b/po/tdeio_locate.pot
@@ -25,7 +25,7 @@ msgid "Finished."
msgstr ""
#: ../src/tdeio_locate.cpp:752
-msgid "Configure - kio-locate"
+msgid "Configure - tdeio-locate"
msgstr ""
#: ../src/tdeio_locate.cpp:755
@@ -101,7 +101,7 @@ msgstr ""
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:113
msgid ""
-"<p>kio-locate does not handle the settings of locate, because this setup "
+"<p>tdeio-locate does not handle the settings of locate, because this setup "
"varies among different distributions. There are even distributions that use "
"replacements like slocate.</p>\n"
"<p>To configure locate you should take a look at the manpage of locate. "
@@ -135,7 +135,7 @@ msgstr ""
#: ../src/tmphack/klocateconfiglocatewidget.ui.cpp:120
msgid ""
-"<i>Hint:</i> Do not use -r or -i here. The first will confuse kio-locate, "
+"<i>Hint:</i> Do not use -r or -i here. The first will confuse tdeio-locate, "
"and the latter can be changed through the \"Case sensitivity\" option."
msgstr ""
diff --git a/src/klocateconfiglocatewidget.ui b/src/klocateconfiglocatewidget.ui
index 705a240..db311dd 100644
--- a/src/klocateconfiglocatewidget.ui
+++ b/src/klocateconfiglocatewidget.ui
@@ -35,7 +35,7 @@
<cstring>textLabel3_2</cstring>
</property>
<property name="text">
- <string>&lt;p&gt;kio-locate does not handle the settings of locate, because this setup varies among different distributions. There are even distributions that use replacements like slocate.&lt;/p&gt;
+ <string>&lt;p&gt;tdeio-locate does not handle the settings of locate, because this setup varies among different distributions. There are even distributions that use replacements like slocate.&lt;/p&gt;
&lt;p&gt;To configure locate you should take a look at the manpage of locate. Since most distributions use cron for updating locate's database, it may also be useful to take a look at the manpage of crontab.&lt;/p&gt;</string>
</property>
<property name="textFormat">
@@ -131,7 +131,7 @@
<cstring>textLabel1_3_2</cstring>
</property>
<property name="text">
- <string>&lt;i&gt;Hint:&lt;/i&gt; If you don't specify a value here (which is the default), kio-locate will automatically pick slocate, rlocate or locate (in that order).</string>
+ <string>&lt;i&gt;Hint:&lt;/i&gt; If you don't specify a value here (which is the default), tdeio-locate will automatically pick slocate, rlocate or locate (in that order).</string>
</property>
</widget>
<widget class="TQLayoutWidget">
@@ -196,7 +196,7 @@
<cstring>textLabel3</cstring>
</property>
<property name="text">
- <string>&lt;i&gt;Hint:&lt;/i&gt; Do not use -r or -i here. The first will confuse kio-locate, and the latter can be changed through the "Case sensitivity" option.</string>
+ <string>&lt;i&gt;Hint:&lt;/i&gt; Do not use -r or -i here. The first will confuse tdeio-locate, and the latter can be changed through the "Case sensitivity" option.</string>
</property>
</widget>
</vbox>
diff --git a/src/locate.protocol b/src/locate.protocol
index 5fc528b..9021edd 100644
--- a/src/locate.protocol
+++ b/src/locate.protocol
@@ -15,4 +15,4 @@ Class=:local
URIMode=rawuri
# Our very sophisticated documentation
-DocPath=kio-locate/index.html
+DocPath=tdeio-locate/index.html
diff --git a/src/locater.cpp b/src/locater.cpp
index 617a417..68c1d75 100644
--- a/src/locater.cpp
+++ b/src/locater.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
diff --git a/src/locater.h b/src/locater.h
index e855d03..229f3f2 100644
--- a/src/locater.h
+++ b/src/locater.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
diff --git a/src/locater.protocol b/src/locater.protocol
index 3e742b8..a8ff215 100644
--- a/src/locater.protocol
+++ b/src/locater.protocol
@@ -12,4 +12,4 @@ Description=KDE I/O Slave for the locate command
Class=:local
# Our very sophisticated documentation
-DocPath=kio-locate/index.html
+DocPath=tdeio-locate/index.html
diff --git a/src/pattern.cpp b/src/pattern.cpp
index 52ade3c..6ca3841 100644
--- a/src/pattern.cpp
+++ b/src/pattern.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
diff --git a/src/pattern.h b/src/pattern.h
index fb4651f..0aac4d5 100644
--- a/src/pattern.h
+++ b/src/pattern.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
@@ -31,7 +31,7 @@
#include <tqvaluelist.h>
/**
- * Regular Expression adapted to the needs of kio-locate.
+ * Regular Expression adapted to the needs of tdeio-locate.
*/
class LocateRegExp
{
diff --git a/src/rlocate.protocol b/src/rlocate.protocol
index a49daf9..497996f 100644
--- a/src/rlocate.protocol
+++ b/src/rlocate.protocol
@@ -15,4 +15,4 @@ Class=:local
URIMode=rawuri
# Our very sophisticated documentation
-DocPath=kio-locate/index.html
+DocPath=tdeio-locate/index.html
diff --git a/src/tdeio_locate.cpp b/src/tdeio_locate.cpp
index 107e737..cedca4a 100644
--- a/src/tdeio_locate.cpp
+++ b/src/tdeio_locate.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
@@ -299,7 +299,7 @@ int LocateProtocol::getCollapseDirectoryThreshold() const
/////////////////////////////////////////////////////////////////////
-// KIO STUFF
+// TDEIO STUFF
void LocateProtocol::setUrl(const KURL& url)
{
@@ -348,7 +348,7 @@ void LocateProtocol::get(const KURL& url)
if (m_locater.binaryExists()) {
error(TDEIO::ERR_IS_DIRECTORY, TQString());
} else {
- TQString html = i18n("<h1>\"%1\" could not be started.</h1><p>Please note that kio-locate can't be used on its own. You need an additional program for doing searches. Typically this is the command line tool <i>locate</i> that can be found in many distributions by default. You can check if the correct tool is used by looking at the <a href=\"locater:config\">setting</a> \"Locate Binary\".<p>Besides the mentioned tool <i>locate</i>, kio-locate can use any tool that uses the same syntax. In particular, it was reported to work with <i>slocate</i> and <i>rlocate</i>.").arg(m_locater.binary());
+ TQString html = i18n("<h1>\"%1\" could not be started.</h1><p>Please note that tdeio-locate can't be used on its own. You need an additional program for doing searches. Typically this is the command line tool <i>locate</i> that can be found in many distributions by default. You can check if the correct tool is used by looking at the <a href=\"locater:config\">setting</a> \"Locate Binary\".<p>Besides the mentioned tool <i>locate</i>, tdeio-locate can use any tool that uses the same syntax. In particular, it was reported to work with <i>slocate</i> and <i>rlocate</i>.").arg(m_locater.binary());
outputHtml(html);
}
} else if (isConfigRequest()) {
@@ -771,7 +771,7 @@ void LocateProtocol::configRequest()
KDialogBase::IconList,
KDialogBase::Default|KDialogBase::Ok|KDialogBase::Cancel|KDialogBase::Help,
KDialogBase::Ok, true);
- dialog->setCaption(i18n("Configure - kio-locate"));
+ dialog->setCaption(i18n("Configure - tdeio-locate"));
dialog->setIcon(SmallIcon("find"));
dialog->addPage(new KLocateConfigWidget(), i18n("General"), "package_settings");
diff --git a/src/tdeio_locate.h b/src/tdeio_locate.h
index 926e7f4..0afcf03 100644
--- a/src/tdeio_locate.h
+++ b/src/tdeio_locate.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
@@ -26,14 +26,14 @@
/**
* \mainpage KDE I/O Slave for the locate command
*
- * \section intro_sec What is kio-locate?
- * kio-locate is a KDE I/O Slave for the locate command.
- * <p>This means that you can use kio-locate by simply typing in konquerors
+ * \section intro_sec What is tdeio-locate?
+ * tdeio-locate is a KDE I/O Slave for the locate command.
+ * <p>This means that you can use tdeio-locate by simply typing in konquerors
* address box. You can e.g. type "locate:index.html" to find all files that
* contain "index.html" in their name.
- * <p>There's even more: You can use kio-locate in all TDE applications, that
+ * <p>There's even more: You can use tdeio-locate in all TDE applications, that
* accept URLs.
- * <p>To find out more about kio-locate and to look for new versions, you
+ * <p>To find out more about tdeio-locate and to look for new versions, you
* should take a look at
* <a href="http://arminstraub.de/browse.php?page=programs_kiolocate">
* arminstraub.de</a>.
@@ -223,7 +223,7 @@ class LocateProtocol : public TQObject, public TDEIO::SlaveBase
/**
- * Internally used class to represent a hit as kio-locate will
+ * Internally used class to represent a hit as tdeio-locate will
* report.
*
* This may either be a path as given by locate or a directory
@@ -242,7 +242,7 @@ class LocateItem
/**
- * Internally used class to represent a directory while kio-locate
+ * Internally used class to represent a directory while tdeio-locate
* gathers data from locate.
*
* Each directory has a list of files found in just that directory
diff --git a/src/tdeio_locate.kcfg b/src/tdeio_locate.kcfg
index 6b86e9a..6bda265 100644
--- a/src/tdeio_locate.kcfg
+++ b/src/tdeio_locate.kcfg
@@ -54,7 +54,7 @@
<entry name="locateAdditionalArguments" type="String">
<label>Additional Arguments for locate</label>
- <whatsthis>Do not use -r or -i here. The first will confuse kio-locate, while the latter can be changed through the caseSensitivity option.</whatsthis>
+ <whatsthis>Do not use -r or -i here. The first will confuse tdeio-locate, while the latter can be changed through the caseSensitivity option.</whatsthis>
<default></default>
</entry>
</group>
diff --git a/templates/cpp b/templates/cpp
index 7db1f84..e81a459 100644
--- a/templates/cpp
+++ b/templates/cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *
diff --git a/templates/h b/templates/h
index 7db1f84..e81a459 100644
--- a/templates/h
+++ b/templates/h
@@ -1,5 +1,5 @@
/***************************************************************************
- * kio-locate: KDE I/O Slave for the locate command *
+ * tdeio-locate: KDE I/O Slave for the locate command *
* *
* Copyright (C) 2005 by Tobi Vollebregt *