diff web/src/luan/modules/web/shell.luan @ 391:2f5cc9c2cbf0

replace Html.simply_html_page with simply_html_head and simply_html_body_bottom
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 24 Apr 2015 14:05:52 -0600
parents 612a283b3d14
children 199eb7f1b828
line wrap: on
line diff
--- a/web/src/luan/modules/web/shell.luan	Fri Apr 24 12:31:13 2015 -0600
+++ b/web/src/luan/modules/web/shell.luan	Fri Apr 24 14:05:52 2015 -0600
@@ -40,26 +40,29 @@
 	end
 
 	Io.stdout = Http.response.text_writer()
-	Html.simply_html_page{
-		head = function() %>
-			<title>Luan Shell</title>
-<%		end;
-		body = function() %>
-			<div container>
-				<h3>Luan Shell</h3>
-				<p>This is a command shell.  Enter commands below.</p>
-				<pre><%
-				for _,v in ipairs(history) do
-					Io.stdout.write(v)
-				end
-				%></pre>
-				<form name='form0' method='post'>
-					% <input name='cmd' size="80" autofocus>
-					<input type="submit" value="run" textcolor="white" bgcolor="#337ab7">
-					<input type="submit" name="clear" value="clear" textcolor="white" bgcolor="#337ab7">
-				</form>
-			</div>
-<%		end;
-	}
-
+%>
+<html>
+	<head>
+		<% Html.simply_html_head() %>
+		<title>Luan Shell</title>
+	</head>
+	<body>
+		<div container>
+			<h3>Luan Shell</h3>
+			<p>This is a command shell.  Enter commands below.</p>
+			<pre><%
+			for _,v in ipairs(history) do
+				Io.stdout.write(v)
+			end
+			%></pre>
+			<form name='form0' method='post'>
+				% <input name='cmd' size="80" autofocus>
+				<input type="submit" value="run" textcolor="white" bgcolor="#337ab7">
+				<input type="submit" name="clear" value="clear" textcolor="white" bgcolor="#337ab7">
+			</form>
+		</div>
+		<% Html.simply_html_body_bottom() %>
+	</body>
+</html>
+<%
 end