diff --git a/doc/bugs/build_failure_with_kqueue_code__44___first_commit_that_breaks_is_3dce75fb23fca94ad86c3f0ee816bb0ad2ecb27c.mdwn b/doc/bugs/build_failure_with_kqueue_code__44___first_commit_that_breaks_is_3dce75fb23fca94ad86c3f0ee816bb0ad2ecb27c.mdwn new file mode 100644 index 0000000000..d0551c151b --- /dev/null +++ b/doc/bugs/build_failure_with_kqueue_code__44___first_commit_that_breaks_is_3dce75fb23fca94ad86c3f0ee816bb0ad2ecb27c.mdwn @@ -0,0 +1,25 @@ +Here goes... + +
+laplace:git-annex jtang$ make +ghc -O2 -threaded -Wall -ignore-package monads-fd -ignore-package monads-tf -outputdir tmp -IUtility -DWITH_ASSISTANT -DWITH_S3 -DWITH_WEBAPP -DWITH_KQUEUE -DOSX --make git-annex Utility/libdiskfree.o Utility/libmounts.o Utility/libkqueue.o + +Assistant/Threads/MountWatcher.hs:40:0: + warning: #warning Building without dbus support; will use mtab polling +[165 of 208] Compiling Assistant.Alert ( Assistant/Alert.hs, tmp/Assistant/Alert.o ) +[173 of 208] Compiling Assistant.DaemonStatus ( Assistant/DaemonStatus.hs, tmp/Assistant/DaemonStatus.o ) +[174 of 208] Compiling Assistant.TransferQueue ( Assistant/TransferQueue.hs, tmp/Assistant/TransferQueue.o ) +[175 of 208] Compiling Assistant.Threads.Watcher ( Assistant/Threads/Watcher.hs, tmp/Assistant/Threads/Watcher.o ) + +Assistant/Threads/Watcher.hs:61:43: + Couldn't match expected type `Utility.Kqueue.Kqueue' + with actual type `()' + Expected type: IO Utility.Kqueue.Kqueue -> IO Utility.Kqueue.Kqueue + Actual type: IO Utility.Kqueue.Kqueue -> IO () + In the fourth argument of `watchDir', namely `startup' + In the second argument of `($)', namely + `watchDir "." ignored hooks startup' +make: *** [git-annex] Error 1 ++ +> [[fixed|done]] --[[Joey]] diff --git a/doc/design/assistant/blog/day_48__intro.mdwn b/doc/design/assistant/blog/day_48__intro.mdwn new file mode 100644 index 0000000000..2cac85d4d1 --- /dev/null +++ b/doc/design/assistant/blog/day_48__intro.mdwn @@ -0,0 +1,8 @@ +Lots of WebApp UI improvements, mostly around the behavior when +displaying alert messages. Trying to make the alerts informative +without being intrusively annoying, think I've mostly succeeded now. + +Also, added an intro display. Shown is the display with only one repo; +if there are more repos it also lists them all. + +[[!img screenshot/intro.png]] diff --git a/doc/design/assistant/screenshot/intro.png b/doc/design/assistant/screenshot/intro.png new file mode 100644 index 0000000000..23ed49d677 Binary files /dev/null and b/doc/design/assistant/screenshot/intro.png differ diff --git a/doc/design/assistant/webapp.mdwn b/doc/design/assistant/webapp.mdwn index ebf1689963..da8de81329 100644 --- a/doc/design/assistant/webapp.mdwn +++ b/doc/design/assistant/webapp.mdwn @@ -38,3 +38,5 @@ The webapp is a web server that displays a shiny interface. * Fix notification handle leakage on pages other than the main page. The javascript should use AJAX to request handles, that way they won't be allocated at all in noscript. +* Hook up notificaton close button to a callback that removes the notification + from the list. Otherwise reloading brings them back.