[llvm-commits] CVS: llvm-www/demo/index.cgi
Chris Lattner
sabre at nondot.org
Mon Oct 1 15:52:27 PDT 2007
Changes in directory llvm-www/demo:
index.cgi updated: 1.80 -> 1.81
---
Log message:
minor reformating.
---
Diffs of the changes: (+9 -10)
index.cgi | 19 +++++++++----------
1 files changed, 9 insertions(+), 10 deletions(-)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.80 llvm-www/demo/index.cgi:1.81
--- llvm-www/demo/index.cgi:1.80 Mon Oct 1 17:44:25 2007
+++ llvm-www/demo/index.cgi Mon Oct 1 17:52:08 2007
@@ -131,19 +131,19 @@
<div class="www_sectiontitle">
Try out LLVM in your browser!
</div>
-EOF
-if ($LOGO_IMAGE_URL) {
- print "<img align=right width=100 height=111 src=\"$LOGO_IMAGE_URL\" />";
-}
+<table border=0><tr><td>
+<img align=right width=100 height=111 src="$LOGO_IMAGE_URL">
+</td><td>
+EOF
if ( -f "$ROOT/locked" ) {
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$locktime) =
stat("$ROOT/locked");
my $currtime = time();
if ($locktime + 60 > $currtime) {
- print "<p>Bitter Melon the cat says, 'this page is already in use by someone else at this ";
- print "time, try reloading in a second or two. Meow!'</p>\n";
+ print "This page is already in use by someone else at this ";
+ print "time, try reloading in a second or two. Meow!</td></tr></table>'\n";
exit 0;
}
}
@@ -151,10 +151,9 @@
system("touch $ROOT/locked");
print <<END;
-
-<p>Bitter Melon the cat says, paste a C/C++ program in the text box or upload
- one from your computer, and you can see LLVM compile it, meow!!</p>
-
+Bitter Melon the cat says, paste a C/C++ program in the text box or upload
+one from your computer, and you can see LLVM compile it, meow!!
+</td></tr></table><p>
END
print $c->start_multipart_form( 'POST', $FORM_URL );
More information about the llvm-commits
mailing list