diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:59:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:59:30 -0600 |
commit | c82fea08078a724716c673258d296e240c517368 (patch) | |
tree | b7f1a6eb07dc87ecac369edf100db6fe48e5e758 /doc | |
parent | c43637b57fccc8d056ce53af8b41a3f9e79d6c38 (diff) | |
download | pytdeextensions-c82fea08078a724716c673258d296e240c517368.tar.gz pytdeextensions-c82fea08078a724716c673258d296e240c517368.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/index.docbook | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/en/index.docbook b/doc/en/index.docbook index be40854..a7476dc 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -424,19 +424,19 @@ features in <literal role="extension">.desktop</literal> files. </chapter> <!-- KIO-Slaves --> -<chapter id="kioslaves"> +<chapter id="tdeioslaves"> <title>KIO Slaves</title> <para> &appname; can be used for the creation of kio-slaves. &appname; handles the C++ -glue code needed for making kioslaves in Python. +glue code needed for making tdeioslaves in Python. <ulink url="http://developer.kde.org/documentation/library/kdeqt/trinityarch/nettransparency.html">developer.kde.org</ulink> has some documentation about KIO-slaves aimed at C++ programmers. </para> <para> -In your <filename>setup.py</filename> file you can specify the list of kioslaves +In your <filename>setup.py</filename> file you can specify the list of tdeioslaves that need to be installed. <programlisting> - kioslaves = [ ('src/kioslave.protocol','kioslave.py')] ) + tdeioslaves = [ ('src/tdeioslave.protocol','tdeioslave.py')] ) </programlisting> This is just a list of tuples. The first item is name of the <literal role="extension">.protocol</literal> file that you've made for your @@ -577,13 +577,13 @@ application outside of KControl to ease development and debugging. </para> </sect1> -<sect1 id="app-template-kioslave"> +<sect1 id="app-template-tdeioslave"> <title>KIO-slave Application Template</title> <para> -The <filename>kioslave</filename> application template is a simple +The <filename>tdeioslave</filename> application template is a simple KIO-slave that implements a simple RAM disk. Once installed it can be -accessed using kioslave:/ in konqueror. It is initially empty. Files and -directories can be made and deposited. <filename>kioslave.py</filename> +accessed using tdeioslave:/ in konqueror. It is initially empty. Files and +directories can be made and deposited. <filename>tdeioslave.py</filename> contains more information and comments. </para> <note> @@ -591,7 +591,7 @@ contains more information and comments. Note that the KIO subsystem usually creates multiple running instances of a kio-slave backend. For the application template, files and directories are specific to each particular backend instance. When using konqueror the -same instance will be used, but if you try to access kioslave:/ from a +same instance will be used, but if you try to access tdeioslave:/ from a different process a new (empty!) instance will be craeted. This can be confusing! Be aware. </para> |