blob: eb73d11cd1ffa3360b4b60ef9aa75f39f0b17c47 (
plain)
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
|
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kglobal.h>
#include <kapplication.h>
#include "htmlsearch.h"
static KCmdLineOptions options[] =
{
{ "lang <lang>", I18N_NOOP("The language to index"), "en" },
KCmdLineLastOption // End of options.
};
int main(int argc, char *argv[])
{
KAboutData aboutData( "khtmlindex", I18N_NOOP("KHtmlIndex"),
"",
I18N_NOOP("TDE Index generator for help files."));
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions( options );
KGlobal::locale()->setMainCatalogue("htmlsearch");
TDEApplication app;
HTMLSearch search;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
search.generateIndex(args->getOption("lang"));
}
|