mod_perl + CSS

2002-11-19 Thread Brett . Gillett
Hiya everyone, Another newbie question, I have an apache server setup with two instances, one for static pages and one for mod_perl dynamic pages. I use HTML::Template to generate my content. I would like to use CSS for styling but I can't seem to get it to work with mod_perl. I am assuming

Re: RFC: Template::YetAnother

2002-11-19 Thread Robert Landrum
I've said it before... :) http://mathforum.org/epigone/modperl/zhixswahar/v04210105b76eecf6c2be@%5b192.168.1.3%5d Rob On Sat, Nov 16, 2002 at 10:33:44PM +0100, Thomas Klausner wrote: Hi! On Sat, Nov 16, 2002 at 03:31:39PM -0500, Perrin Harkins wrote: I also posted this on perlmonks:

am i heading for disaster... ?

2002-11-19 Thread Noam Solomon
In the process of building apache_1.3.27 / mod_perl 1.3.27 / openssl0.9.6g / mod_ssl mod_ssl-2.8.12-1.3.27 on a Solaris OS 2 UltraSparc, with Perl 5.8, the apache make failed because of an undefined "url_delims". I was using the method where you build mod_ssl, then build mod_perl, then

Re: Where do you specify APR::HOOK...

2002-11-19 Thread Erich Oliphant
Ok, thanks now it makes sense ;) It's in the mp2 docs and it wasn't clear if it was not implemeted or the docs were behind the code. Maybe you guys could stick a note on it or something. - Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Erich Oliphant [EMAIL PROTECTED] Cc:

Obfusacating the source

2002-11-19 Thread Francesc Guasch
I know it's not the way to go, but anyway I must do it. I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to

Re: Obfusacating the source

2002-11-19 Thread John Saylor
Hi ( 02.11.19 19:48 +0100 ) Francesc Guasch: The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. Call all variables 1 char names Replace all comments with 'comment here' -- .--- ...

Re: Obfusacating the source

2002-11-19 Thread Mark Fowler
I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. See Acme::Bleach http://search.cpan.org/author/DCONWAY/Acme-Bleach/lib/Acme/Bleach.pm It works by source filtering and encoding the source as whitespace chars. (see

Re: Obfusacating the source

2002-11-19 Thread Francesc Guasch
John Saylor wrote: Hi ( 02.11.19 19:48 +0100 ) Francesc Guasch: The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. Call all variables 1 char names Replace all comments with 'comment here' That looks like what

Re: Obfusacating the source

2002-11-19 Thread Thomas Klausner
Hi! On Tue, Nov 19, 2002 at 07:08:00PM +, Mark Fowler wrote: I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. See Acme::Bleach In fact you're probably better off using Acme::EyeDrops

Advice/Help with embedding perl

2002-11-19 Thread Richard Kandarian
Please forgive me this off topic post. I figure there are Perl embedding experts reading this list and I could use their help. Background: 1. I have embedded Perl in a (non open source) third party product using an API provided with the product. I've also written xsubs to the product API. We

Apache logging phase

2002-11-19 Thread Cure
I'm curious -- is there a way in mod_perl to skip the apache logging phase for certain directory or script request ? Cure

Re: Apache logging phase

2002-11-19 Thread Nick Tonkin
Not a mod_perl issue; in your apache conf do this: # I keep all images and javascripts etc under /_[something] SetEnvIf Request_URI /_ dontlog CustomLog /home/nick/logs/httpdlog common env=!dontlog - nick Nick Tonkin {|8^) On Tue, 19 Nov 2002, Cure wrote: I'm

References for modperl usage in financial institutions?

2002-11-19 Thread Marcin Kasperski
I am looking for some examples of modperl being used in financial institutions (banks, brokers, ... but also large e-commerce). I spent a few hours searching the internet but it seems such a information is not easily available. I am interested in both official and unofficial information.

How do I force a 'Save Window?'

2002-11-19 Thread Dennis Daupert
I have file upload working, can upload files of ascii or binary format. But a problem when you browse to a page that dynamically displays hyperlinks to files. Text and html files display normally in a browser, and Word docs popup MS Word as a helper app, and the word doc opens fine. But MS Project

Re: How do I force a 'Save Window?'

2002-11-19 Thread Tim Tompkins
You can always set the content type to application/octet-steam but I wouldn't expect IE to honor the content type. Regards, Tim Tompkins -- Programmer http://www.clipart.com/ http://www.rebelartist.com/ --

Re: How do I force a 'Save Window?'

2002-11-19 Thread Tim Tompkins
That should be stream not steam :) Regards, Tim Tompkins -- Programmer http://www.clipart.com/ http://www.rebelartist.com/ -- - Original Message - From: Tim Tompkins [EMAIL PROTECTED] To: [EMAIL

Re: How do I force a 'Save Window?'

2002-11-19 Thread siberian
Quick google search shows : http://www.utoronto.ca/webdocs/HTMLdocs/Book/Book-3ed/appb/mimetype.html Send the mime type as : application/vnd.ms-project I do this with excel using application/vnd.ms-excel and the marketing folks love it. So, you would have to provide a link to your modperl

Migrating from CGI.pm to Apache::Request question.

2002-11-19 Thread Coexec
Hello all, I have been searching through the mailing list archives for the answer to my question, but I have not found it. I am experienced with using the CGI.pm, and now I want to rewrite all of my CGI's using mod_perl and Apache::Request. According to everything that I have been reading, the

Re: References for modperl usage in financial institutions?

2002-11-19 Thread John Nienart
This is unofficial, since I haven't been affiliated with them for several years, but... Morgan Stanley Online (the discount brokerage, not the main corporate stuff - formerly Morgan Stanley Dean Witter Online, Discover Brokerage Direct, and Lombard Brokerage) switched from straight CGI to

Re: Migrating from CGI.pm to Apache::Request question.

2002-11-19 Thread Ken Y. Clark
On Tue, 19 Nov 2002, Coexec wrote: Date: Tue, 19 Nov 2002 15:40:37 -0800 (PST) From: Coexec [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Migrating from CGI.pm to Apache::Request question. Hello all, I have been searching through the mailing list archives for the answer to my question,

Re: References for modperl usage in financial institutions?

2002-11-19 Thread Gunther Birznieks
Does it have to be mod_perl in order to help your case? I gave a talk on Perl being used for webapps for investment banking at the 1999 Perl Conference and Morgan Stanley allowed a champion of Perl deliver a keynote at the OReilly Open Source Conference in the year 2000. But neither of us

RE: Migrating from CGI.pm to Apache::Request question.

2002-11-19 Thread Jesse Erlbaum
Hi Coexec -- I am experienced with using the CGI.pm, and now I want to rewrite all of my CGI's using mod_perl and Apache::Request. Maybe a silly question: What are you hoping to gain by doing this? If you're already using Apache::Registry, then your CGI.pm apps are ALREADY running as

RE: Obfusacating the source

2002-11-19 Thread Jesse Erlbaum
Hi Francesc -- I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. I have two

Re: How do I force a 'Save Window?'

2002-11-19 Thread Kevin Berggren
For IE 5.5, IE doesn't respect the Content-Disposition header and will prompt the user to save a file as foo.pl (or whatever the name of your script happens to be) M$ claims that this was fixed in IE 5.5 SP1. They document this bug (as fixed) here: