1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/***************************************************************************
* Copyright (C) 2005 by Rajko Albrecht *
* ral@alwins-world.de *
* *
* 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 2 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 "kdesvn.h"
#include "commandline.h"
#include "kdesvn-config.h"
#include <kapplication.h>
#include <dcopclient.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include <kdebug.h>
static const char description[] =
I18N_NOOP("A Subversion Client for KDE (standalone application)");
static const char version[] = VERSION;
static KCmdLineOptions options[] =
{
{ "r startrev[:endrev]",I18N_NOOP("Execute single subversion command on specific revision(-range)"),0},
{"R",I18N_NOOP("Ask for revision when executing single command"),0},
{"o <file>",I18N_NOOP("Save output of subversion command (eg \"cat\") into file <file>"),0},
{"l <number>",I18N_NOOP("Limit log output to <number>"),0},
{ "+exec <command>",I18N_NOOP("Execute subversion command (\"exec help\" for more information)"),0},
{ "+[URL]", I18N_NOOP( "Document to open" ), 0 },
KCmdLineLastOption
};
int main(int argc, char **argv)
{
KAboutData about("kdesvn", I18N_NOOP("kdesvn"), version, description,
KAboutData::License_GPL, "(C) 2005 Rajko Albrecht",0,
0, "ral@alwins-world.de");
about.addAuthor( "Rajko Albrecht", 0, "ral@alwins-world.de" );
about.setHomepage("http://www.alwins-world.de/programs/kdesvn/");
about.setBugAddress("kdesvn-bugs@alwins-world.de");
KCmdLineArgs::init(argc, argv, &about);
KCmdLineArgs::addCmdLineOptions(options);
KApplication app;
// register ourselves as a dcop client
app.dcopClient()->registerAs(app.name(), false);
// see if we are starting with session management
if (app.isRestored())
{
RESTORE(kdesvn);
}
else
{
// no session.. just start up normally
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
if (args->count() == 0)
{
kdesvn *widget = new kdesvn;
widget->show();
widget->checkReload();
}
else
{
if (QString(args->arg(0))==QString("exec")) {
kdDebug()<<"Execute a command" << endl;
CommandLine cl(args);
return cl.exec();
} else {
int i = 0;
for (; i < args->count(); i++)
{
kdesvn *widget = new kdesvn;
widget->show();
widget->load(args->url(i));
}
}
}
args->clear();
}
return app.exec();
}
|