OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-registry Date: 27-Nov-2005 00:39:34
Branch: HEAD Handle: 2005112623393300
Modified files:
openpkg-registry registry-ui.pl
Log:
correct placement of markers for ase head and body substitution
Summary:
Revision Changes Path
1.33 +8 -3 openpkg-registry/registry-ui.pl
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-registry/registry-ui.pl
============================================================================
$ cvs diff -u -r1.32 -r1.33 registry-ui.pl
--- openpkg-registry/registry-ui.pl 26 Nov 2005 23:38:20 -0000 1.32
+++ openpkg-registry/registry-ui.pl 26 Nov 2005 23:39:33 -0000 1.33
@@ -365,9 +365,6 @@
$head .= " <head>\n";
$head .= " <link rel=\"stylesheet\" type=\"text/css\"
href=\"$myurl?page=css\"/>\n";
$head .= &printjscheckallboxes();
- if ($cfg->{identification}->{mode} eq "ase") {
- $head .= $ase->canvas(-part => "head");
- }
$head .= " </head>\n";
$head .= " <body class=\"registry\"><div class=\"registry\">\n";
$head .= " <img id=\"logo\"
src=\"http://www.openpkg.org/openpkg.gif\" alt=\"\" width=\"148\"
height=\"80\"/>\n";
@@ -396,6 +393,9 @@
$head .= " </tr>\n";
$head .= " </table>\n";
}
+ if ($cfg->{identification}->{mode} eq "ase") {
+ $head .= $ase->canvas(-part => "head") . "\n";
+ }
return $head;
}
@@ -404,6 +404,11 @@
my ($html);
$html = "";
+
+ if ($cfg->{identification}->{mode} eq "ase") {
+ $html .= $ase->canvas(-part => "body") . "\n";
+ }
+
$html .= " </div></body>\n";
$html .= "</html>\n";
return $html;
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]