You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.7 KiB
117 lines
3.7 KiB
/* This file is part of Webarchiver
|
|
* Copyright (C) 2001 by Andreas Schlapbach <schlpbch@iam.unibe.ch>
|
|
*
|
|
* 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.
|
|
**/
|
|
|
|
/* $Id$ */
|
|
|
|
/*
|
|
* There are two recursions within this code:
|
|
* - Recursively create DOM-Tree for referenced links which get recursively
|
|
* converted to HTML
|
|
*
|
|
* => This code has the potential to download whole sites to a TarGz-Archive
|
|
*/
|
|
|
|
//#define DEBUG_WAR
|
|
|
|
#include <tqdir.h>
|
|
#include <tqfile.h>
|
|
|
|
#include <tdeaction.h>
|
|
#include <kinstance.h>
|
|
|
|
#include <tdefiledialog.h>
|
|
#include <tdemessagebox.h>
|
|
#include <tdelocale.h>
|
|
#include <tdehtml_part.h>
|
|
#include <kdebug.h>
|
|
#include <kgenericfactory.h>
|
|
#include <tdeglobalsettings.h>
|
|
|
|
#include "plugin_webarchiver.h"
|
|
#include "archivedialog.h"
|
|
|
|
typedef KGenericFactory<PluginWebArchiver> PluginWebArchiverFactory;
|
|
K_EXPORT_COMPONENT_FACTORY( libwebarchiverplugin,
|
|
PluginWebArchiverFactory( "webarchiver" ) )
|
|
|
|
PluginWebArchiver::PluginWebArchiver( TQObject* parent, const char* name,
|
|
const TQStringList & )
|
|
: Plugin( parent, name )
|
|
{
|
|
(void) new TDEAction( i18n("Archive &Web Page..."),
|
|
"webarchiver", 0,
|
|
this, TQT_SLOT(slotSaveToArchive()),
|
|
actionCollection(), "archivepage" );
|
|
}
|
|
|
|
PluginWebArchiver::~PluginWebArchiver()
|
|
{
|
|
}
|
|
|
|
void PluginWebArchiver::slotSaveToArchive()
|
|
{
|
|
// ## Unicode ok?
|
|
if( !parent() || !parent()->inherits("TDEHTMLPart"))
|
|
return;
|
|
TDEHTMLPart *part = static_cast<TDEHTMLPart *>( parent() );
|
|
|
|
TQString archiveName = TQString::fromUtf8(part->htmlDocument().title().string().utf8());
|
|
|
|
if (archiveName.isEmpty())
|
|
archiveName = i18n("Untitled");
|
|
|
|
// Replace space with underscore, proposed Frank Pieczynski <pieczy@knuut.de>
|
|
|
|
archiveName.replace( "\\s:", " ");
|
|
archiveName = archiveName.simplifyWhiteSpace();
|
|
archiveName.replace( "?", "");
|
|
archiveName.replace( ":", "");
|
|
archiveName.replace( "/", "");
|
|
archiveName = archiveName.replace( TQRegExp("\\s+"), "_");
|
|
|
|
archiveName = TDEGlobalSettings::documentPath() + "/" + archiveName + ".war" ;
|
|
|
|
KURL url = KFileDialog::getSaveURL(archiveName, i18n("*.war *.tgz|Web Archives"), part->widget(),
|
|
i18n("Save Page as Web-Archive") );
|
|
|
|
if (url.isEmpty()) { return; }
|
|
|
|
if (!(url.isValid())) {
|
|
const TQString title = i18n( "Invalid URL" );
|
|
const TQString text = i18n( "The URL\n%1\nis not valid." ).arg(url.prettyURL());
|
|
KMessageBox::sorry(part->widget(), text, title );
|
|
return;
|
|
}
|
|
|
|
const TQFile file(url.path());
|
|
if (file.exists()) {
|
|
const TQString title = i18n( "File Exists" );
|
|
const TQString text = i18n( "Do you really want to overwrite:\n%1?" ).arg(url.prettyURL());
|
|
if (KMessageBox::Continue != KMessageBox::warningContinueCancel( part->widget(), text, title, i18n("Overwrite") ) ) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
ArchiveDialog *dialog=new ArchiveDialog(0L, url.path(), part);
|
|
dialog->show();
|
|
dialog->archive();
|
|
}
|
|
|
|
#include "plugin_webarchiver.moc"
|