Removed 'app:/' protocol. Removed unnecessary icons.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
r14.0.x
Michele Calgaro 2 years ago
parent efc48a5ae9
commit 8e55bfc594
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -9,8 +9,6 @@
# #
################################################# #################################################
add_subdirectory( icons )
include_directories( include_directories(
${TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR} ${TDE_INCLUDE_DIR}
@ -26,7 +24,6 @@ link_directories(
##### other data ################################ ##### other data ################################
install( FILES app.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
install( FILES appinfo.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) install( FILES appinfo.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
@ -35,7 +32,7 @@ install( FILES appinfo.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
set( target tdeio_appinfo ) set( target tdeio_appinfo )
set( ${target}_SRCS set( ${target}_SRCS
app.cpp appimpl.cpp appinfo.cpp appimpl.cpp
) )
tde_add_kpart( ${target} AUTOMOC tde_add_kpart( ${target} AUTOMOC

@ -1,18 +0,0 @@
[Protocol]
exec=tdeio_appinfo
protocol=app
input=none
output=filesystem
listing=Type,Name,Size,Date,AccessDate,Access,Owner,Group,Link
reading=true
writing=true
makedir=true
deleting=true
linking=true
moving=true
Icon=computer
maxInstances=4
#TODO DocPath=tdeioslave/file.html
Class=:local
deleteRecursive=true
fileNameUsedForCopying=Name

@ -20,6 +20,8 @@
#include "appimpl.h" #include "appimpl.h"
#include <stdlib.h>
#include <tqapplication.h> #include <tqapplication.h>
#include <tqeventloop.h> #include <tqeventloop.h>
@ -28,11 +30,8 @@
#include <kdesktopfile.h> #include <kdesktopfile.h>
#include <tdelocale.h> #include <tdelocale.h>
#include <kservice.h> #include <kservice.h>
#include <kservicegroup.h>
#include <tdeio/job.h> #include <tdeio/job.h>
#include <stdlib.h>
AppImpl::AppImpl() : TQObject() AppImpl::AppImpl() : TQObject()
{ {

@ -26,7 +26,7 @@
#include <kinstance.h> #include <kinstance.h>
#include <kurl.h> #include <kurl.h>
#include "app.h" #include "appinfo.h"
using namespace TDEIO; using namespace TDEIO;
@ -34,43 +34,43 @@ extern "C"
{ {
int kdemain(int argc, char **argv) int kdemain(int argc, char **argv)
{ {
kdDebug(7101) << "*** Starting tdeio_app " << endl; kdDebug(7101) << "*** Starting tdeio_appinfo " << endl;
if (argc != 4) if (argc != 4)
{ {
kdDebug(7101) << "Usage: tdeio_app protocol domain-socket1 domain-socket2" << endl; kdDebug(7101) << "Usage: tdeio_appinfo protocol domain-socket1 domain-socket2" << endl;
exit(255); exit(255);
} }
TDEInstance instance("tdeio_app"); TDEInstance instance("tdeio_appinfo");
tdeio_appProtocol slave(argv[2], argv[3]); tdeio_appInfoProtocol slave(argv[2], argv[3]);
slave.dispatchLoop(); slave.dispatchLoop();
return 0; return 0;
} }
} }
tdeio_appProtocol::tdeio_appProtocol(const TQCString &pool_socket, const TQCString &app_socket) tdeio_appInfoProtocol::tdeio_appInfoProtocol(const TQCString &pool_socket,
: SlaveBase("tdeio_app", pool_socket, app_socket) const TQCString &app_socket) : SlaveBase("tdeio_appinfo", pool_socket, app_socket)
{ {
kdDebug() << "tdeio_appProtocol::tdeio_appProtocol()" << endl; kdDebug() << "tdeio_appInfoProtocol::tdeio_appInfoProtocol()" << endl;
} }
tdeio_appProtocol::~tdeio_appProtocol() tdeio_appInfoProtocol::~tdeio_appInfoProtocol()
{ {
kdDebug() << "tdeio_appProtocol::~tdeio_appProtocol()" << endl; kdDebug() << "tdeio_appInfoProtocol::~tdeio_appInfoProtocol()" << endl;
} }
void tdeio_appProtocol::stat(const KURL &url) void tdeio_appInfoProtocol::stat(const KURL &url)
{ {
kdDebug() << "tdeio_appProtocol::stat: " << url << endl; kdDebug() << "tdeio_appInfoProtocol::stat: " << url << endl;
TQString path = url.path(); TQString path = url.path();
if (path.isEmpty() || path == "/") if (path.isEmpty() || path == "/")
{ {
kdDebug() << "tdeio_appProtocol::stat: " << "creating top level entry" << endl; kdDebug() << "tdeio_appInfoProtocol::stat: " << "creating top level entry" << endl;
// The root is "virtual" - it's not a single physical directory // The root is "virtual" - it's not a single physical directory
TDEIO::UDSEntry entry; TDEIO::UDSEntry entry;
m_impl.createTopLevelEntry(entry); m_impl.createTopLevelEntry(entry);
@ -83,14 +83,14 @@ void tdeio_appProtocol::stat(const KURL &url)
bool ok = m_impl.parseURL(url, name, path); bool ok = m_impl.parseURL(url, name, path);
if (!ok) if (!ok)
{ {
kdDebug() << "tdeio_appProtocol::stat: " << "can't parse url" << endl; kdDebug() << "tdeio_appInfoProtocol::stat: " << "can't parse url" << endl;
error(TDEIO::ERR_MALFORMED_URL, url.prettyURL()); error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());
return; return;
} }
if (path.isEmpty()) if (path.isEmpty())
{ {
kdDebug() << "tdeio_appProtocol::stat: " << "url empty after parsing" << endl; kdDebug() << "tdeio_appInfoProtocol::stat: " << "url empty after parsing" << endl;
TDEIO::UDSEntry entry; TDEIO::UDSEntry entry;
if (m_impl.statByName(name, entry)) if (m_impl.statByName(name, entry))
@ -105,18 +105,18 @@ void tdeio_appProtocol::stat(const KURL &url)
} }
else else
{ {
kdDebug() << "tdeio_appProtocol::stat: " << "url not empty after parsing: statting" << endl; kdDebug() << "tdeio_appInfoProtocol::stat: " << "url not empty after parsing: statting" << endl;
SlaveBase::stat(url); SlaveBase::stat(url);
} }
} }
void tdeio_appProtocol::listDir(const KURL &url) void tdeio_appInfoProtocol::listDir(const KURL &url)
{ {
kdDebug() << "tdeio_appProtocol::listDir: " << url << endl; kdDebug() << "tdeio_appInfoProtocol::listDir: " << url << endl;
if (url.path().length() <= 1) if (url.path().length() <= 1)
{ {
kdDebug() << "tdeio_appProtocol::listDir: " << "url empty: listing root" << endl; kdDebug() << "tdeio_appInfoProtocol::listDir: " << "url empty: listing root" << endl;
listRoot(); listRoot();
return; return;
} }
@ -129,14 +129,14 @@ void tdeio_appProtocol::listDir(const KURL &url)
return; return;
} }
kdDebug() << "tdeio_appProtocol::listDir: " << "name is " << name << endl; kdDebug() << "tdeio_appInfoProtocol::listDir: " << "name is " << name << endl;
kdDebug() << "tdeio_appProtocol::listDir: " << "path is " << path << endl; kdDebug() << "tdeio_appInfoProtocol::listDir: " << "path is " << path << endl;
// We've been given something like appinfo:/name // We've been given something like appinfo:/name
listAppContents(name); listAppContents(name);
} }
void tdeio_appProtocol::listRoot() void tdeio_appInfoProtocol::listRoot()
{ {
TDEIO::UDSEntryList system_entries; TDEIO::UDSEntryList system_entries;
bool ok = m_impl.listRoot(system_entries); bool ok = m_impl.listRoot(system_entries);
@ -155,7 +155,7 @@ void tdeio_appProtocol::listRoot()
finished(); finished();
} }
void tdeio_appProtocol::listAppContents(const TQString &name) void tdeio_appInfoProtocol::listAppContents(const TQString &name)
{ {
TDEIO::UDSEntryList app_entries; TDEIO::UDSEntryList app_entries;
bool ok = m_impl.listAppContents(name, app_entries); bool ok = m_impl.listAppContents(name, app_entries);

@ -18,8 +18,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/ ***************************************************************************/
#ifndef TDEIO_APP_H_ #ifndef TDEIO_APPINFO_H_
#define TDEIO_APP_H_ #define TDEIO_APPINFO_H_
#include <tdeio/slavebase.h> #include <tdeio/slavebase.h>
@ -29,11 +29,11 @@ class TQCString;
class TQString; class TQString;
class KURL; class KURL;
class tdeio_appProtocol : public TDEIO::SlaveBase class tdeio_appInfoProtocol : public TDEIO::SlaveBase
{ {
public: public:
tdeio_appProtocol(const TQCString &pool_socket, const TQCString &app_socket); tdeio_appInfoProtocol(const TQCString &pool_socket, const TQCString &app_socket);
virtual ~tdeio_appProtocol(); virtual ~tdeio_appInfoProtocol();
virtual void listDir(const KURL &url); virtual void listDir(const KURL &url);
virtual void stat(const KURL &url); virtual void stat(const KURL &url);

@ -1 +0,0 @@
tde_install_icons( tdeio_appinfo )

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

Loading…
Cancel
Save