Re: [AOLSERVER] Retrieving oid from INSERT

2006-04-05 Thread Olaf Mersmann
Hi Mark, * Mark Aufflick <[EMAIL PROTECTED]> [060405 06:31]: > Sybase, like SQLlite, does (now) support an auto-incrementing column > type, but AFAICT there is no way to find out which id you just > inserted. Sybase provides the @@identity variable which holds the last

Re: [AOLSERVER] Adding support for virtual hosts to PHP

2005-10-07 Thread Olaf Mersmann
Hi Dossy, * Dossy Shiobara <[EMAIL PROTECTED]> [051007 16:46]: > On 2005.10.07, Olaf Mersmann <[EMAIL PROTECTED]> wrote: > > > > what changes are necessary to the PHP module so that it supports > > virtual hosts? I'd be willing to invest some time in imple

Re: [AOLSERVER] Adding support for virtual hosts to PHP

2005-10-07 Thread Olaf Mersmann
* Tom Jackson <[EMAIL PROTECTED]> [051007 16:56]: > On Friday 07 October 2005 07:03, Olaf Mersmann wrote: > > Hi List, > > > > what changes are necessary to the PHP module so that it supports > > virtual hosts? I'd be willing to invest some time in implementi

[AOLSERVER] Adding support for virtual hosts to PHP

2005-10-07 Thread Olaf Mersmann
Hi List, what changes are necessary to the PHP module so that it supports virtual hosts? I'd be willing to invest some time in implementing this if someone could give me a few hints what needs to be done. Thanks in advance. -- Olaf -- AOLserver - http://www.aolserver.com/ To Remove yourself

Re: [AOLSERVER] Weird build problem

2005-09-23 Thread Olaf Mersmann
Hi Bas, * Bas Scheffers <[EMAIL PROTECTED]> [050923 13:08]: > Here is my history: > > 1034 cd tcl8.4.11/unix/ > 1035 ./configure --prefix=/usr/local/aolserver-4.0.10 --enable-threads > 1036 make install > 1037 cd ../.. > 1039 tar xvzf aolserver-4.0.10-src.tar.gz > 1040 cd aolserver-4.

Re: [AOLSERVER] Batteries included AOLserver distribution

2005-09-02 Thread Olaf Mersmann
Hi List, I finally have a first alpha release of BIA. There are still lots of little things that need to be added or improved. I am still trying to figure out how to get out of the whole RPATH mess. Any tips on how to build Tcl and AOLserver without any embedded RPATHs (and without patching the Ma

Re: [AOLSERVER] Batteries included AOLserver distribution

2005-08-25 Thread Olaf Mersmann
* Dossy Shiobara <[EMAIL PROTECTED]> [050824 07:21]: > On 2005.08.24, Olaf Mersmann <[EMAIL PROTECTED]> wrote: > > Another point I'm still unsure about is weather to ship stripped > > libs and binaries > > No ... please don't. It makes debugging other

Re: [AOLSERVER] Batteries included AOLserver distribution

2005-08-25 Thread Olaf Mersmann
into the dll's located in the lib/ directory and such. > > > > On Aug 25, 2005, at 10:00 AM, Olaf Mersmann wrote: > > > > >Another issue I am undecided on is wether to link statically or > > >dynamically to packages like OpenSSL und SQLite which will also b

Re: [AOLSERVER] Build/installation complexity with AOLserver 4 (for package maintainers) (was Re: [AOLSERVER] Batteries included AOLserver distribution)

2005-08-25 Thread Olaf Mersmann
* Dossy Shiobara <[EMAIL PROTECTED]> [050825 17:18]: > On 2005.08.25, Nathan Folkman <[EMAIL PROTECTED]> wrote: *snip* > A thin ADP application that stores config settings in a AGF file which > is then used to forward-generate a nsd.tcl. My current setup is pretty frontend neutral. The current sys

Re: [AOLSERVER] Build/installation complexity with AOLserver 4 (for package maintainers) (was Re: [AOLSERVER] Batteries included AOLserver distribution)

2005-08-25 Thread Olaf Mersmann
* Jim Davidson <[EMAIL PROTECTED]> [050825 15:24]: > *snip* > 7. would also be good if something in the install helped build up the > server nsd.tcl config as well I'm working on a simple nsd.tcl generation TCL script for the Batteries Included AOLserver distribution. Maybe parts of this can be

[AOLSERVER] Batteries included AOLserver distribution

2005-08-23 Thread Olaf Mersmann
Hi list, I've been hacking on a simple script to download, unpack and build TCL, AOLserver and all needed modules + dependencies. The ultimate goal of this is to create a simple way to build installable shars of AOLserver for different plaforms os people can test out AOLserver easily without the f

Re: [AOLSERVER] interpreter lifecycle

2005-05-25 Thread Olaf Mersmann
Robert Seeger wrote: I'm inclined to say it either shouldn't be documented, or it should be documented as an undocumented behavior. I don't think this is something that should cause backward compatibility problems later, since there's no good reason for it to behave the way it is now (other than

Re: [AOLSERVER] interpreter lifecycle

2005-05-25 Thread Olaf Mersmann
Bas Scheffers wrote: I have at points relied on the fact that namespaces don't get cleared out between request (though in Vignette, not AOLserver) and found it rather usefull. Fixing this "bug" will quite likely break some people's code! I too rely on this property of the current implementation

Re: [AOLSERVER] Server Side Includes

2005-04-15 Thread Olaf Mersmann
Hi Bas, Bas Scheffers wrote: Has anyone ever done any test on how much of a performance hit an ADP page is (asuming minimal processing, of course!) over fastpath returning a static page? I did some testing that goes in this direction concering cached / noncached ADPs and static files. Here are the

Re: [AOLSERVER] Caching parsed ns_adp_parse -string results

2005-04-12 Thread Olaf Mersmann
Hi List, thanks for all your responses! I'm sorry I wasn't too clear about my problem. I don't want to cache the results of calling ns_adp_parse -string $my_string since parts of the result page contain request specific parts. What I wanted to know is if there is a way to parse, but not evaluate $m

[AOLSERVER] Caching parsed ns_adp_parse -string results

2005-04-11 Thread Olaf Mersmann
Hi list, due to various design decisions, we generate some heavily used ADP pages as strings on certain events and reuse them thereafter. As far as I can tell, ns_adp_parse -string does not cache the parsed representation of these (how could it, there's no real identifier short of the whole string?