Geoffrey Young wrote:
BTW, why Finfo doesn't use uid/gid but user/group? because of the C data
struct names? It's probably more intuitive to rename them to be uid/gid,
since they return the ids and not names.
I don't think we have typically been renaming struct slots but rather
carrying them dire
Randy Kobes wrote:
[...]
I won't try to use File::Spec::Unix instead of join '/',
because one day it may stop loading on non-Unix...
That's a good point ... However, using
sub t_catfile_apache {
my $f = canonpath join "/", @_;
return $f unless File::Spec->file_name_is_absolute($f);
On Tue, 2 Dec 2003, Stas Bekman wrote:
> Sorry, I didn't know that. Does this work?
>
> sub t_catfile_unix {
> my $f = File::Spec::Unix->canonpath(join "/", @_);
> return $f unless File::Spec->file_name_is_absolute($f);
> return Apache::TestConfig::WIN32 ?
> Win32::GetLongP
Randy Kobes wrote:
[...]
I think if one wants to grow old fast, offer to help
maintain File::Spec :)
There is a better candidate, ExtUtils::MakeMaker. I wonder how old was Michael
2 years ago. ;)
So may be just go with:
my $f = File::Spec::Unix->catfile(@_);
One more thing, I'm not sure about