thirdparty/google_appengine/google/appengine/ext/admin/templates/interactive-output.html
changeset 149 f2e327a7c5de
equal deleted inserted replaced
148:37505d64e57b 149:f2e327a7c5de
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     2 <html xmlns="http://www.w3.org/1999/xhtml">
       
     3 <head>
       
     4 <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
       
     5 <title>Results</title>
       
     6 <style type="text/css">
       
     7 body {
       
     8   margin: 0;
       
     9   padding: 0;
       
    10   position: absolute;
       
    11   top: 0;
       
    12   bottom: 0;
       
    13   left: 0;
       
    14   right: 0;
       
    15   background-color: #f5f5f5;
       
    16 }
       
    17 #output {
       
    18   font-family: monospace;
       
    19   font-size: 10pt;
       
    20   margin: 0;
       
    21   padding: 0;
       
    22   height: 100%;
       
    23   width: 100%;
       
    24   overflow: auto;
       
    25   white-space: -moz-pre-wrap;
       
    26   white-space: -pre-wrap;
       
    27   white-space: -o-pre-wrap;
       
    28   white-space: pre-wrap;
       
    29   word-wrap: break-word;
       
    30 }
       
    31 </style>
       
    32 </head>
       
    33 <body>
       
    34 <pre id="output">{{ output|escape }}</pre>
       
    35 </body>
       
    36 </html>