the gilded frame says EDEV: would it be possible to include a printable version link on Everything New Nodes?
Easy enough, since displaytype=printable is already supported for superdocs. Add this to it (I'd suggest the end, and wrapped in a <p align=right>:
[% linkNode($NODE, 'printable version', { displaytype => 'printable' } ) %]

Update: This isn't quite what tgf was going for. Look at the full node -- it's a stab at adding AvantGo ability to E2. Nifty.
An attempt at an AvantGo-friendly ENN (should be created as a fullpage):
[%
my $limit = 100;
my $isEd = (exists $HTMLVARS{'group_content editors'}{$uid}) || (exists $HTMLVARS{'group_gods'}{$uid})
my $qry = "SELECT * FROM newwriteup, node where newwriteup.node_id=node.node_id
         ";

$qry.= "and notnew=0 " unless isEd;
$qry.= " order by newwriteup_id DESC LIMIT $limit";

my $csr = $Everything::dbh->prepare($qry);

$csr->execute or return "SHIT";
my $count=0;

my $str ="<h1>AvantGo-nice ENN</h1><p>\n";


use Everything::XML;

while(my $N = $csr->fetchrow_hashref){
  $N = getNode $$N{node_id};
  $str .=  linkNode($N)." by ".$$N{author_user}."<br>"
}
$csr->finish;

return($str);
%]