Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd committed Apr 1, 2014
1 parent 99cffd9 commit 060e305
Show file tree
Hide file tree
Showing 13 changed files with 1,105 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*~
node_modules
2 changes: 2 additions & 0 deletions icons/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

Public Domain Icons used from the Apache project - http://www.apache.org/icons/
Binary file added icons/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/blank.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/folder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/unknown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script data-main="src/main" src="lib/require.js"></script>
</head>
<body>
<div id="ui" style="display:none">
<h3>Filer bootloader</h3>
<p>This page is a bootloader capable of creating a Filer filesystem,
installing a zipped archive to that filesystem, and loading files from it.</p>

<p>Boot options are passed on the query string. Valid options include:</p>
<ul>
<li><code>?reset</code (e.g., <a href="?reset">format the current fs (wipe it)</a>
<li><code>?install={zipfile url}</code> (e.g., <a href="?install=webmaker-kits-gh-pages.zip">?install=webmaker-kits-gh-pages.zip</a>)
<li><code>?/{path to file in filesystem}</code> (e.g., <a href="?/webmaker-kits-gh-pages">?/webmaker-kits-gh-pages</a>
</ul>
</div>
</body>
</html>
Loading

0 comments on commit 060e305

Please sign in to comment.