summaryrefslogtreecommitdiff
path: root/doc/design/assistant/webapp.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-05-26 21:11:19 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-05-26 21:11:19 -0400
commit45a01db6add3399ff6ca93f2e7c7d83dbf59992d (patch)
tree0616e646feb8e663c9c995be32c03260483554a8 /doc/design/assistant/webapp.mdwn
parentf7524811e2e47ca8455d3038b6d0a8102e5a5044 (diff)
add preliminary design
Diffstat (limited to 'doc/design/assistant/webapp.mdwn')
-rw-r--r--doc/design/assistant/webapp.mdwn27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/design/assistant/webapp.mdwn b/doc/design/assistant/webapp.mdwn
new file mode 100644
index 000000000..c0f6b893e
--- /dev/null
+++ b/doc/design/assistant/webapp.mdwn
@@ -0,0 +1,27 @@
+The webapp is a web server that displays a shiny interface.
+
+## security
+
+* Listen only to localhost.
+* Instruct the user's web browser to open an url that contains a secret
+ token. This guards against other users on the same system.
+* I would like to avoid passwords or other authentication methods,
+ it's your local system.
+
+## interface
+
+* list of files uploading and downloading
+* progress bars for each file
+* drag and drop to reorder
+* cancel and pause
+
+## implementation
+
+Hope to use Yesod.
+
+TODO: Ensure that Yesod will work on arm. Necessary for later Android port.
+Will its template haskell cause a problem? Does new GHC support TH on ARM?
+Will it use too much memory or be too slow?
+
+Hopefully Yesod comes with some good UI widgets. Otherwise, need to use
+Jquery or similar.