Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

First, here is the updated (again) code for the Free Nodelet:

[% my $html = $VARS->{freenodelet} || 'Visit [Free Nodelet Settings]' .' to enter HTML to go here.'; $html= htmlcode( 'expandfreenodelet','', $html ); return $html; %]

Next, is the expandfreenodelet code that gets used above and below:

my( $html, $just )= @_; my $AUTHOR= getNodeById( $NODE->{author_user} ); my %var= ( id => $NODE->{node_id}, title => $NODE->{title}, author_id => $AUTHOR->{node_id}, author_name => $AUTHOR->{title}, author_title => $AUTHOR->{title}, user_id => $USER->{node_id}, user_name => $USER->{title}, user_title => $USER->{title}, ); # root_id root_title sect_id sect_title $html =~ s{`([\[\]]|`+|(\w+)([%&]?)`?|.)}{ my $s= $1; if( '[' eq $s ) { $just ? '[' : '`{'; } elsif( ']' eq $s ) { $just ? ']' : '`}'; } elsif( defined $2 ) { my( $key, $suff )= ( $2, $3 ); my $val; if( $key =~ /^_./ ) { $val= $q->param($key); $val= $q->param( substr($key,1) ) if ! defined $val; } else { $val= $var{ lc $key }; } if( ! defined $val ) { $val= "`$key$suff`" } elsif( $suff eq '%' ) { $val= $q->escape($val); } elsif( $suff eq '&' ) { $val= $q->escapeHTML($val); } $val; } elsif( $s =~ /^`/ ) { $just ? $s : '`'.$s; } else { $just ? '`'.$s : '``'.$s; } }seg; return $html if $just; $html =~ s{(<!--.*?-->)|\[([^\[\]]{1,4096})\]}{ $1 ? $1 : handleLinks($2) }seg; $html =~ s{`([{}]|`+|.)}{ my $s= $1; if( '{' eq $s ) { '['; } elsif( '}' eq $s ) { ']'; } elsif( $s =~ /^`/ ) { $s; } else { '`'.$s; } }seg; return $html;

Finally, here is the _freer opcode:

my $want= ($q->param("at"))[-1]; my $html= $VARS->{freenodelet}; my $update= 0; $html =~ s{(<!--(\w+-(?!->))?(.*?)(-\w+)?-->)}{ my( $cmnt, $pre, $mid, $post )= ( $1, $2, $3, $4 ); my $found= $pre || $post || ''; $found =~ s/-//; if( $found ne $want ) { $cmnt; } else { my $add= htmlcode( 'expandfreenodelet','', $mid, 1 ); $update++; $pre ? $add . $cmnt : $cmnt . $add; } }ges; # Everything::printLog( "Expanding -$want- in $USER->{title}'s freenod +elet: $update updates$/" ); $VARS->{freenodelet}= $html if $update;

- tye        


In reply to Re: Free Nodelet gets templating features (the code) by tye
in thread Free Nodelet gets templating features by tye

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 wandering the Monastery: (4)
As of 2024-03-29 11:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found