4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
9 <meta http-equiv=
"Pragma" content=
"no-cache">
10 <meta http-equiv=
"Expires" content=
"-1">
11 <title>{{title}}
</title>
12 <script type=
"text/javascript" src=
"common.js"></script>
13 <script type=
"text/javascript" src=
"example.js"></script>
15 <body data-width=
"200" data-height=
"200" data-custom-load=
"true" {{attrs}}
>
17 <h2>Status:
<code id=
"statusField">NO-STATUS
</code></h2>
18 <p>The File IO example demonstrates saving, loading, and deleting files
19 from the persistent file store.
</p>
23 <input type=
"radio" id=
"radio_saveFile" name=
"group" checked=
"checked">
25 <input type=
"radio" id=
"radio_loadFile" name=
"group">Load File
26 <input type=
"radio" id=
"radio_delete" name=
"group">Delete File/Directory
27 <input type=
"radio" id=
"radio_listDir" name=
"group">List Directory
28 <input type=
"radio" id=
"radio_makeDir" name=
"group">Make Directory
29 <input type=
"radio" id=
"radio_rename" name=
"group">Rename
32 <div class=
"function" id=
"saveFile">
36 <input type=
"text" value=
"/filename.txt">
40 <textarea id=
"saveFileEditor" cols=
"40" rows=
"10" wrap=
"hard"
41 placeholder=
"Enter some text to save in a file..."></textarea>
43 <div class=
"function" id=
"loadFile" hidden
>
47 <input type=
"text" value=
"/filename.txt">
51 <textarea cols=
"40" rows=
"10" wrap=
"hard"></textarea>
53 <div class=
"function" id=
"delete" hidden
>
56 <input type=
"text" value=
"/filename.txt">
57 <button>Delete
</button>
60 <div class=
"function" id=
"listDir" hidden
>
64 <input type=
"text" value=
"/">
65 <button>List Directory
</button>
69 <ul id=
"listDirOutput">
72 <div class=
"function" id=
"makeDir" hidden
>
75 <input type=
"text" value=
"/directory">
76 <button>Make Directory
</button>
79 <div class=
"function" id=
"rename" hidden
>
82 <input id=
"renameOld" type=
"text" value=
"/filename.txt">
86 <input id=
"renameNew" type=
"text" value=
"/filename2.txt">
88 <button>Rename
</button>
91 <pre id=
"log" style=
"font-weight: bold"></pre>
92 <!-- The NaCl plugin will be embedded inside the element with id "listener".
94 <div id=
"listener"></div>