From: Zoran V. <zv...@ar...> - 2005-04-09 16:13:53
|
Hm... Error: required -t <config> option not specified Usage: bin/nsd [-h|V] [-c|-i|f] [-u <user>] [-g <group>] [-r <path>] [-b <address:port>|-B <file>] [-s <server>] -t <file> This ain't very important but the syntax of the command line *should* have been something like this: Usage: bin/nsd [-h|V] [-c|-i|f] [-u <user>] [-g <group>] [-r <path>] [-b <address:port>|-B <file>] [-s <server>] <file> I do not understand why on earth the "-t" option is "option" and "required" ? Generally speaking, nsd [options] <config.file> would seem much more logical to me. Zoran |
From: Zoran V. <zv...@ar...> - 2005-04-09 16:39:06
|
Am 09.04.2005 um 18:13 schrieb Zoran Vasiljevic: > Hm... > more hmmmm's... zvpb:~/sf/naviserver/nsd zoran$ ./nsd -V NaviServer/4.0.10 (naviserver4_0) CVS Tag: $Name: $ Built: Apr 9 2005 at 18:34:07 Tcl version: 8.4 Platform: osx Did anyone *ever* got CVS Tag correctly substituted/displayed? I did't. Is there any magic there I should be aware of? Zoran |
From: Stephen D. <sd...@gm...> - 2005-04-09 17:26:57
|
I think this only works when you 'cvs tag MYTAG' and then 'cvs export -r MYTAG'. If you're always working off HEAD, you'll never see anything useful here. Just wait for the first glorious release! On Apr 9, 2005 10:39 AM, Zoran Vasiljevic <zv...@ar...> wrote: > > Am 09.04.2005 um 18:13 schrieb Zoran Vasiljevic: > > > Hm... > > > > more hmmmm's... > > zvpb:~/sf/naviserver/nsd zoran$ ./nsd -V > NaviServer/4.0.10 (naviserver4_0) > CVS Tag: $Name: $ > Built: Apr 9 2005 at 18:34:07 > Tcl version: 8.4 > Platform: osx > > Did anyone *ever* got CVS Tag correctly substituted/displayed? > I did't. Is there any magic there I should be aware of? > > Zoran > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > naviserver-devel mailing list > nav...@li... > https://lists.sourceforge.net/lists/listinfo/naviserver-devel > |
From: Zoran V. <zv...@ar...> - 2005-04-09 17:41:09
|
Am 09.04.2005 um 19:26 schrieb Stephen Deasey: > I think this only works when you 'cvs tag MYTAG' and then 'cvs export > -r MYTAG'. If you're always working off HEAD, you'll never see > anything useful here. > > Just wait for the first glorious release! > Ah... I did not think about that. This can be true. Thanks for the clarification. Zoran |
From: Stephen D. <sd...@gm...> - 2005-04-11 02:46:16
|
On Apr 9, 2005 10:39 AM, Zoran Vasiljevic <zv...@ar...> wrote: > > zvpb:~/sf/naviserver/nsd zoran$ ./nsd -V > NaviServer/4.0.10 (naviserver4_0) > CVS Tag: $Name: $ > Built: Apr 9 2005 at 18:34:07 > Tcl version: 8.4 > Platform: osx nsd/nsd.h: /* * constants */ #define NSD_NAME "NaviServer" #define NSD_VERSION NS_PATCH_LEVEL #define NSD_LABEL "naviserver4_0" #define NSD_TAG "$Name: $" Looks like NSD_LABEL is just a manually maintained (out of date) version of NSD_TAG also available via Ns_InfoLabel(). Junk it and just use NSD_TAG? |
From: Stephen D. <sd...@gm...> - 2005-04-09 17:29:22
|
On Apr 9, 2005 10:13 AM, Zoran Vasiljevic <zv...@ar...> wrote: > Hm... > > Error: required -t <config> option not specified > > Usage: bin/nsd [-h|V] [-c|-i|f] [-u <user>] [-g <group>] [-r <path>] > [-b <address:port>|-B <file>] [-s <server>] -t <file> > > This ain't very important but the syntax of the command line > *should* have been something like this: > > Usage: bin/nsd [-h|V] [-c|-i|f] [-u <user>] [-g <group>] [-r <path>] > [-b <address:port>|-B <file>] [-s <server>] <file> > > I do not understand why on earth the "-t" option is "option" and > "required" ? > Generally speaking, > > nsd [options] <config.file> > > would seem much more logical to me. Don't think of it as an option, it's a named argument... :-) It made sense when there was two types of config files: windows-style ini or new-style tcl. The ini files have bee dropped and now it does seem a little weird. Oh well... |