Re: [EMAIL PROTECTED] mod_dbd and mysql

2007-05-09 Thread Frank Jones
[thread moved from users list] On 5/8/07, Nick Kew [EMAIL PROTECTED] wrote: On Tue, 8 May 2007 08:11:13 -0500 Frank Jones [EMAIL PROTECTED] wrote: However, I don't know what to do if apr_dbd_pvselect using the prepared statement returns 2013 (Lost connection). What MySQL version are you

Re: Regexp mess?

2007-05-09 Thread Roy T. Fielding
On May 8, 2007, at 7:20 PM, Tim Bray wrote: Why are the regex-related routine declarations splashed across httpd.h and ap_regex.h? And why are there two versions of regcomp, only one of which takes a pool for allocation? Too much history and a bit of indecisiveness. We originally used a

Documenting Modules

2007-05-09 Thread Joachim Zobel
Hi. How do I document modules the way apache does it? There seems to be an XML format that is used to generate the documentation. Where can I read about this? Thx, Joachim

Re: Documenting Modules

2007-05-09 Thread Joachim Zobel
Am Mittwoch, den 09.05.2007, 19:50 +0100 schrieb Nick Kew: On Wed, 09 May 2007 18:16:46 +0200 Joachim Zobel [EMAIL PROTECTED] wrote: There seems to be an XML format that is used to generate the documentation. Where can I read about this? Download apache (any version) and look in the

Re: Documenting Modules

2007-05-09 Thread Joachim Zobel
Am Mittwoch, den 09.05.2007, 14:36 -0400 schrieb Marc Dostie: Are you referring to doxygen? See http://www.doxygen.org/ No. I want to generate the html pages apache uses for module documentation (e.g. http://httpd.apache.org/docs/2.2/mod/mod_example.html) Sincerely, Joachim

Re: Documenting Modules

2007-05-09 Thread Joachim Zobel
Am Mittwoch, den 09.05.2007, 16:11 -0300 schrieb Davi Arnaut: http://httpd.apache.org/docs-project/docsformat.html Aaahh! Could not find that with google. Thanks, Joachim

Event MPM

2007-05-09 Thread Marc Dostie
Anyone know what the roadmap looks like for the Event MPM? I'm interested in playing with it but I need mod_ssl which is a known outage. Thanks. -Marc

determining if browser is on same machine as server

2007-05-09 Thread Sam Carleton
I am working on the access to my kiosk system, one condition I need to handle in a unique way is when a web browser is run on the same physical machine as Apache. It is obvious when using localhost or 127.0.0.1. But when the URL is the machine name, I seem to be getting an IP address. I do see

Re: determining if browser is on same machine as server

2007-05-09 Thread David Wortham
Sam, From what I know, which is not much, a server name could be any ID given to a computer. It could be an IP, it could be a domain or subdomain, or it could be any ID defined in a /etc/hosts or equivelent (which would only have to be defined on the visitor's computer). I believe this value

Re: determining if browser is on same machine as server

2007-05-09 Thread David Wortham
Sam, I knew I missed something. There is a C-string containing the local_ip of the server in the conn_rec struct. I believe the access from a request_rec would be r-connection-local_ip Dave On 5/9/07, David Wortham [EMAIL PROTECTED] wrote: Sam, From what I know, which is not much,