Re: [MacPerl] Re: MacPerl::DoAppleScript and Perl v5.10.0

2011-03-08 Thread Chris Nandor
n't work unless you tell it to use 32 bits!). > You might try osascript instead. Yes, although it's usually significantly slower, and slightly more error-prone (because of the shell interface). -- Chris Nandor pu...@pobox.com http://pudge.net/ 360-474-5090

[MacPerl] MacPerl != Perl on Mac OS X

2011-03-07 Thread Chris Nandor
Hi folks, Just pointing out that this mailing list is not for Mac OS X perl, but for MacPerl, the app that runs on Mac OS (Classic). There's a separate mac...@perl.org mailing list for Mac OS X. http://lists.perl.org/list/macosx.html -- Chris Nandor pu...@pobox.com http://pudge.net/

Re: [MacPerl] building DBD::mysql on Mac OS X 10.4.9

2007-06-07 Thread Chris Nandor
Hi Mark, try the [EMAIL PROTECTED] list. This is for MacPerl, the implementation of perl for "Classic" Mac OS. -- Chris Nandor [EMAIL PROTECTED] http://pudge.net/ Slashdot / SourceForge [EMAIL PROTECTED] http://slashdot.org/

Re: [MacPerl] Trying to install DBD::Pg

2007-04-30 Thread Chris Nandor
Hi Tom, The macperl@perl.org list is for MacPerl, an implementation of MacPerl for Mac OS 7-9. You want [EMAIL PROTECTED], a list for perl on Mac OS X. Cheers, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Technology Group [EMAIL PROTECTED

Re: [MacPerl] GnuPG::Interface module on OS X

2006-09-19 Thread Chris Nandor
This list is for MacPerl, which is a program that runs under Mac OS 7-9, and the "Classic" environment in Mac OS X. You want the macosx@perl.org mailing list. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Technology Group [EMAIL

Re: [MacPerl]Mac-Carbon (was: How can I display a number in dual representation, e.g. 29 --> 11101?)

2005-03-04 Thread Chris Nandor
for such a thing? If all you need is a nice UI to run perl under, try TextWrangler, a free "Lite" version of BBEdit for Mac OS X. >or is it some more sophisticated approach >and to have a connection to what is "Inside Macintosh"? Mac::Carbon is just some of the same

Re: [MacPerl] How can I display a number in dual representation, e.g. 29 --> 11101?

2005-03-04 Thread Chris Nandor
, for the sake of that manpage. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/

RE: [MacPerl] macperl bug?

2004-12-16 Thread Chris Nandor
At 8:51 + 2004.12.15, THEARTOFWEB PRODUCTION wrote: >eureka! > >it seems like i've sorted it out! Great, good work. >local $SIG{NUM13} = 'IGNORE'; > >what the hell is $SIG{NUM13} ??? No idea. :) -- Chris Nandor [EMAIL PROTECTED]

Re: [MacPerl] Calling MS Excel in perl

2004-12-02 Thread Chris Nandor
t list seems to have more active participants, so you might be more likely to get a wider range of possible solutions. Regards, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/

Re: [MacPerl] Building External C Modules

2004-11-13 Thread Chris Nandor
At 13:05 +0100 2004.11.13, Bart Lateur wrote: >But that's not macperl and you're on the wrong list with that kind of >bigotry. You got me! :) -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Technology Group [EMAIL PROTECTED] http://ostg.com/

Re: [MacPerl] Building External C Modules

2004-11-12 Thread Chris Nandor
Kinda messy, but works for me. Thomas Wegner has an XS tutorial, however, which might be better: http://usemacperl.esmartweb.com/ Of course, most of us now use Mac OS X, where building is much simpler. :-) Good luck, -- Chris Nandor [EMAIL PROTECTED]http://pudge.ne

Re: [MacPerl] launching an external app

2004-06-29 Thread Chris Nandor
t = load_osa_script($app, $resid); # compile and save script if not yet loaded if (!$script) { $script = compile_applescript(<save($app, $resid); } $script->call(qw[abcd 1234], 'Bourque:Users:pudge:bin:happening'); __END__ Make sure you make a copy of the app to test on firs

Re: [MacPerl] launching an external app

2004-06-28 Thread Chris Nandor
it on Mac OS X, but AppleScript needs Mac paths. I don't need Mac paths in the first two examples because NewAliasMinimal creates a path-agnostic alias, and Mac::Glue converts Unix paths to Mac paths for you. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Problem calling external applications

2004-06-09 Thread Chris Nandor
At 16:42 +0200 2004.06.09, Martin Buchmann wrote: >i'm using a macperl script to call some external programs. That was >working in the past but now i have the problem that MacPerl is just Have you changed anything recently? Any module versions, or apps that you're trying to la

Re: [MacPerl] Disabling modal Mount volume dialog

2004-05-25 Thread Chris Nandor
ve to modify this main loop to do some >special testing when symlink is encountered. Yes, try -l first, and if it is true, then skip the file (or call readlink() on the file if you want to use some links, but not others, etc.). That should work. -- Chris Nandor [EMAIL PROTE

Re: [MacPerl] File names ending with a blank.

2004-04-09 Thread Chris Nandor
r and file name extraction via foreach , nothing works. Drag-n-drop will use absolute paths, so you're turning: HD:foo:bar Into: :HD:foo:bar Which won't work. Three-arg open() is really the best way. -- Chris Nandor [EMAIL PROTECTED]http:

Re: [MacPerl] File names ending with a blank.

2004-04-08 Thread Chris Nandor
$file =~ s#^(\s)#:$1#; And it wouldn't work at the root of the filesystem (if it is an absolute path and your HD name is " HD", you are out of luck :-). The final option would be to use sysopen() instead. Cheers, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] What the heck is this?

2004-02-19 Thread Chris Nandor
esian filters in Eudora weed them out for me. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] MacPerl hangs during FTP download of large file

2004-02-18 Thread Chris Nandor
programs, as Interarchy borrowed from Fetch. To get this to work with Fetch, just drop Fetch onto the "gluemac" droplet included with MacPerl. (Password can be handle by Keychain too, so you don't necessarily need to put in here.) -- Chris Nandor [EMAIL P

Re: [MacPerl] Do shell script AppleScript impossible from MacPerl?

2004-02-17 Thread Chris Nandor
ll Mac OS X apps from MacPerl under Classic, so if some other application provided an event like do shell script, you could use it. But do shell script itself is provided by the Standard Additions OSAX, which is not available to Classic. -- Chris Nandor [EMAIL PROTECTED]

Re: [MacPerl] Do shell script AppleScript impossible from MacPerl?

2004-02-17 Thread Chris Nandor
t I have to convert Mac newlines, such as AppleScript returns here, to Unix newlines.) Of course, if this were really on Mac OS X, you should just use backticks anyway: [EMAIL PROTECTED] pudge]$ perl -le 'print `cd ~/; ls`' Applications Desktop Documents Games Library MacOS Movies Musi

Re: [MacPerl] PM files not found at startup?

2004-01-16 Thread Chris Nandor
file every time the Mac is booted. Well, the easiest thing to do is add this to your script, at the top: use lib 'path:to:MacPerl:folder:lib:'; Or, alternatively, put the app in your MacPerl folder, and put an alias to it in Startup Items. -- Chris Nandor

Re: [MacPerl] PM files not found at startup?

2004-01-15 Thread Chris Nandor
site_perl/5.8.0 /usr/local/lib/perl5/site_perl . [EMAIL PROTECTED] lib]$ mv perl5 perl5-mv [EMAIL PROTECTED] lib]$ perl -le 'print join "\n", @INC' /usr/local/lib/perl5/5.8.2/darwin /usr/local/lib/perl5/5.8.2 /usr/local/lib/perl5/site_perl/5.8.2/darwin /usr/local/lib/perl5/site_perl

Re: [MacPerl] Perl calling AppleScript

2004-01-15 Thread Chris Nandor
, not the rest. Summary: I recommend installing Mac-Carbon, adding "use MacPerl;" to the script, and using it as-is. If you don't want to install all of Mac-Carbon, Mac-AppleScript is your best bet. Stay away from osascript. Cheers, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] PM files not found at startup?

2004-01-14 Thread Chris Nandor
At 14:33 -0800 2004.01.14, Bill Becker wrote: >It is stored as a runtime (the icon is a pyramid). Yes, runtimes do not contain module files. Search the archives for RuntimeBuilder. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Netw

Re: [MacPerl] microphones.

2004-01-03 Thread Chris Nandor
data there in the variable. It's a Handle object, so you can get the data with $foo->get. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] microphones.

2004-01-03 Thread Chris Nandor
At 15:45 -0800 2004.01.02, Bill Becker wrote: >I don't have that exact directory structure, SpeechRecognition is >there, but nothing further than a single library having the same >name... In the current MacPerl, it should be in :eg:Mac:SpeechRecognition:. --

Re: [MacPerl] Progress bar question

2004-01-03 Thread Chris Nandor
cle precedes the module though; it shows how to do the low-level stuff that the module does for you. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] microphones.

2004-01-03 Thread Chris Nandor
f, $pt, siBestQuality); SndPlay(undef, $foo); Is that what you want? You want voice data, or do you want the words someone is saying, such as with speech recognition? The latter is a lot more difficult. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open

Re: [MacPerl] chdir to "root" in MacPerl 5.2.0r4 vs MacPerl 5.6.1r2

2003-11-30 Thread Chris Nandor
D name). > >This doesn't seem to work in MacPerl 5.6.1r2. It was a bug/misbehavior. If you want a list of all volumes, use the MacPerl::Volumes() function. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Calling a MacPerl script from an application

2003-11-24 Thread Chris Nandor
llo"} I am not sure what form you want this in. You want to tell a MacPerl script how to do this from another MacPerl script? If so, that can be hard, since MacPerl can only run one script at a time. Do you want examples with C? I am not sure the nature of it all. -- Chris Nandor

[MacPerl] re: droplet in AS

2003-10-17 Thread Chris Nandor
place, let alone the second or third. >My mileage doesn't vary on this issue, in case >anyone fancies biting my head off :-) Mine neither. No biting. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Problems installing libwww-perl-5.69 on OSX

2003-09-29 Thread Chris Nandor
ard version of perl that runs on Mac OS X. Thanks, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] SWIG meets MacPerl?

2003-09-29 Thread Chris Nandor
MacPerl, a few years ago. It's not been kept up that I know of, but perhaps it will work for you, or get you started. http://www.macperl.com/depts/Tutorials/ -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL

Re: [MacPerl] Newbi

2003-09-19 Thread Chris Nandor
rom BBEdit. But your mileage very well may vary. Cheers, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] random function immune to windows

2003-09-11 Thread Chris Nandor
At 10:57 -0700 2003.09.11, Bill Becker wrote: >It is not rediculous to expect a pseudo-random number generator to >behave differently! I believe that is, indeed what rand() is supposed >to be. You go in with a consistent seed across all platforms, it >should return consistent results across same. >

Re: [MacPerl] CommConnect.pl

2003-08-27 Thread Chris Nandor
At 15:02 -0400 2003.08.27, Dwayne C Ayers wrote: >Is there a way to access the serial port in the new version? I think you can use the Mac::Serial module, on the CPAN. It loads an XCMD or somesuch with LoadExternals(), which, I believe, does work. -- Chris Nandor [EM

Re: [MacPerl] CommConnect.pl

2003-08-27 Thread Chris Nandor
t version of MacPerl. See the notes in macperldelta in the MacPerl 5.6.1 release for more information. If you need CommConnect.pl, consider using MacPerl 5.2.0r4. You can have both versions of MacPerl installed simultaneously. -- Chris Nandor [EMAIL PROTECTED]http://pud

Re: [MacPerl] email change

2003-07-08 Thread Chris Nandor
every mail from this list has unsubscribe info in the mail headers, like so: Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMA

Re: [MacPerl] Looking for SHA1 ports to MacPerl

2003-05-30 Thread Chris Nandor
build instructions on http://dev.macperl.org/ say how to do it, and where everything is (and Thomas Wegner's XS tutorial gives the rest of the information you should need for XS stuff). -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Looking for SHA1 ports to MacPerl

2003-05-29 Thread Chris Nandor
At 11:32 +0200 2003.05.29, Thomas Wegner wrote: >Fortunately, I was able to build Digest-SHA1-2.02 for MacPerl 5.6.1 >on Mac OS Classic :). Excellent. Thanks, Thomas! -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PRO

Re: [MacPerl] Looking for SHA1 ports to MacPerl

2003-05-29 Thread Chris Nandor
included in MacPerl 5.6.1r2, and realistically expect them to all >work properly, No. They are not binary compatible with 5.6.1. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Mac::Glue (was: Using Mac::OSA:Simple)

2003-04-06 Thread Chris Nandor
)? And I am glad it is working well for you. I am nearly done porting Mac::Glue to Mac OS X, hopefully for release in a few weeks. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Using Mac::OSA:Simple

2003-04-05 Thread Chris Nandor
st->exec($command, ...); I am not sure what mpost's AppleScript dictionary looks like. Just follow the instructions for Mac::Glue (it comes with MacPerl 5.6.1) for running gluedialect and gluescriptadds, and then drop apps on gluemac (like the Finder and mpost). If you have trouble figuring out

Re: [MacPerl] setting $!

2003-04-02 Thread Chris Nandor
d by device Not a directory $^E works similarly. A better option might b e $@, which can be set to arbitrary error values. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] AS to Perl

2003-03-26 Thread Chris Nandor
Is there any way you can trim down the example to 10 lines or so, that shows the problem? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] AS to Perl

2003-03-26 Thread Chris Nandor
At 14:47 -0800 2003.03.26, Nicholas G. Thornton wrote: >Still more from my trials and tribulations: > >Trying to go about this via MacPerl::DoAppleScript() returns the error >Operation >not supported on socket. Any idea how to get around this? Can you give an example that shows t

Re: [MacPerl] Perl grep from AppleScript

2003-03-26 Thread Chris Nandor
e [EMAIL PROTECTED] list instead. Thanks, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] pardons

2003-03-26 Thread Chris Nandor
At 01:52 -0800 2003.03.26, Nicholas G. Thornton wrote: >I just noticed there's a macperl-toolbox mailing list that I should have been >posting to. Sorry for any inconvenience. No worries, either list is fine. -- Chris Nandor [EMAIL PROTECTED]http://pudg

Re: [MacPerl] desperate Mac::Movies help

2003-03-26 Thread Chris Nandor
t that it accepts Mac OS X/POSIX paths instead of Mac OS/HFS paths. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] more desperate pleas: file reference numbers

2003-03-26 Thread Chris Nandor
number. Since >all the >documentation I've found is directed at C/C++ folks (of which I'm not one) I'm >not entirely sure how to proceed. As always, any help is appreciated. Not sure, but try using fileno() after opening the file. See the perl docs for more details. -- Chri

Re: [MacPerl] desperate Mac::Movies help

2003-03-25 Thread Chris Nandor
27;t the faintest idea >what >this means or how to correct it since what makes a valid fileSpec is never >discussed anywhere. It means the file path isn't correct, basically. Doublecheck it. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Dev

[MacPerl] Mac::OSA::Simple 1.03 Released

2003-03-13 Thread Chris Nandor
o Mac OS X. Also note the new address of my Perl modules: http://projects.pudge.net/ And I am still entertaining volunteer efforts for tests for Mac::Carbon. :) Contact me if you want to help. Enjoy, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] GD for MacPerl 5.6.1r2

2003-02-27 Thread Chris Nandor
GD changed substantially over the years, and I did not include it with MacPerl 5.6.1. As far as I can recall, there is no build available for MacPerl 5.6.1, though someone could build it. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network

Re: [MacPerl] Play AIFF?

2003-02-26 Thread Chris Nandor
ted on Mac OS X. These are fairly clearly marked in Sound.xs. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Play AIFF?

2003-02-26 Thread Chris Nandor
At 17:29 -0800 2003.02.26, Nicholas G. Thornton wrote: >I'm looking for a module that'll let me play AIFF files from (Mac)Perl. I've >had no luck finding anything searching for "aiff" on CPAN Mac::Sound and Mac::Movies can, I believe. -- Chris Nandor

Re: [MacPerl] iTunes?

2003-02-14 Thread Chris Nandor
ent MP3::Info to fail on some of its files; this is going to be fixed in the next version, coming soon). -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] re: when is *eof* on/off ?

2003-02-06 Thread Chris Nandor
At 19:20 -0500 2003.02.06, Ronald J Kimball wrote: >It's part of the standard Perl installation. However, you can always find >the Perl documentation (for various versions of Perl) at >http://www.perldoc.com/ And, of course, in Shuck. :-) -- Chris Nandor [E

Re: [MacPerl] Setting extended Finder info for file?

2003-02-05 Thread Chris Nandor
$catinfo->ioFlXFndrInfo($fxinfo); # save back to catinfo FSpSetCatInfo($file, $catinfo); # save back to file } -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] how to get image sizes of gif and jpeg files

2003-01-17 Thread Chris Nandor
At 13:13 +0900 2003.01.17, Nobumi Iyanaga wrote: >On Thursday, January 16, 2003, at 09:37 AM, Chris Nandor wrote: > >> The Image::Size module on the CPAN should help you. >> > >Thank you for your reply. Yes, it worked -- although I had to tweak >somehow the source: re

Re: [MacPerl] how to get image sizes of gif and jpeg files

2003-01-15 Thread Chris Nandor
The Image::Size module on the CPAN should help you. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Where has MMP gone to?

2003-01-09 Thread Chris Nandor
I partially restored it with data over a year old. Sigh * 2. I have most of the data there backed up, but not that. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Where has MMP gone to?

2003-01-09 Thread Chris Nandor
p.plx line 418. > > <http://dev.macperl.org/cgi-bin/mmp.plx> Sigh ... the files are not there. I did not delete them, I believe. I have not been on the machine in some time, it worked the last time I saw it. I'll see if maybe the SF.net people can restore it, I hope so. -- Ch

Re: [MacPerl] MacPerl 5.6.1r2 Released

2002-12-09 Thread Chris Nandor
At 12:28 -0800 2002.12.09, Richard Cook wrote: >so, this is a very intermittent problem ... can anyone here see the way >to make it always happen? Probably not, and this is why it is so hard to fix. :) -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open

Re: [MacPerl] long lines to STDOUT

2002-12-06 Thread Chris Nandor
revious to current, i.e., 5.6.1r1? And I do know that there have been problems with the output window shifting to the right in some circumstances in older versions (including MacPerl 5.2.0r4), and I don't recall that code being modified in my time with it. There are more-or-less tenative plans

Re: [MacPerl] MacPerl 5.6.1r2 Released

2002-12-05 Thread Chris Nandor
out value in the web based >installer? I don't think that's the problem, I think the web server you're connected to is the problem. By now, the CPAN mirrors should be working, try those. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source

Re: [MacPerl] MacPerl 5.6.1r2 Released

2002-12-04 Thread Chris Nandor
>installation. You should be able to choose the installation folder if you've changed the name of yours; I suppose in the future, though, I could have it look for your MacPerl folder if you've moved it. Just select Choose Folder from the popup menu on the initial screen. -- Chris Na

Re: [MacPerl] MacPerl 5.6.1r2 Released

2002-12-04 Thread Chris Nandor
gt;Are the "t" files included in this release? Yes. Some of them require Test::More, which is not included, but can be installed via the normal means. It will be included in MacPerl 5.8, I just didn't feel like including it in 5.6. :) -- Chris Nandor [EMAIL

[MacPerl] MacPerl 5.6.1r2 Released

2002-12-04 Thread Chris Nandor
omas Wegner for his patches and work on Shuck; thanks to all who helped report and track down various bugs. Thanks, and have fun, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] CPAN install::Bundle dies on MD5

2002-12-01 Thread Chris Nandor
ules in that bundle; install each one individually, those that apply. For Bundle::CPAN, skip Digest::MD5, Term::ReadKey, Data::Dumper, and Compress::Zlib. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] CPAN install::Bundle dies on MD5

2002-12-01 Thread Chris Nandor
an older version; it should work fine for you, however. >3. Am I better off just skipping the use of this Bundle all together In this case, since it tries to install a module it cannot install, yes. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] MacPerl MacOS version?

2002-11-13 Thread Chris Nandor
At 20:49 +0100 2002.11.13, Detlef Lindenthal wrote: >## Mind the $^O; and save lines!!!(-:(-: (-: >print "$^O $1.$2.$3"; The problem is that "darwin 10.2.2" isn't quite what I would want, and is inaccurate, anyway. :-) -- Chris Nandor

[MacPerl] Mac::Carbon 0.01 Released

2002-11-12 Thread Chris Nandor
R The Mac Toolbox modules were written by Matthias Neeracher <[EMAIL PROTECTED]>. They are currently maintained by Chris Nandor <[EMAIL PROTECTED]>. VERSION $Id: README,v 1.1 2002/11/13 02:04:50 pudge Exp $ -- Chris Nandor [EMAIL PROTECTED]htt

Re: [MacPerl] MacPerl MacOS version?

2002-11-12 Thread Chris Nandor
printf "%s.%d.%d", join('', @vers[-4, -3]), @vers[-2, -1]; -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Printing to a ethernet print server

2002-10-18 Thread Chris Nandor
ork! I Note that AppleTalk is no longer supported by MacPerl, as of 5.6.1r1. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Off topic: Setting Creator Code and Type via command line on OS X

2002-10-18 Thread Chris Nandor
There are macperl-anyperl and macosx lists at perl.org. http://lists.perl.org/. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] MacPerl launch cursor spin

2002-10-15 Thread Chris Nandor
At 09:38 -0700 2002.10.15, Richard Cook wrote: >The only thing that causes it to stop is typing "command-period". >Actually, I think that simply "com-q" will also stop it. OK, thanks much for your patience, and your help. :) -- Chris Nandor

Re: [MacPerl] MacPerl launch cursor spin

2002-10-15 Thread Chris Nandor
At 09:16 -0700 2002.10.15, Richard Cook wrote: >Chris Nandor wrote: >> >> At 21:55 -0700 2002.10.14, Richard Cook wrote: >> >MacPerl is doing the "cursor spin" trick right now in the background. I >> >just launched it by 2-clicking on an existing docu

Re: [MacPerl] MacPerl launch cursor spin

2002-10-15 Thread Chris Nandor
g now. What happens if you click on a menu, or create a new window with cmd-N? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] MacPerl launch cursor spin

2002-10-10 Thread Chris Nandor
hat sometimes the file didn't open, and the cursor was spinning. Does either of those two behaviors occur when MacPerl is already running? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] MacPerl launch cursor spin

2002-10-10 Thread Chris Nandor
c.) are you running? What menus show in MacPerl (e.g., File, Edit, etc.) during this? At 15:08 -0700 2002.10.10, Richard Cook wrote: >A related problem seems to be that sometimes when a script is >double-clicked in the finder, MacPerl will launch, but the file doesn't open. How

Re: [MacPerl] Invisible Files

2002-10-01 Thread Chris Nandor
lags = shift; return (($flags & fInvisible) ? $flags ^ fInvisible : 0) } sub make_invisible { # make flags invisible my $flags = shift; return (($flags & fInvisible) ? 0 : $flags | fInvisible) } __END__ -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Does this make it worthwhile to convert?

2002-09-26 Thread Chris Nandor
com, meant for perl on Mac OS X, in MacPerl under Classic (the article implied that perl for Mac OS X was "full perl" compared to MacPerl, so I found it interesting that all their code ran fine in MacPerl :-). Yesterday I also used Mac::Glue on MacPerl under Classic to

Re: [MacPerl] Does this make it worthwhile to convert?

2002-09-25 Thread Chris Nandor
with Classic, you need Mac OS v9, I think 9.1 or greater. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] open

2002-09-23 Thread Chris Nandor
my $finder = new Mac::Glue 'Finder'; # optional :-) my $app_path = $Mac::MoreFiles::Application{$app_sign}; my $file = $finder->obj(file => $file_path); my $app = $finder->obj(file => $app_path); $finder->open($file, using => $app

Re: [MacPerl] lwp - repeating 404

2002-09-23 Thread Chris Nandor
gt; print "\n$counter OK: $url\n"; > } else { > print "\n$counter ERROR: $msg for $url\n"; > } >} > > >__END__ You do not ever reset $msg each time in the loop. Try putting 'my $msg = "";' inside the loop, not outside. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] usenet.

2002-09-21 Thread Chris Nandor
s, and Google's news search, have been picking them up. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Does this make it worthwhile to convert?

2002-09-21 Thread Chris Nandor
to control apps on other machines over TCP/IP. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Does this make it worthwhile to convert?

2002-09-19 Thread Chris Nandor
purchase Mac OS separately. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Does this make it worthwhile to convert?

2002-09-19 Thread Chris Nandor
ith Mac OS X. You can get Mac OS separately. You won't be able to boot into Mac OS on new machines. You will be able to run Classic on new machines, if you also have/purchase Mac OS separately. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] sharing exported data

2002-09-18 Thread Chris Nandor
e named "moon", when what you are offering for export, and want, is a scalar variable named "$moon". -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

RE: [MacPerl] Classic runtimes/droplets under MacOS X

2002-09-11 Thread Chris Nandor
.2 for Classic needs 1.8.3. Axel, can you check that too? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Classic runtimes/droplets under MacOS X

2002-09-11 Thread Chris Nandor
At 18:34 +0200 2002.09.11, Axel Rose wrote: >I boot into 10.2 and double click the droplet. Is MacPerl running before you open the droplet? What about Classic itself? And did you run the same test in 9.2.2? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ O

Re: [MacPerl] Classic runtimes/droplets under MacOS X

2002-09-11 Thread Chris Nandor
work perfectly for me just fine on a TiBook G4/667 with both Mac OS 9.2.2 and Mac OS X 10.2. What version of MacPerl? -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

[MacPerl] Re: [MacPerl-Porters] MacPerl 5.6.1r2 Prerelease

2002-09-11 Thread Chris Nandor
At 17:18 +0200 2002.09.11, Axel Rose wrote: >Um 11:00 Uhr -0400 11.09.2002, schrieb Chris Nandor: >>What downloader program? > >We had some disussion about this program before. Essentially it >gets files through ftp. > >I need some more time to isolate the problem but pr

[MacPerl] Re: [MacPerl-Porters] MacPerl 5.6.1r2 Prerelease

2002-09-11 Thread Chris Nandor
not sure. Thanks, -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] CPAN and MacPerl

2002-09-04 Thread Chris Nandor
but I've heard no complaints about PPC. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] CPAN and MacPerl

2002-09-04 Thread Chris Nandor
ht have to hit ctrl-D instead of return for picking from lists. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED] http://osdn.com/

Re: [MacPerl] Runtime version

2002-08-30 Thread Chris Nandor
are two ways to do it. One is to use the CFM68K build of MacPerl, and copy the shared libraries in :lib:MacCFM68K:. The other is to use the BigMacPerl build, which has the libraries like Mac::Files linked statically. -- Chris Nandor [EMAIL PROTECTED]http://pudge.n

Re: [MacPerl] Runtime version

2002-08-29 Thread Chris Nandor
oading -- anything requiring DynaLoader -- does not work, currently, with 68K Macs. That did work with MacPerl 5.2.0r4, which is still available, via the CFM68K build. But CFM68K is not currently supported in current versions of MacPerl. -- Chris Nandor [EMAIL PROTECTED]http

  1   2   3   4   5   >