summaryrefslogtreecommitdiff
path: root/rdbmaker
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-04-17 09:24:04 +0000
committerRüdiger Timm <rt@openoffice.org>2003-04-17 09:24:04 +0000
commitebf7bcdf0e7d86f38a9e9fa4fb2163518abf2f3c (patch)
tree67bd0a8d87ae2c509f74e8da6abde53c3f9adcad /rdbmaker
parente7ce98d7165adadc5631e2ff6e26fb77d63d998d (diff)
INTEGRATION: CWS sdk01 (1.1.1.1.58); FILE MERGED
2003/03/07 07:39:42 jsc 1.1.1.1.58.1: #107900# change command line help
Diffstat (limited to 'rdbmaker')
-rw-r--r--rdbmaker/source/rdbmaker/rdboptions.cxx21
1 files changed, 15 insertions, 6 deletions
diff --git a/rdbmaker/source/rdbmaker/rdboptions.cxx b/rdbmaker/source/rdbmaker/rdboptions.cxx
index ebe054fb985d..0751fde22461 100644
--- a/rdbmaker/source/rdbmaker/rdboptions.cxx
+++ b/rdbmaker/source/rdbmaker/rdboptions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rdboptions.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 14:28:44 $
+ * last change: $Author: rt $ $Date: 2003-04-17 10:24:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -367,10 +367,18 @@ sal_Bool RdbOptions::initOptions(int ac, char* av[], sal_Bool bCmdFile)
OString RdbOptions::prepareHelp()
{
OString help("\nusing: ");
- help += m_program + " [-options] [file_1 ... file_n]\nOptions:\n";
- help += " [-R<regname>]= registry name specifies the registry used for bootstrapping\n"
- " uno. If no registry is specified, the program use the\n"
- " applicat.rdb finding near the executable.\n";
+ help += m_program + " [-options] (-R<regname> | file_1 [... file_n])\n";
+ help += "The rdbmaker supports 2 modes:\n";
+ help += " 1. using the internal UNO type description manager -> use -R<regname>\n"
+ " where regname specifies the type library used by the UNO type description manager\n"
+ " after UNO is bootstrapped. This option disables the use of any other type libraries.\n";
+ " The tpye library must be a valid product type library which means that all types are\n";
+ " stored under the global base node UCR (Uno Core Reflection data).\n";
+ help += " 2. using one or more type library files -> use file_1 ... file_n\n"
+ " file_1 .. file_n specifies one or more valid type library files which are used to\n"
+ " find the needed type information. The used type libraries have to support the same base\n"
+ " node (-B option).\n";
+ help += "Options:\n";
help += " -O<filename> = filename specifies the name of the generated registry\n";
help += " or text file.\n";
help += " -L = specifies that only a text file is generated with the\n";
@@ -387,6 +395,7 @@ OString RdbOptions::prepareHelp()
help += " this file nothing will be generated.\n";
help += " -B<name> = name specifies the base node. All types are searched under\n";
help += " this node. Default is the root '/' of the registry files.\n";
+ help += " This option takes effect using run mode 2 only.\n";
help += " -b<name> = name specifies the base node of the output registry. All\n";
help += " types will be generated under this node. Default is the\n";
help += " root '/' of the registry file.\n";