view release on metacpan or search on metacpan
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
- documentation fixes per Ron Savage's bug report:
environment variables are prefixed with HTTP_MODPERL_
2.04 Fri Apr 15 14:48:16 EDT 2005
- made changes to DBILogin.pm per new API
<URL:http://perl.apache.org/docs/2.0/rename.html>
- removed mod_perl prereq from Makefile.PL as it implies MP1
2.03 Wed Dec 8 01:36:24 EST 2004
- fixed $VERSION, why must it be defined above "use modperl" ?
view all matches for this distribution
view release on metacpan or search on metacpan
Description.pm view on Meta::CPAN
}
}
croak "no file descriptor available : $!" if (not defined $fh or not defined $fd);
rename "/tmp/htaccess.$$", $filename
or croak "rename(htaccess.$$,$filename) : $!";
}
## this function can return an array, or a scalar
## according to the context of the next description.
##
Description.pm view on Meta::CPAN
}
return $ret;
}
sub rename {
print qq/Not implemented yet\n/;
}
sub ispresent($) {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
FileManager.pm view on Meta::CPAN
=head1 DESCRIPTION
The Apache::FileManager module is a simple HTML file manager. It provides
file manipulations such as cut, copy, paste, delete, rename, extract archive,
create directory, create file, edit file, and upload files.
Apache::FileManager also has the ability to rsync the server htdocs tree to
another server. With the click of a button.
FileManager.pm view on Meta::CPAN
}
return false;
\"><FONT COLOR=WHITE><B>delete</B></FONT></A>",
#Rename
"<A HREF=# onclick=\"var f=window.document.FileManager; if (get_num_checked() != 1) { window.alert('Please select ONE file to rename by clicking on a check box with the mouse.'); } else { var rv=window.prompt('enter new name',''); if ((rv != null)&...
#Extract
"<A HREF=# onclick=\"var f=window.document.FileManager; if (get_num_checked() == 0) { window.alert('Please select a file to extract by clicking on a check box with the mouse.'); } else { f.FILEMANAGER_cmd.value='extract'; f.submit(); } return false...
#New File
FileManager.pm view on Meta::CPAN
#$$o{MESSAGE} = "$count file(s) uploaded.";
$$o{'view'} = "post_upload";
return undef;
}
sub cmd_rename {
my $o = shift;
my $arg1 = shift;
my $sel_files = $o->get_selected_files();
my $file = $$o{DR}."/".$sel_files->[0];
my $bool = move($file, $arg1);
if ($bool) {
$$o{MESSAGE} = "File renamed.";
} else {
$$o{MESSAGE} = "File could not be renamed.";
}
return undef;
}
view all matches for this distribution
view release on metacpan or search on metacpan
Version of the Package.
b) use the modified Package only within your corporation or
organization.
c) rename any non-standard executables so the names do not
conflict with standard executables, which must also be provided,
and provide a separate manual page for each non-standard
executable that clearly documents how it differs from the Standard
Version.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Gallery.pm view on Meta::CPAN
$dirname .= shift(@direlem) . '/';
}
chop $dirname;
}
my $picturename;
if (-f $filename) {
$picturename = pop(@links);
}
if ($r->uri eq $root_path) {
return qq{ <a href="$root_path">$root_text</a> };
}
lib/Apache/Gallery.pm view on Meta::CPAN
}
}
if (-f $filename) {
$menu .= $picturename;
}
else {
if ($r->dir_config('GallerySelectionMode') && $r->dir_config('GallerySelectionMode') eq '1') {
$menu .= "<a href=\"".uri_escape($menuurl, $escape_rule);
view all matches for this distribution
view release on metacpan or search on metacpan
- update C library files to GeoIP-1.4.2
- use mod_perl2, rather than mod_perl, in Apache2 test
1.62 Thu, May 12 2005
- update C library files to GeoIP-1.3.8
- rename the mod_perl 2 modules from Apache::* to Apache2::*,
and adjust to use the new namespace of mod_perl-2
1.52 Mon Sep 13 16:36:00 2004
- in mp2 Apache::Geo::Mirror, fix bug when host mirror chosen
didn't have a path after the hostname
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Hadoop/WebHDFS.pm view on Meta::CPAN
}
$self->get( $url );
return $self;
}
sub rename {
# curl -i -X PUT "<HOST>:<PORT>/webhdfs/v1/<PATH>?op=RENAME&destination=<PATH>"
#my $url = 'http://' . $self->{'namenode'} . ':' . $self->{'namenodeport'} . '/webhdfs/v1' . $src . '?op=RENAME&destination=' . $dst;
my ( $self, $src, $dst ) = undef;
$self = shift;
if ($_[0]->{'srcfile'}) { $src = $_[0]->{'srcfile'}; } else { croak ("Need HDFS source before rename can happen") ;}
if ($_[0]->{'dstfile'}) { $dst = $_[0]->{'dstfile'}; } else { croak ("Need HDFS destination before rename can happen") ;}
my $url;
if ($self->{'authmethod'} eq 'gssapi') {
$url = 'http://' . $self->{'namenode'} . ':' . $self->{'namenodeport'} . '/webhdfs/v1' . $src . '?op=RENAME&destination=' . $dst ;
} elsif ( $self->{'authmethod'} eq 'unsecure' ) {
lib/Apache/Hadoop/WebHDFS.pm view on Meta::CPAN
buffersize=>'1024',
overwrite=>'true|false',
permission=>'644',
});
=item * rename() - renames a file on HDFS. Required values for rename are 'srcfile' and 'dstfile', both of which represent HDFS filenames.
$hdfsclient->rename({ srcfile=>'/my/old/hdfs/file.txt',
dstfile=>'my/new/hdfs/file.txt',
});
=item * getfilestatus() - returns a json structure containing status of file or directory. Required input is a HDFS path.
view all matches for this distribution
view release on metacpan or search on metacpan
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
Version of the Package.
b) use the modified Package only within your corporation or
organization.
c) rename any non-standard executables so the names do not
conflict with standard executables, which must also be provided,
and provide a separate manual page for each non-standard
executable that clearly documents how it differs from the Standard
Version.
view all matches for this distribution
view release on metacpan or search on metacpan
#endif
/*
* The grok_* routines have been modified to use warn() instead of
* Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
* which is why the stack variable has been renamed to 'xdigit'.
*/
#ifndef grok_bin
#if defined(NEED_grok_bin)
static UV DPPP_(my_grok_bin)(pTHX_ char *start, STRLEN *len_p, I32 *flags, NV *result);
view all matches for this distribution
view release on metacpan or search on metacpan
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/LogRegex.pm view on Meta::CPAN
if ($quoted) {
$element =~ s/^\\\"//;
$element =~ s/\\\"$//;
}
push @{ $self->{_regex_fields} }, $self->rename_this_name($element);
my $group = '(\S*)';
if ($quoted) {
if ($element eq '%r' or $element =~ m/{Referer}/ or $element =~ m/{User-Agent}/) {
lib/Apache/LogRegex.pm view on Meta::CPAN
die __PACKAGE__ . '->regex() takes no argument' unless @_ == 1;
return $self->{_regex};
}
sub rename_this_name {
my ($self, $name) = @_;
return $name;
}
lib/Apache/LogRegex.pm view on Meta::CPAN
The field names of the hash are derived from the log file format. Thus if
the format is '%a %t \"%r\" %s %b %T \"%{Referer}i\" ...' then the keys of
the hash will be %a, %t, %r, %s, %b, %T and %{Referer}i.
Should these key names be unusable, as I guess they probably are, then subclass
and provide an override rename_this_name() method that can rename the keys
before they are added in the array of field names.
This module supports variable spacing between elements that are
surrounded by quotes, so if you have more than one space between those
elements in your format or in your log file, that should be OK.
lib/Apache/LogRegex.pm view on Meta::CPAN
=item regex()
Returns a copy of the regex that will be used to parse the log file.
=item rename_this_name( NAME )
Use this method to rename the keys that will be used in the returned hash.
The initial NAME is passed in and the method should return the new name.
=back
=head1 CONFIGURATION AND ENVIRONMENT
view all matches for this distribution
view release on metacpan or search on metacpan
has same name as the desired MP3 file (Jeffrey Sumler identified problem).
2.12 Tue Nov 21 08:39:15 EST 2000
** IMPORTANT NOTE **
I have normalized field names and added some new fields. In particular, "kbps" has
been renamed "bitrate". If you are using the mp3info caching feature, please delete
your cache directory so that the new fields are correctly cached
-Check for invalid songs in playlist and refuse to play them.
-Added Jeffrey Seifert's patch for cover art. You can now place a file named
"cover.jpg" in an album subdirectory and have it appear next to
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/MagicPOST.pm view on Meta::CPAN
***********************************************************************
NOTE: This module is not working as I intended since the poking into
the POST data makes the data unavailable for subsequent modules. To
make sure that you do not accidentally run into this, the handler method
has been renamed to _handler(). I'll change this module to work with
Apache2 (where the intended behavior is possible) in a while.
***********************************************************************
Apache::MagicPOST allows you to send HTTP methods to a server that
view all matches for this distribution
view release on metacpan or search on metacpan
License.Artistic view on Meta::CPAN
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
The absolute path to the file that contains the custom message.
i.e. MessageFile /usr/local/apache/motd.txt
If the file is not found in the specified directory all requests will not be
directed to the B<motd>. Therefore you can rename,delete this file from the
specified location to disable the B<motd> without having to edit the
httpd.conf entry and/or restart the web server.
See B<MessageFile Format> for a description how the message should
be used.
view all matches for this distribution
view release on metacpan or search on metacpan
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
view all matches for this distribution
view release on metacpan or search on metacpan
migration/migrate_pagekit_0.98_to_0.99.pl view on Meta::CPAN
);
while (my ($k, $v) = each %files){
(my $dir = $k) =~ s(/[^/]*?$)();
File::Path::mkpath($dir);
rename $v, $k;
}
sub note_template {
my ($filename) = @_;
next unless (my $to_file = $filename) =~ s!^($root_dir/View/[^/]*/)(Page/|Component/)(.*)$!$1$3!;
if(exists $files{$to_file}){
# conflict!
die "Files $filename and $files{$to_file} conflict.\nPlease rename one of them and update all reference to them in your application.";
}
$files{$to_file} = $filename;
}
view all matches for this distribution
view release on metacpan or search on metacpan
PrettyPerl.pm view on Meta::CPAN
length link listen local localtime log
lstat map map mkdir msgctl msgget msgrcv
msgsnd my next oct open opendir ord our pack
pipe pop pos print printf prototype push
quotemeta rand read readdir readline
readlink readpipe recv redo ref rename
reset return reverse rewinddir rindex
rmdir scalar seek seekdir select semctl
semget semop send setgrent sethostent
setnetent setpgrp setpriority setprotoent
setpwent setservent setsockopt shift shmctl
view all matches for this distribution
view release on metacpan or search on metacpan
"7" => "Delete failed.",
"8" => "The file was successfully copied to quarantine.",
"9" => "Copy failed.",
"10" => "The file was successfully moved to quarantine.",
"11" => "Move failed.",
"12" => "The file was renamed.",
"13" => "Rename failed.",
"20" => "No TARGET is defined.",
"30" => "Engine error.",
"31" => "Syntax error.",
"32" => "Help message.",
view all matches for this distribution
view release on metacpan or search on metacpan
Version of the Package.
b) use the modified Package only within your corporation or
organization.
c) rename any non-standard executables so the names do not
conflict with standard executables, which must also be provided,
and provide a separate manual page for each non-standard
executable that clearly documents how it differs from the Standard
Version.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Roaming.pm view on Meta::CPAN
if ($uri ne $new_uri) {
$self->{'status'} = Apache::Constants::FORBIDDEN();
die "New URI $new_uri refers to another directory than $uri";
}
rename $file, $new_file
or die "Error while renaming $file to $new_file: $!";
$self->Success(201, 'URI moved');
}
view all matches for this distribution
view release on metacpan or search on metacpan
Version of the Package.
b) use the modified Package only within your corporation or
organization.
c) rename any non-standard executables so the names do not
conflict with standard executables, which must also be provided,
and provide a separate manual page for each non-standard
executable that clearly documents how it differs from the Standard
Version.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/SWIT/Maker/Manifest.pm view on Meta::CPAN
my ($f) = ($l =~ /^(\S+)/);
$l =~ s#$from#$to#g;
my ($t) = ($l =~ /^(\S+)/);
mkpath(dirname($t));
rename($f, $t) or die "Unable to rename $f to $t";
}
write_file('MANIFEST', join("", @lines));
}
sub swmani_replace_in_files {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/SdnFw/js/tinymce/changelog.txt view on Meta::CPAN
Fixed bug where local file:// URLs where converted into absolute domain URLs.
Fixed bug where an error was produced if a editor was removed inside an editor command.
Fixed bug where force_p_newlines didn't effect the paste plugin correctly.
Fixed bug where the paste plugin was producing an exception on IE if you pasted contents with middots.
Fixed bug where delete key could produce exceptions in Gecko sometimes due to the fix for the table cell bug.
Fixed bug where the layer plugin would produce an visual add class called mceVisualAid this one is now renamed to mceItemVisualAid to mark it internal.
Fixed bug where TinyMCE wouldn't initialize properly if ActiveX controls was disabled in IE.
Fixed bug where tables and other elements that had visual aids on them would produce an extra space after any custom class names.
Fixed bug where search with an empty string would produce some odd "invalid pointer" error in IE.
Fixed bug where elements like menus where placed at incorrect positions in Opera 9.26.
Fixed bug where IE was loosing focus of the editor when you clicked some dropmenu and if it was placed in a frame or iframe.
view all matches for this distribution