Re: Trying to reinstall Apache mod_perl

2004-11-11 Thread David Cantrell
On Wed, Nov 10, 2004 at 10:16:59PM -0500, Sherm Pendley wrote:
 On Nov 10, 2004, at 10:01 PM, David Dierauer wrote:
 You need to somehow restore the head command that was installed with
 your version of OS X. I'm not sure of the best way to accomplish this, 
 and
 I don't know if it's the best way or not, but I'd use Pacifist 
 http://www.charlessoft.com to extract it from the install media.

I'd ask someone on here with exactly the right version of OS X to email
me a copy.

-- 
David Cantrell | Benevolent Dictator Of The World

   Norton Wipe Info uses hexadecimal values to wipe files.  This
provides more security than wiping with decimal values. 
-- from the manual of Norton Systemworks 2002, pg 160


Re: Mac-Growl

2004-11-11 Thread Chris Nandor
Where can I find the application glue for Growl?  This is what I'm
getting:

You have to create it, as per the Mac::Glue docs, with gluemac.
GrowlHelperApp is located in
/Library/PreferencePanes/Growl.prefPane/Contents/Resources/.

-- 
Chris Nandor  [EMAIL PROTECTED]http://pudge.net/
Open Source Technology Group   [EMAIL PROTECTED] http://ostg.com/


Re: MOD_PERL and OSX

2004-11-11 Thread Chris Devers
On Thu, 11 Nov 2004, Mark S Lowe wrote:

 Thank you for your help! I added this module directive and still had 
 the piping problem with output unless I use the CGI module, but since 
 mod_perl perfers I do this, that is what I¹ll use. Thanks again!

Wait, I'm confused -- did this or did this not fix the problem? You make 
it sound like it didn't work, but you're using it anyway (unless I'm 
just being thick, which is possible, as it's been a long day...).


-- 
Chris Devers

Re: MOD_PERL and OSX

2004-11-11 Thread Chris Devers
Is it okay if we keep this conversation on the list?

On Thu, 11 Nov 2004, Mark S Lowe wrote:

 Ha! Well, I found that solution suggested on a site a couple weeks 
 ago, and added it to my mod_perl httpd.conf. Still, the good old 
 fashion
 
 Print ³content-type: text/html\n\n²;
 Print ³hello world\n²;
 
 Wouldn¹t work. So I have to use the CGI method of
 
 Header(³text/html²);
 $r-print(³hello world²);
 
 Having read a ton more about mod_perl, they suggest I use the latter 
 to gain the best performance boost. I¹m guessing I can remove this TIE 
 code and just follow the rules better.
 
 =)

Ahh, I see. Weird, but if it works...

 

-- 
Chris Devers

BBEdit as HTML validator back end?

2004-11-11 Thread John Horner
I would like to be able to install a browser-based HTML validator on 
my OSX web server, like the W3C:

 http://validator.w3.org/source/
or WDG:
 http://www.htmlhelp.com/tools/validator/source.html
validators.
It's possible to install these tools on LINUX using PPM but being 
able to hack them and the associated C libraries to work on OSX is 
way beyond my capabilities.

But then it occurred to me I already have an application which does 
HTML validation which works on OSX - BBEdit. Is it a crazy idea that 
it might be possible to pipe a file or string to BBEdit's Check 
Syntax command and retrieve the output? Where would I start with 
something like that?


Re: BBEdit as HTML validator back end?

2004-11-11 Thread Sherm Pendley
On Nov 11, 2004, at 7:06 PM, John Horner wrote:
I would like to be able to install a browser-based HTML validator on 
my OSX web server, like the W3C:

 http://validator.w3.org/source/
Instructions for that one are only a couple clicks away:
http://www.mediaville.net/articles/validator/
It's possible to install these tools on LINUX using PPM
I think you're confused - Linux is not an ancronym, and PPM is for 
Windows. :-)

sherm--