Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
# $Id: Htpasswd.pm,v 1.3 2000/05/24 20:27:48 kayos Exp $ package Tie::Htpasswd; use strict; use vars qw($VERSION); use Apache::Htpasswd; $VERSION = sprintf("%d.%02d",q$Revision: 1.3 $ =~ /(\d+)\.(\d+)/); my $F_FILENAME = 0; my $F_DATA = 1; sub TIEHASH { my ($pkg, $filename) = @_; my $obj = []; $obj->[$F_FILENAME] = $filename; $obj->[$F_DATA] = new Apache::Htpasswd($filename); return (bless $obj, $pkg); } sub FETCH { my ($self,$key) = @_; return $self->[$F_DATA]->fetchPass($key); } sub STORE { my ($self,$key,$value) = @_; if($self->[$F_DATA]->fetchPass($key)) { $self->[$F_DATA]->htpasswd($key,$value,1); } else { $self->[$F_DATA]->htpasswd($key,$value); } return $self->[$F_DATA]->fetchPass($key); } sub DELETE { my ($self,$key) = @_; my $prev_value = $self->[$F_DATA]->fetchPass($key); $self->[$F_DATA]->htDelete($key); return $prev_value; } sub EXISTS { my ($self,$key) = @_; my $result = $self->[$F_DATA]->fetchPass($key); return ( $result ); } sub DESTROY { my ($self) = @_; undef $self->[$F_DATA]; } 1;

In reply to Tie::Htpasswd by kayos

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-25 14:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found