Re: cookie managerment

2003-09-05 Thread Matt Sergeant
telling them to turn on cookies. - Otherwise send them back to the page that sets the cookie (usually a login page). It's a simple scheme, and relies on Referer which everyone will now tell me is bad, but it does work. Matt. -- Reporting bugs: http://perl.apache.org/bugs/

Re: $r->headers_out Location and Set-Cookie

2003-08-14 Thread Matt Sergeant
the browser will register the cookie - Set-Cookie + Location is not compatible (generally - some browsers will accept the cookie). Matt.

ANNOUNCE: AxKit 1.6.2

2003-07-29 Thread Matt Sergeant
The AxKit Development Team are proud to announce the release of AxKit 1.6.2. This release is a minor bug fix and small features release. You can download AxKit 1.6.2 from http://xml.apache.org/dist/axkit/ or via a CPAN mirror once CPAN propogates. Changes in this release: - Made processors add

Re: templating system opinions (axkit?)

2003-07-28 Thread Matt Sergeant
On Mon, 28 Jul 2003, Andy Wardley wrote: > Jean-Michel Hiver wrote: > > Because Petal templates have to be well-formed XML, > > XML syntax is crufty at best. There's a lot in XML that is needless, but like perl still has a dump() function, we just say "don't use that then". At it's core, XML is a

Re: templating system opinions (axkit?)

2003-07-23 Thread Matt Sergeant
fline tools. It's also worth saying: never listen to hype. Evaluate solutions based on your criteria. AxKit matches mine but it doesn't mean it will match yours. Matt.

Re: templating system opinions

2003-07-21 Thread Matt Sergeant
bperl, and Apache::ASP all seem to have reasonably active user bases as well. And lets not forget XML templating solutions too, like XSLT, which probably out scores them all in job postings terms (although not all that work is perl related). Matt. (you can of course use XSLT in AxKit :-)

RE: [mod_perl] Re: Content compression FAQ

2003-07-14 Thread Ross Matt-QMR000
I like to be removed from this list but the un-scribe does not work for me. the problem is the mail address that I used way back when has been aliases. -Original Message- From: Jonathan M. Hollin [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:37 AM To: Slava Bizyayev; mod_perl Mai

Re: Newbie question about mod_perl capabilities

2003-07-08 Thread Matt Sergeant
ST in the request line: CONNECT mail.openrelay.com:25 HTTP/1.1 I *think* mod_perl will be able to intercept this, but I've never tried it. You might need to do it very early on in the request, and make sure it gets passed through to mod_proxy later on or things just won't work. Matt.

RE: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
th of you can recommend a good charity I will make a small donation for your time. Again thanks Matt -Original Message- From: Dennis Stout [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 19:28 To: Matt Corbett Subject: Re: Please help newbie with Module problem. > I don't have a Pe

RE: FW: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
Randy, Does'nt seem to make any difference. Matt -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 19:39 To: Matt Corbett Cc: [EMAIL PROTECTED] Subject: Re: FW: Please help newbie with Module problem. On Wed, 2 Jul 2003, Matt Corbett wrote: >

FW: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
Randy, Good idea about the archive. I will do so. Yes, mod/perl/html scripts are fine except if I try to use Apache::Request. I can even 'use' it but the problem arises when I try to utilise it with the 'new' method. Matt -Original Message- From: Randy Kobes [mai

Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
ceive the message Can't locate object method "new" via package "Apache::Request" (perhaps you forgot to load "Apache::Request"?) at c:\apache\cgi-bin\ap2.pl line 6. This prob has been with me a weeka nd I just don't seem to be able to find a resolution.   Matt  

RE: MS SQL Server

2003-06-18 Thread Matt Sergeant
On Wed, 18 Jun 2003, FARRINGTON, RYAN wrote: > omg... linux people using MS SQL servers? shame on you... =) I hold in one hand the option of taking a pager home with me. In the other hand is using MS SQL Server and giving support over to our 24/7 DBAs. Which would you choose? -- <:->get a SMa

Re: MS SQL Server

2003-06-18 Thread Matt Sergeant
On Wed, 18 Jun 2003, Cosimo Streppone wrote: > > Any gotchas I should be aware of? I have a very high performance > > requirements application (millions of hits/day) and I need to know the > > architecture can cope with it (the alternative being PostgreSQL). > > Sorry if I mention obvious things,

MS SQL Server

2003-06-18 Thread Matt Sergeant
Anyone got any experience of doing MS SQL Server from mod_perl on Linux (via the FreeTDS drivers)? Any gotchas I should be aware of? I have a very high performance requirements application (millions of hits/day) and I need to know the architecture can cope with it (the alternative being PostgreSQL

RE: Convert Cookies-->HTTP Request Headers?

2003-04-06 Thread Kruse, Matt
he file to be evaluated, >and avoid restarts. True, that would work also, but it would still require modifying a file each time. With this cookie solution, I can create a fake "login" page which will set the appropriate cookies in _javascript_ and also allow for simulating "logout" by clearing the cookie. Matt

Convert Cookies-->HTTP Request Headers?

2003-04-04 Thread Kruse, Matt
esting, ie, I need to change httpd.conf and re-start the server to test different header scenarios. Thanks! Matt Kruse

Re: MaxRequestsPerChild; which request am I?

2003-04-04 Thread Matt
hase = $r->current_callback; if ($phase eq 'PerlChildInitHandler') { $reqCtr = 0; } if ($phase eq 'PerlHandler') { $reqCtr++; } Or, you could use a note and skip the global scalar. I don't think mod_perl has direct access to the current count (at least not in mp1). Matt

Re: Cross Site Scripting

2003-03-11 Thread Matt Sergeant
On Tue, 11 Mar 2003, Clinton Gormley wrote: > On Tue, 2003-03-11 at 06:03, Stas Bekman wrote: > > > Changes since 0.7 > > > > * prevent cross-site scripting, now HTML-escaping the request field > > > > In Stas' Apache::VMonitor announcement, he mentions changes to prevent > cross site scripting. >

[mp2] disabling a perl handler within a specific location

2003-03-03 Thread Matt Avitable
This is all development software I'm working on, so I'm free to change alot. Thanks! -m ## Matt J. Avitable ([EMAIL PROTECTED]) ## General Partner / Programmer ## Escapement Arts And Media ## http://www.escapement.net/ ## Phone: (804) 400-0605

Re: How do I convert HTML to PDF

2003-02-26 Thread Matt Sergeant
On Wednesday, Feb 26, 2003, at 17:41 Europe/London, Chris Pizzo wrote: Hi All, I want to take an Invoice that exists as an html doc and convert it to a PDF file to attach to an email. I have been looking at DocSet but this seems better suited for large documents. Any help? Check out HTMLDoc. h

Re: child-parent memory access / mod_perl / shared mem / inter-proccess communication , etc..

2003-02-24 Thread Matt Sergeant
I know tried this and discovered that XML::LibXML/LibXSLT parses stylesheets *so* fast that it made zero difference to them to cache the stylesheets in memory (shared or otherwise). Try it. You may discover you don't need all this caching. Matt.

RE: child-parent memory access / mod_perl / shared mem /inter-proccesscommunication , etc..

2003-02-24 Thread Matt Sergeant
On Mon, 24 Feb 2003, Jim Morrison [Mailing-Lists] wrote: > Hmm.. Yes, it sounds pretty sketchy to me too! Immediately what I am > playing with is the idea of keeping parsed XML (XML::LibXML)in memory > between requests. Is this a completely barmy idea? Probably, because you'll confuse XML::LibX

Re: [ANNOUNCE] libapreq-1.1 is out

2003-01-31 Thread Matt Sergeant
On Thursday, Jan 30, 2003, at 22:36 Europe/London, Stas Bekman wrote: Matt, Apache::Test may not work when run under root, because Apache won't let you start the server as 'User root' so it tries to use 'nobody' or something else as the username the server runs under

Re: [ANNOUNCE] libapreq-1.1 is out

2003-01-31 Thread Matt Sergeant
On Thursday, Jan 30, 2003, at 22:51 Europe/London, Stas Bekman wrote: Matt Sergeant wrote: [...] It would help to know your platform details. We tried to eliminate all segfaults related to perl-5.8.0, but in the process we may have introduced new ones. perl 5.00503 on RH 6.2 and mod_perl 1.26

Re: [ANNOUNCE] libapreq-1.1 is out

2003-01-30 Thread Matt Sergeant
On Thursday, Jan 30, 2003, at 14:46 Europe/London, Joe Schaefer wrote: Matt Sergeant <[EMAIL PROTECTED]> writes: On 28 Jan 2003, Joe Schaefer wrote: libapreq-1.1 is now available on CPAN, and also through the Apache website at http://www.apache.org/dist/httpd/libapreq/libapreq-1.1.

Re: [ANNOUNCE] libapreq-1.1 is out

2003-01-30 Thread Matt Sergeant
On 28 Jan 2003, Joe Schaefer wrote: > > libapreq-1.1 is now available on CPAN, > and also through the Apache website at > > http://www.apache.org/dist/httpd/libapreq/libapreq-1.1.tar.gz Failed badly to install for me. First of all it won't install via the CPAN shell as root because the test har

Re: [mod_perl] Re: OSCON ideas

2003-01-10 Thread Matt Sergeant
On Fri, 10 Jan 2003, Jonathan M. Hollin wrote: > Matt Sergeant wrote: > > I've done a lot on bayes for spam (I had an effective bayesian filter before > > Paul Graham wrote his article on the subject), but there's not much in it > > for a full talk. Maybe a lightn

Re: OSCON ideas - MVC talk

2003-01-09 Thread Matt Sergeant
On Wed, 8 Jan 2003, Nathan Torkington wrote: > Ask Bjoern Hansen writes: > > On Wed, 8 Jan 2003, Perrin Harkins wrote: > > Like Perrin I would like feedback on the idea before putting in my > > proposal. > > I've also been asked if anyone has a wishlist of talks they'd like to > see at the confere

Re: mod_perl and apache instll ok, but....

2003-01-05 Thread Matt Lopresti
If you are seeing the mod_perl token in the server response headers or the server startup: http://perl.apache.org/docs/1.0/guide/install.html#Checking_the_error_log http://perl.apache.org/docs/1.0/guide/install.html#Testing_via_telnet but not in the script: http://perl.apache.org/docs/1.0/guide/

Re: mod_perl and apache instll ok, but....

2003-01-05 Thread Matt Lopresti
I am worried about the ENV{MOD_PERL} var not being set. What would cause that not to get set? Is it a perms issue? In the conf file the User is nobody and the Group is nobody. I am doing the entire make as root. Stas Bekman wrote: Matt Lopresti wrote: I am using RedHat 7.2, apache 1.3.27

mod_perl and apache instll ok, but....

2003-01-05 Thread Matt Lopresti
APACHE_SRC=../apache_1.3.27/src \ DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 (I have also used the USE_DSO=1) % make && make test && make install % cd ../apache_1.3.27 % make installd Thanks in advance. Matt

Found a fix... but it's ugly

2002-09-04 Thread Matt Harris
Here's the trouble I had to go through to fix this (I got it to work, but I'm still searching for a better way - this is ugly as sin). Re-ran my apache configure with a -L in my LIBS for /usr/local/lib/perl5/5.6.1/sun4-solaris/CORE This got rid of all of the errors but one - something about Dyn

Re: Compilation error doing 'make' in the apache 1.3.26directory

2002-09-04 Thread Matt Harris
> > You might want to tell the list, unless I missed it in your post. > > -Original Message- > From: Matt Harris [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 04, 2002 10:15 AM > To: [EMAIL PROTECTED] > Subject: Compilation error doing 'make' in

Compilation error doing 'make' in the apache 1.3.26 directory

2002-09-04 Thread Matt Harris
t find anything about this on the perl.apache.org docs search engine, or with a simple google search. I'm probably just missing something simple/stupid. This is a Solaris 8/SPARC box. Any help is appreciated. - Matt Command being run by make which generates the error: gcc -DSOLARIS2=280 -I/

Re: NTLM module

2002-08-13 Thread Matt Sergeant
Can you guys please snip the emails down to the relevant information? Having to scroll past lots of rubbish at the end of the email gets annoying (and I'm not even a digest subscriber). Thanks.

Re: *****SPAM***** Re: Modperl! Your spam awaits you

2002-08-04 Thread Matt Sergeant
>> And of course, send whatever info we can to the RBL folks > > SpamAssasin does that - when a user gets spam which isn't flagged, > he's supposed to send it to a 'sightings' address. Matt, is that > still right? I'm still sending the stuff... &g

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
glib to access the values easily, that's all. Matt.

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
There's the AxKit one, which does something pretty similar - AxKit::XSP::Session I think it's called. On Fri, 2 Aug 2002, Enrico Sorcinelli wrote: > Hi all, > > I would like to propose a new Apache module before I send it off to > CPAN. The namespace I've chosen is Apache::SessionManager. > > Th

Re: [ANNOUNCE] Petal 0.1

2002-07-17 Thread Matt Sergeant
On Wed, 17 Jul 2002, Jean-Michel Hiver wrote: > My only problem deals with template caching. Currently Petal does the > following: > > * Generate events to build a 'canonical' template file > * Convert that template file to Perl code > ** Cache the Perl code onto disk > * Compiles the Perl code a

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Matt Sergeant
On 12 Jul 2002, Randal L. Schwartz wrote: > Oh, and add Template Toolkit (www.tt2.org) to that list. You mean like this: > Matt> EmbPerl, TT, Mason, AxKit, ASP, etc... Perhaps live sites is a more ^^ ;-) -- <:->Get a smart net

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Matt Sergeant
On Fri, 12 Jul 2002, David Kaufman wrote: > i still notice, however that the *content* of the "Sites Running mod_perl" > page doesn't seem to have been updated. about 6 months ago, i sent notices > about two sites that we (Vanguard Media) had launched to the email address > that used to be on th

Re: Working Directory

2002-07-11 Thread Matt Sergeant
On Fri, 12 Jul 2002, Stas Bekman wrote: > Josh Bernstein wrote: > >After just upgrading to mod_perl2 with Apache2. My current @INC path > > includes a "." on the end, which should reference the current working > > directory, and therefore correctly locate include locate in the script's > > w

Re: Propogating Errors / E-Toys

2002-07-10 Thread Matt Sergeant
On Wed, 10 Jul 2002, Perrin Harkins wrote: > Matt Sergeant wrote: > > On Wed, 10 Jul 2002, Fran Fabrizio wrote: > >>Just to confirm, the end result of Matt's slide presentation was that > >>Error.pm was good, and you should use it, but you should not use the >

Re: Propogating Errors / E-Toys

2002-07-10 Thread Matt Sergeant
On Wed, 10 Jul 2002, Fran Fabrizio wrote: > > Just to confirm, the end result of Matt's slide presentation was that > Error.pm was good, and you should use it, but you should not use the > try/catch syntax, or at the bare minimum only catch in your outermost > handler. Is that correct? We were

Re: Propogating Errors / E-Toys

2002-07-09 Thread Matt Sergeant
On Wed, 10 Jul 2002, Michael Schout wrote: > Perrin Harkins wrote: > > > > We've actually discussed this on the list. It has to do with closures. > > Matt gave a presentation about exception handling which covers it and > > shows a workaround. You can see i

Re: XML::Xalan, Perl modules and bootstrapping... :-s

2002-07-05 Thread Matt Sergeant
the fastest there are available - I think some people's tests now show them to be faster even than Microsoft's (which was always the benchmark to beat). I do still wonder why people get the impression you were given - it's widely known that the C version of Xalan is appallingly slow - slower even than it's Java counterpart. Matt.

Re: perl xml api's

2002-06-21 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Saturday 22 June 2002 12:57 am, [EMAIL PROTECTED] wrote: > Hi, My Mission(must accept it) is to retrieve xml-formatted mail, parse > thru char-sets in msg-body, if chars out of ascii range: generate err msg. > > While I wade thru the apis could any

Re: separating C from V in MVC

2002-06-14 Thread Matt Sergeant
On Fri, 14 Jun 2002, Nigel Hamilton wrote: > > A) a ridiculously flexible interface that looks sort of like SQL, except > > where it is SQL, except where it's only sort of like SQL, etc. > > > > B) a ridiculous profusion of classes, methods, or both. > > > > SQL has its place, and Alzabo merely p

Re: threads in 5.8 (was: mod_perl2.0 / TIPool)

2002-06-13 Thread Matt Sergeant
On Thursday 13 June 2002 11:50 pm, John Siracusa wrote: > On 6/13/02 6:40 PM, Matt Sergeant wrote: > >> Does anyone know the logic behind making the threads modules all > >> lowercase? I'd expect it to be Threads::Shared, not threads::shared. > > > > Prag

Re: threads in 5.8 (was: mod_perl2.0 / TIPool)

2002-06-13 Thread Matt Sergeant
On Thursday 13 June 2002 11:37 pm, John Siracusa wrote: > On 6/13/02 5:58 PM, Matt Sergeant wrote: > > Also note perl.com is now running an article on threads::shared. > > > > http://www.perl.com/pub/a/2002/06/11/threads.html > > > > It's mainly aimed

Re: mod_perl2.0 / TIPool

2002-06-13 Thread Matt Sergeant
On Thursday 13 June 2002 10:46 pm, Doug MacEachern wrote: > On Thu, 13 Jun 2002, Stathy G. Touloumis wrote: > > Is there an idea of when the TIPool API will be available for mod_perl > > 2.0? > > probably never now that threads::shared has been implemented in perl-5.8, > which can be used to provi

Re: XML vs Perl (Re: separating C from V in MVC)

2002-06-13 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thursday 13 June 2002 6:20 am, Rob Nagler wrote: > Matt Sergeant writes: > > > This assumes you need XML in the first place. > > > > No, it does not. The rest of my post spoke about XML as a > > data format and

Re: separating C from V in MVC

2002-06-11 Thread Matt Sergeant
On Wednesday 12 June 2002 4:09 am, Rob Nagler wrote: > Matt Sergeant writes: > > There's quite a few things that are a lot harder to do with XML in > > plain perl (especially in SAX) than they are in XSLT. > > This assumes you need XML in the first place. No, it doe

Re: separating C from V in MVC

2002-06-11 Thread Matt Sergeant
On Tue, 11 Jun 2002, Ward Vuillemot wrote: > I know we are straying WOT, but I would love to get a better feel for > XML, XSLT and AxKit. There are a lot of different systems out there. . > .and part of me wants to just do it my way (in large part to learn), but > I also realize that I really wa

Re: separating C from V in MVC

2002-06-10 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 10 June 2002 11:23 pm, Vuillemot, Ward W wrote: >: Really interesting, xml >: appears to be >: the final destination for most of us, even if now i >: prefer objects. >: >: Ciao, Valerio > > That is my big questio

Re: separating C from V in MVC

2002-06-10 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 10 June 2002 11:09 pm, Valerio_Valdez Paolini wrote: > On Mon, 10 Jun 2002, James G Smith wrote: > > I'm working on a framework that will use the Mason component as the > > controller, Perl modules as the model, and either Mason components o

ANNOUNCE: AxKit 1.6

2002-06-10 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 AxKit 1.6 is out. I'll save you all the hoopla in the announce in case people are subscribed to both this list and the AxKit list. Instead here's a link: http://axkit.org/cgi-bin/ezmlm-cgi?3:mss:4164:gckddipdnjdnhmddncgd> Enjoy ;-) - -- <:->get

Re: separating C from V in MVC

2002-06-07 Thread Matt Sergeant
r that you use SAX. I disagree with you in all uses of transforming an XML tree into another XML tree. Right tool for the job, as always. Matt.

Re: Confusion: Perl/mod_perl ????

2002-05-30 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 31 May 2002 4:09 am, Stas Bekman wrote: > Actually the new site (which should be released realy soon now) has a > nice and easy intro to mod_perl (thanks to Bill Moseley and others who > helped): > > http://perl.apache.org/release/start/inde

Re: [OT] Re: "back-tracking"

2002-05-27 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 28 May 2002 12:51 am, Andrew McNaughton wrote: > > See: > > Combinatorial Algorithms > > Nijenhuis and Wilf > > Academic Press > > 0-12-519260-6 (1975) > > P 240 > > I've got a different problem. I want to auto-link phrases which appear in

Re: Strange subrequest dir_config issue

2002-05-24 Thread Matt Sergeant
On Thu, 23 May 2002, Geoffrey Young wrote: > Matt Sergeant wrote: > > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > This is just a heads up on something I've not seen documented in either the > > Eagle book or in the Cookbook (at least not

Strange subrequest dir_config issue

2002-05-21 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This is just a heads up on something I've not seen documented in either the Eagle book or in the Cookbook (at least not that I can find). If you create a subrequest via $r->lookup_file(), the per_dir_config entry doesn't seem to be created. If you

Re: Memory Leaks

2002-05-20 Thread Matt Sergeant
etc..? It's very rare to have a site that can't cope with just a few seconds downtime. Most users won't even notice, save for some slight delay in getting their request through. Users tend to be pretty used to trying again in this world of "reliable" computing. Matt.

Re: Memory Leaks

2002-05-20 Thread Matt Sergeant
On Mon, 20 May 2002, Mark Fowler wrote: > On Mon, 20 May 2002, Matt Sergeant wrote: > > > if ($@ && $@->isa('Exception::DB')) { > >debug "Exception: $@"; > >$um->dbh->rollback; > > } > > > > (note: if you e

Re: Memory Leaks

2002-05-20 Thread Matt Sergeant
On Mon, 20 May 2002, F. Xavier Noria wrote: > On Mon, 20 May 2002 10:15:02 +0100 (BST) > Matt Sergeant <[EMAIL PROTECTED]> wrote: > > : > my $um = UserManager->new; > : > # ... > : > try { > : > $um->write_user($user); > : >

Re: Memory Leaks

2002-05-20 Thread Matt Sergeant
On Mon, 20 May 2002, F. Xavier Noria wrote: > On Sun, 19 May 2002 23:34:24 -0400 > "Perrin Harkins" <[EMAIL PROTECTED]> wrote: > > : Leaks are caused by circular references, the string form of eval (at > : least it used to leak a little), nested closures (sometimes created > : accidentally with t

Re: Apache::Leak

2002-05-19 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 20 May 2002 2:47 am, Gregory Matthews wrote: > Hello again. > > Is Apache::Leak the easiest/best module to use for both detecting AND > allowing us to find the source of a memory leak in mod_perl? No - it's a nightmare. To debug memory lea

Re: we need mod_perl banners

2002-05-14 Thread Matt Sergeant
banner or button (it's resizable - do a view-source for some details). Matt.

Re: we need mod_perl banners

2002-05-14 Thread Matt Sergeant
logo! > should be 88x31px or something like that. I made SVG that was perfect for the button. I'm not sure why nobody took a snapshot of it. http://take23.org/modperl.svg Matt.

Re: XML::LibXSLT / Apache / MOD_Perl Segfaults

2002-04-30 Thread Matt Sergeant
on in LibXSLT. Just don't load it that way - you're not winning much by trying to make it shared anyway (because it's mostly XS/C code, rather than perl code). Matt.

ANNOUNCE: AxKit 1.5.2

2002-04-24 Thread Matt Sergeant
AxKit 1.5.2 is out. Minor bug fixes and small feature changes. http://axkit.org/ - Allow AxKit to handle directory requests. - Fixed all Language modules to return 200/OK - Added AxIgnoreStylePI directive - Ported AxPoint to use XML::Handler::AxPoint - TaglibHelper taglibs no longer need

PPerl performance example

2002-04-21 Thread Matt Sergeant
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In case anyone is interested in PPerl as an alternative where mod_perl might be too hard to get installed, I have done some very *very* simplistic benchmarking to show the performance differences. Here's the script I used: use strict; use Data:

Re: Throttling, once again

2002-04-18 Thread Matt Sergeant
eachable place (by a human), for example using something like . And then ban that via robots.txt. And then automatically update your routing tables for any IP addresses that try and visit that URL. Just a thought, there's probably more to it. Matt.

[OT] [ANNOUNCE] PPerl 0.04

2002-04-16 Thread Matt Sergeant
et me know what you think, and if you find bugs or anything like that. Cheers, Matt. - -- <:->get a SMart net -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjy71NMACgkQVBc71ct6OywLngCglzRm6f7/JqsXW8Km6+3retTh qxoAoON

Re: [OT] [ANNOUNCE] mod_log_sqlite

2002-04-15 Thread Matt Sergeant
On Mon, 15 Apr 2002, Perrin Harkins wrote: > Tatsuhiko Miyagawa wrote: > > Announcing new Apache module (written in C): > > > > mod_log_sqlite is an Apache logging module for sqlite database. It > > allows you to log your HTTP stats into sqlite, then you can do queries > > using sqlite's SQL feat

Re: Content management systems

2002-04-08 Thread Matt Sergeant
On Tuesday 09 April 2002 7:53 am, Matthew Watson wrote: > Heya. > > I was wondering if there are any content management systems around for > modperl , i'm after a similar kind of thing > as postnuke for php. I'd much rather something 'out of the box' as I don't > have time to develop a system fro

Re: take23.org 500 internal server error (probably OT)

2002-04-08 Thread Matt Sergeant
On Monday 08 April 2002 7:44 pm, David Nelson wrote: > Hello all, > > Thanks to everyone for helping promote open source! > What a great feeling it is to be a part of this > movement. http://www.take23.org is down due to an > internal server error at the moment. If anyone knows > who maintains t

Re: mod_perl Cook Book

2002-04-05 Thread Matt Sergeant
On Fri, 5 Apr 2002, Rasoul Hajikhani wrote: > Hello folks, > Has anyone purchased the mod_perl cook book from this list? If so, what > do you think of it? Is it a good buy? Appreciate feed back. I have two copies, as the one at work keeps getting borrowed. I would say it's different to the Eagl

Re: Apache and Perl with Virtual Host

2002-03-22 Thread Matt Phelps
Allow from all Bill Marrs wrote: > At 04:02 AM 3/14/2002, Matt Phelps wrote: > >> Forgive me if I'm posting to the wrong group. I"ve got apache 1.3.22 >> running several virtual webs. I can get perl scripts to run under the >> default web but not in the others.

SVG version of logo

2002-03-18 Thread Matt Sergeant
Animated version of the new mod_perl logo: http://take23.org/modperl.svg If you want a button, download it and change the width/height attributes to 100 x 22 (or smaller/larger as appropriate). -- <:->Get a smart net

Re: [ANNOUNCE] The New "mod_perl" logo - results now in...

2002-03-17 Thread Matt Sergeant
On Mon, 18 Mar 2002, Steve Piner wrote: > I definitely agree with this. I'd like to see some more colour > variations (maybe just background colours even) to allow it to fit into > a site's design better. > > Jonathan asked whether we should have just one button, or several. I'd > say just one th

Re: [ANNOUNCE] The New "mod_perl" logo - results now in...

2002-03-17 Thread Matt Sergeant
OK, here's my attempt at SVGing the logo. Works in Adobe's SVG viewer (Linux and Windows). I'll work on animating it next (making the cog spin). -- <:->Get a smart net mod_perl logo Michael Demers' mod_perl logo mod perl

RE: [ANNOUNCE] The New "mod_perl" logo - results now in...

2002-03-15 Thread Matt Sergeant
On Fri, 15 Mar 2002, Jonathan M. Hollin wrote: > :: Is the logo available in a vector file format so that we can > :: easily make > :: scaled copies of it? Or are we restricted to the pixel banners that > :: currently exist? > > All I have is non-vector JPEG. Again, I'll ask Michael. If we can

Apache and Perl with Virtual Host

2002-03-14 Thread Matt Phelps
xt display. Any help would be great. Thanks Matt

Re: performance testing - emulating real world use

2002-03-12 Thread Matt Sergeant
On Tue, 12 Mar 2002, Jauder Ho wrote: > > Another application (commercial) is Mercury Interactive's LoadRunner. It > actually records events and plays it back on "load generator" machines. > It's fairly complex, has LOTs of knobs to turn and can load test quite a > bit more than just web apps, I

Re: ANNOUNCE: Apache::Watchdog::RunAway v0.3

2002-02-28 Thread Matt Sergeant
On Fri, 1 Mar 2002, Stas Bekman wrote: > > The uploaded file > > Apache-Watchdog-RunAway-0.3.tar.gz > ^^^ > * this module has spent enough time in alpha/beta incubator => going 1.0. ^^^ So wh

Re: XML::Twig

2002-02-28 Thread Matt Sergeant
On Thu, 28 Feb 2002, Stathy G. Touloumis wrote: > Hi, > > Has anyone experienced problems when using the XML::Twig with mod_perl? > Everything works fine outside a mod_perl environment but when attempting to > perform the same functionality in mod_perl the child process seg faults even > when usi

Re: choice of mod_perl technology for news site

2002-02-06 Thread Matt Sergeant
ld ask the developers to be sure. > > If you talk w/ Matt, he'll be sure to hawk AxKit. But then that's Matt. And > AxKit really is cool stuff. :-) Well I'd rather recommend whatever works for people. Bricolage certainly seems full featured, and it looks easy enough to add XS

Using a PerlHandler for ErrorDocument

2002-02-02 Thread Matt
ix) mod_gzip/1.3.19.1a mod_perl/1.26 mod_ssl/2.8.5 \ OpenSSL/0.9.6b Cheers Matt -- "Phased plasma rifle in a forty-watt range?" "Hey, just what you see, pal"

Re: modperl growth

2002-02-02 Thread Matt Sergeant
On Sat, 2 Feb 2002, Robin Berjon wrote: > Hi, > > I thought that some of you might find this graph interesting: > > http://www.securityspace.com/s_survey/data/man.200201/apachemods.html?mod=cGVybA== > > For some reason, in December, it would seem that modperl just jumped ahead in > market share (

Re: [OT] Re: mod_perl Developer's Cookbook (and Amazon)

2002-02-02 Thread Matt Sergeant
On Sat, 2 Feb 2002, Paul Lindner wrote: > On Sat, Feb 02, 2002 at 10:03:09AM -0600, Mike808 wrote: > > > Joe Brenner wrote: > > > > Spend only $4 more, and you too can show your disgust for > > > > software patents. > > > > Worth every penny. > > I'm against frivolous patents myself. It harms th

Re: Apache::args vs Apache::Request speed

2002-02-01 Thread Matt Sergeant
On 1 Feb 2002, Joe Schaefer wrote: > Would someone PLEASE volunteer to try to compile and test > apache+mod_perl & libapreq on OS/X using the experimental > code I posted there? Even if you can't get it working, > ANY feedback about what happened when you tried would be > VERY helpful. OK, if s

mod_perl Developer's Cookbook

2002-01-30 Thread Matt Sergeant
My copy just arrived! I'll try and get through most of it as fast as I can and post a review. Congrats Geoff, Paul and Randy. Looks great at first glance. -- <:->Get a smart net

Re: Dynamically serving an .htaccess file with mod_perl

2002-01-28 Thread Matt Sergeant
On Mon, 28 Jan 2002, Michael A Nachbaur wrote: > Hello all, > > Does anyone know of a way that I can server the contents of an .htaccess > file dynamically? I know Apache checks the request directory (and all > directories above it) for an .htaccess file before serving a file request, > but ther

Re: performance coding project? (was: Re: When to cache)

2002-01-25 Thread Matt Sergeant
On 25 Jan 2002, David Wheeler wrote: > On Fri, 2002-01-25 at 09:08, Perrin Harkins wrote: > > > > > It's much better to build your system, profile it, and fix the bottlenecks. > > The most effective changes are almost never simple coding changes like the > > one you showed, but rather large thin

RE: handling eval in ePerl

2002-01-21 Thread Matt Sergeant
erl::Evaluate() : > local $SIG{'__DIE__'} = sub { $error .= $_[0]; }; Yuck. People really need to stay away from $SIG{__DIE__} unless they *really* know what they're doing. Matt. This e-mail has been scanned

Re: handling eval in ePerl

2002-01-20 Thread Matt Sergeant
On Mon, 21 Jan 2002, Mithun Bhattacharya wrote: > Perrin Harkins wrote: > > > Umm I didnt mean to offend anyone in my previous posting - I did say I > probably hadnt presented my situation properly. I don't think anyone was offended. Perrin was just trying to help you see why people might not ha

Re: RFC: Exception::Handler

2002-01-14 Thread Matt Sergeant
On Mon, 14 Jan 2002, Rob Nagler wrote: > > I'm afraid I don't get it - isn't it what the "finally" functionality > > in Error.pm (CPAN) does ? > > > > try { > > stuffThatMayThrow(); > > } finally { > > releaseResources(); > > }; > > One reason for exceptions is to separate error h

Re: formmail spammers

2002-01-13 Thread Matt Sergeant
On Sat, 12 Jan 2002, Perrin Harkins wrote: > > http://www.spamassassin.org/ > > > > Without a doubt, the best anti-spam solution around. > > That looks great for solving the problem on my own account, but the > larger problem is that there are all of these insecure installations of > formmail.pl

  1   2   3   4   5   6   7   8   9   10   >