[naviserver-devel] Documentation status

2006-09-23 Thread Vlad Seryakov
Here it is the doctools generated html files from source manpages. http://www.crystalballinc.com/vlad/nsdocs/toc.html doctool does all auto-referencing, so to make it pretty we just need CSS style. make build-doc calls dtplite and produces this under doc/html -- Vlad Seryakov 571 262-8608 o

Re: [naviserver-devel] Fwd: [TCLCORE] Can Tcl_GetObjResult() return shared object?

2006-09-23 Thread Zoran Vasiljevic
On 23.09.2006, at 23:30, Vlad Seryakov wrote: tclxkeylist.c is the place where i see a lot of such usage I will check this again. I thought I got all the occurences...

Re: [naviserver-devel] Fwd: [TCLCORE] Can Tcl_GetObjResult() return shared object?

2006-09-23 Thread Vlad Seryakov
tclxkeylist.c is the place where i see a lot of such usage Zoran Vasiljevic wrote: Hi! As I expected... Begin forwarded message: From: Joe English <[EMAIL PROTECTED]> Date: 23. September 2006 19:15:35 MESZ To: Tcl Core List <[EMAIL PROTECTED]> Subject: Re: [TCLCORE] Can Tcl_GetObjResult() re

[naviserver-devel] Fwd: [TCLCORE] Can Tcl_GetObjResult() return shared object?

2006-09-23 Thread Zoran Vasiljevic
Hi! As I expected... Begin forwarded message: From: Joe English <[EMAIL PROTECTED]> Date: 23. September 2006 19:15:35 MESZ To: Tcl Core List <[EMAIL PROTECTED]> Subject: Re: [TCLCORE] Can Tcl_GetObjResult() return shared object? Zoran Vasiljevic wrote: I'm not sure about that, but I had a

Re: [naviserver-devel] Tcl object handling

2006-09-23 Thread Zoran Vasiljevic
On 23.09.2006, at 13:37, Gustaf Neumann wrote: Not sure, what's faster, resetResult() + setIntObj() or setObjResult() + newIntObj(). The difference in speed is most likely not significant. however, resetResult allows to append to the object, clears error state, etc. I believe that either/or i

Re: [naviserver-devel] Tcl object handling

2006-09-23 Thread Gustaf Neumann
Zoran Vasiljevic schrieb: Hi! After I have observed some very subtle and hard-to-reproduce bugs in our app, I found out that Tcl object handling in some places in NS code, although "by the book" is really a source of trouble. Like: Tcl_SetIntObj(Tcl_GetObjResult(interp), 1); /* Unsafe? */

[naviserver-devel] Tcl object handling

2006-09-23 Thread Zoran Vasiljevic
Hi! After I have observed some very subtle and hard-to-reproduce bugs in our app, I found out that Tcl object handling in some places in NS code, although "by the book" is really a source of trouble. Like: Tcl_SetIntObj(Tcl_GetObjResult(interp), 1); /* Unsafe? */ This construct assumes tha