Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; use HTTP::Date; print "Content-type: text/html\n\n"; my %ref; my $boarddir = './yabb/Boards'; my $boardurl = '/cgi-bin/yabb/YaBB.pl'; opendir(my $dir, $boarddir) or die("Cannot open Boards directory $!"); my @files = grep(/\.txt\Z/, readdir($dir)); closedir($dir); my @months = qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ); my $file; my $time; foreach $file (@files){ open(my $fh, "$boarddir/$file") or die("Cannot open File $!"); flock($fh, 4); while(<$fh>){ my ($id, $name, $user, $email, $datetime) = split(/\|/, $_); if($datetime =~ m#(\d+)/(\d+)/(\d+) at (\d\d:\d\d:\d\d)#){ my $num = $1; $num--; my $month = $months[$num]; $time = "$2 $month $3 $4 GMT"; $datetime = str2time($time); my $board; if($file =~ /(\w+)\./){ $board = $1; } $ref{$datetime} = ({ 'time' => $time, 'num' => $id, 'board' => $board, 'description' => $name, }); } } close($fh); } foreach(sort {$b <=> $a} keys %ref){ my %link = %{ $ref{$_} }; print qq[<div id="lastmbpost"><a href="$boardurl?board=$link{board +};action=display;num=$link{num};start=1">$link{description}</a><br /> +was updated on $link{time}</div>]; last; }

In reply to Display most recent post to a YaBB forum by newrisedesigns

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 taking refuge in the Monastery: (4)
As of 2024-04-24 01:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found