Peter Samuelson | 6 Dec 2002 19:36
Picon

cvs commit: tng/source Makefile.in configure.in

peter       2002/12/06 19:36:21 CET

Modified files:
   source                 Makefile.in configure.in 
Log:
support configure --program-transform-name and friends.

Revision  Changes    Path
1.84      +13 -11    tng/source/Makefile.in
1.48      +2 -1      tng/source/configure.in

Peter Samuelson | 6 Dec 2002 20:09
Picon

cvs commit: tng/docs Makefile tng/source Makefile.in dist.mk tng/source/script makeyodldocs.sh

peter       2002/12/06 20:09:34 CET

Modified files:
   source                 Makefile.in dist.mk 
Added files:
   docs                   Makefile 
Removed files:
   source/script          makeyodldocs.sh 
Log:
'make yodldocs' update.
Instead of makeyodldocs.sh we have a Makefile. (gmake required.)
Obvious advantage: now we don't run yodl on *every* file *every* time. (:

Also a small cleanup to Makefile.in.

Revision  Changes    Path
1.1       +43 -0     tng/docs/Makefile (new)
1.85      +5 -3      tng/source/Makefile.in
1.5       +2 -2      tng/source/dist.mk
1.3       +0 -92     tng/source/script/makeyodldocs.sh (dead)

Peter Samuelson | 7 Dec 2002 01:52
Picon

cvs commit: tng/docs/textdocs Character_Sets.txt

peter       2002/12/07 01:52:06 CET

Added files:
   docs/textdocs          Character_Sets.txt 
Log:
FINALLY got around to adding Igor Kulemzin's character sets HOWTO.
Sorry for the delay, folks.

I did some major editing based on digging through the source.
So it should be reasonably accurate. (:

Revision  Changes    Path
1.1       +62 -0     tng/docs/textdocs/Character_Sets.txt (new)

Peter Samuelson | 7 Dec 2002 02:43
Picon

cvs commit: tng/source/lib charset.c

peter       2002/12/07 02:43:09 CET

Modified files:
   source/lib             charset.c 
Log:
Small cleanup of charset.c
...so I could read it well enough to figure out what it did
...so I could edit Character_Sets.txt with some degree of accuracy

Revision  Changes    Path
1.8       +20 -28    tng/source/lib/charset.c

Peter Samuelson | 7 Dec 2002 03:51
Picon

cvs commit: tng/source/rpcclient cmd_reg.c

peter       2002/12/07 03:51:20 CET

Modified files:
   source/rpcclient       cmd_reg.c 
Log:
Some cleanups - preparation for further hacking.

Specifically -
	result = result ? function(...) : False;
became
	result = result && function(...);
which is IMO a lot more readable.  Especially when the ... is several
lines long - it's easy to miss the ': False' at the end.

Revision  Changes    Path
1.9       +125 -137  tng/source/rpcclient/cmd_reg.c

Peter Samuelson | 7 Dec 2002 04:39
Picon

cvs commit: tng/source/lib util.c tng/source/rpcclient cmd_reg.c

peter       2002/12/07 04:39:36 CET

Modified files:
   source/lib             util.c 
   source/rpcclient       cmd_reg.c 
Log:
A little more cleanup in registry client functions.

Revision  Changes    Path
1.30      +1 -5      tng/source/lib/util.c
1.10      +11 -22    tng/source/rpcclient/cmd_reg.c

Peter Samuelson | 7 Dec 2002 07:15
Picon

cvs commit: tng/source/include rpc_reg.h tng/source/lib util_str.c tng/source/rpcclient display_reg.c

peter       2002/12/07 07:15:47 CET

Modified files:
   source/include         rpc_reg.h 
   source/lib             util_str.c 
   source/rpcclient       display_reg.c 
Log:
'regenum' now prints the same registry value types as REGEDIT.EXE:
REG_SZ, REG_BINARY, etc.

The change to util_str.c allows a 'struct enum_field' to use 0 as a
valid value.  This was needed since the type REG_NONE is 0.

Revision  Changes    Path
1.6       +7 -0      tng/source/include/rpc_reg.h
1.14      +1 -1      tng/source/lib/util_str.c
1.7       +23 -36    tng/source/rpcclient/display_reg.c

Peter Samuelson | 7 Dec 2002 08:50
Picon

cvs commit: tng/source acconfig.h configure.in tng/source/client client.c tng/source/include tng_readline.h tng/source/lib cmd_interp.c tng/source/rpcclient regedit_cmds.c

peter       2002/12/07 08:50:42 CET

Modified files:
   source                 acconfig.h configure.in 
   source/client          client.c 
   source/include         tng_readline.h 
   source/lib             cmd_interp.c 
   source/rpcclient       regedit_cmds.c 
Log:

Revision  Changes    Path
1.17      +0 -1      tng/source/acconfig.h
1.22      +6 -8      tng/source/client/client.c
1.49      +1 -2      tng/source/configure.in
1.4       +4 -2      tng/source/include/tng_readline.h
1.25      +1 -0      tng/source/lib/cmd_interp.c
1.5       +11 -1     tng/source/rpcclient/regedit_cmds.c

Peter Samuelson | 7 Dec 2002 08:48
Favicon

Re: cvs commit: tng/source acconfig.h configure.in tng/source/client client.c tng/source/include tng_readline.h tng/source/lib cmd_interp.c tng/source/rpcclient regedit_cmds.c


> Modified files:
>    source                 acconfig.h configure.in 
>    source/client          client.c 
>    source/include         tng_readline.h 
>    source/lib             cmd_interp.c 
>    source/rpcclient       regedit_cmds.c 
> Log:
(argh. editor troubles again.)

readline cleanups:
- get rid of HAVE_LIBREADLINE in favor of HAVE_READLINE
- define HAVE_READLINE_HISTORY and use it properly in client.c
- add #ifdef HAVE_READLINE for compile regedit completion crap

new feature:
- regedit completion now appends "\" to key names instead of "\ "

Peter Samuelson | 7 Dec 2002 09:19
Picon

cvs commit: tng/source/include rpc_reg.h tng/source/rpcclient display_reg.c

peter       2002/12/07 09:19:11 CET

Modified files:
   source/include         rpc_reg.h 
   source/rpcclient       display_reg.c 
Log:
I missed a registry value type: REG_FULL_RESOURCE_DESCRIPTOR.
I have no idea what these are, except big binary blobs.
There are lots of them in "HKLM\HARDWARE\DESCRIPTION\System".

Revision  Changes    Path
1.7       +1 -0      tng/source/include/rpc_reg.h
1.8       +2 -0      tng/source/rpcclient/display_reg.c


Gmane