drop2ftp-0.6/0000755000175100001440000000000011162715114012331 5ustar masterusersdrop2ftp-0.6/urlgenerator.cpp0000644000175100001440000000720611162713730015555 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #include #include #include "urlgenerator.h" UrlGenerator::UrlGenerator() { } UrlGenerator::~UrlGenerator() { } void UrlGenerator::setProtocol(const QString &newProtocol) { protocol = newProtocol; generateDummyUrl(); } void UrlGenerator::setUrl(const KUrl &newUrl) { url = newUrl; generateDummyUrl(); } void UrlGenerator::setUrl(const QString &newUrl) { url = KUrl(newUrl); generateDummyUrl(); } void UrlGenerator::setSyntax(const QString &newSyntax) { syntax = newSyntax; generateDummyUrl(); } /******************************/ void UrlGenerator::usableUrl() { newUrl.append(protocol); for(int i = 0; i < syntax.size(); i++) { if (syntax.at(i) != '%') { newUrl.append(syntax.at(i)); } else { if (++i >= syntax.size()) { break; } if (syntax.at(i) == 'h') { QString str; str.append(url.prettyUrl()); str.remove(url.protocol()); str.remove(0, 3); //because of :// remaining if (str.contains(":")) { //remove port if given //remove everything between ":" and "/" str.remove(str.indexOf(":"), str.indexOf("/", str.indexOf(":")) - str.indexOf(":")); } str.remove(url.path()); newUrl.append(str); } else if (syntax.at(i) == 'p') { newUrl.append(url.path(/*KUrl::RemoveTrailingSlash*/)); } } } } /******************************/ void UrlGenerator::generateDummyUrl() { newUrl.clear(); if (syntax.isEmpty() || url == "") { emit dummyUrlGenerated(newUrl); return; } usableUrl(); newUrl.append(i18n("/")); emit dummyUrlGenerated(newUrl); } QString UrlGenerator::dummyUrl() { return newUrl; } /******************************/ QStringList UrlGenerator::generateUrlList(const QStringList &urlList) { newUrl.clear(); usableUrl(); QStringList strList; QStringListIterator urlIterator(urlList); QString str; while (urlIterator.hasNext()) { str = urlIterator.next(); str.remove(0, str.lastIndexOf("/")); strList << newUrl + str; } return strList; } drop2ftp-0.6/drop2ftp.cpp0000755000175100001440000004707511162714341014616 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #include "drop2ftp.h" #include "urlgenerator.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include //#include #define MINSIZE 50 using namespace Plasma; Drop2FTP::Drop2FTP(QObject *parent, const QVariantList &args) : Plasma::Applet(parent, args), m_serverAddress(0), m_serverTitle(0), m_useBrowserOnClick(0), m_generateLinks(0), m_protocol4Links(0), m_defaultAction(0), m_numActivJobs(0), m_newIcon(0), m_iconName(0), m_syntax4Links(0), m_icon(0), m_label(0) { setAcceptDrops(true); setHasConfigurationInterface(true); setBackgroundHints(NoBackground); setAspectRatioMode(Plasma::ConstrainedSquare); resize(100, 100); } Drop2FTP::~Drop2FTP() { delete m_icon; delete m_label; } void Drop2FTP::init() { layout = new QGraphicsLinearLayout(this); layout->setContentsMargins(0, 0, 0, 0); layout->setOrientation(Qt::Vertical); layout->setSpacing(0); KConfigGroup cg = config(); m_useBrowserOnClick = cg.readEntry("UseBrowserOnClick", false); m_serverAddress = cg.readEntry("Server", ""); m_serverTitle = cg.readEntry("Title", ""); m_iconName = cg.readEntry("IconName", "applications-internet"); m_defaultAction = cg.readEntry("DefaultAction", (int)Drop2FTP::CopyFiles); m_generateLinks = cg.readEntry("GenerateLinks", false); m_protocol4Links = cg.readEntry("Protocol4Links", "http://"); m_syntax4Links = cg.readEntry("Syntax4Links", ""); m_label = new Plasma::Label(this); m_label->setAlignment(Qt::AlignHCenter); m_icon = new Plasma::IconWidget(KIcon(m_iconName), QString(), this); registerAsDragHandle(m_icon); layout->addItem(m_icon); Plasma::ToolTipManager::self()->registerWidget(this); Plasma::ToolTipContent toolTipData(i18n("Drop2FTP"), i18n("Drop your files here to send them to your server"), //TODO: replace "to your server" with the specified name in the settings m_icon->icon().pixmap(IconSize(KIconLoader::Desktop))); //TODO the icon doesn't refresh if it changes Plasma::ToolTipManager::self()->setContent(this, toolTipData); if (m_useBrowserOnClick) { connect(m_icon, SIGNAL(clicked()), this, SLOT(openDestination())); } else { connect(m_icon, SIGNAL(clicked()), this, SLOT(openFileDialog())); } QAction* openDial = new QAction(i18n("&Send files"), this); openDial->setIcon(KIcon("folder")); QAction* openDest = new QAction(i18n("&Open destination in konqueror"), this); openDest->setIcon(KIcon("konqueror")); QAction* seperator = new QAction(this); seperator->setSeparator(true); m_actions.append(openDial); m_actions.append(openDest); m_actions.append(seperator); connect(openDial, SIGNAL(triggered(bool)), SLOT(openFileDialog())); connect(openDest, SIGNAL(triggered(bool)), SLOT(openDestination())); //for the settings: model = new QStandardItemModel; } void Drop2FTP::paintInterface(QPainter *p, const QStyleOptionGraphicsItem *option, const QRect &contentsRect) { Q_UNUSED( p ); Q_UNUSED( option ); if (!m_serverTitle.isEmpty() && layout->count() == 1 && qRound(contentsRect.width()) >= MINSIZE) { //add new label layout->addItem(m_label); layout->setStretchFactor(m_label, 0); } if (!m_serverTitle.isEmpty() && layout->count() == 2 && qRound(contentsRect.width()) >= MINSIZE) { //rename existing label QFontMetrics fontMetric = KGlobalSettings::smallestReadableFont(); QString elidedServerTitle = fontMetric.elidedText(m_serverTitle, Qt::ElideRight, qRound(contentsRect.width()) - 13); m_label->setText(elidedServerTitle); } else { //remove label if there is no m_serverTitle or if the icon is to small m_label->setText(""); //otherwise fragments are the result layout->removeItem(m_label); } } void Drop2FTP::openDestination() { if (m_serverAddress.isEmpty()) { emit showConfigurationInterface(); return; } KUrl::List serverList; serverList.append(m_serverAddress); KRun::run("konqueror %u", serverList, 0); //KRun::runUrl(m_serverAddress, "inode/directory", 0); // doesn't work if dolphin is standard and ftp is used?! } QList Drop2FTP::contextualActions() { return m_actions; } void Drop2FTP::openFileDialog() { if (m_serverAddress.isEmpty()) { emit showConfigurationInterface(); return; } KUrl::List fileNameListFromDialog = KFileDialog::getOpenFileNames(); //http://api.kde.org/4.x-api/kdelibs-apidocs/kio/html/hierarchy.html if (!fileNameListFromDialog.isEmpty()) { sendToServer(fileNameListFromDialog); } } void Drop2FTP::createConfigurationInterface(KConfigDialog *parent) { //Destination address-line QWidget *widgetDest = new QWidget; uiDest.setupUi(widgetDest); uiDest.serverAddress->setToolTip(i18n("Specify here the destination host. Use an entire address like ftp://192.168.0.1:21/folder")); uiDest.serverAddress->insert(m_serverAddress); //Destination bookmark-button bookmarkManager = KBookmarkManager::userBookmarksManager(); bookmarkManager->setEditorOptions("Drop2FTP", true); connect(uiDest.editBookmarkButton, SIGNAL(clicked()), bookmarkManager, SLOT(slotEditBookmarks())); //Destination bookmark-treeview parentItem = model->invisibleRootItem(); uiDest.bookmarkTree->setModel(model); connect(uiDest.bookmarkTree, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(copyBookmarkAddress(const QModelIndex &))); traverser = new BookmarkTraverser; connect(traverser, SIGNAL(newBookmarkGroup(QString, QString)), this, SLOT(addBookmarkGroup(QString, QString))); connect(traverser, SIGNAL(newBookmark(QString, QString, KUrl)), this, SLOT(addBookmark(QString, QString, KUrl))); connect(traverser, SIGNAL(leaveBookmarkGroup()), this, SLOT(leaveBookmarkGroup())); connect(bookmarkManager, SIGNAL(changed(const QString &, const QString &)), this, SLOT(traverseBookmarks(const QString &, const QString &))); traverseBookmarks(); //Destination warningwidget if (m_serverAddress.isEmpty()) { KIcon icon = KIcon("msg_warning"); QPixmap pixmap = icon.pixmap(QSize(20, 20)); uiDest.iconLabel->setPixmap(pixmap); uiDest.informationLabel->setText(i18n("Please specify your destination host under \"Address\"")); } //Appearance QWidget *widgetAppear = new QWidget; uiAppear.setupUi(widgetAppear); uiAppear.iconButton->setIcon(KIcon(m_iconName)); connect(uiAppear.iconButton, SIGNAL(clicked()), this, SLOT(openIconDialog())); uiAppear.serverTitle->setToolTip(i18n("Here you can specify which text should be displayed under the Icon")); uiAppear.serverTitle->insert(m_serverTitle); //Behavior QWidget *widgetBehav = new QWidget; uiBehav.setupUi(widgetBehav); //Behavior Default Action switch(m_defaultAction) { case Drop2FTP::CopyFiles: uiBehav.copy->setChecked(true); break; case Drop2FTP::MoveFiles: uiBehav.move->setChecked(true); break; case Drop2FTP::AskForFiles: uiBehav.ask->setChecked(true); break; default: kDebug() << "error on switch case"; } //Behavior Action On CLick uiBehav.useDialog->setToolTip(i18n("Opens an \"open with\" dialog if you click on the icon")); uiBehav.useBrowser->setToolTip(i18n("This will open your specified destination in konqueror if you click on the icon")); if (m_useBrowserOnClick) { uiBehav.useBrowser->setChecked(true); } else { uiBehav.useDialog->setChecked(true); } //Behavior protocol if (m_protocol4Links == "http://") { uiBehav.protocol->setCurrentIndex(0); } else { //ftp:// uiBehav.protocol->setCurrentIndex(1); } //Behavior Generate Html Links if (m_generateLinks) { uiBehav.generateLinks->setChecked(true); } else { uiBehav.generateLinks->setChecked(false); } uiBehav.syntaxLine->setText(m_syntax4Links); UrlGenerator *urlGen = new UrlGenerator; urlGen->setProtocol(m_protocol4Links); urlGen->setUrl(m_serverAddress); urlGen->setSyntax(m_syntax4Links); uiBehav.resultLabel->setText(urlGen->dummyUrl()); connect(urlGen, SIGNAL(dummyUrlGenerated(QString)), uiBehav.resultLabel, SLOT(setText(QString))); connect(uiBehav.syntaxLine, SIGNAL(textChanged(QString)), urlGen, SLOT(setSyntax(QString))); connect(uiDest.serverAddress, SIGNAL(textChanged(QString)), urlGen, SLOT(setUrl(QString))); connect(uiBehav.protocol, SIGNAL(currentIndexChanged(QString)), urlGen, SLOT(setProtocol(QString))); //add everything to the settings connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted())); parent->addPage(widgetDest, i18n("Destination"), Applet::icon()); parent->addPage(widgetAppear, i18n("Appearance"), QString("video-display")); parent->addPage(widgetBehav, i18n("Behavior"), QString("configure")); } void Drop2FTP::configAccepted() { KConfigGroup cg = config(); m_serverAddress = uiDest.serverAddress->text(); m_serverTitle = uiAppear.serverTitle->text(); bool isBrowserChecked = uiBehav.useBrowser->isChecked(); if (uiBehav.copy->isChecked()) { m_defaultAction = Drop2FTP::CopyFiles; } else if (uiBehav.move->isChecked()) { m_defaultAction = Drop2FTP::MoveFiles; } else { m_defaultAction = Drop2FTP::AskForFiles; } if (isBrowserChecked != m_useBrowserOnClick) { m_useBrowserOnClick = isBrowserChecked; disconnect(m_icon, SIGNAL(clicked()), 0, 0); if (m_useBrowserOnClick) { connect(m_icon, SIGNAL(clicked()), this, SLOT(openDestination())); } else { connect(m_icon, SIGNAL(clicked()), this, SLOT(openFileDialog())); } cg.writeEntry("UseBrowserOnClick", m_useBrowserOnClick); } if (!m_newIcon.isEmpty()) { m_iconName = m_newIcon; m_icon->setIcon(KIcon(m_iconName)); } if (uiBehav.generateLinks->isChecked()) { m_generateLinks = true; } else { m_generateLinks = false; } m_protocol4Links = uiBehav.protocol->currentText(); m_syntax4Links = uiBehav.syntaxLine->text(); cg.writeEntry("Server", m_serverAddress); cg.writeEntry("Title", m_serverTitle); cg.writeEntry("IconName", m_iconName); cg.writeEntry("DefaultAction", m_defaultAction); cg.writeEntry("GenerateLinks", m_generateLinks); cg.writeEntry("Protocol4Links", m_protocol4Links); cg.writeEntry("Syntax4Links", m_syntax4Links); emit configNeedsSaving(); emit update(); } void Drop2FTP::traverseBookmarks(const QString &groupAddress, const QString &caller) { Q_UNUSED( groupAddress ); Q_UNUSED( caller ); traverseBookmarks(); } void Drop2FTP::traverseBookmarks() { model->clear(); QStringList headerLabels; headerLabels << i18n("Bookmark") << i18n("URL"); model->setHorizontalHeaderLabels(headerLabels); traverser->traverse( bookmarkManager->root() ); uiDest.bookmarkTree->expandAll(); } void Drop2FTP::addBookmarkGroup(QString icon, QString text) { QStandardItem *item = new QStandardItem(KIcon(icon), text); item->setEditable(false); QStandardItem *dummy = new QStandardItem(); //now I can set editable to false dummy->setEditable(false); parentItem->appendRow(item); parentItem->setChild(item->row(), 1, dummy); parentItem = item; } void Drop2FTP::addBookmark(QString icon, QString text, KUrl url) { QStandardItem *item = new QStandardItem(KIcon(icon), text); item->setEditable(false); QStandardItem *urlItem = new QStandardItem(url.url()); urlItem->setEditable(false); parentItem->appendRow(item); parentItem->setChild(item->row(), 1, urlItem); } void Drop2FTP::leaveBookmarkGroup() { if (parentItem->parent() == 0) { parentItem = model->invisibleRootItem(); } else { parentItem = parentItem->parent(); } } void Drop2FTP::copyBookmarkAddress(const QModelIndex &index) { QStandardItem *currentItem = model->itemFromIndex(index); //we only want to copy the stuff in the second column if(currentItem->column() != 1) { int row = currentItem->row(); QModelIndex childIndex = index.sibling(row, 1); currentItem = model->itemFromIndex(childIndex); } if (currentItem->text().isEmpty()) { return; } emit uiDest.serverAddress->setText(currentItem->text()); } void Drop2FTP::openIconDialog() { KIconDialog *iDialog = new KIconDialog(); m_newIcon = iDialog->getIcon(); if (!m_newIcon.isEmpty()) { uiAppear.iconButton->setIcon(KIcon(m_newIcon)); } } void Drop2FTP::slotResult(KJob *job) { m_numActivJobs--; if (job->error()) { m_icon->setIcon(KIcon("process-stop")); } else { m_icon->setIcon(KIcon("dialog-ok")); if (m_generateLinks) { KIO::CopyJob* cJob = qobject_cast(job); UrlGenerator *urlGen = new UrlGenerator; urlGen->setProtocol(m_protocol4Links); urlGen->setUrl(m_serverAddress); urlGen->setSyntax(m_syntax4Links); QString text; text = i18np("Your file is now accessible under:\n\n", "Your files are now accessible under:\n\n", cJob->srcUrls().toStringList().size()); foreach(QString filename, urlGen->generateUrlList(cJob->srcUrls().toStringList())) { filename.prepend("\n"); text.append(filename); } KMessageBox::information(0, text, i18n("Url List")); delete urlGen; } } QTimer::singleShot(3000, this, SLOT(resetIcon())); emit update(); } void Drop2FTP::resetIcon() { if (m_numActivJobs == 0) { m_icon->setIcon(KIcon(m_iconName)); } else { m_icon->setIcon(KIcon("view-history")); } emit update(); } void Drop2FTP::sendToServer(KUrl::List &src) { const KUrl dest = m_serverAddress; /*FIXME check if url is a remote server and if the computer is online if (!dest.isLocalFile()) { if (Solid::Networking::Status() == Solid::Networking::Connected) { kDebug() << "Computer is online"; } else { kDebug() << "Computer is offline"; } }*/ m_icon->setIcon(KIcon("view-history")); //TODO an animation would be nicer, wouldn't it? (BusyWidget) / icon: process-working if (m_defaultAction == Drop2FTP::AskForFiles) { QStringList urlList = src.toStringList(); int messageBoxResult = KMessageBox::warningYesNoCancelList(0, i18np("Do you want to copy or to move this file?", "Do you want to copy or to move these %1 files?", urlList.size()), urlList, i18np("Copy or move file?", "Copy or move files?", urlList.size()), KGuiItem(i18np("Copy file", //ButtonCode::Yes "Copy files", urlList.size())), KGuiItem(i18np("Move file", //ButtonCode::No "Move files", urlList.size())), KStandardGuiItem::cancel(), QString(), KMessageBox::Notify); if (messageBoxResult == KMessageBox::Yes) { copyToServer(src, dest); } else if (messageBoxResult == KMessageBox::No) { moveToServer(src, dest); } else { resetIcon(); } return; } if (m_defaultAction == Drop2FTP::CopyFiles) { copyToServer(src, dest); } else { moveToServer(src, dest); } } void Drop2FTP::copyToServer(const KUrl::List src, const KUrl &dest) { m_numActivJobs++; const KJob *cJob = KIO::copy(src, dest); connect(cJob, SIGNAL(result(KJob *)), this, SLOT(slotResult(KJob *))); //http://api.kde.org/4.x-api/kdelibs-apidocs/kio/html/classKIO_1_1CopyJob.html } void Drop2FTP::moveToServer(const KUrl::List src, const KUrl &dest) { m_numActivJobs++; const KJob *mJob = KIO::move(src, dest); connect(mJob, SIGNAL(result(KJob *)), this, SLOT(slotResult(KJob *))); //http://api.kde.org/4.x-api/kdelibs-apidocs/kio/html/classKIO_1_1CopyJob.html } void Drop2FTP::dragEnterEvent(QGraphicsSceneDragDropEvent *event) { if (event->mimeData()->hasUrls()) { event->acceptProposedAction(); } } void Drop2FTP::dropEvent(QGraphicsSceneDragDropEvent *event) { if (m_serverAddress.isEmpty()) { emit showConfigurationInterface(); return; } if (event->mimeData()->hasUrls()) { //The URLs are in QList but we need a KUrl::List KUrl::List urlList; foreach (KUrl fileName, event->mimeData()->urls()) { if (fileName.isLocalFile()) { urlList << fileName; } } if (!urlList.isEmpty()) { sendToServer(urlList); } } event->acceptProposedAction(); } #include "drop2ftp.moc" drop2ftp-0.6/COPYING0000644000175100001440000010451311154771723013401 0ustar masterusers GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . drop2ftp-0.6/README0000644000175100001440000000174311162715102013213 0ustar masterusersREADME for Drop2FTP This is a KDE 4 plasma applet which can copy or move files over every protocol which is supported by KIO. So you can use it to copy or move files to a FTP server or an folder on your PC for example. After you have had specified the destination in the settings, you can click on the icon to open the open-file-dialog or you can just drag and drop your files on it. It is also possible to open the destination with konqueror or to generate http or ftp links to your files. This is my first KDE and C++ programm, so don't expect to much. I just made this to learn a bit. So if you like it, want to critisize it or want to teach me something, just let me know. This also includes my english ;-) I registered that there are some problems on machines with KDE 4.1. You need KDE 4.2 or newer for this app! Short installation instruction: # tar -xvzf drop2ftp-0.6.tar.gz # cd drop2ftp-0.6/ # cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` # make # sudo make install drop2ftp-0.6/bookmarktraverser.h0000644000175100001440000000365511154771723016267 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #ifndef TRAVERSER_H #define TRAVERSER_H #include class BookmarkTraverser : public QObject, public KBookmarkGroupTraverser { Q_OBJECT public: using KBookmarkGroupTraverser::traverse; protected: virtual void visit (const KBookmark &bookmark); virtual void visitEnter (const KBookmarkGroup &group); virtual void visitLeave (const KBookmarkGroup &group); signals: void newBookmarkGroup(QString icon, QString text); void newBookmark(QString icon, QString rext, KUrl url); void leaveBookmarkGroup(); }; #endif drop2ftp-0.6/plasma-applet-drop2ftp.desktop0000644000175100001440000000113511155537343020232 0ustar masterusers[Desktop Entry] Name=Drop2FTP Comment=Drop one or more files on the Plasmoid to copy it with KIO through FTP or another supported protocol. Icon=edit-paste Type=Service ServiceTypes=Plasma/Applet X-KDE-Library=plasma_applet_drop2ftp X-KDE-PluginInfo-Author=Mathias Rabe X-KDE-PluginInfo-Email=masterunderlined@web.de X-KDE-PluginInfo-Name=plasma_applet_drop2ftp X-KDE-PluginInfo-Version=0.6 X-KDE-PluginInfo-Website=http://plasma.kde.org/ X-KDE-PluginInfo-Category=Network X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-License=GPL X-KDE-PluginInfo-EnabledByDefault=true X-PlasmoidCategory=Online Services drop2ftp-0.6/bookmarktraverser.cpp0000644000175100001440000000364111154771723016615 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #include "bookmarktraverser.h" void BookmarkTraverser::visit (const KBookmark &bookmark) { // print visited bookmark's text() with current offset emit newBookmark(bookmark.icon(), bookmark.text(), bookmark.url()); } void BookmarkTraverser::visitEnter (const KBookmarkGroup &group) { // print visited group's text() with current offset emit newBookmarkGroup(group.icon(), group.text()); } void BookmarkTraverser::visitLeave (const KBookmarkGroup &group) { Q_UNUSED( group ); emit leaveBookmarkGroup(); } #include "bookmarktraverser.moc" drop2ftp-0.6/drop2ftp.h0000644000175100001440000001006311162146354014246 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #ifndef DROP2FTP_H #define DROP2FTP_H #include #include #include #include #include #include #include #include #include "bookmarktraverser.h" #include "ui_drop2ftpConfigAppearance.h" #include "ui_drop2ftpConfigDestination.h" #include "ui_drop2ftpConfigBehavior.h" namespace Plasma { class Icon; } class Drop2FTP : public Plasma::Applet { Q_OBJECT public: Drop2FTP(QObject *parent, const QVariantList &args); ~Drop2FTP(); void init(); void paintInterface(QPainter *painter, const QStyleOptionGraphicsItem *option, const QRect& contentsRect); enum defaultAction { CopyFiles, MoveFiles, AskForFiles }; public slots: void configAccepted(); void openIconDialog(); void addBookmarkGroup(QString icon, QString text); void addBookmark(QString icon, QString text, KUrl url); void leaveBookmarkGroup(); void copyBookmarkAddress(const QModelIndex &index); void traverseBookmarks(const QString &groupAddress, const QString &caller); private slots: void slotResult(KJob *job); void openFileDialog(); void resetIcon(); void openDestination(); protected: void sendToServer(KUrl::List &src); void copyToServer(const KUrl::List src, const KUrl &dest); void moveToServer(const KUrl::List src, const KUrl &dest); void dragEnterEvent(QGraphicsSceneDragDropEvent *event); void dropEvent(QGraphicsSceneDragDropEvent *event); void createConfigurationInterface(KConfigDialog *parent); void traverseBookmarks(); QList contextualActions(); private: QGraphicsLinearLayout *layout; Ui::drop2ftpConfigAppearance uiAppear; Ui::drop2ftpConfigDestination uiDest; Ui::drop2ftpConfigBehavior uiBehav; QString m_serverAddress; QString m_serverTitle; bool m_useBrowserOnClick; bool m_generateLinks; QString m_protocol4Links; int m_defaultAction; int m_numActivJobs; QString m_newIcon; QString m_iconName; QString m_syntax4Links; Plasma::IconWidget *m_icon; Plasma::Label *m_label; QStandardItemModel *model; QStandardItem *parentItem; KBookmarkManager* bookmarkManager; BookmarkTraverser *traverser; QList m_actions; }; // This is the command that links your applet to the .desktop file K_EXPORT_PLASMA_APPLET(drop2ftp, Drop2FTP) #endif drop2ftp-0.6/ChangeLog0000644000175100001440000000244111162714712014107 0ustar masterusers0.6: new feature: generate html or ftp links now the crash in the config-menu is definitely fixed 0.5.1: fixed a crash if the config-menu is closed 0.5: added ability to open the destination-path in konqueror. At the moment it is not possible to open the default browser because of a bug in dolphin (https://bugs.kde.org/show_bug.cgi?id=185866) (thanks to horchi again) user can now choose, if Drop2FTP should copy or move files label will now be shown, if Drop2FTP is 50pix or bigger (before it was 75pix) removed option "hide progress info" some little changes 0.4: Now you can access your personal bookmarks to use the saved addresses Added the ability to change the Icon Added option "Hide progress info" If Drop2FTP is copying anything it will show it, even if there are more than one job 0.3.2: Drop2FTP is now licensed under GPL 3. 0.3.1: Fixed some issues with the label some code has been rewritten 0.3: Added support for KDE 4.2 RC1 and newer (older versions are not supported) Added support for Labels, so you can give every Drop2FTP Icon another name (thanks to horchi) If no address is specified the settingsdialoge will open if you want to use Drop2FTP some minor fixes 0.2.1: Now it should also work with the new KDE 4.1.4 0.2: Added support for KDE 4.1 and older 0.1: Initial release drop2ftp-0.6/CMakeLists.txt0000644000175100001440000000177711156227064015112 0ustar masterusers# Project Needs a name ofcourse project(plasma-drop2ftp) # Find the required Libaries find_package(KDE4 REQUIRED) include(KDE4Defaults) add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} ) # We add our source code here set(drop2ftp_SRCS drop2ftp.cpp bookmarktraverser.cpp urlgenerator.cpp) # Now make sure all files get to the right place kde4_add_ui_files(drop2ftp_SRCS ui/drop2ftpConfigDestination.ui ui/drop2ftpConfigAppearance.ui ui/drop2ftpConfigBehavior.ui) kde4_add_plugin(plasma_applet_drop2ftp ${drop2ftp_SRCS}) target_link_libraries(plasma_applet_drop2ftp ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) install(TARGETS plasma_applet_drop2ftp DESTINATION ${PLUGIN_INSTALL_DIR}) install(FILES plasma-applet-drop2ftp.desktop DESTINATION ${SERVICES_INSTALL_DIR}) drop2ftp-0.6/AUTHORS0000644000175100001440000000006711154771723013415 0ustar masterusersCreated by Mathias Rabe drop2ftp-0.6/urlgenerator.h0000644000175100001440000000410511162713767015227 0ustar masterusers/*************************************************************************** * Copyright (C) 2009 by Mathias Rabe * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #ifndef URLGENERATOR_H #define URLGENERATOR_H #include class UrlGenerator : public QObject { Q_OBJECT public: UrlGenerator(); ~UrlGenerator(); QString dummyUrl(); QStringList generateUrlList(const QStringList &urlList); private: void usableUrl(); void generateDummyUrl(); public slots: void setProtocol(const QString &newProtocol); void setUrl(const KUrl &newUrl); void setUrl(const QString &newUrl); void setSyntax(const QString &newSuffix); signals: void dummyUrlGenerated(QString newUrl); private: QString protocol; KUrl url; QString syntax; QString newUrl; }; #endif drop2ftp-0.6/ui/0000755000175100001440000000000011162146534012752 5ustar masterusersdrop2ftp-0.6/ui/drop2ftpConfigAppearance.ui0000644000175100001440000000332011154771723020162 0ustar masterusers drop2ftpConfigAppearance 0 0 227 128 Pastebin Config Dialog Icon true 70 70 50 50 Title: Qt::Vertical 20 40 drop2ftp-0.6/ui/drop2ftpConfigBehavior.ui0000644000175100001440000001353611162146534017667 0ustar masterusers drop2ftpConfigBehavior 0 0 227 314 Pastebin Config Dialog File handling true Copy files Move files Ask the user Action on click true Open file dialog Open destination in konqueror Generate links true true false 0 0 Syntax: Result: Qt::Horizontal <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%p <span style=" font-style:italic;">path</span></p></body></html> http:// ftp:// <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%h <span style=" font-style:italic;">host</span></p></body></html> Qt::Vertical 20 40 drop2ftp-0.6/ui/drop2ftpConfigDestination.ui0000644000175100001440000000506011154771723020407 0ustar masterusers drop2ftpConfigDestination 0 0 227 220 Pastebin Config Dialog 0 0 Address: Bookmarks true Edit Bookmarks 0 0 20 16777215 drop2ftp-0.6/screens/0000755000175100001440000000000011154771723014004 5ustar masterusersdrop2ftp-0.6/screens/screen1.jpg0000644000175100001440000002240011154771723016044 0ustar masterusersJFIF\XExifMM*C  !"$"$Ck7" V  !1A"Qaq2BRTr#3b$%Cc47DESst'56u,!13AQ"2aq#4$ ?FNJNEd=n;E>{IcpIii6зKK)RZBƠR&`цEh*(>g䛕*\ʔxꏾ=MJ6~i=+lӤuʊ/9}+^TO 96zɻ5vKgcHvGQX~c'u^qgeuFE:hZ6bS[SJ7!ĒadX'G7=m9*PCtt9O:-)s+J=4-+HRH G&03xz-?!UÁATںMҽS_)K3* Z @PEe:\=g'SwJ{ *(Og5o៴<7Nr].#9BRnF.5a~QyO:jS$Ir4[:Mh#*(=g%SQ'͟OseZf#u-Ø-O9T0̀YƏYu;*Ϗ֏sԃ=gұ=qsh[@pYs:U|ico>DeuPz0:׏<|#V*UO30KOM+~؎}SՠgޔFfBůP1*UW{iN2JfX[)Xm`V3 =>&TcayB41&c}ˍ>f6&}>Eh1ʭF?Ԣ=;T5,"ZpFbCx&F=9Hսt V8J\.nnToڼT⹷e)Q.ނxAGfQXd;ako?(?7-{׍ O͜Z* +(.<7rsie q+ |YCTqBP HKA%6PaTNO/^BXiW\u *QOY~A=OeRS$y'Njz~RMZ, #CbF.N#j)R\9JiVv.óa-MnNd ([T kmvfE"!sP(u2KGT(\B5#U'JKhϔjq,C`좬6"g^Jlb1xj TcXlvOI c*9=vFaEX#tfB,yZ!5}g2kG&rznBr>DV9AؘO^ 5C:jx/U^Y m9R#I/) MR9 !'}#qX᧒eݚL7nYgQMc˿MʗLÙˮLYPHoyTh״4ÕYOw1ITrMqwUaS(7#Ρ: ۓ܅=p<[DL癩ܤ{Ro"7B) ?$gU׏(LLgydfX-W'TX/a$яcd4Hl${#ӄt'ҽHrBZ2;)[]뭓Tf{U AK‘e͵VFH_nȇ>m[JIZl5$E[8UӋM%jJT6Mқ8}6oCZG%h`5H[,(EO^!SX %Ӈ,N͸Kmb:v66tydm;s=X7EV_.лpb!~iO@V(=9*ۇ e]TR {dӒFntt*=@4Iv[ J Ko,qWoL֦2h  X*d4-MrG)g)sIKlR#P`Z}!RYBH0Z3 eԔ )P#gI1+c gkL4J;jQ0; ྲѓ{ğO&YCUI*ъ'TrSt ri+h؉@jO>V_&9Nlo[=s}U5:o2~jmIYW@8mRNb:RKxgbBalTd%R'PŴH `fDPٝKeY/̘uV(wM,BxE\{ .wՙWuZmÛ{:E{eLT]EeLL=t-d$GirͶ YSOXeWX>UG{#OR@?jdԜni#S}˸9_aY-4ԺJ 'j=>&u2!⟗hRUajQC׃ܭwlB'+TYh!v#Qn]uۊBRM|J%$ߙH2d6'1|Sl,kZKAk˪uaȫS/Be7P:_uH d .WL+? [ k2 UiG%dzydmyO;ķؼϸuSMdw-)U9x} ĩ%R\>kY)QAI"t17~Wޣ=2Aԥ}9 7mszCiSO)"VۆQ ,4rFIR*U%8۬!D I#?d4߭;)2eƞ(!):8ieC߰,eJA@ Ԁ, T &Dz3*2)5%[IItČ}[Fir-_0"ģsmP\)rHi3pWGn2NM?9T@(+s *ֶ2QD }׵iq0I7^ ?7hŢ!eZe^j3wDu9ӥe!Cp5,t67Pt 6+)aWfp@lG7lue.e- @xddNYOέ Az&[ɵNR3-%•i Juwɥo .>֌i}yPQ +nb듈Xz^:zar]JYZu$`b8ی$%׮J5WB'.̺IMN]3ʖ | F(dNxkz 0dÊq/Jxz-Z(PU=&qeD>܁ջ:=s#x5i?nn8?*9َ,_k:[' ъ$ͥZ∨0T k=ߣ댫_}oMz$Z{3x3>d[CvVmD^4yO.Z^R2)y{aC܎=GXgJ?HԦ1%M>Ud䤤y^jef(Lݛgp*}$%ݸ8;|þTӘO:TZPYh#h E&er :IfH=-lj3]=;9PĕgS+u!\`Xx+F]rSe*צ[m"ax,:˥nGEVqQ-yv_./E@='n??j{jշVI7?D2-M?imk{Zh$^T/ء`ߪ T'YyHQU8 64&`Hu6Tl _d8qN ٵ9ðvL4ĽBEAei/삝N"aoi& @ }a?q2?ILm_ĉEZ/zrJVdh7-5';(% s"wRj"|LfW.,E8!ixƥ=7RF*Rzb$ʫoLJf鏷AjjIItJ%[i{oC l9BJIEIi9W]FRYԡ@! a. (؆]UITK.^il6O !Ԥ-7]$8 o|a/Aj-7*俍!O2&K6tKϓ-ⱱ%dwcm:㭴T%C`-FC 0L!934J 'z,%9ǒ> j|ϻ1۲*qqSxVYh ʶe=})Tl͌;w ]gbYRu~aOOT%j3R gH4]msyasҿHRAq E #}LTYjˌezUJI֒ҜMq`Zn }8FksQ~24ly YH@7۔T$iD DPAq'O3"nhhUЃ imWӱm Ζ1+~4Ysہ{%/[TwC1S;+~̳̌L ܛ/Ԥ0C@ Hy-.(Z×7483 }uQ60pO#D?xw|3_/m )$ZS* PȯyVn UQj}H]&6/DT6XaZpFCŊ8⊱{'Bh(gQ˭QTJANY腼Um-8C+u[(Je.W)ZbMkOq.`3+|85\k. `o>V;U>+P-_YCxuה≹*7-_LZZsgQ|[ȭnTVu@;'C96?XYZ!{>|~?vn_C{H>wm>U3]24}΋RqdżANfVZZ$ϼ4)D)O ^IS jE rUQzVH-{XP%:+s5lLL1=*S.!KEsѼ ZZÅ~7_x]*]y̬d/-"ήKuoG7*tJrM9։:m)y" ʮ_6w!oT,-7W7oYJ jNCH2ԻiamS;Ը^U%dܜ UcJ\kUWdV|6KMN637QJ\WYXkAt{PGൌ*)+ R 6؅ya\QKp*nNT^*ʯsϦ}6'w;[wd2游$̘lniq#Ǎ-H'>>"BlM KF˨jfZxA2Jͱ[/ښ3cOLo쾥NS1):uAP238\FIYFhYRR.P6A' km # yn825 {uck$)㯀܍ /SnٖyM0䌪$\ߺ7tɷf$)5)e׋Y<0u24Qx~nyXz+c,Xk=]bvQxZ9+.д4q _9/۽VR(K !Iw38Y=eVJ[5(&ܮŲt".wzY<@u2p+P23^3&Ω)l(%IpW l!oT]ٴ H?D]"˲$-&b/0oJnJ3>^|] FIMWUoɁr,&Oj7ah]yS_} Zu[y(ov|&#^/k5L9Lj9lIؐnAĴwg-c[^ yVHrF%P S iI \SE*Q"tX·R"$,|ؤ3&l[%G[OPk.`hyJ)jS m$Xx)EhN\͈32.6,L_$n*Ԓ%.wƁZExG=r Y,CMkur~7ܢ,L=`eJ'SxېeN%M)d]ò/Bo=Dtg}]{7+2n\2rR%Z o}-m,drop2ftp-0.6/screens/screen3.jpg0000644000175100001440000006755411154771723016071 0ustar masterusersJFIF\XExifMM*C  !"$"$C" `   !1A"Qa2q#RTU$3B5Cbrt4Scds&DV'%7FWu,Q!1A"23aq#B ?DpFpm!>H!xL&o,Db @4 (iDDQMhHIO~F%ZTBDDĦ,dG8bT)u6Ӈp׻mV늵$F씓c|śhʴU[eOAO=?ˣ""~L;NvRPmOtM`~D~7|N%}>L|{k[GtYXt@!?rb[L귙!T;%}5;*W->RcqկN?UeNeX.0qqqw"H# HaY:C!kgB[Ax~ؕM/Doa!k'$ -kĢ^ؘ&%6ܢ\+H"DJM "~ B HKA@׈\D-"X&!xH"PlV0PHDB-EIʄ3д(&yD,! /=?8ACRg_J OlzrycoMwM:tb&Um6˜j`٢cƿ MUY#؂k<1Xٱ'ziiChg'@&o!ͷ)-7]j&N'\MáZFA^P>CL lVfyN:,/N|:s*FS4sǧK:^zb`ٚ'\Ge5$"Oקt:D:G>5Ob}қw^Z!tA\Bq#D[9UoEM4-L)JԵ֨Fܳubt|b151Q kSX n)?>w{cDg5l'No(3Wc#M[j#1Jn]s*H|5ǟhdvI :v]Vtl@}Α#Iv@>(x[BVQ牲NZK_ItNijdK@1ՙfRw&dK!$܄߮1L-*δ47rWAVivm "I.i"-jIKDV"7`ADDOD7L3[/u "ZJGpMLK M:(/6Po*.2N;X^#sf*bRb[߄B5@ TDB MIH別JOq*JTbeDJbAT6eɬK2Q&l~]I?78HH_ yzoS(*t"5Y?h9Wo*?= ZEbњkֈ9W@o/!l D/K*Tm>a8@'ÉLXxL3Z;"kiRTG1X'ͮ}untk1l׆nؤxD6!QC6@'elCAaueCkĊ6HD *$3D66I9TC4Kq -x>*&w N" y V5I9$_f]ͣZ3 (^&L "΅爅ȳֿZ--d9JeG`UۥKq=j)U{--f7( ʔM8EV%sbJ -A@ "s4$!ݶUnp @t3ZjN '^vaxi6wq9j= ;bfRLXҕ0e[A1cjU1Noi8o 4qxzGa% s1v1M.YɅ=bBVMv)y<R)SS"QA@pVÕ4vYgG:71u.NIM;S@9mmŒsݣ톍9Hm0B jy_̥t/s}Zݣ|["J]3>xO75:Bݑe8XEGPjIRq̥dJM/nJ/R mvOm6 וJT5Zn4%2Z2HQ&j{*6[P;z`P3htYn_SJZ fK89ݧFŔtxWP@lm/&nD(rvSٸ:ZEEtK½>H5bR L15!H%7#b{QKϒ\f%^jOivr/ EVum-~-d]:,"~=B\!J!nUV] %Yn\_*Er\ʩ.$jRJ.ʥ>ؾ b֥O5ӹIqsK 8bK $0C\SiM?yk<uIer:0m:3=#\7<%dh3^v;(+/9.@-tMMWK]@c2ĩ7#,Iw3!&Bhݙrcx{:6U2,}ЖPy^.%K[Jԑ7JE)x%jR tajmV$(RʁHuZH.E UwTl*u143}ryԗrv4L8EE`qhooNL!NNfzb`s]D #;!ܠ7*QQ+ZNr4GSXQDDͭ.B/D<=gx9.hSHI]]T7#m- RM͖AJ!C[KF 7 ^ @1"  Z,f.RbA~UR҆&2y$(bII&#T9 ŔJEM%,T iRCL:ţAѸ-a$(A-EdZc–#BAڊˡ-t b,F㷒)iȭJlF[f {aw~x_z%X-\H8Z.$wPvG5ܔ-V~az$,=URv}dJ 2 1ne/]@4:r]@Rs q$˯#`:Cu $H7 0`p}QJ:Ye7D|I7؆hSn%#PcQ8eR3 *+.0j|x&WD> ]9FRTđo$i8k\R@F R$&5R_'i=TvnLL./u7+2]- ^)ŧ*b%)6 KYfԍMi6Êha( FQב|mC2@UBvZJMe)Ԭ(\3TjJRHILXԚyN8Voe[I OqFy!JS` _V(I2n*b2+^J̙`еftf̴ZeF#;眨)Eb"3VՌáBK:Tc&a'ABQe*9gBrYШN4HD AKpl29|I4r-+NR*ˉ%Df^Tg34Bıݸm1k#%TTm@Ru I^٩M3.Җ2_))>O%@q2y]@gTXk} :䬄ڞLK^H,euƥa-Yd}vwln>[/d RWGle3N47D*Jn/0Hkzt #ey[Rͬ9bm|,FjaߺAU__E&lJ:״*MT Y.riD^1J^ڂ[-@Q-e(RTӖjRܞ7J&S>؄Dθ4] pkZN9(:pꓙ+b-Y()I$RY@9diNkHD$En_^؝+:{'4Jo6QXژ0 qV g2HJ/vԪ[uyTnhtRVe@^rZ\vFIU(,A=1Ɋ9Hd>а42>GaYr{YRɜ &:%dury&ei)ؙԃT)Gj23Ψ%%[16uiYfT2H9l~_|s#d-8t#:hUe 7}۱E40BSC68@MVҷ:J1K-@3"-Db?tJy'hE`S"34=ȻqŶ)*(j.F"{.6ZaVov.S)*(IG`+ɢiʒnJPK7 XC)QL;1E%hwC7+K-)6MΡ|D8 2m Pɜ@xZprڽZc$(ubY9UH$IޜMpa7) yç"/,<:%̖1ŗS8ڣhA?e ii "禦%qip!<";j9 ΫX qAgr"qdyvz%ʭb˳KM% {RxR(+^`0 YPB,Ȭ*nK d ^S[zbI*,듌dtRZǜl59%HKk=q;RRKS[Jl)IdmFGx )\TPTkxSZPmE:yZ8Ιs)olnR "a-0y ͥje*U\*#/BJжl)F;^-V?L]ZX5E%!Jr<wr݄;G$]KLVI3U芳*t;CxbRZQE'R LcEӊevԦ*H)i&PfU[d'škaKmIU Qc9;2S ܥ쵣* [Xn`'x HqmQg0hA:q1(e* .o*p p]BКra W N%yY!Msm L8V].4u&=]goK6]Z4.s!6J}%/Fz|Jc;.*crv9fP]l亷k񉜘72JaLbjO10%TвH$\s1JIέLKґ$}lÃN^tVӨNHl ̜5c?psv-G||4UJ`ہh6P{c!ps)76?ca. 0#'.Gn<[يՆn~?zc!s;e??qT~3Pv|< W vQcB'>FsOe?WM~& UpptDwgiW_Dl#e@Xac3_w%r6! p5 #b[/Epbo!#ȱ^؆M; \NFO<ʷ.OEG(U9η6ov?oFl;ěDz.6BI`&jQS:ꖇkCeRT~-F:B8A9;UjqeRYSVDPe*m#.Fo$a PvD w;P ̛6lc(vhJm.$mO71xcS(tzg ѥgye=.TfIyi$Nu9l[?4ҥ)8yiHALJ0ÈxRr׈u9mǟ5&ܙB98՘f * s!6hc;&f,°zk6hzqƆQ~QB.8f"As*^f&t:ST%Kq/$˸͸[ '5ͬm{2k85NSgmSrn4Ȕ2IjU2ۊJ{ ̓;6xaa0M3͖L$(kst˼7=|]רs9i_S'8sl]m,+*\;AsFߴmVn2f3:VsxfI.Q.Iڸ7y]lY$1}?Dw~ ؁yE݊㓅l0# 1@^ano,F`:$ 퉊jZ]tLM07Mn! XHG4xo$l}^6tKáHt3ӼQ;ٙ*' n7:hLgMxt ?,:ZGP<kwcodHFn;ef?yM~7xEvGi#!۩)^Im}!qföZ \w̛\I|#j4Y}l񅅵T83& rcB*c8mDi͜G #~6F؎z@A!/mK0Q~?玅I6?ü8~Z]eV MӈQf)L4Ĭj/{^97hPn-LaJRXwMפWdIJ6OvjD I3:xkg;/{r:Tlݓ+s7t-I %чҠC ^hlٯ+d{=IُF#dtfܫQ !ݳ%j#Y'+GOV\&';Im[LJ$B[D"3f*Qj SjmJ#EYj5 5ykX)&i瞒ZCN+.u`'[z7eRRK8ڐ {G0U177deK])맬p.Ҳ8AzކڮFjS0rE`߶]:?ʈARS:nt\BV0?U{PC!̵@ZަӍf~\K̶-â4JR$`TB@qӞ$";cH\ySe)q% P$<9y!!@B!!@Dxr{--ê}{D5@?z!9q:pdG1~?XBrt!!@B!!@b xqD.`"E8lT"EL'E -HQ0R`JE}MܔyM,RC8+/zji-y}D^ѩcɔˠ)@@*X!j \{ *O ˥Ƚ=/c'.\ " #tI&!yknw:fu*t\>6 ~a`u$'A~"ĭ"A%T(?lfB$BB !BB !BB !BB)IOSS(o(HS")ē])SS,[yUS<, YK3B8IiTmHC JA&Zǿm-kG~ӳ(Ɣ뮲5r\ Z҅8]:{iq޵TtE٤o@&#PMת-'gCdXl/J}B0S/'ȰBIIO #]vffgiF= ^\ɑ[klj:H lmsj=o;Lba ZRJO-t߁$.4 x/.Yݜ4sVQ phG.8ߜc镗u&:ԁ|j5J8rEZ2Si(ͧsWMc)(StviqJz#jS婲h@BZ*-MnVU"$U)jk*FR"ͷ3o%fZ/Đ"֑pb"IɥYl<*I ,9ARbnUW~]%ƞm`hPT5rNKH=;;0Դ מyam ($` ЊL06:y(X%eUJAb.9rN<{ #>{ "An_yٲ"̛ۅ^Ҫ4u \K:X I Piqe楦f^a]p6TVEV66P<ZG@k^@CQ@B-vuR-N96a.,OF:=Ai<\6g}P(IR^*zcM8f+;7MtyyL۬NK ; ` 9kf!v䇓(R䰘h㍅!EA*)JUcuASBnom` "BxX.-gE\NH;Re)L{34Zme(DT"obZ1**fuz}R]*ȧdPI r(1Ţfe8f3-6\d(gBT!$`e*0XDlb^Nw.HӶB^0{u^9__gE)yifba\p50,(%`x*ЫHP< ީcIs/PrPj.cG?˿4D@W;y5mnZ5U]#:1`1]TO;5 YږjzYWBE:wȾbuwW/U<')/ <#Qk Xcn;+@i #0Kr4 3u#L/"փeg۶׋vp-IwzJzW<7eWtZahQQrV١nS9qs@XیltQn]WmK%^BQixȠX4}Sjj:-9ܲqsgJ l$yFGZe 4BP1 7j,YZo!J`AB$fٓ2$eW(h+rJ x. X⺝c +?=2OMIʹ#,uH̥ޥA9Ï&|Iؗ[-M-JIqa*VTjʕk` K'1(n.TTK]a]KBU%\=RlS$5{ ;-M)744)G‚Bfb*"kq@[8"t_/-8 KJLwKiZ_R.R-uE ^s 5;V !NW&J];ᴭKC`[22TUb1A؅׉@+B#sؒo~RKE)EuT埕8)T4a]jˡly0$2jF`xy^OƞTZa«ݩc 2b^by%T97ep.⇰&/0M#PzjjnVUS$QvNh^hE7eߖjbe]ss.u, 9PX_DZj%dd9wX0&v.HY&J֛p]#P\"r hƕLnf=6Vube&Z;*MğDG8(iCq9 o&ʬ̹UN47?*W%MrsFHIЄ'(ii*(Y7(s)m3R M|~~/-8oM촳7(:=m6f;i5z]veH< \m8m]9b3?Yab%|*zY.QWM2aɜq([@Vd\vn7oS`p@ sDWi'b]ykX4ܲTMˏnZp&]0.IsSi1n(V@uN3,Jp:xl˸ (oW'^xGߏ]=UZd*V)򢑾UfqK L||U f[\HHk\ G)!RViRX{UW[Qez/#gE(%GRe(u㯗|0 K-(*eNRW0UƦfT\me6ڮ$^-j'%PKA3P}>&y%IM{+ro#{>j6JbBgf婕̢&W0\%k%J_IÄr1ْSUd6iVrL,:- *ߡ{I̜K?}y!U4J]JQg~byn,8MJX}NufMEꔀ12ŸR)@+X,T77G^:ÇܓC~*Ȥ+&CE G fU^I$S.  -}BnE9/*ӎpJ͞a#-,m5,@\={_P#c=ol ;PʷXp4 ȐIc>ǏvkQC^q ˶\aphe-4+sTS߅',Ը?@7pu~U)SȼG$vFxGQ-W Rj =.7΍=3ɦrM]ڄG:ƽ]k44ڦԂ#pE;9.ͼJQ^3tE>NYԁx -0jpmK.⳼k&,f!SVڌ2ژΠ}J4\9ҕZ4XJԴԓvLek2W9 ;7V~, 4ӄv8j ;~Y \A3%O2B4p͡UΦjF :J9Yi֗LSJ2G1mKfַŨ `DN6'LӥiMTe4y!B^aKS*h҅: *9,?T\]~bAh:h)XݡRAZ_E{ m۶} ӴUMiP&9JCs"%eȿ- /ACbLQW}鹺i JqA ʶ }-de\J'QxKr_D@ Z[Ahϭ fKTfU<2 WYˣh6O@´)j>٫n.r8zC*/R_K$G.YN[Z܁pN_w⒘/mJ[rz;#Qbg-AY5j] [ISj IRF)'-Ĕ#5NYKw;6ry*BpBnUΧAО7{"zUju-ڛQi6ce$7:pV̶1Vĵ:䌵.>YM̉IR:"Gj24,,s˷FogiىĿzIyhB7˸4JUl)#3GëvlLMN6 -K)6M.mb-9vP8N W[¸YSu#bJU.2i*zS'2JOEi MB{΄7IɁ״,K:B(YH^RIU AsxWo(YR*7=Šx/8eqQI!!@B!!@B!!@B8?*e 4!kHw3 3 Qnv19{ą &]@"ኬl |8y{LϤ8΀RTeԢANQ B(!ҐjkƦ=At99BL^!!BB !BB))$0*a<\O u(u7=xB)Q/)8R,sqkl;"QEJ*7Q1D !BB !BB !BB !dY}N2S6ѥm NmHAf髽()nlY$ײSkŝ\`xQJaڤfQJmoM:gYǴVuRYkC齆$=k;# ^4|(|jc~'<^7(Jm:h-R*OR~Jr)wAHc2Z}n'9Z*H^ѵ1ZY~ZAڤaǤ2>MTs$"9`1UdeDr̺Kh ! -څ)4Rj%9B.tHùS`tIY:@=suc,;ONr j|Е}g} $92T Xb*i V&k);֔JH^lDJ#Jv(٪+8*gYq|d(eՄ*+uTOӾ%m ùowMŭ+[nXJR%X/M)L۳JPDǑ$ҥ'+i,25e&lӧ7 6mʪ7JIRisRbnyNRP "`9=@=Pv2%*.W2ӯ Sf9gBIlyH=@1ԕ6@cr$uFi(Py[ZP([+'H#J&Y:R@R,2hn ero006񃷴GH^w&аq($]MOO<I]akqk@&cJ›C*pz-_d;JŹYS ) -%KtItGMIMWin VcQ(m]ǔNkZ=S)n:;tOe1rxNuTLL"U6o-A(iD)) :-UmMz(@әk mEi#BJh[  ѧ@h-zK|BKa970M/€@ch2Auz{92t&qѾOX2'XFI)6F12'Xak!VJrs T)nUd1=nӨeɦ'q8aD) ܒ-fZ~.•%8QmS|l*9c{^vje+5ij 8&A6`q@.{?xX/7 ԴoK\i֖BRT4 #CJ)3)1rm^tj:Uy䎮W)w9z 0Fke+-Ԡ;;4%ˏT|&(BS@۰F۲Z΢r:+1#&07n fT"!dm'ì8.@0'Fn{abXe&m#uE54ЩTGasH%Pil,QZC3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=L%Pil,Q^C3C=8LT-ig&(Co*McZOB² yGjvL)&UtTTr E9=G#ǁp%ɷ!6'␵f!=aGy6q|s+42#1K_O'_vo7>V WI}3jCu.~1&N~JvYgSO0u RT) AD _'lcH;&\ 7iOQiኣZ'%=ͻ)h>BRR6ZS00khW'* a,fΠ[rHQ@9P)̫1Ttfa۾{da:l>qHuFUnIV0ZUbC+ 2ZqU2YJ-D %]1h@f~D>(1S%)$yc+-/=зB_϶"+xT}m^.aMXt ߙΩ>G3RV}mg(nQ.uKYߙΩ>(wrnQ.uKYߙΩ>(n3Crws_ϽuKYCqܢF 3RV}ws_Ͻ ܢ0]C3RV}Pgw(T՟zB;D7(~g:T՟z7!D`9/gއ~g:СQ #ߙΩ>;9/gޅ wrnQ.uKYߙΩ>(n3Crws_ϽuKYCqܢF 3RV}ws_Ͻ ܢ0]C3RV}Pgw(e~g:1de BgHMuRAr'Vu]J:GAYyG#'K 4xo+B-ru) Jl 8B>:#+ثxQC S>µǞ=-ILy)UDP ]J]$Z=9iHvc`8 b qMMITyIOY Q׌gTHȒtu9YKғ,4Җ-7ҤGbs݋ԚT9f}diϸg (qjL˯1+_tO; R|nM$U^[imKJR^0B6nqMȹf.˴i $4k&m#}OqήK;]m*HO.gTTx 9]ta0C""n#pAׇ :uRvO vv{@!uSLyea IiQ恙f.MXk͚)y٥lConʂ-|\^ {88 ([Hx]T'W"aV~*VV@-[]("=,/ hPu9XkbV8TGr\/okkGnG3xaʆE>EݴF/uCa &@{W3:kת#b'{ ˫88 ([H٭bG]Lˍ6" =@U7|U qlJ-W[HJ˚=zU!*$7$)J@޼k)_V~ &j+- sڬ5K}c'Wկ߇zȥ}ZnfQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+ýxR~tCsQ׍~E+;Սo|kѠq:n9UK ܬ*S%H!ήّ?W#m镹r^_9x󺬒ӳ,hțmH !Z^HS~B>7{a4U}{An'={QkdFp|vIyj^8N7l׈g!=gD9pm/rtGongw2zW/!%TjR22ܥØ/TR'ЛVPST^|x/Wس>~3W7l"I' &_lYOWqKEoI'c[Z :녡EF/OMY>سׇ)iMY>xI7bdbL- e焓F/OMY>س By$ы퇄F/O,0Ц^xI7bda$ы?L=0)MY>xI7bdbL- e焓F/OMY>س By$ы퇄F/O,0Ц^xI7bda$ы?L=0)MY>xI7bdbL- e焓F/OM~ş(,HBYVPohny)rԬl?88e=KeTJ)5JedS45ʉʭux"]j[>jayi:pPaJJJo5:ϲnvG#ۑD!KBɋW/L9~(@BraJ̣L8i.U뱶k^1KtqRH Nŏl@m"GN3H>ܭ9F^L JISRℕ\dgP5}-0T~γ;Ja'LII}[I7J)"鹵P9Y[R\Zcr<-/*ueNqbfQ'Nj6!m&X7) .v&6!Q$g-Fhɭvʙ+[.nT!!* ( MJZAKzeI R1T$굨^Af06bTS.MLŶq+KCy 8)u 51\JZ#"*Sݚge_&-ML Q:[J̵=S~ 4ʩN0mNW IYKQJUmtlJ8S4Ko<ChVJ2aӁ0ԨnH?3%Sh3:&g^}כÈP ` ܝFjIhiyXJeޔlV~[fֵ-Rض+QͷDM;.ÍKRVU9fNQż1@n7TE1뛒nBaZr]Y[)l3mr, 5! &$SKYzm\.KjPJk͛;WuĵAՆ JY,)2gUyS\o((QWsɝKwzW ` [~j߽ 5soފ0q)~7]z*~8wz;W=vߚCx\?` {~j߽ 5soފ0q)~7]z*~8wz;W=vߚCx\?` {~j߽ 5soފ0q)~7]z*~8wz;W=vߚCx\p] !%n|*&Gu^:}ߚCx\mO#_7_lmwz;W=vyO!d` }5soކߚEsuC/4 Y` :}ߚCx\q3uziV JGpm0 5soކߚDӓydlq;HyajAp>J(~7]z-*U&a2JNd38JPp}tC :T!I2(i]z~j߽5uz{k-]z~j߽/3k:_O;W=vo~\w<9eT=L:O;W=vEɗ&]v!bdqac0(9ͅ_!C5{w2dbU10.ֹ"Hjwweʝ(O{#!iZ3$GۃVv<4=74;:ӶDF.2A?fes}ORz3A+3n㢋O#q"1eaA$9GXJs9Srʓ$1!@B!!@B!!@B!K 6ZS̺\[ـ|PJԓ~)ԑ=2ܤљ >1GbZ3Ԫ%IBXVm.uטLZ_mz9qqe^}{UwTo0IB lluQJGjid"jiP ެ ͣM =Y}RLN:9oR>H&NjE/Jㄒ31^9^ڪg5)m&=5^,Ahgx 3ttЈ;OjF+Sp&nJM<#zppZ zI DdhyO+xn?WP1SS-..w)OL"SʭY>')Zj[$w0dk#2Z/[;;nOLw2TV%o /VT0t:TN:WR/|_ۃ UeХ۫#7I*neNȄm[|_xƮ rKȽ0$ _XntW)oOg%ӝNT ň9ve4_fh4UaL'g]ի]q*lfɝ)7HINn!k86y*:pft{o tJa3p9/XQ@oжU)x9ѩV*nmM.jr&Omp,y11G_z=v'?R:tvcc}14۵IL1IKroEEz-rfP"Ҏj4-:W1KUPO5p)Ú%J7`_bLK+YfzrRnUժ|E 3L)R,eʐ5X‡9:0rBrYnRw ˨Q=H8"Zr қq+SoY[ZRmdkL;%Us㩽3 `ztr{rļƒ.wYKQ!(ZA' kU\bg>Tģ*eҩvB)J)6){;n#ZFf~jZcvB`L+* Aidi{^/U wZA Kj[ƙrޱ=6U9:sS97t%n)yyI 9釕)S~H,H.*QmJ6g}OH:9:CȑW<:N7QqV,f>aw}Mp/(⴦8P.hұo>Mn}Pרǚ%jb1)#+!źgJ}zZF1^b1eYR)J1\]KE3ٷFR_ugiQ\rvUKe I M`l+$&YB|8hxaʢ鞝ݷm>n(>I\1I)s:9Q^0tZIvQ _v@:Cz'vGB=\FjXMۚuJ#7q!=L~n=_=%zӲ#n!r1."u΍zK 7 RE.?,p_҈}gYY!y߿XUrSq4#KkXO&WR6[D.2zWvG)iNsB3)^@#lJĹSuJ>2}7JT/1i&1lf+K7L9yCOu*dRDGqh;e-ZV)lAtB8G5b|At%CRi*cP8Q~q&͗*!:U_Mo>-QWUaw(=헱|xNHF=2G\gߟdrop2ftp-0.6/screens/screen2.jpg0000644000175100001440000011116011154771723016047 0ustar masterusersJFIF\XExifMM*C  !"$"$C" c !1AQ"Saq#234RTUr5BVcs$%Cebdt&DEFu60!1AQ2"B3aqR$ ?Ϫ\ɕ2jߪ.Xf^ R(jKe:eeo5(6bD˒+ikCmBu-xƙ` ԬRIBV2Q$xW4!IXKa z)Xv&cMy-㧋JVi N$rMtFm@]"?_~\ Dž)9^ʽOہ =lƍ 1.~R6w`"?,Ak13 pl+Anޚ` ACX6MO'=c3o![c=\>P0v BmN,yVo*"Nw$kZ+{ kpr#516))=䷼}\0ƬN X*Ǯ8fVWܹV=>b;D oɏy5 RbxoLz݄hƽpF3]tU;>m Jl)J8 C{}ƿnMjZ0~$I{,LogpV%?o+â&&$pcT;aGm iɉ 8q9R.H~ ?٢B,*ˆgfUFn(TH*H5reCwt`PX_ #)V&cp_ rv$v!NuP9%2:ocyB`uJq ~Zn6tm.̥hHJj,%IƼ6c3Fͅgh/R"Mk+i퇫 \JA${=!X/[/܏Ziȋ bS|XL<N8N-P\ȜQ[mlcz"5Nru)YSNFdH(m >:G}\u RRpN%?\!YN ĉ'u/3;N4Uĕ%Z\NͶXQuHRT+֨:GMRtl,3]mJi+mBJ_[>οnIg~Ç.~K{͊7K#k1N͏Ӹy R簭Ke,&Y.L3](AV&|1ԼoOVˑ8zF=%8[s-%H sM"̊8OgW8]0›N +#߸(8=͌݁ymU%nk)IgXqA*ֶHZ-) 7,@gKԹl쫔Y%.̵l"kRLSײc8E<ŶJ&a%?vP )| Ki|H}-h^dpS8c)vREs{NuҔ,:>h0GIX|G ء#6)4y"c̏>|oYry!2&8Itd7^0rkmh&~=_<ೄwX-HOɖ-|Oa885 $h~Kc5ޅt0 .p6+9%9\1&$^cFň I/^p)$L6H`LU@?t2ĐwəHZUyZthRyȬp;<5, m((hcPtc57c b<$kēcd+uU!E$s(o{NwА|1v\p.|!"'k+ .`uW gr1+Rrn:wEY+K)7{(5m!yIIi_C)y_ZȾFd_7lTa\ \wF75+ʟ*#dՕ[-ܨtF\*ǚ)Dur}C bg*޹4?Ō}ivu1^KhI[9Ou)m \r玠xz?)GIn23 )H$kZCxv=5HɢR,JBTI9⾕% UԮQ$tFi蔓ͺ%IQ Qef1l6u+ ћ!* 8f(P kIJuے#+gb1=9O]jy-z)n/Fm4?:HlGgjl z [Ǯh71oDZa"!ZH1Zw O\moyw$t^?LD܏GmwkX['c*DJNrVf'1 h( FQm߉p^Q̶BӨ }Eԣ`F\ \kb^佺 (m>n{g~h؃ `48=]O jyZ;/>E \'KE}AP ӨUz=J&.-m8;līH hw1uixǐyNbqCKe1*WtPscD(2EJ8IZKMvHـSpnn\džc8SL.Eyi  ;.\NG J {F%8 XsNk訣>hm&q3Z=q n ˠHЍm߂Zcy]1P~bKyAUa{"5pkW3ufj5|yJbI `lp@#b 5ד\Q''A99=30ֹwSv=/h CNge(EKX_6xH_H:lW}i^U}p&oH zz{_̯ʯ;I/x6ߢ]NS,!tIQ7WNm7Wh\Z;p Gv $4Zo⹹KUD*7C b2rm&io~dRKԁ:u]G )}OeFy\{#ryO}*}#տڣqDywdSfkB1W蜷Tr2#sV<ȝ-Tdzreܢ$ʭ"1CTU=rK8NA'LNL}/a\UZmTkPBBejS-%)ƙey~)&Z*MDJkkH_1o"˗G"pTS@ /tJmSg )@ ܚNIinМV74$sFS!X"43DU=[kUĕZ}qrYBaA g6EvFӞ):bL_E _Sj$] ZpK?:s12Bu96%c3)+9G5զ=;E∘!ދ-="G77hv7$O CG_=O?5+FpYp)V@omWdh0J+RBumcmۄlŢf4'm-.4L4"fhg:{hPVhf8Fx6?F{Z^XNa7if6w;ǎ_Qt~ͷ5ǰM΀jIeG~a!,)!}\7[vhy5$dt Z)evb.msGfʞVhfsC4J C*7F;uu)ʥa(ۉ0ueC";VA8Ruf}L-Ϋwz;R@߬oᯖys4lHx"fnR˨{2;qe;7~&TD6B&@.z2M#Bӝݟ"|ch~ %Zlgcȟ:fv|qH > 6̏O Nwv|q6O d{;>D;M#Bӝݟ"|wDi}"|e#'Ήm7ݙ؟:D MyC,ϑ>tN怀iдwgȟ:' %Zlgcȟ:fv|w4MfG'΅>D8 $4Ay#Gy"|I8imI6v/#Dntcas/,սǒ>tC,;OAI怓iݝ?R|Zlgb>tN7 ts(hgg: 4t.?>tOIDDMG.Z'g&j DGϪ[W|"7m so{DRUHk"#UrTvW1}o1]7fRI?}ۣ2>î9-15t.XN`F~q@פ13!g.d ݦ{r#:Riݭ^ /I}L)I, N)bw??W]nxپJ뇸zb^ZB˔<(3AR՚@Nܡ=bӛ3qV91NmzS_\=)1y/+'+A7*/RPRl]`yKΚa9(?S ӵ*w:ң>>2,fWV)QUUʍBQy\+nq{HjIS+3*9A&t {ѐT_\Cңyrb;,)irPK:0BQRU.X2ziܘi7Q\BPG?ҟy2VkU&[>0{ֽ̬߾)fS_\=)2Q8Rpd1F?\8BwT?uc5U\)*haԕ_sti^ۆ*kr>8rU.MV7 |3.)=U)Q"Rn{TuVc_q"VTlT)L2.r˶0f# K&3M!z-.(o7N)*^HJZN-GKhE28 )B1xGjr;^ttN̪U.wlAE z%*!+7qH̸ISŬeCGKMh3&2tDBverXsX[tJa3[}W&Y2IIY%WQL $k{GB-*i}|>$I{]>B@ 5/| b\#_;/"PeG2Tۤj\Ȍ}uz=$gQ/.]K[JSu, s:A^3x]~V8ဋ =+oŏp¦*m`vV_Qb%eV`5Q*Y>u;ϨyZN~˓-i&]{"(VTmԙ%tˠtEdy!!lzEHE&( 6totBo&Ŵ=Uj / [ 9ܿI[6-~ăC ,Ph JOOf[mqK2r^6\I#EB^b98e!nK1 BJU<0/DtXQJjbz*)q &mSJ֐/5RB M^B+/VSN+$sSHiOMAQh:`.wsEjBKft*#3NM!/:R9U})ܶѰ 9ҠA :4ށ)xauV*yΪ4Ec U}s#i ?DcL|1Tθv11S:Lt LcL|3Uθv11W:L}11S:O2 %111W:_\2 m<*9&>~\6i_t 111W:_\2 $cL|1Tθv11S:K@X,=L|1Tθc U}s4~Ds&1Uθ11X\6i<@[H11W~\G* _/~r"#A{ńaU}s Ls*9 _͈ s&9O11W:KkŇT:MCȡ\ _Fs47nH9?щ$ )Zޮע5#9oFNK7&i-/lqލK%}-9b&Ӷ:z68zaHptHm-,]NQZF)CΙ#D#$3x}`0:D.s_N0 e"PnYZ]nJ%G\5j؝6VЩ#tL2ʁOh)RNHQ2Rk,7 J5)E]nRjn]i8WZԬ (@oGo;HUA.t3ezpXfr-, uGfYE=l!!ҽVU5='xzo*3 *QəwCL>\ nt3|W^ŕN+9tRMe% V X{:6sRe2rN6f6u X X"[r&DBb8^Q;GY˴˕XneZs Ǝ1]2,?A)TiJjJ] Zra+ZFp{UŮ;|m+u6U4f(:XZD(p,Zklɵ3ђQCq$ o'8ANTeS!1,C lRT Bx"O&[{;;9S .TO>JZIAm¢4׸\ONSIZX,&i)^ȦΤ Icd)b$MO4dݟi\4f̯[\"}62 f(RoNH4g$*"9)23T80rIZz$ QWtji0*I䦃So˺[TNv7)*ທT̛r2(қ|qԶkA꒕ٺtIj-zbWCLͳQYM[csļ \eͳu柚bq|)%)KjZ7ɩ\cF>.jrrU4NKJN˶:Rv!ZiJӱydRFմndN5w W_w bY!U\b_jrguRnNٰb}/xVJGz! QSQT"J`h ӭ#mm{^(Վ:j34c<:'eb[ڵJdr($0;+zǥm=QEN4 22reA:,Mܗ*JA$Uq\$qc!T8t>!oe{T8'BG?CKwC F !oe{T8'BG?CKwC F !oe{T8'BG?CKwC F !o/U&oyވK}Ld'^MRٲE{O91Do/F{Jl Cn v|ZRoi[M4@$&ߘu;HF[G5>x#QW;$<'ĉ/`GD%VM.ľRv_u@UD.-N<~V눦ORS;.I~^p>O=$u!!!ioG-w={sGeAD%<;%QSX{Kb%&Q?:k+Bvb Ēf Elkp 9o+P |<R,7YBdr kFd /~n5_j(rr b~k_ʉs=f 2aypá p)f߄jW 8~Wbt`3mZ0ɨM0ҒI l+2]$\i0m;I{^ʡ: 4yL\C.N7q[y/ ּ)[(X@ u,!Z ]+UZHinM*X,?&IhØ OI/1g/߻Ј^dlXr8[x3IbI9YӐZQVᕀ9"@hR3 ]:(o*Ri.2KOIH.UŒTA=eZﺯ3Xo|. s bz Sԥ)1,ĪДL8ʔEqdžC )LI3?"9{W&+4say/UMĜ>*6#gUyaxgUys`& zbNipǕW3 '%frU^l/3 t5AO(6=8@,@{y< a.!q.!\ a.!q.! .!ϗ%4[Đe)h함ZƁf}O\u@RAIBNoBdt5'~)SWIS%wiRNI4CK^p7e1:9-T݋%Bڊ u> RD'"tH<HB@q\̦12%%ȥRKI<=D1/Z?)&ۋSN#!E[#7OjU'c)%V%m)K6T4JΧjKKKL2&JRstN-nUIiy2=s-E;`W&嚖,vBTQ)U& 6:Z!I`8`;P|8b@^~bN9U9H!/X c·8?X#ܦS N< c·8?X7S F酀N0VO*bz!' .&ws[mj{`J-l$bvpz!96)6ݚW@2RV-HI#]aNvqɥ1V)iQ%L<%]/_:hHqVPh! ڱ &bUrÓM!iJƮ'] NM B"vMCHBYkw JE8Jtwgt=0p>8?X&ܵ5Sjm<7.å!IF@gnYW"^=b\91zB] MH2fUd^%mVlӸ}0ǝ rʼ-[PRI*ANřPqh@o<>(di`6A} J>Z'Jq̞noo#fw'ɘ<=+rymMAmF1|;lO>$I{] # ’XFxY5P%JlER~ n%CFxKo{W ӒI:S,jBTJai%k3xmE!'9"e&3B50 d7m[ ¬:^G8bf3-Ke;7iȀg^aD%='pvJ_8+-wLamgj %fJ N@q;i_=L 5VHNW^[k4NQU'鲓EZE&V) QqP+So9B_ תNpYMJ>jd7~aKBev|.sP/$*%2N<J`SCngh.*u.DD&f:>}T%Hb\*&??UfyhDBT&^rx˭[*@J3b岖mq#lRwP%%aY%ccMY ;d5*?tj/ X%jqɅJ"h7 9leY@2r bE]V1 3naD )d(ܤyxKNaZ"$]S's*ikD ]%,,׵UJQ)aL6@K) q}!¦[iA-K #"(܇%\1NɆqB_}`omõM>rqQ7MKjf6b␐A-JP6Tٝ܄N|yfϸ[65ks\l/YlL8é8܋[mCC[4ebJE LEpp5'W(yy K=ڐ =ڞ_v'+Hvri PXlZ%W@/aal/&zq6 Ï;$QmaIJ(X6(%YVV6&o)61ҳl;Y/{rc6  k̀*?ؒKӰNEfQj~e2B'RVS`S-):Es8Җ0y 6QRbb)]jBe\ oe  k͇Occ^l?$ݠTD}UZ"V5.些(k%(BUuF[ Sr؟n!-&}Rjꓙe{GdOm%"SכJ @0Ƽ ØMFT\QɗPe&Rv3m+-ܡJRP' NRY.UFOg.X2+MJI  k͇Occ^lW8GU[4 kٛيۂg(B[g *)$g 7LOXaj>}fK9Ŭ$.J7TJQҧ? 116<ay56;3Acv3J3KuR<ϛSLJS@% 2BrIo'Dqf~=\CHOc壸y{c `S%BU.5[>θ"&c)Zښ^ު`/>g҆TV%3,,G(# 2sǴsZU&c:Qv,KPSM )cyV 8VY/pwdۜv[-55TRJVD6R6Q2;ۯພ$MajKUʫOWKyOM d tŸѰc-oQྕ]quYUAN)Emd%$$;{H6T' *8==p=*2,} R'1ˡ)J}b^,J uaJuX֫ei*7@ͮc gr+7:opf2>|_=#{aS %~u“4Nu좫\yM)'27AIJ.n(aSPf]]reT:A66F=+WƘ>U!$YiF \'媍Zfx_(q|q|]Ń}BWs.a匑V0T 5SCsSj q+$ I~!u+qy.~f?4VBR)nԪ}Mh.F[Xs %U)w)2fquYBn`CN7&+1]Zo J?W^&K2ܩ ĕ"E-ttQMq/! .:R@%%I%9lճ>Ñ8[e}mk&kY=p&F}xVbVM k>6Oͦ]e{dzJRR.r3Vbr/M\6Ji@yٔ! ,LQ+ـWm1prMFH~p)KB^PIX!5tX:(\c|L)L/>%,=.Cel2d)ʕYz6^j^t+/Rjm;>V8QbȒ}ڥJcχ,F]d~I<)53-]J_^x@9r.me4\?)M~Hĵ:S3NwYC* vk*vn96'.]vѡɟ_Ħ$I{]DC)BBBBBBBˈk~f#1eL"QUO?dQf9E? nE!t)J8R`,>tdy `0noi})oPH˼5:ƜahL(%+n]]x*2w:^bYs /|HPcL+S3FrJI Z) k vND3.ٴ7n.&sX׃9*6D.NS)mV*MA SsDh f=28-';LNUS77%u̲ab}BRaau+R.LQ;WxHؖBK#'"'0컌6BBjrPn9 <6)JRppBX3f~ks"V_:q5)M3[f 4j9@V( 3 4~RPfNA%\ l%uEҥ"qN IYBTU$7ޖ)XZyəLO83$vXg/?jn   (kߒ&bj<#%&G/>!KJ k&6\Tr0|8l)VQNEF#fO)3)ڎ|t7rt+#.Flp?$I{] !!!!!!! &$cK}b>4XL"^ W"m+iψ-Ye#t 7B)               (y}QJɌoJG/>;=6xwp#JzAXZG# n^I=qp沜o&CAD#_dr0?tyACķ,jDtP6 DvtM;2%rB{&4GLnkc{9 X̤|H>(|z!!!!!! w@Y17n,`co}bL"^]+|Do^.GOҬ2BBBBBBBBBBBBBBBWtYk_&b0=e_ܟq1DOd/%r!y)=;W#]ɿ6'qxQ#6js`*߭r0Ow3cx:5o[LJP 2c浵ˎ(˶!3:t};fr>GTO^GDbHBBBBB@ z7b}E&(p?>"~ȷpf"~ȴvg Ѐ.BBBBBBBBBBBBBBBITN 6~IL?\^;+h0;qD}8yp'Ʌ8܍ߴr0>*ǿ7KHR9=(ݵv0}yLV.)avB՘;~ OvNL4oeh :v2TO)$*-Yu߻]c{b#ϯ(O~G'v!      ,8؛dcژq_DžL"^ʓ?dZ6<No'h*+H\!!!!!!!!!!!!!!!MU5%}QJ{Y>yT3%}F09=OqhN BZ?xR^MP,:RG9r׽8utdTP/uWOҞ'kZy/JP[@Z:vm; VuT, gt'ᎭƱ/61ܗ"KD       ,8[#FA}F;hD-LNo'i 7E? nE!r=SlF)~OtF+~뎘#ͺ!Z36Z  :_jcߏϢЌc. lZ]mQ?,^'Yچ]dcKmqyvcu~м"bRU97 %$,F{ 9ZݛMaI{]$O$ 0 [M1c"#牄J7]o9-t]g)-Yet 7B)               $T'~_T`؏ ?BcJ!svW&нtCp#?-XƲΕ#fkgڃwR0)Hr~ DߙI\%%%:Wts:fZN̥M0ZN\롼uXgdBmĸClD!DGLN>~Z6iXf{%tx"|H<>;BBBBBB@#ddcQ0Fx ydrֿ>ve Ѐ⋐x!x^^Bx!x^^Bx!x^^Bx!x^^P|~_Tk}f6ײ<'1hIx B#-1ëN,g&A*4:a[UԜ}$Wb.@;F =qO~;ͥ[jMI/"l rI?C&wd@"ah byůvP{=xjY{<>$I{]\!!!!!! ==F3]F2."aߋn6%%idy&ۣԓK[ (ـV `S,qSD;%3>*|rJ$z)*<+d]gOdϊ:,}ߑ<~}<=w>tCY.3΋?%+ߩ_|@RUy]w >t;%3>*|I~GR%ÃY.3ΈvK%f|Tg{>K J#ÃI>5ΈvK%f|Tf4cGQLaD2қ*fqrme(:ePuR!evI'&QD;%^(EcL욕S-KÀeo66 VFRۯDvZCou^x 89ew>tGY.3΍i1ijR6UPgk"bYvJV2]Z/nInԓerFprvI%f|TH&mSF+UrB"٪{M1(%~iN޽Κc,}R]6$[s<89_%>*|vK%f|TaLJϖً$[yURA D89_%ؚSD;%3>*|F~j-)SmNSS+1v2Mh ƾjAV7Ra#%(Oݒw >t;%3>*|I~GR%ÃY.3ΈvK%f|Tg{>K J#ÃY.3·d]gO^I>oJWQprK%f|Tdϊ:,~}IWQ~prvK%&|Tdϊ:,ܒ}ߑ<{uHÃcJ8ÍIZ(D.NҞKeM6zcYCܴ!I͢ Qg4[ sT4R GL8qaOciE(f)@h>rҟDy?稝CK,O7].eZ26"EoG]oHtr=]ISH˰9rs.װRu{ݾg;l)/kD#BBBBBBBDZ5A/k-b-hNOcGW\Hhy2&e& 9 B{=mk #ȧJh)ꀾ8~,[Zh ҹu]v벝6Ɛ[&Ƥ> ?Y36i4xLne%ieej ; pZ8R]E&zVER+ IUall]KxMHmpoSI}}0Vr i=1D a??im5PBf*J[5L\(USFTtu]%XS9&3PM,[b+w#$}BJ݅ht?Xk,%D0rbvkī<~u(ٵ2T=ES X"A%sqKIP1TRZ:-%kNTD.w`v{>FSv54^~90J]&M:P4 H"PTihnmh%MB5 Ҹ.qIH~?K\ڝ#*r'@Q$iߝM@<:/g3ߋַzzS{oe~soΊD5F~_K8vS.!:)chcSLyc+ZS@aڤ-Fcs}1sn)&XQIP.k_;W(:y֝KD'D0       ;>,I2|gf~?c$L"R89OT8俻>)l,Ue-kSjny>$A[B ]%fh-0Sk hQBqRJH ġ➨qv|Sh Gݜr_ݟDǦeOT8俻>)==|HCK➨10̻aoI+C`a=T@#̴ܴu2-)g=Q>m508쿻>)g=Q鉙w}&qwO M,* PӕiUP;L;/9OT8俻>)/dY}wy[ju!I:RU\7v_ݟCK➨93/'(R ά% )G@&yo!uL#BŠ+*r&ǘ|S9/ϊz}k%MK2j]- p%%KPJ R$g=P' } $}ϊz%OTzLԺݓLJi!c:,ϔUm eOT8俻>)`o2§LFeЅxv'~UtO@bNo/RK9ZAtDk{~iC~{~:bP)yvqSNhLUw^ QT J8l'1H:dXXI[[rͳOĻj 1Ol8u@*F [[w6#ϼ V+)%;PiRmE&yri d[&mBnYEW #O2*"U+b-SvJe՗uM8e`Fx"7oԓWGՉy|AQ5$46ɓ\WʰVI!wW+X?›u 6)=&^aoM!.S'4U `I'(2rsS2dv~`LLhiNChN^ZSR*VkT.EMeM+0(}lZ btWUB(E"zj5:uNKQ(Y/,X0 IbݿtPI[bnn]Oor͐,F|4bB)N41#4[qC3)kگ`՛}@&E/ iaWv:r斤KЗr8*+P L*4Zd׳@7H+b m"t"vs Q:9./hMɧ3EI̜0'fD0#&%ҞYy@s=$ⅈakeLe@ߠgsZ~?`4bfRU3Gw4Yt^KbTi;ArEbURh`|?7TRM4̣szLBV\B,;dҢmx@tkp L%)5\tNVTL%M(%M%`$]Wu^k3UUVjιQus=:vPR2v/kR^k~;9U8)4TCLSe͵d\VMPԙv>F%7nĉ0͝ SŻ(_jOlI@~7k\kSڟijbPzYqK:ó-79,ܫZHRZT 7$(WSp''LE<9\97(JӦ۟6`#B'N?Nre[u:Lr/SrsT.RQf*UZE-b3U jxztK7T~)yBU|mp ²Hn0@D<[[׸Y4a՚~ 旜@zbp./5YUMb[%Eྍة :m@EM9wA_X +1 ? iuzJW3UC7(ZRRBMP! fsJ]ESX25Vm(.ϸCfroogZqE@(Y.w.~>ȏ@hu  PLLM- wNmr7N Dչ`)L)H(Js]xP-7BJSƸR^=1Jb TkSD閂SH9T, Jy%skOOH&CKʜ[f]SBiIyDdiN(nf.[ 7{wvKJTeRtzM\8-*e3L2YAx+2Jeܒ\-W£m=sLJ.0&HhX4_mIVQi,j,Suǫb١I}n՘vi 8?$@ݸsx m}yPQљڤS%nQ,½Ki(A$v$_R1Y O 4ᤣ)t Q6 s1NOkܣɣ2.zkzl.\C8滮kcѾ2^!Jy"zLo:3+*_=IG$ܐS,ymّr)A )eь^i5Rwٿ2Y/??(kqaCfϽzl~eыlOT6l_ȧ6ʻ,peъezzl~eыlťzgE=PѶUgt;,pWfӋKC#9oťCFWe?ٳi"lOT4mvY/4-i"lOT4mxI#5x"թa {_ȧ"g)ꀙ/fϽaf֗)C51/#|OTGf+/S3t9^͓Z\b#Iyci& {)ꀙ(?kvm[ڬy@{I Lx miys~S #|OT{6wqi";ρ51f-/žlOTe}-S 6z=S6l{['}/3t9QCvms+.S Ijc͟{@64=P7C%d`k/}wDvlZ_{ y@{ b\@ ~=PCCx9F6<DnF[ ;z%"NQi+6\s: 4kIcNO6_FYnYgkBSBv,iUz<[jNir~f#SNVP.>qJ^Ip][.42qҵ-DCSْ(du$BEj2Md "Mզt4)m Q/ᅳѕU)9,Iblӗ5 ,.Lj;OH546f^PB[[Ғ;pNt/Q=h5Z|V,F4:TIj~AJ)rUs) 0|Ja O'Xwˈ X,#*9OTvmA߻X*A.Qk)߿1%2[" Rr Z ^$fA"nb[ҕ Vrʋ7»T5x%3h iU $뭾KljI'VOCicJ$&VUHCLER3BR;sw6/ 72Dti@_dB@f }$50܃bSM 8:²$D9MS1.z Blbܓm/I'bjdg0xz $4>(uQ 70ҚJP MܿY&)K!B Y#n.\㥙WA풒DdZ%*viu᪉;V=c JIgM2[p hRlEzpb3E15")#r}h)\e92mغ_Vi8~N[,d p( /\W"Fӓr.UlS,N`%H)نvO O9ߘXKGn,=y`$=-,Hr+B)s;D 5 HQ{ ̇(m˴q[l71KYg14$S,0 /4csYO8J=L8'~ -}\lj+ʞ!Ŵ<`&S&ҷ NɺRDOo|V$LfX˴HtgKh̔ݰHHhA,.љe(x*@U : =%p[k2Hm/P>XBeʦhʅj.>Hbv{dQ4垞BuYm%#yU1w!NH*Q@fOdfr%&F\HJ+]]ڂ_a(d79ۈmUM{[ z"76\TɗAS'@'sx˘5SuJEHL2%JȒ/7 %Dl992y{_ zKq>?݋O]"zB^zRVMr %) kt.(R(8rZ,K8XJIv.RdeJ?kzcSd)MܝiڐK6댷uH .%Ԭ䈋LWҞioժqiU]BQÒ 2! B t%@ 타E[l'O9P6Oi$R0UyeZv_K=~X9*Z*է^Qx<⃊)Vт &ިll5q)-B;a:ێ;?4 RbE M٪fMU4Щei,TeT*Rv+ԝ/&K`ɪ`4 /f\ W6(, 1%jG&¤|me3H[M7Nn%-Tv]\ݽ R)G d0*r] VkBa6g{`4Teۚii%]<⒒lE} QRjȐmZdrq@-A)IJXP*9MBu +/hLjNPiUYVa*i eۃX]-FȚ8.Wէ6ԓSZm[CNIXq!7:ay)[_qhFa*ɯdT5OLef[g(G,Ʃ:IsCCNh )x% Bg4P_K#Ϣ;j~mPOiEZalSnVP6MڈNdpDMyK~}& qQՄJ$$2[xl蒖bY81aTcWs06_~Et-y7itz!eY8=(p-HBnTjÞ~-n89infж ̺tUk1ǎcM#.eLA &ֹ6GCE5d QO{z)nVP.4~f`w6j_j* Ll t\gURӱ~s~[1㞸zL;耧^Ch`*/<0{W^ E`^rObaqlkƚry5+67JYr>&f. ew\ }'-|z>omLx5Ò;)ܙqJ4o)~Za.KQsnfn!^ ޭ&6zOۧhz\LƎEJ"k:ڥVeT|lyp$[ӭaef I:khncsbr;'3o:}19,ǢAfZXѩcatDkք/~ob=>Q,{AX ԥ+FhpK u\WTxJ_pgA}v$_v1FjLom;a{F-椚x`5IqtLC;E\%"lmxqlUiE72aBt zFSCעޥahRDR5(IFq(x<),/**}G";ÄB0o*="zQv3{Zwu=p,|-?jFx)Qw %yFGtUpMkl* NkoߊW#soz?c90|+?kWcev|.pYH?KQ.WMmxb]l/YE=zl0͑ZՍ뎼X-:ؾ^QH%ӽefߞ3iM+ Չ$yv yVcq-VycžvIFy[)-$8eh#duʪw1 ԫfl/:bMͺԲ^t<\iSjiTF伻u^lV(޾Te 8"`ҧ*Mf_`DwNV|{)Y'0ɍ>QɁZemR*帹*q 'Ċk:/]JA; f^-F)(ݶ6γ3-=h$VY '@1ZDg!WHJJK|/L1*C(0WjsooZmI VfߕczR0fae P7EHC2\ u4j]߹IVN^ܫ?3uVՒ|5Hq)/RJ-.pML<*PCM7UV@;_X{zoi,ctk|StZ)2΁R_?=LƖ]<|?lV^Ndz6+Rmߘ~e8GtLeQZ ҤSeן*Q0@>ozI lt{=>lUTҳ6BH{ص&IId9:>Y>7FQQLay BZ@ia~|WyH(Xa6B@߻x"?oщJ dV%b :v4}LiZ%G]bg5fw2nX7oXƆw5,K Jz*h Zd•3UƧsRr9N_0 oY~ƕ.Ek_DBK5M\ƪ>R:vV2[LM-9URUhԧRZX1芕u{`HVZQzᮋ0T ]6Ukz;OEK+}d)4Cgs5{te< Z~.VLdCiKnB(NrUys͎fbe'%U긲YP32Uut2j^Im>Z.u$6Jvج~o}K%sJ3/(lvىbO/C'2~X?V#UK# (##I3RCR4N(kYʯpF>iVU )/=0{d4PLmf*s -am:E׽Xffu?U]vF' }ƛymNPwnM m+OQ2 4)w@N[{roaOSI݉2ڷ.\(2iĭ 3(xmVoЄku-Y[1tJP8Ry _K[~c"j%0{3e禔%.:zB9Z?[|&˴@ӴI7ZFsH$Z\م_K!״ZX|ʺj&_'Vt$fQ1ZIQB#1}›N!{G}-ӮZ5#+Lqwe)Jv sDQS9V 6lqoi2N hN}vR7P^Y)N+ι(܍wBs]0pQ~4ie-6INRoECht פ3W'}3kɩ&MR̲ܻI H#쒜wdʆPAIBׯhݢ=k3H(JJ^t)$B4RkoOԫk'10!q4MfbƗw?ez -W-O͂؀R: catbIR:_=Dڊel96!<:^2JD229$e}<0S56:;}ݮ-MS=L![}?