summaryrefslogtreecommitdiffstats
path: root/kioslave/home
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/home')
-rw-r--r--kioslave/home/CMakeLists.txt48
-rw-r--r--kioslave/home/Makefile.am32
-rw-r--r--kioslave/home/dummy.cpp1
-rw-r--r--kioslave/home/home.protocol19
-rw-r--r--kioslave/home/homeimpl.cpp228
-rw-r--r--kioslave/home/homeimpl.h57
-rw-r--r--kioslave/home/kdedmodule/CMakeLists.txt41
-rw-r--r--kioslave/home/kdedmodule/Makefile.am13
-rw-r--r--kioslave/home/kdedmodule/homedirnotify.cpp185
-rw-r--r--kioslave/home/kdedmodule/homedirnotify.desktop61
-rw-r--r--kioslave/home/kdedmodule/homedirnotify.h48
-rw-r--r--kioslave/home/kdedmodule/homedirnotifymodule.cpp37
-rw-r--r--kioslave/home/kdedmodule/homedirnotifymodule.h36
-rw-r--r--kioslave/home/kio_home.cpp186
-rw-r--r--kioslave/home/kio_home.h44
-rw-r--r--kioslave/home/testhome.cpp69
-rw-r--r--kioslave/home/testhome.h34
17 files changed, 0 insertions, 1139 deletions
diff --git a/kioslave/home/CMakeLists.txt b/kioslave/home/CMakeLists.txt
deleted file mode 100644
index 99639d9cb..000000000
--- a/kioslave/home/CMakeLists.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-#################################################
-#
-# (C) 2010-2011 Serghei Amelian
-# serghei (DOT) amelian (AT) gmail.com
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-add_subdirectory( kdedmodule )
-
-include_directories(
- ${CMAKE_CURRENT_BINARY_DIR}
- ${TDE_INCLUDE_DIR}
- ${TQT_INCLUDE_DIRS}
-)
-
-link_directories(
- ${TQT_LIBRARY_DIRS}
-)
-
-
-##### other data ################################
-
-install( FILES home.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
-
-
-##### kiohome (static) ##########################
-
-set( target kiohome )
-
-tde_add_library( ${target} STATIC_PIC AUTOMOC
- SOURCES kio_home.cpp homeimpl.cpp
-)
-
-
-##### kio_home (module) #########################
-
-set( target kio_home )
-
-tde_add_kpart( ${target}
- SOURCES dummy.cpp
- EMBED kiohome-static
- LINK kio-shared
- DESTINATION ${PLUGIN_INSTALL_DIR}
-)
diff --git a/kioslave/home/Makefile.am b/kioslave/home/Makefile.am
deleted file mode 100644
index be10e5bcc..000000000
--- a/kioslave/home/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-SUBDIRS= . kdedmodule
-# wizard
-
-INCLUDES = $(all_includes)
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = kio_home.la
-
-kio_home_la_SOURCES = dummy.cpp
-kio_home_la_LIBADD = libkiohome.la $(LIB_KIO)
-kio_home_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -no-undefined
-
-dummy.cpp:
- echo > dummy.cpp
-
-kde_services_DATA = home.protocol
-
-noinst_LTLIBRARIES = libkiohome.la
-libkiohome_la_SOURCES = kio_home.cpp homeimpl.cpp
-
-check_PROGRAMS = testhome
-testhome_SOURCES = testhome.cpp
-testhome_LDADD = libkiohome.la $(LIB_KIO)
-testhome_LDFLAGS = $(all_libraries)
-
-## TODO in unsermake: TESTS = testhome
-check: testhome
- ./testhome
-
-messages:
- $(XGETTEXT) `find . -name "*.cc" -o -name "*.cpp" -o -name "*.h"` -o $(podir)/kio_home.pot
-
diff --git a/kioslave/home/dummy.cpp b/kioslave/home/dummy.cpp
deleted file mode 100644
index 8b1378917..000000000
--- a/kioslave/home/dummy.cpp
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/kioslave/home/home.protocol b/kioslave/home/home.protocol
deleted file mode 100644
index 59f6cba5d..000000000
--- a/kioslave/home/home.protocol
+++ /dev/null
@@ -1,19 +0,0 @@
-[Protocol]
-exec=kio_home
-protocol=home
-input=none
-output=filesystem
-listing=Name,Type,Size,Date,AccessDate,Access,Owner,Group,Link
-reading=true
-writing=true
-makedir=true
-deleting=true
-linking=true
-moving=true
-Icon=folder_home
-maxInstances=4
-#TODO DocPath=kioslave/file.html
-Class=:local
-Parent=system:/
-deleteRecursive=true
-fileNameUsedForCopying=Name
diff --git a/kioslave/home/homeimpl.cpp b/kioslave/home/homeimpl.cpp
deleted file mode 100644
index ea3dad520..000000000
--- a/kioslave/home/homeimpl.cpp
+++ /dev/null
@@ -1,228 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kevin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "homeimpl.h"
-
-#include <kdebug.h>
-#include <tqapplication.h>
-#include <tqeventloop.h>
-
-#include <sys/stat.h>
-
-#define MINIMUM_UID 500
-
-HomeImpl::HomeImpl()
-{
- KUser user;
- m_effectiveUid = user.uid();
-}
-
-bool HomeImpl::parseURL(const KURL &url, TQString &name, TQString &path) const
-{
- TQString url_path = url.path();
-
- int i = url_path.find('/', 1);
- if (i > 0)
- {
- name = url_path.mid(1, i-1);
- path = url_path.mid(i+1);
- }
- else
- {
- name = url_path.mid(1);
- path = TQString::null;
- }
-
- return name != TQString::null;
-}
-
-bool HomeImpl::realURL(const TQString &name, const TQString &path, KURL &url)
-{
- KUser user(name);
-
- if ( user.isValid() )
- {
- KURL res;
- res.setPath( user.homeDir() );
- res.addPath(path);
- url = res;
- return true;
- }
-
- return false;
-}
-
-
-bool HomeImpl::listHomes(TQValueList<TDEIO::UDSEntry> &list)
-{
- kdDebug() << "HomeImpl::listHomes" << endl;
-
- KUser current_user;
- TQValueList<KUserGroup> groups = current_user.groups();
- TQValueList<int> uid_list;
-
- TQValueList<KUserGroup>::iterator groups_it = groups.begin();
- TQValueList<KUserGroup>::iterator groups_end = groups.end();
-
- for(; groups_it!=groups_end; ++groups_it)
- {
- TQValueList<KUser> users = (*groups_it).users();
-
- TQValueList<KUser>::iterator it = users.begin();
- TQValueList<KUser>::iterator users_end = users.end();
-
- for(; it!=users_end; ++it)
- {
- if ((*it).uid()>=MINIMUM_UID
- && !uid_list.contains( (*it).uid() ) )
- {
- uid_list.append( (*it).uid() );
- TDEIO::UDSEntry entry;
- createHomeEntry(entry, *it);
- list.append(entry);
- }
- }
- }
-
- return true;
-}
-
-static void addAtom(TDEIO::UDSEntry &entry, unsigned int ID, long l,
- const TQString &s = TQString::null)
-{
- TDEIO::UDSAtom atom;
- atom.m_uds = ID;
- atom.m_long = l;
- atom.m_str = s;
- entry.append(atom);
-}
-
-
-void HomeImpl::createTopLevelEntry(TDEIO::UDSEntry &entry) const
-{
- entry.clear();
- addAtom(entry, TDEIO::UDS_NAME, 0, ".");
- addAtom(entry, TDEIO::UDS_FILE_TYPE, S_IFDIR);
- addAtom(entry, TDEIO::UDS_ACCESS, 0555);
- addAtom(entry, TDEIO::UDS_MIME_TYPE, 0, "inode/directory");
- addAtom(entry, TDEIO::UDS_ICON_NAME, 0, "kfm_home");
- addAtom(entry, TDEIO::UDS_USER, 0, "root");
- addAtom(entry, TDEIO::UDS_GROUP, 0, "root");
-}
-
-void HomeImpl::createHomeEntry(TDEIO::UDSEntry &entry,
- const KUser &user)
-{
- kdDebug() << "HomeImpl::createHomeEntry" << endl;
-
- entry.clear();
-
- TQString full_name = user.loginName();
-
- if (!user.fullName().isEmpty())
- {
- full_name = user.fullName()+" ("+user.loginName()+")";
- }
-
- full_name = TDEIO::encodeFileName( full_name );
-
- addAtom(entry, TDEIO::UDS_NAME, 0, full_name);
- addAtom(entry, TDEIO::UDS_URL, 0, "home:/"+user.loginName());
-
- addAtom(entry, TDEIO::UDS_FILE_TYPE, S_IFDIR);
- addAtom(entry, TDEIO::UDS_MIME_TYPE, 0, "inode/directory");
-
- TQString icon_name = "folder_home2";
-
- if (user.uid()==m_effectiveUid)
- {
- icon_name = "folder_home";
- }
-
- addAtom(entry, TDEIO::UDS_ICON_NAME, 0, icon_name);
-
- KURL url;
- url.setPath(user.homeDir());
- entry += extractUrlInfos(url);
-}
-
-bool HomeImpl::statHome(const TQString &name, TDEIO::UDSEntry &entry)
-{
- kdDebug() << "HomeImpl::statHome: " << name << endl;
-
- KUser user(name);
-
- if (user.isValid())
- {
- createHomeEntry(entry, user);
- return true;
- }
-
- return false;
-}
-
-void HomeImpl::slotStatResult(TDEIO::Job *job)
-{
- if ( job->error() == 0)
- {
- TDEIO::StatJob *stat_job = static_cast<TDEIO::StatJob *>(job);
- m_entryBuffer = stat_job->statResult();
- }
-
- tqApp->eventLoop()->exitLoop();
-}
-
-TDEIO::UDSEntry HomeImpl::extractUrlInfos(const KURL &url)
-{
- m_entryBuffer.clear();
-
- TDEIO::StatJob *job = TDEIO::stat(url, false);
- connect( job, TQT_SIGNAL( result(TDEIO::Job *) ),
- this, TQT_SLOT( slotStatResult(TDEIO::Job *) ) );
- tqApp->eventLoop()->enterLoop();
-
- TDEIO::UDSEntry::iterator it = m_entryBuffer.begin();
- TDEIO::UDSEntry::iterator end = m_entryBuffer.end();
-
- TDEIO::UDSEntry infos;
-
- for(; it!=end; ++it)
- {
- switch( (*it).m_uds )
- {
- case TDEIO::UDS_ACCESS:
- case TDEIO::UDS_USER:
- case TDEIO::UDS_GROUP:
- case TDEIO::UDS_CREATION_TIME:
- case TDEIO::UDS_MODIFICATION_TIME:
- case TDEIO::UDS_ACCESS_TIME:
- infos.append(*it);
- break;
- default:
- break;
- }
- }
-
- addAtom(infos, TDEIO::UDS_LOCAL_PATH, 0, url.path());
-
- return infos;
-}
-
-#include "homeimpl.moc"
-
diff --git a/kioslave/home/homeimpl.h b/kioslave/home/homeimpl.h
deleted file mode 100644
index 786fa598a..000000000
--- a/kioslave/home/homeimpl.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kevin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef HOMEIMPL_H
-#define HOMEIMPL_H
-
-#include <kio/global.h>
-#include <kio/job.h>
-#include <kurl.h>
-#include <kuser.h>
-
-#include <tqstring.h>
-
-class HomeImpl : public QObject
-{
-Q_OBJECT
-
-public:
- HomeImpl();
- bool parseURL(const KURL &url, TQString &name, TQString &path) const;
- bool realURL(const TQString &name, const TQString &path, KURL &url);
-
- bool statHome(const TQString &name, TDEIO::UDSEntry &entry);
- bool listHomes(TQValueList<TDEIO::UDSEntry> &list);
-
- void createTopLevelEntry(TDEIO::UDSEntry &entry) const;
-
-private slots:
- void slotStatResult(TDEIO::Job *job);
-
-private:
- void createHomeEntry(TDEIO::UDSEntry& entry, const KUser &user);
-
- TDEIO::UDSEntry extractUrlInfos(const KURL &url);
- TDEIO::UDSEntry m_entryBuffer;
-
-
- long m_effectiveUid;
-};
-
-#endif
diff --git a/kioslave/home/kdedmodule/CMakeLists.txt b/kioslave/home/kdedmodule/CMakeLists.txt
deleted file mode 100644
index 64d343f84..000000000
--- a/kioslave/home/kdedmodule/CMakeLists.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-#################################################
-#
-# (C) 2010-2011 Serghei Amelian
-# serghei (DOT) amelian (AT) gmail.com
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-include_directories(
- ${CMAKE_CURRENT_BINARY_DIR}
- ${TDE_INCLUDE_DIR}
- ${TQT_INCLUDE_DIRS}
-)
-
-link_directories(
- ${TQT_LIBRARY_DIRS}
-)
-
-
-##### other data ################################
-
-install( FILES homedirnotify.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
-
-
-##### kded_homedirnotify (module) ###############
-
-set( target kded_homedirnotify )
-
-set( ${target}_SRCS
- homedirnotify.cpp homedirnotify.skel
- homedirnotifymodule.cpp homedirnotifymodule.skel
-)
-
-tde_add_kpart( ${target} AUTOMOC
- SOURCES ${${target}_SRCS}
- LINK tdeinit_kded-shared
- DESTINATION ${PLUGIN_INSTALL_DIR}
-)
diff --git a/kioslave/home/kdedmodule/Makefile.am b/kioslave/home/kdedmodule/Makefile.am
deleted file mode 100644
index 3d7a54f9b..000000000
--- a/kioslave/home/kdedmodule/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-kde_module_LTLIBRARIES = kded_homedirnotify.la
-
-METASOURCES = AUTO
-INCLUDES = $(all_includes)
-
-kded_homedirnotify_la_SOURCES = homedirnotify.cpp homedirnotify.skel homedirnotifymodule.cpp homedirnotifymodule.skel
-kded_homedirnotify_la_LDFLAGS = $(all_libraries) -module -avoid-version
-kded_homedirnotify_la_LIBADD = $(LIB_KSYCOCA)
-
-
-servicesdir = $(kde_servicesdir)/kded
-services_DATA = homedirnotify.desktop
-
diff --git a/kioslave/home/kdedmodule/homedirnotify.cpp b/kioslave/home/kdedmodule/homedirnotify.cpp
deleted file mode 100644
index 823027fe2..000000000
--- a/kioslave/home/kdedmodule/homedirnotify.cpp
+++ /dev/null
@@ -1,185 +0,0 @@
-/* This file is part of the KDE Project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "homedirnotify.h"
-
-#include <kdebug.h>
-#include <kuser.h>
-
-#include <kdirnotify_stub.h>
-
-#define MINIMUM_UID 500
-
-HomeDirNotify::HomeDirNotify()
-: mInited( false )
-{
-}
-
-void HomeDirNotify::init()
-{
- if( mInited )
- return;
- mInited = true;
-
- KUser current_user;
- TQValueList<KUserGroup> groups = current_user.groups();
- TQValueList<int> uid_list;
-
- TQValueList<KUserGroup>::iterator groups_it = groups.begin();
- TQValueList<KUserGroup>::iterator groups_end = groups.end();
-
- for(; groups_it!=groups_end; ++groups_it)
- {
- TQValueList<KUser> users = (*groups_it).users();
-
- TQValueList<KUser>::iterator it = users.begin();
- TQValueList<KUser>::iterator users_end = users.end();
-
- for(; it!=users_end; ++it)
- {
- if ((*it).uid()>=MINIMUM_UID
- && !uid_list.contains( (*it).uid() ) )
- {
- uid_list.append( (*it).uid() );
-
- TQString name = (*it).loginName();
- KURL url;
- url.setPath( (*it).homeDir() );
-
- m_homeFoldersMap[name] = url;
- }
- }
- }
-}
-
-KURL HomeDirNotify::toHomeURL(const KURL &url)
-{
- kdDebug() << "HomeDirNotify::toHomeURL(" << url << ")" << endl;
-
- init();
- TQMap<TQString,KURL>::iterator it = m_homeFoldersMap.begin();
- TQMap<TQString,KURL>::iterator end = m_homeFoldersMap.end();
-
- for (; it!=end; ++it)
- {
- TQString name = it.key();
- KURL base = it.data();
-
- if ( base.isParentOf(url) )
- {
- TQString path = KURL::relativePath(base.path(),
- url.path());
- KURL result("home:/"+name+"/"+path);
- result.cleanPath();
- kdDebug() << "result => " << result << endl;
- return result;
- }
- }
-
- kdDebug() << "result => KURL()" << endl;
- return KURL();
-}
-
-KURL::List HomeDirNotify::toHomeURLList(const KURL::List &list)
-{
- init();
- KURL::List new_list;
-
- KURL::List::const_iterator it = list.begin();
- KURL::List::const_iterator end = list.end();
-
- for (; it!=end; ++it)
- {
- KURL url = toHomeURL(*it);
-
- if (url.isValid())
- {
- new_list.append(url);
- }
- }
-
- return new_list;
-}
-
-ASYNC HomeDirNotify::FilesAdded(const KURL &directory)
-{
- kdDebug() << "HomeDirNotify::FilesAdded" << endl;
-
- KURL new_dir = toHomeURL(directory);
-
- if (new_dir.isValid())
- {
- KDirNotify_stub notifier("*", "*");
- notifier.FilesAdded( new_dir );
- }
-}
-
-// This hack is required because of the way we manage .desktop files with
-// Forwarding Slaves, their URL is out of the ioslave (some home:/ files
-// have a file:/ based UDS_URL so that they are executed correctly.
-// Hence, FilesRemoved and FilesChanged does nothing... We're forced to use
-// FilesAdded to re-list the modified directory.
-inline void evil_hack(const KURL::List &list)
-{
- KDirNotify_stub notifier("*", "*");
-
- KURL::List notified;
-
- KURL::List::const_iterator it = list.begin();
- KURL::List::const_iterator end = list.end();
-
- for (; it!=end; ++it)
- {
- KURL url = (*it).upURL();
-
- if (!notified.contains(url))
- {
- notifier.FilesAdded(url);
- notified.append(url);
- }
- }
-}
-
-
-ASYNC HomeDirNotify::FilesRemoved(const KURL::List &fileList)
-{
- kdDebug() << "HomeDirNotify::FilesRemoved" << endl;
-
- KURL::List new_list = toHomeURLList(fileList);
-
- if (!new_list.isEmpty())
- {
- //KDirNotify_stub notifier("*", "*");
- //notifier.FilesRemoved( new_list );
- evil_hack(new_list);
- }
-}
-
-ASYNC HomeDirNotify::FilesChanged(const KURL::List &fileList)
-{
- kdDebug() << "HomeDirNotify::FilesChanged" << endl;
-
- KURL::List new_list = toHomeURLList(fileList);
-
- if (!new_list.isEmpty())
- {
- //KDirNotify_stub notifier("*", "*");
- //notifier.FilesChanged( new_list );
- evil_hack(new_list);
- }
-}
diff --git a/kioslave/home/kdedmodule/homedirnotify.desktop b/kioslave/home/kdedmodule/homedirnotify.desktop
deleted file mode 100644
index aec11b69f..000000000
--- a/kioslave/home/kdedmodule/homedirnotify.desktop
+++ /dev/null
@@ -1,61 +0,0 @@
-[Desktop Entry]
-Type=Service
-Name=KDED Home Base URL Notifier
-Name[af]=KDED tuis URL inkennissteller
-Name[be]=Праверка зменаў мясцовых файлаў KDED
-Name[bs]=KDED lokalno obavještenje o baznom URLu
-Name[ca]=Notificador KDED de l'URL d'inici
-Name[cs]=Démon upozorňování na domovské URL
-Name[csb]=Dôwanié wiédzë o URL-ach domôcegò katalogù dlô KDED
-Name[da]=KDED Hjemmebasis-URL påmindelser
-Name[de]=Überwachung für persönliche Ordner
-Name[el]=KDED ειδοποιητής URL αρχικής βάσης
-Name[eo]=KDED Hejmo Bazo URL Avertilo
-Name[es]=Notificador de URL de KDED
-Name[et]=KDED kodu baas-URLi teadustaja
-Name[eu]=KDED hasierako URL oinarriaren iragarlea
-Name[fa]=اخطاردهندۀ نشانی وب پایۀ آغازۀ KDED
-Name[fi]=KDED:in etä-verkko-osoitteen ilmaisin
-Name[fr]=Notification de l'URL de base KDED
-Name[fy]=KDED Thúsbasis-URL-adres notifikaasje
-Name[gl]=Notificador de URL base de KDED
-Name[hr]=KDED URL obavještavanje domaće baze
-Name[hu]=Értesítő a KDE saját URL-hez
-Name[is]=KDED grunnslóðar tilkynnari
-Name[it]=Notifica KDED Home Base URL
-Name[ja]=KDED ホームベース URL Nofitier
-Name[ka]=KDED ძირითადი თავფურცლის URL შემტყობინებელი
-Name[kk]=KDED Home Base URL құлақтандыру
-Name[km]=KDED Remote Base URL Notifier
-Name[ko]=KDED 원격 기반 URL 알리미
-Name[lt]=KDED pagrindinio namų URL priminiklis
-Name[nb]=KDED-påminner for eksterne nettadresser
-Name[nds]=KDED-Narichten för Tohuusorner-URLs
-Name[ne]=KDED गृह आधारित यूआरएल सूचक
-Name[nl]=KDED Thuisbasis-URL-adres notificatie
-Name[nn]=KDED-varsel for heimebase
-Name[pa]=KDED ਮੁੱਖ ਅਧਾਰ URL ਸੂਚਕ
-Name[pl]=Powiadamianie o URL-ach katalogu domowego dla KDED
-Name[pt]=Notificador de URLs de Base Remotos do KDED
-Name[pt_BR]=Serviço de Notificação da URL do KDED
-Name[ro]=Notificare KDED pentru URL acasă
-Name[ru]=Уведомление о смене базового адреса KDED
-Name[sk]=KDED notifikátor domovskej URL
-Name[sl]=Obvestilnik KDED domačega osnovnega URL-ja
-Name[sr]=Обавештавач о домаћем базном URL-у, KDED
-Name[sr@Latn]=Obaveštavač o domaćem baznom URL-u, KDED
-Name[sv]=KDED-meddelande om hembaswebbadresser
-Name[th]=ตัวแจ้งเตือน Home Base URL KDED
-Name[tr]=KDED Yerel Tabanlı URL Hatırlatıcı
-Name[uk]=Сповіщувач домашньої базової адреси URL KDED
-Name[vi]=Trình thông báo URL trong máy KDED
-Name[wa]=Notifieu di l' URL di båze del måjhon KDED
-Name[zh_CN]=KDED 主页基 URL 通知器
-Name[zh_TW]=KDED 家用基礎 URL 通知程式
-Comment=Provides change notification for user's home folder ($HOME)
-ServiceTypes=KDEDModule
-X-TDE-ModuleType=Library
-X-TDE-Library=homedirnotify
-X-TDE-FactoryName=homedirnotify
-X-TDE-Kded-load-on-demand=true
-X-TDE-Kded-autoload=true
diff --git a/kioslave/home/kdedmodule/homedirnotify.h b/kioslave/home/kdedmodule/homedirnotify.h
deleted file mode 100644
index dbbd0845e..000000000
--- a/kioslave/home/kdedmodule/homedirnotify.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/* This file is part of the KDE Project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef HOMEDIRNOTIFY_H
-#define HOMEDIRNOTIFY_H
-
-#include <kurl.h>
-#include <kdirnotify.h>
-
-#include <tqmap.h>
-
-class HomeDirNotify : public KDirNotify
-{
-K_DCOP
-
-public:
- HomeDirNotify();
-
-k_dcop:
- virtual ASYNC FilesAdded (const KURL &directory);
- virtual ASYNC FilesRemoved (const KURL::List &fileList);
- virtual ASYNC FilesChanged (const KURL::List &fileList);
-
-private:
- void init();
- KURL toHomeURL(const KURL &url);
- KURL::List toHomeURLList(const KURL::List &list);
-
- TQMap<TQString,KURL> m_homeFoldersMap;
- bool mInited;
-};
-
-#endif
diff --git a/kioslave/home/kdedmodule/homedirnotifymodule.cpp b/kioslave/home/kdedmodule/homedirnotifymodule.cpp
deleted file mode 100644
index 4eb71c332..000000000
--- a/kioslave/home/kdedmodule/homedirnotifymodule.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/* This file is part of the KDE Project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "homedirnotifymodule.h"
-
-#include <kdebug.h>
-#include <klocale.h>
-#include <kglobal.h>
-
-HomeDirNotifyModule::HomeDirNotifyModule(const TQCString &obj)
- : KDEDModule(obj)
-{
-}
-
-extern "C" {
- KDE_EXPORT KDEDModule *create_homedirnotify(const TQCString &obj)
- {
- TDEGlobal::locale()->insertCatalogue("kio_home");
- return new HomeDirNotifyModule(obj);
- }
-}
-
diff --git a/kioslave/home/kdedmodule/homedirnotifymodule.h b/kioslave/home/kdedmodule/homedirnotifymodule.h
deleted file mode 100644
index 69d96dfc9..000000000
--- a/kioslave/home/kdedmodule/homedirnotifymodule.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* This file is part of the KDE Project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef HOMEDIRNOTIFYMODULE_H
-#define HOMEDIRNOTIFYMODULE_H
-
-#include <kdedmodule.h>
-
-#include "homedirnotify.h"
-
-class HomeDirNotifyModule : public KDEDModule
-{
-K_DCOP
-
-public:
- HomeDirNotifyModule(const TQCString &obj);
-private:
- HomeDirNotify notifier;
-};
-
-#endif
diff --git a/kioslave/home/kio_home.cpp b/kioslave/home/kio_home.cpp
deleted file mode 100644
index bd55aee0a..000000000
--- a/kioslave/home/kio_home.cpp
+++ /dev/null
@@ -1,186 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kevin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include <stdlib.h>
-
-#include <kdebug.h>
-#include <klocale.h>
-#include <kapplication.h>
-#include <dcopclient.h>
-#include <kcmdlineargs.h>
-#include <kglobal.h>
-
-
-#include "kio_home.h"
-
-static const KCmdLineOptions options[] =
-{
- { "+protocol", I18N_NOOP( "Protocol name" ), 0 },
- { "+pool", I18N_NOOP( "Socket name" ), 0 },
- { "+app", I18N_NOOP( "Socket name" ), 0 },
- KCmdLineLastOption
-};
-
-extern "C" {
- int KDE_EXPORT kdemain( int argc, char **argv )
- {
- // TDEApplication is necessary to use other ioslaves
- putenv(strdup("SESSION_MANAGER="));
- TDECmdLineArgs::init(argc, argv, "kio_home", 0, 0, 0, 0);
- TDECmdLineArgs::addCmdLineOptions( options );
- TDEApplication app( false, false );
- // We want to be anonymous even if we use DCOP
- app.dcopClient()->attach();
-
- TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
- HomeProtocol slave( args->arg(0), args->arg(1), args->arg(2) );
- slave.dispatchLoop();
- return 0;
- }
-}
-
-
-HomeProtocol::HomeProtocol(const TQCString &protocol,
- const TQCString &pool, const TQCString &app)
- : ForwardingSlaveBase(protocol, pool, app)
-{
-}
-
-HomeProtocol::~HomeProtocol()
-{
-}
-
-bool HomeProtocol::rewriteURL(const KURL &url, KURL &newUrl)
-{
- TQString name, path;
-
- if ( !m_impl.parseURL(url, name, path) )
- {
- error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());
- return false;
- }
-
-
- if ( !m_impl.realURL(name, path, newUrl) )
- {
- error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());
- return false;
- }
-
- return true;
-}
-
-
-void HomeProtocol::listDir(const KURL &url)
-{
- kdDebug() << "HomeProtocol::listDir: " << url << endl;
-
- if ( url.path().length() <= 1 )
- {
- listRoot();
- return;
- }
-
- TQString name, path;
- bool ok = m_impl.parseURL(url, name, path);
-
- if ( !ok )
- {
- error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());
- return;
- }
-
- ForwardingSlaveBase::listDir(url);
-}
-
-void HomeProtocol::listRoot()
-{
- TDEIO::UDSEntry entry;
-
- TDEIO::UDSEntryList home_entries;
- bool ok = m_impl.listHomes(home_entries);
-
- if (!ok) // can't happen
- {
- error(TDEIO::ERR_UNKNOWN, "");
- return;
- }
-
- totalSize(home_entries.count()+1);
-
- m_impl.createTopLevelEntry(entry);
- listEntry(entry, false);
-
- TDEIO::UDSEntryListIterator it = home_entries.begin();
- TDEIO::UDSEntryListIterator end = home_entries.end();
-
- for(; it!=end; ++it)
- {
- listEntry(*it, false);
- }
-
- entry.clear();
- listEntry(entry, true);
-
- finished();
-}
-
-void HomeProtocol::stat(const KURL &url)
-{
- kdDebug() << "HomeProtocol::stat: " << url << endl;
-
- TQString path = url.path();
- if ( path.isEmpty() || path == "/" )
- {
- // The root is "virtual" - it's not a single physical directory
- TDEIO::UDSEntry entry;
- m_impl.createTopLevelEntry( entry );
- statEntry( entry );
- finished();
- return;
- }
-
- TQString name;
- bool ok = m_impl.parseURL(url, name, path);
-
- if ( !ok )
- {
- error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());
- return;
- }
-
- if( path.isEmpty() )
- {
- TDEIO::UDSEntry entry;
-
- if ( m_impl.statHome(name, entry) )
- {
- statEntry(entry);
- finished();
- }
- else
- {
- error(TDEIO::ERR_DOES_NOT_EXIST, url.prettyURL());
- }
- }
- else
- {
- ForwardingSlaveBase::stat(url);
- }
-}
diff --git a/kioslave/home/kio_home.h b/kioslave/home/kio_home.h
deleted file mode 100644
index 25607a5d4..000000000
--- a/kioslave/home/kio_home.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kevin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef KIO_HOME_H
-#define KIO_HOME_H
-
-#include <kio/forwardingslavebase.h>
-#include "homeimpl.h"
-
-class HomeProtocol : public TDEIO::ForwardingSlaveBase
-{
-public:
- HomeProtocol(const TQCString &protocol, const TQCString &pool,
- const TQCString &app);
- virtual ~HomeProtocol();
-
- virtual bool rewriteURL(const KURL &url, KURL &newUrl);
-
- virtual void listDir(const KURL &url);
- virtual void stat(const KURL &url);
-
-private:
- void listRoot();
-
- HomeImpl m_impl;
-};
-
-#endif
diff --git a/kioslave/home/testhome.cpp b/kioslave/home/testhome.cpp
deleted file mode 100644
index 66b2df126..000000000
--- a/kioslave/home/testhome.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "kio_home.h"
-#include "testhome.h"
-
-#include <config.h>
-
-#include <kapplication.h>
-#include <kdebug.h>
-#include <kcmdlineargs.h>
-
-#include <stdlib.h>
-
-static bool check(const TQString& txt, TQString a, TQString b)
-{
- if (a.isEmpty())
- a = TQString::null;
- if (b.isEmpty())
- b = TQString::null;
- if (a == b) {
- kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl;
- }
- else {
- kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "KO !" << endl;
- exit(1);
- }
- return true;
-}
-
-int main(int argc, char *argv[])
-{
- TDEApplication::disableAutoDcopRegistration();
- TDECmdLineArgs::init(argc,argv,"testhome", 0, 0, 0, 0);
- TDEApplication app;
-
- TestHome test;
- test.setup();
- test.runAll();
- kdDebug() << "All tests OK." << endl;
- return 0; // success. The exit(1) in check() is what happens in case of failure.
-}
-
-void TestHome::setup()
-{
-
-}
-
-void TestHome::runAll()
-{
-
-}
-
diff --git a/kioslave/home/testhome.h b/kioslave/home/testhome.h
deleted file mode 100644
index dd8b257e3..000000000
--- a/kioslave/home/testhome.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* This file is part of the KDE project
- Copyright (c) 2005 Kvin Ottens <ervin ipsquad net>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef TESTHOME_H
-#define TESTHOME_H
-
-class TestHome
-{
-public:
- TestHome() {}
- void setup();
- void runAll();
-
- // tests
-
-};
-
-#endif