OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <!-- |
| 4 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS fi
le |
| 5 for details. All rights reserved. Use of this source code is governed by
a |
| 6 BSD-style license that can be found in the LICENSE file. |
| 7 |
| 8 This is a port of "Exploring the FileSystem APIs" to Dart. |
| 9 See: http://www.html5rocks.com/en/tutorials/file/filesystem/ |
| 10 --> |
| 11 |
| 12 <html> |
| 13 <head> |
| 14 <meta charset="utf-8" /> |
| 15 <meta http-equiv="X-UA-Compatible" content="chrome=1" /> |
| 16 <title>TerminalFilesystem</title> |
| 17 <link href="http://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet" type="text/css" /> |
| 18 <link rel="stylesheet" href="terminal.css"> |
| 19 </head> |
| 20 <body> |
| 21 <h1>TerminalFilesystem</h1> |
| 22 <div id="container"> |
| 23 <output id="output"></output> |
| 24 <div id="input-line" class="input-line"> |
| 25 <div class="prompt">$></div><div><input id="cmdline" clas
s="cmdline" autofocus /></div> |
| 26 </div> |
| 27 </div> |
| 28 <script type="application/dart" src="terminal_filesystem.dart"></script> |
| 29 <script src="packages/browser/dart.js"></script> |
| 30 </body> |
| 31 </html> |
OLD | NEW |