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


Apache-GDGraph

 view release on metacpan or  search on metacpan

t/simple_request.t  view on Meta::CPAN

use strict;

# Check for Apache::FakeRequest, skip tests otherwise
eval "require Apache::FakeRequest;";
if ($@) {
	print "1..0 # Skip looks like Apache2, haven't updated test yet.\n";
	exit;
}

# Number of tests.
print "1..2\n";

 view all matches for this distribution


Apache-Gallery

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.1.1 Sat Sep 30 01:10:03 2001
	- Added src/addcomments.pl script for editing picture
	  comments.

	- Templates have been updated by Erwin Lansing and 
	  Thomas Kjaer and are now much nicer by default!

0.1  Mon Aug 20 19:38:31 2001
	- original version; created by h2xs 1.21 with options
		-XA -n Apache::Gallery

 view all matches for this distribution


Apache-GeoIP

 view release on metacpan or  search on metacpan

Apache/Geo/IP.pm  view on Meta::CPAN


=item PerlSetVar GeoIPFlag Standard

Flags can be set to either I<STANDARD>, or for faster performance 
(at a cost of using more memory), I<MEMORY_CACHE>. When using memory 
cache you can force a reload if the file is updated by setting I<CHECK_CACHE>. 
I<INDEX_CACHE> caches the most frequently accessed index portion of the database, 
resulting in faster lookups than I<STANDARD>, but less memory usage than 
I<MEMORY_CACHE> - this is useful for larger databases such as GeoIP 
Organization and GeoIP City. Note, for GeoIP Country, Region and Netspeed databases, 
I<INDEX_CACHE> is equivalent to I<MEMORY_CACHE>.

 view all matches for this distribution


Apache-JAF

 view release on metacpan or  search on metacpan

lib/JAF/DBI.pm  view on Meta::CPAN


sub _init {
  my $self = shift;

  $self->{insert_message} = "Record's inserted";
  $self->{update_message} = "Record's updated";
  $self->{delete_message} = "Record's deleted";
}

sub error { shift()->{parent}->error(@_) }
sub message { shift()->{parent}->message(@_) }

 view all matches for this distribution


Apache-Keywords

 view release on metacpan or  search on metacpan

lib/Apache/Keywords.pm  view on Meta::CPAN

	    $new_keywords = $2;
	}
    }
    close(FILE);
    # "Touch" the file, so that the ContentHandler really sends the file
    # (including the updated cookie)
    my $now = time;
    utime $now,$now,$r->filename;
    # If there are any new keywords from this document, update the user's
    # profile and re-store it in the cookie
    # Get old "keywords" cookie

lib/Apache/Keywords.pm  view on Meta::CPAN

sub new_keywords_asp {
    my ($self,$Request,$new_keywords) = @_;
    new_keywords($self,$Request->{r},$new_keywords);
}

# Take a content profile e.g. from a page, and updated the profile from
# fetched from a users profile (stored in a cookie)
sub make_profile
{
    # Two arguments:
    my ($keywords, # e.g. "football: 3, hockey: 2"

 view all matches for this distribution


Apache-LangPrefCookie

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

     - cleanup Makefile.PL, Perl >= 5.6.0 required.
     - Fix README, docs clarifications
     - more tests

1.01 - set Vary header if needed
     - updated references to Apache2 in the pod

1.02 - set Vary header whenever handler is run

1.03 - avoid $`
     - avoid warnings about uninitialised strings

 view all matches for this distribution


Apache-LoadAvgLimit

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension Apache::LoadAvgLimit.

note: the module will never be updated for new feature.

0.04    Tue Jun 25 14:20:07 UTC 2013

    * marked as deprecated.
    * switched to Minilla.

 view all matches for this distribution


Apache-LogFormat-Compiler

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.11 2013-04-03T06:51:48Z

    - re-packaging with Minilla

0.10    Mon Mar 25 17:34:14 2013
    - updated docs

0.05    Fri Mar 22 16:18:21 2013
    - compatibility with Plack::Middleware::AccessLog
      if reqtime is undefined, use "-" instead of "0" for %D and %T. 

 view all matches for this distribution


Apache-LoggedAuthDBI

 view release on metacpan or  search on metacpan

AuthDBI.pm  view on Meta::CPAN


If a pwd_whereclause exists, it is appended to the SQL-select.

This module supports in addition a simple kind of logging mechanism. Whenever 
the handler is called and a log_string is configured, the log_field will be 
updated with the log_string. As log_string - depending upon the database - 
macros like TODAY can be used. 

The SQL-select used for the logging mechanism is as follows: 

 UPDATE pwd_table SET log_field = log_string WHERE uid_field = user

 view all matches for this distribution


Apache-Logmonster

 view release on metacpan or  search on metacpan

lib/Apache/Logmonster/Utility.pm  view on Meta::CPAN

        sudo        => $sudo,
        %args
    )
    if $mode; # set file permissions (paranoid)

    $log->audit( "  updated $existing" );
    return 1;
}

sub install_if_changed_copy {
    my $self = shift;

lib/Apache/Logmonster/Utility.pm  view on Meta::CPAN


    return $log->error( "could not send notice, Mail::Send is not installed!", fatal => 0)
        if $EVAL_ERROR;

    my $msg = Mail::Send->new;
    $msg->subject("$existing updated by $0");
    $msg->to($email);
    my $email_message = $msg->open;

    print $email_message "This message is to notify you that $existing has been altered. The difference between the new file and the old one is:\n\n$diffie";

 view all matches for this distribution


Apache-MiniWiki

 view release on metacpan or  search on metacpan

example/edit,v  view on Meta::CPAN

@*** empty log message ***
@
text
@Writing pages

Writing and creating pages is simple. If you see a page that you wish to change, just press the "Edit" link. You will then receive a page where you can edit the information. When you subsequently press "Submit", having done your changes, the page is ...

Instead of using regular HTML code, all content is written as plain text which is formatted into HTML when viewed. 

The following is true for all pages:

 view all matches for this distribution


Apache-OWA

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

- Added code to show some "/perl-status" information.

0.3
- Merged Apache::OWA and Apache::OWA::AUTH into one module
- Eliminated use of CGI.pm.
- updated documentation
- created Makefile.PL and stuff.

0.2
- changed name
- minimize use of CGI.pm

 view all matches for this distribution


Apache-OneTimeURL

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

1.35 2021-07-04 JANITOR
    - Switched to Dist::Zilla

1.34 2016-02-04 NEILB
    - Fixed rendering problem with SYNOPSIS. Thanks to Pete Houston.
    - README updated to have relevant content instead of boilerplate.
      Also thanks to Pete Houston.

1.33 2015-10-23 NEILB
    - Updated repo URL with my new github username

 view all matches for this distribution


Apache-PAR

 view release on metacpan or  search on metacpan

PAR/Static.pm  view on Meta::CPAN

	unless (defined $cache_results) {
		$r->log->debug("Apache::PAR::Static: Cache miss for $location in $filename") if $cache_debug;
		return undef;
	}

	# Check for updated file
	my $cache_mtime = $cache_results->[0];
	unless ($cache_mtime == $file_mtime) {
		$cache_obj->remove($location);
		$r->log->debug("Apache::PAR::Static: Cache time does not match file modified time for $location in $filename") if $cache_debug;
		return undef;

 view all matches for this distribution


Apache-PSP

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.1  16 Aug 2001
  - first open source version

0.2  01 Apr 2002
  - updated PSP namespace to Template:PSP

0.3  03 Apr 2002
  - first make-able version
  - removed reliance on File::PathConvert
  - moved Tags.psp to permanent (?) location

Changes  view on Meta::CPAN

  - improved recovery from in-page fatal errors by causing interpreter 
    to restart after these errors
  - replaced erroneous reference to HTML::TokeParser with HTML::Parser

0.80  29 Jan 2003
  - updated include tag to use new abs_path
  - noticed that 0.7 is being treated as "older" than 0.51,
    which means that 1.0 will have to be just around the corner...
    
0.81  03 Feb 2003
  - updated %COOKIE hash code to handle url-encoded cookies properly

0.82  22 Apr 2003
  - special non-CGI::Minimal version for Charles Cowdrick

0.91  25 Sep 2003

 view all matches for this distribution


Apache-PageKit

 view release on metacpan or  search on metacpan

lib/Apache/PageKit/View.pm  view on Meta::CPAN

    die "Error loading record for page_id $page_id and view $pkit_view"
      unless $record;
  }

  if($view->{reload} ne 'no'){
    # check for updated files on disk
    unless($view->_is_record_uptodate($record, $pkit_view, $page_id)){
      # one of the included files changed on disk, reload
      $view->_load_page($page_id, $pkit_view);
      $record = $view->_fetch_from_file_cache($page_id, $pkit_view, $lang);
    }

 view all matches for this distribution


Apache-ParseFormData

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	  say "Apache::ParseFormData"
	  Thanks to Stas Bekman <stas@stason.org>

0.06  Fri Jul 25 15:39:30 WEST 2003
	- a small bug in "parse_content" was fixed
	- the documetation has been updated

0.05  Thu Jul 24 14:00:22 WEST 2003
	- the cookies are implemented
	- the "_parse_query" method has changed
	- a bug where upload multiple files has been fixed
	- a major bug where set values in param method has been fixed
	- fixed a bug in "DESTROY" method before clean temporary files
	- updated documentation

0.04  Tue Jul 22 18:44:04 WEST 2003
	- added "disable_uploads" and "post_max" keywords to the
	  constructor
	- new method "parse_result" was also added
	- a bug in documentation has been fixed

0.03  Mon Jul 21 17:52:07 WEST 2003
	- set the "PREREQ_PM" keyword in Makefile.PL file
	- the return value of method "upload" was changed
	- the documetation has been updated

0.02  Mon Jul 21 11:14:51 WEST 2003
	- "delete" and "delete_all" methods have been added
	- now, is possible set multiple values in param method like CGI.pm
	- the documetation was also updated

0.01  Fri Jul 18 18:09:51 WEST 2003
	- original version; created by h2xs 1.22 with options
		-X -n Apache::ParseFormData

 view all matches for this distribution


Apache-Perldoc

 view release on metacpan or  search on metacpan

ChangeLog  view on Meta::CPAN


2002-06-28 07:55  rbowen

	* MANIFEST (1.2, apache-perldoc-1_10): Added ChangeLog to MANIFEST
	so that we can have some record of what is getting changed. Now, if
	I can just remember to keep it updated ...

2002-06-28 07:47  rbowen

	* README (1.2, apache-perldoc-1_10): Updated README to match docs.

 view all matches for this distribution


Apache-ProxyRewrite

 view release on metacpan or  search on metacpan

ProxyRewrite.pm  view on Meta::CPAN

#
# Revision 1.11  2001/09/27 18:22:40  cgilmore
# corrected whitespace bug
#
# Revision 1.10  2001/07/17 20:08:42  cgilmore
# updated documentation
#
# Revision 1.9  2001/03/21 16:25:04  cgilmore
# See ChangeLog for details
#
# Revision 1.8  2001/03/21 16:03:19  cgilmore

 view all matches for this distribution


Apache-ProxyScan

 view release on metacpan or  search on metacpan

eg/rav.pl  view on Meta::CPAN

            "31" => "Syntax error.",
            "32" => "Help message.",
            "33" => "Viruses list.",
            "34" => "The updating process was successfully completed.",
            "35" => "The updating process failed.",
            "36" => "Already updated.",
            "37" => "The licensing process was successfully completed.",
            "38" => "The licensing process failed."
 );
  return scalar $codes{$rc};
}

 view all matches for this distribution


Apache-Recorder

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

	  and this was causing one of the tests in t/get_id.t to fail.
	- Updated the description in Recorder.pm to include a more
	  generic statement of what Apache::Recorder does.

0.06 Thu Jul 18 16:30:00 2002
        - updated README
	- update POD for Mock::Apache::Request
        - Added PREREQ_PM to Makefile.PL to ensure that all necessary
	  modules get installed.

0.05 Tue Jul 16 12:08:00 2002

Changes  view on Meta::CPAN

        - changed name of HTTP::TestEngine to Apache::Recorder
        - changed name of HTTP::SessionConfig to HTTP::RecordedSession, and 
	  moved into its own package

0.02  Thu Jan 22 10:08:00 2002
        - updated documentation
	- added use Apache::Log
	- updated directory organization during install
	- added 4 tests to test.pl to check for required libraries
	- fixed bug which returned no data if not part of a series of 
	  chained handlers

0.01  Mon Nov  5 06:56:41 2001

 view all matches for this distribution


Apache-RequestNotes

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

          for multi-keyed form data.
          thanks to Doug MacEachern and Matt Sergeant for
          their tips and efforts.
        - replaced pnotes('PARSE_ERROR') with 
          $Apache::RequestNotes::err
        - updated pod

0.03  4.19.2000
        - only add COOKIES pnotes if there are cookies to add
        - changed parsing error log message to error from warn
        - minor pod changes

Changes  view on Meta::CPAN

        - documented that using RequestNotes then trying to 
          use Apache::Request or CGI.pm to get to POSTed data
          is both redundant and problematic.

0.05  05.15.2000
        - updated README to be consistent with perldoc (whoops)
        - corrected installation to install to a versioned
          directory (whoops)

0.06  12.27.2000
        - changed Apache::Request->new() call to instance()

 view all matches for this distribution


Apache-SSI

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


1.91  Sun Jun 28 17:49:29 EDT 1998
   - In README and Makefile.PL, I've noted that mod_perl must be installed
     before this module will work.
   
   - I've updated everything so that it can use HTML::SimpleParse version 0.03,
     which requires that each output_* function return its output rather than
     print it.

1.90  Fri Jun 26 18:07:57 1998
   - original version; created by h2xs 1.18.  Actually a re-write of Doug

 view all matches for this distribution


Apache-Scoreboard

 view release on metacpan or  search on metacpan

TODO  view on Meta::CPAN

Apache::Scoreboard 2 REMOTE_SCOREBOARD_TYPE is available in global_score, 
should probably use that instead of the hardwired value

---

scripts under examples/ need to be updated to 2.0

---

lib/Apache/ScoreboardGraph.pm needs to be ported

 view all matches for this distribution


Apache-SdnFw

 view release on metacpan or  search on metacpan

lib/Apache/SdnFw/lib/Core.pm  view on Meta::CPAN

					}
				}
			}
		}

		$s->notify("Permissions updated");
		if ($s->{in}{return}) {
			$s->redirect(function => $s->{in}{return},
				params => $s->{in}{return_args});
		}
		return;

 view all matches for this distribution


Apache-Session-Browseable

 view release on metacpan or  search on metacpan

t/Apache-Session-Browseable-Redis.t  view on Meta::CPAN

ok( !$r->sismember( "uid_obiwan", $id1 ),
    "After update: id1 removed from old uid_obiwan index" );
ok( $r->sismember( "uid_benkenobi", $id1 ),
    "After update: id1 added to new uid_benkenobi index" );

# Verify searchOn uses the updated index
$hash = $package->searchOn( $args, 'uid', 'obiwan' );
is( keys %$hash, 0, "searchOn old value returns nothing" );

$hash = $package->searchOn( $args, 'uid', 'benkenobi' );
is( keys %$hash,            1,          "searchOn new value returns 1" );
is( $hash->{$id1}->{uid}, 'benkenobi', "Correct updated value" );

# Restore original value for subsequent tests
tie %session1, $package, $id1, $args;
$session1{uid} = 'obiwan';
untie %session1;

 view all matches for this distribution


Apache-Session-Memcached

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension Apache::Session::Memcached.

Legenda: + = new feature, ! = updated feature/bug fix, - = removed feature


0.03  Mon Sep 20 13:00:00 2004
	! Fixed 'remove' session method with 'delete' Cache::Memcached call
	+ Added delete calls in tests

 view all matches for this distribution


Apache-Session-libmemcached

 view release on metacpan or  search on metacpan

lib/Apache/Session/Store/libmemcached.pm  view on Meta::CPAN

    return ($idx, @alternative_pools);
}

=head2 _update_pools

Private method to return which pools must be updated.

If failover is not enabled only one pool is returned.
Otherwise the designated pool will be returned.

=cut

 view all matches for this distribution


Apache-Session

 view release on metacpan or  search on metacpan

lib/Apache/Session.pm  view on Meta::CPAN

gains an exclusive lock and writes the session to the data store.  
It then releases any locks it has acquired.  

Note that Apache::Session does only a shallow check to see if anything has
changed.  If nothing changes in the top level tied hash, the data will not be
updated in the backing store.  You are encouraged to timestamp the session hash
so that it is sure to be updated.

When you call the delete() method on the session object, the
object is immediately removed from the object store, if possible.

When Session encounters an error, it calls die().  You will probably 

lib/Apache/Session.pm  view on Meta::CPAN

file locking.

Corris Randall <corris@line6.net> gave us the option to use any table name in
the MySQL store.

Oliver Maul <oliver.maul@ixos.de> updated the Sybase modules

Innumerable users sent a patch for the reversed file age test in the file
locking module.

Langen Mike <mike.langen@tamedia.ch> contributed Informix modules.

 view all matches for this distribution


Apache-SessionManager

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension Apache::SessionManager.

Legenda: 
	+ = new feature
	! = updated feature/bug fix
	* = incompatible changes
	- = removed feature

1.03    Sun Nov 07 18:00:00 2004

 view all matches for this distribution


( run in 0.971 second using v1.01-cache-2.11-cpan-bbe5e583499 )