view release on metacpan or search on metacpan
SecSess/DBI.pm view on Meta::CPAN
#
# DBI.pm - basic DB interface for Apache::SecSess::* objects
#
# renamed from Id: SecSessDBI.pm,v 1.8 2002/05/06 06:33:17 pliam Exp
# $Id: DBI.pm,v 1.1 2002/05/19 05:15:29 pliam Exp $
#
package Apache::SecSess::DBI;
use strict;
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
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
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
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
Revision history for Perl extension Apache::SimpleReplace.
0.01 4.4.2000
- original version
- actually a rename of (the now obsolete) Apache::Wrapper_0.02
0.02 05.08.2000
- fixed embarassing parsing of Filter PerlSetVar (whoops)
- TEMPLATE is no longer relative to server root
- minor pod changes
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
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
lib/Apache/TestRun.pm view on Meta::CPAN
return unless $file =~ /$core_pat/o;
my $core = $File::Find::name;
unless (exists $core_files{$core} && $core_files{$core} == -M $core) {
# new core file!
# XXX: could rename the file if it doesn't include the pid
# in its name (i.e., just called 'core', instead of 'core.365')
# XXX: could pass the test name and rename the core file
# to use that name as a suffix, plus pid, time or some
# other unique identifier, in case the same test is run
# more than once and each time it caused a segfault
$core_files{$core} = -M $core;
push @msg, "server dumped core, for stacktrace, run:\n" .
view all matches for this distribution
view release on metacpan or search on metacpan
throttleimg view on Meta::CPAN
}
print "Processing $file...\n" unless $quiet;
mkdir "$file.dir", 0775 or die $!;
rename $file, "$file.dir/Z-$file" or die $!;
rename "$file.dir", $file or die $!;
print "Creating control file for $time seconds.\n" unless $quiet;
open (CONF, "> $file/.throttle") or die $!;
flock (CONF, 2);
print CONF "$time\n";
throttleimg view on Meta::CPAN
next;
}
print "Processing $file...\n" unless $quiet;
rename "$file", "$file.dir" or die $!;
rename "$file.dir/Z-$file", "$file" or die $!;
opendir (SF, "$file.dir") || die $!;
foreach (readdir(SF)) {
if (/^[0-9A-Y]-$file$/ || /^\.throttle/) {
print "Removing $_...\n" unless $quiet;
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
close($outfile);
if (-f "$dest.bak" && !unlink "$dest.bak") {
print STDERR "Cannot remove $dest.bak: $!\n";
exit 10;
}
if (!rename("$dest", "$dest.bak")) {
print STDERR "Cannot rename $file to $dest.bak\n";
exit 10;
}
if (!rename("$dest.new", "$dest")) {
print STDERR "Cannot rename $dest.new to $dest: $!\n";
exit 10;
}
unlink "$dest.bak";
unless (chmod $perms, $dest) {
print STDERR "Cannot change permissions on $dest: $!\n";
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
FILES => "@CLEAN_FILES"
},
);
if ($mp_version == 2) {
# 1.9922 is 2.0.0 RC5. mod_perl package renames happend at this release.
$makeconf{PREREQ_PM}{mod_perl2} = '1.9922';
$makeconf{PREREQ_PM}{CGI} = '3.12';
}
WriteMakefile(%makeconf);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/UploadSvr.pm view on Meta::CPAN
$targetfile = "$document_root$f";
$targetdir = dirname($targetfile);
$absfile = "$stagedir$f";
eval {
File::Path::mkpath($targetdir);
rename($absfile, $targetfile) or die $!;
};
push @done, $@ ? $self->dict("D022",$doit,$@)
: $self->dict("D023",$f,$f);
$r->log_error("doit[$doit]ERR[$@]targetfile[$targetfile] targetdir[$targetdir] absfile[$absfile]");
} elsif ($command eq "unpublish") {
lib/Apache/UploadSvr.pm view on Meta::CPAN
my($rmfile, $trashfile);
$rmfile = "$document_root$f";
$trashfile = $trashdir . "/" . basename($f);
if ($self->has_perms($f)) {
if (-f $rmfile) {
if (rename $rmfile, $trashfile) {
push @done, qq{<B>unpublish</B> $f<BR>};
my $rmf = $rmfile;
while () {
my $rmd = File::Basename::dirname($rmf);
my $d = File::Basename::dirname($f);
lib/Apache/UploadSvr.pm view on Meta::CPAN
} else {
my $targetfile = "$stagedir$lc";
my $targetdir = dirname("$targetfile");
File::Path::mkpath($targetdir);
my $absfile = "$stagedir$f";
my $ok = $self->dict(rename($absfile, $targetfile) ? "D055" : "D056");
$done = $self->dict("D057", $f, $lc, $ok);
}
return $done;
}
view all matches for this distribution
view release on metacpan or search on metacpan
Copyright Holder to include your derivative works in the Standard
Version of the Package.
b) use a derivative 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
(dispatch_handler): Added Pragma and Cache-control headers for
browser that ignores the Expires header.
1999-11-01 Francis J. Lacoste <francis.lacoste@iNsu.COM>
* lib/DBIx/UserDB.pm (group_get): $gid renamed to $gidorname.
* lib/Apache/iNcom/OrderManager.pm (checkout): Variable $profile
is really variable $order. items is an array ref. Remove
Data::Dumper reference.
(order_report): %fdat of calling page was overwritten. Order data
view all matches for this distribution
view release on metacpan or search on metacpan
t/04.status.t view on Meta::CPAN
diag( "Checking is HTTP_I_AM_A_TEAPOT (", HTTP_I_AM_A_TEAPOT, ") is a client error" ) if( $DEBUG );
ok( $s->is_client_error( HTTP_I_AM_A_TEAPOT ), 'is_client_error' );
ok( $s->is_redirect( HTTP_MOVED_PERMANENTLY ), 'is_redirect' );
ok( $s->is_redirect( HTTP_PERMANENT_REDIRECT ), 'is_redirect' );
# renamed status constants
ok( $s->is_error( HTTP_REQUEST_ENTITY_TOO_LARGE ), 'is_error' );
ok( $s->is_error( HTTP_PAYLOAD_TOO_LARGE ), 'is_error' );
ok( $s->is_error( HTTP_REQUEST_URI_TOO_LARGE ), 'is_error' );
ok( $s->is_error( HTTP_URI_TOO_LONG ), 'is_error' );
ok( $s->is_error( HTTP_REQUEST_RANGE_NOT_SATISFIABLE ), 'is_error' );
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/AMFImageRendering.pm view on Meta::CPAN
push @out, $scaled;
}
my $dummy=$imagefile.".gif";
Imager->write_multi({ file => $dummy }, @out) or die "Cannot save $imagefile: ", Imager->errstr, "\n";
rename($dummy, $imagefile);
}
if ($content_type eq "image/png") {
if ($typeGraphicLibrary eq 'gd') {
my $img = Image::Scale->new("$imageToConvert") ;
$img->resize_gd( { width => $width } );
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
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
Do not work properly with SSL
0.1 23/03/2005
First version working in prod.
do not work with SSL
0.2 25/03/2005
Modules renamed as Apache::AuthNSympa and Apache::AuthZSympa
0.2 07/03/2005
Modification of errors treatment
0.2.1 15/04/2005
Multi lists support (union of lists)
0.3 14/02/2006
Apache2 version all rename to Apache2:: logs
0.3.1 07/02/2006
Authentication type declared by AuthType Apache tag and lists names declared with require SympaLists Apache tag
0.3.2 13/03/2006
Work with SSL authentication now
0.3.4 01/06/2006
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/AuthenNIS.pm view on Meta::CPAN
=head1 DESCRIPTION
This perl module is designed to work with mod_perl2 and the Net::NIS
module by Rik Haris (B<rik.harris@fulcrum.com.au>). Version 0.13 of
Apache::AuthenNIS was renamed and modified to use mod_perl2. That module
was a direct adaptation of Michael Parker's (B<parker@austx.tandem.com>)
Apache::AuthenSmb module.
The module uses Net::NIS::yp_match to retrieve the "passwd" entry from the
passwd.byname map, using the supplied username as the search key. It then
view all matches for this distribution
view release on metacpan or search on metacpan
smb/smbval/smblib-priv.h view on Meta::CPAN
#define SMBopen 0x02 /* open file */
#define SMBcreate 0x03 /* create file */
#define SMBclose 0x04 /* close file */
#define SMBflush 0x05 /* flush file */
#define SMBunlink 0x06 /* delete file */
#define SMBmv 0x07 /* rename file */
#define SMBgetatr 0x08 /* get file attributes */
#define SMBsetatr 0x09 /* set file attributes */
#define SMBread 0x0A /* read from file */
#define SMBwrite 0x0B /* write to file */
#define SMBlock 0x0C /* lock byte range */
view all matches for this distribution
view release on metacpan or search on metacpan
- added PerlModule in httpd.conf in docs
- fixed small scope bug
- changes colors so they are no longer awful
0.05 Fri Dec 07 18:55:00 2007 <tobert@gmail.com>
- ported to mod_perl2
- renamed to Apache2::AuthenSecurID
- perltidy
- updated most HTML to use something closer to XHTML
- made ace_initd configured via command line rather than file
- modifies its own name to hide the secret from ps
- added daemonizing code to ace_initd
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/AuthzNIS.pm view on Meta::CPAN
=head1 DESCRIPTION
This perl module is designed to work with mod_perl, the Net::NIS module by
Rik Haris (B<rik.harris@fulcrum.com.au>), and the Apache2::AuthenNIS module.
Version 0.11 of Apache::AuthzNIS was renamed and modified to use mod_perl2.
That module was a direct adaptation of Michael Parker's
(B<parker@austx.tandem.com>) Apache::AuthenSmb module (which also included
an authorization routine).
The module calls B<Net::NIS::yp_match> using each of the B<require group>
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_ const char * start, STRLEN * len_p, I32 * flags, NV * result);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/ClickPath/Store.pm view on Meta::CPAN
$c->base_server->log->info('['.__PACKAGE__."] $d/$el has expired: deleting");
rmtree $d.'/'.$el;
} else {
# stage 1
$c->base_server->log->info('['.__PACKAGE__."] $d/$el has expired: marking for deletion");
rename "$d/$el", "$d/#$el"
or do {
$c->log->error('['.__PACKAGE__."] Cannot rename $d/$el to $d/#$el: $! -- deleting $el");
rmtree $d.'/'.$el;
};
}
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
Revision history for Perl extension Apache::DebugFilter.
0.02
- Account for API rename post mp2 RC5
Philip M. Gollucci <pgollucci@p6m7g8.com>
- Maintainership handed over to
Philip M. Gollucci <pgollucci@p6m7g8.com>
view all matches for this distribution
view release on metacpan or search on metacpan
- changed the debug interface to use the ::set_debug function rather than
the package variable. recommended usage would be in your subclasses init
function
- added more documentation
- renamed the index method to root_index, because index is also the name of a
perl builtin.
0.02. (2008-02-09) - Adam Prime <adam.prime@utoronto.ca>
- Added Apache2::DirBasedHandler::Debug, which will turn on some warn messages.
view all matches for this distribution