The stupid question is the question not asked | |
PerlMonks |
comment on |
( [id://3333]=superdoc: print w/replies, xml ) | Need Help?? |
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 styleWhen 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 navigationTo 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 tidbitshtmlcodePM 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:should be changed to: where parselinksinstring takes 3 arguments:
For backward compatibility $HTMLVARS{embed_node}{doctext} will be used when (3) is missing. $qNowadays, $q is exported along with $query. The latter will still work but should be considered deprecated. Avoid hard-coded HTMLDo 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. $AUTHORYou don't need to fetch $NODE->{author_user}'s user node manually anymore - you can use $AUTHOR for that. Makeshifts last the longest. In reply to pmdevil's cave map
by Aristotle
|
|