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.
32 lines
744 B
32 lines
744 B
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeaboutdata.h>
|
|
#include <tdeglobal.h>
|
|
#include <tdeapplication.h>
|
|
|
|
#include "htmlsearch.h"
|
|
|
|
static TDECmdLineOptions options[] =
|
|
{
|
|
{ "lang <lang>", I18N_NOOP("The language to index"), "en" },
|
|
TDECmdLineLastOption // End of options.
|
|
};
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
TDEAboutData aboutData( "tdehtmlindex", I18N_NOOP("KHtmlIndex"),
|
|
"",
|
|
I18N_NOOP("TDE Index generator for help files."));
|
|
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
TDECmdLineArgs::addCmdLineOptions( options );
|
|
|
|
TDEGlobal::locale()->setMainCatalogue("htmlsearch");
|
|
TDEApplication app;
|
|
HTMLSearch search;
|
|
|
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
|
search.generateIndex(args->getOption("lang"));
|
|
}
|