http://qs321.pair.com?node_id=243469


in reply to Re: Screamer
in thread Aristotle

Note: I had this on my home node for a long time, but it was just cluttering it up so I decided to put it here.

Wiki-ing in style

When writing on a wiki, please only add new entries at the top. Having the chronological order of posts move in different spatial directions is confusing to read. Also, please precede your entry with Username, YYYY-MM-DD.

Patch navigation

To view just the code of a patch instead of getting the usual diff, follow the "view code" link in the PmDev Nodelet. To see how the patch affected things, view it, hit the "related patches" link, and go to the previous patch. It will show what the new patch changed - in reverse, of course. This will work even for the first real patch as the gods take care to create new nodes empty and put the data in via a patch.

Coding tidbits

htmlcode

PM uses a htmlcode modified by tye. In addition to embedding [{textarea:fieldname,10,80}] into HTML template code or calling htmlcode('textarea','fieldname,10,80') from Perl code, the new and preferred call style is htmlcode('textarea','','fieldname',10,80) [note the empty second argument, '', which is required]. You can even mix the two: htmlcode('textarea','fieldname,10',80,'virtual'). This allows to fix calls to parselinksinstring to avoid using a global (which can cause very strange things when two different bits of code both want to use that function). So code that used to read:
$HTMLVARS{embed_node}{doctext} = $U->{scratchpad}; return htmlcode( 'parselinksinstring', '0' );
should be changed to:
return htmlcode( 'parselinksinstring', '', 0, '', $U->{scratchpad} );
where parselinksinstring takes 3 arguments:
  1. whether or not to process <readmore> tags
  2. the ID of the node the readmore link should go to
  3. the text of the node.

For backward compatibility $HTMLVARS{embed_node}{doctext} will be used when (3) is missing.

$q

Nowadays, $q is exported along with $query. The latter will still work but should be considered deprecated.

Avoid hard-coded HTML

Do not write non-trivial hard-coded HTML - use $q->htmlshortcut(...) and co instead. They can do intelligent defaulting based on input parameters and will automatically HTML-escape text. $q->table(...) and the like should also become smarter so they will handle CSS and other special processing some day.

$AUTHOR

You don't need to fetch $NODE->{author_user}'s user node manually anymore - you can use $AUTHOR for that.



Makeshifts last the longest.