]> andersk Git - test.git/commitdiff
Force a zero pixel margin on the <body> tag. Without this change, ShellInABox
authorMarkus Gutschke <markus@shellinabox.com>
Thu, 2 Sep 2010 23:42:42 +0000 (23:42 +0000)
committerMarkus Gutschke <markus@shellinabox.com>
Thu, 2 Sep 2010 23:42:42 +0000 (23:42 +0000)
would occasionally think that it was in "embedded" mode, whenever the user
applied a scaling factor (e.g. by pressing CTRL-Minus).

config.h
configure
configure.ac
demo/demo.html
demo/vt100.js
shellinabox/root_page.html
shellinabox/shell_in_a_box.js
shellinabox/vt100.js

index 048abd5637f146cf55e134af06fa51951a52f667..c58ce4da2bd4ac56fca6f7b2b315612fc49481ea 100644 (file)
--- a/config.h
+++ b/config.h
 #define STDC_HEADERS 1
 
 /* Most recent revision number in the version control system */
-#define VCS_REVISION "216"
+#define VCS_REVISION "217"
 
 /* Version number of package */
 #define VERSION "2.10"
index 1910a51de85e56b38acbd1982d5f585554d68237..892ad31129cdfeb7b75c97a8a11e2d8fee727271 100755 (executable)
--- a/configure
+++ b/configure
@@ -2328,7 +2328,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-VCS_REVISION=216
+VCS_REVISION=217
 
 
 cat >>confdefs.h <<_ACEOF
index ca11ec79613f861016516f49fcc023f27e659600..861b093159ea9f8d64aa5f2989180801f71ea46d 100644 (file)
@@ -2,7 +2,7 @@ AC_PREREQ(2.57)
 
 dnl This is the one location where the authoritative version number is stored
 AC_INIT(shellinabox, 2.10, markus@shellinabox.com)
-VCS_REVISION=216
+VCS_REVISION=217
 AC_SUBST(VCS_REVISION)
 AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
                    [Most recent revision number in the version control system])
index aa419881c61191af46bf4184051fb39f0ac4ae59..b62a92d9635aff5928fc6a580eb67d585ca02efb 100644 (file)
@@ -4,7 +4,7 @@
   <head>
     <!--
     ShellInABox - Make command line applications available as AJAX web applications
-    Copyright (C) 2008-2009 Markus Gutschke markus@shellinabox.com
+    Copyright (C) 2008-2010 Markus Gutschke markus@shellinabox.com
     
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License version 2 as
     -->
     <title>Shell In A Box</title>
     <link rel="stylesheet" href="styles.css" type="text/css">
+    <style type="text/css">
+      body {
+        margin: 0px;
+      }
+    </style>
     <script type="text/javascript"><!--
       // We would like to hide overflowing lines as this can lead to
       // visually jarring results if the browser substitutes oversized
index 860a250dfbb7de47260f0f3a0f6feb56580edeeb..329e3930cddedb7a7972fb0f77aa799be39fc91a 100644 (file)
@@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 216)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 217)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
index 3b15b6551bd6d0fdd9a13680de82f2bd1b684fd8..38bde27cfecb3035acd7354d0821823115a7396e 100644 (file)
@@ -4,7 +4,7 @@
   <head>
     <!--
     ShellInABox - Make command line applications available as AJAX web applications
-    Copyright (C) 2008-2009 Markus Gutschke markus@shellinabox.com
+    Copyright (C) 2008-2010 Markus Gutschke markus@shellinabox.com
     
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License version 2 as
       })();
     --></script>
     <link rel="stylesheet" href="styles.css" type="text/css">
+    <style type="text/css">
+      body {
+        margin: 0px;
+      }
+    </style>
     <script type="text/javascript"><!--
       (function() {
         // We would like to hide overflowing lines as this can lead to
index fbef13354f592bc3ea112c7ea50271a58c85b00a..86b0d4da911fcc387dca99b46b18d1ff952d2b88 100644 (file)
@@ -358,7 +358,7 @@ ShellInABox.prototype.extendContextMenu = function(entries, actions) {
 };
 
 ShellInABox.prototype.about = function() {
-  alert("Shell In A Box version " + "2.10 (revision 216)" +
+  alert("Shell In A Box version " + "2.10 (revision 217)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com" +
         (typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ?
index 860a250dfbb7de47260f0f3a0f6feb56580edeeb..329e3930cddedb7a7972fb0f77aa799be39fc91a 100644 (file)
@@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 216)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 217)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
This page took 0.107379 seconds and 5 git commands to generate.