Result:
found more than 1391 distributions - search limited to the first 2001 files matching your query ( run in 2.088 )


Apache2-AuthenNIS

 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


Apache2-AuthenNTLM

 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


Apache2-AuthenSecurID

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	- 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


Apache2-AuthzNIS

 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


Apache2-Banner

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

#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


Apache2-ClickPath

 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


Apache2-DebugFilter

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

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


Apache2-DirBasedHandler

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


	- 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


Apache2-FileManager

 view release on metacpan or  search on metacpan

FileManager.pm  view on Meta::CPAN



=head1 DESCRIPTION

The Apache2::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.

Apache2::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


    #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) && (rv != '')) {
            f.FILEMANAGER_cmd.value='rename';
            f.FILEMANAGER_arg.value=rv;
            f.submit();
          }
        }
        return false;\"
        ><FONT COLOR=WHITE><B>rename</B></FONT></A>",

    #Extract
    "<A HREF=# onclick=\"
        var f=window.document.FileManager;
        if (get_num_checked() == 0) {

FileManager.pm  view on Meta::CPAN

  $$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


Apache2-Filter-CSS-LESS

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - fixed: docs had wrong default content type.
    - check if Apache::Test is installed, skipping tests that require it if
      necessary.

0.20  Wed Nov 18 2009
    - rename to Apache2::Filter::CSS::LESS (was Apache2::Filter::CSS::LESSp).
    - add test for content type
    - add support for setting the content type via LessContentType

0.10  Tue Nov 17 2009
    - initial version

 view all matches for this distribution


Apache2-Filter-Minifier-CSS

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-Filter-Minifier-JavaScript

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-HttpEquiv

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-Layer

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-ModLogConfig

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

#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


Apache2-ModProxyPerlHtml

 view release on metacpan or  search on metacpan

ChangeLog  view on Meta::CPAN


17 Jun 2008 - version 2.4

	- Add 'on the fly' code rewrite capability. See ProxyHTMLRewrite
	Perl Apache variable in README file. Usefull if you want for example
	to rename the filename of an image or anything else.
	- Move project to CPAN.

30 Apr 2008 - version 2.3

	- Fix parsing/replacement of CSS url called without quote, ex:

 view all matches for this distribution


Apache2-ModSSL

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	- Makefile.PL now accepts the -apxs option.
	- using XSLoader instead of Apache2::XSLoader

0.03  Wed Apr 27 15:52:58 CEST 2005
	- ported to 2.0.0-RC5
	- renamed to Apache2::ModSSL
	- SPEC file added

0.02  Wed Dec 15 15:58:37 CET 2004
	- first public avaliable version

 view all matches for this distribution


Apache2-ModXml2

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

#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


Apache2-Mogile-Dispatch

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-Mojo

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-PPI-HTML

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-PageKit

 view release on metacpan or  search on metacpan

lib/Apache2/PageKit.pm  view on Meta::CPAN

    my $t = APR::Date::parse_http($ims);
    if ( $t && $file_mtime <= $t ) {
      return HTTP_NOT_MODIFIED;
    }
  }
  # renamed back to ht_time in mod_perl 1.9913
  # $apr->headers_out->{'Last-Modified'}  = Apache2::Util::format_time($file_mtime, '%a, %d %b %Y %H:%M:%S %Z', 1, $apr->pool );
  $apr->headers_out->{'Last-Modified'}  = Apache2::Util::ht_time( $apr->pool, $file_mtime );
  
  require MIME::Types;
  my ($media_type) = MIME::Types::by_suffix($filename);

 view all matches for this distribution


Apache2-PodBrowser

 view release on metacpan or  search on metacpan

t/002.t  view on Meta::CPAN

                  ioctl join keys kill last lc lcfirst length link listen
                  local localtime lock log lstat m map mkdir msgctl msgget
                  msgrcv msgsnd my next no oct open opendir ord our pack
                  package pipe pop pos print printf prototype push q qq qr
                  quotemeta qw qx rand read readdir readline readlink
                  readpipe recv redo ref rename require reset return reverse
                  rewinddir rindex rmdir s scalar seek seekdir select semctl
                  semget semop send setgrent sethostent setnetent setpgrp
                  setpriority setprotoent setpwent setservent setsockopt
                  shift shmctl shmget shmread shmwrite shutdown sin sleep
                  socket socketpair sort splice split sprintf sqrt srand

 view all matches for this distribution


Apache2-SSI

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-ScoreBoardFile

 view release on metacpan or  search on metacpan

ppport.h  view on Meta::CPAN

#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


Apache2-WurflPremium

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


Apache2-WurflSimple

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


ApacheBench

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

restructured regression hash; will break some scripts;
see README.upgrading_0.5x-0.6x for details

added new object-oriented API; see documentation for details

renamed 'cookie' to 'cookies' and 'filesize' to 'buffersize' in
configuration hash sent to ab() XS routine

added support for customizable Content-type: headers in HTTP request

added request time tracking (times taken to send each HTTP request)

Changes  view on Meta::CPAN


changed Content-type for POST requests to application/x-www-form-urlencoded

=item 0.51 - Sep 26, 2000

renamed module from ApacheBench to HTTPD::Bench::ApacheBench,
suggested by Stas Bekman

=item 0.5 - Sep 20, 2000

initial public release

 view all matches for this distribution


ApacheLog-Compressor

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

     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


ApacheLog-Parser

 view release on metacpan or  search on metacpan

bin/cron.loghack  view on Meta::CPAN

    $base =~ s/\.gz$/\.bz2/;
    my $dest = $self->archive / $server + $base;
    $self->stdout("archive $file to $dest");
    $dest->e and die "$dest already exists";
    if($file =~ m/\.bz2$/) {
      $file->rename($dest);
    }
    else {
      IPC::Run::run(
        [qw(gunzip -c)], '<', "$file", '|',
        [qw(bzip2 -c)], '>', "$dest"

 view all matches for this distribution


( run in 2.088 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )