summaryrefslogtreecommitdiff
path: root/Utility/Yesod.hs
Commit message (Collapse)AuthorAge
* switch define used, not android specificGravatar Joey Hess2013-12-18
|
* fix a build failure on androidGravatar Joey Hess2013-06-27
|
* clean up build warnings with yesod 1.2, while still building with 1.1Gravatar Joey Hess2013-06-27
|
* webapp: Fix bug that caused the webapp to hang when built with yesod 1.2.Gravatar Joey Hess2013-06-27
|
* now builds with both yesod 1.2 and 1.1Gravatar Joey Hess2013-06-03
|
* add liftH shim between yesod versions, to avoid needing zillions of ifdefsGravatar Joey Hess2013-06-03
|
* don't need any of this on androidGravatar Joey Hess2013-04-15
|
* quiet android build warningsGravatar Joey Hess2013-04-15
|
* avoid TH stuff on AndroidGravatar Joey Hess2013-04-15
|
* simpler use of MIN_VERSION checksGravatar Joey Hess2013-03-10
|
* Makefile now builds using cabal, taking advantage of cabal's automatic ↵Gravatar Joey Hess2013-02-27
| | | | | | | | | detection of appropriate build flags. The only thing lost is ./ghci Speed: make fast used to take 20 seconds here, when rebuilding from touching Command/Unused.hs. With cabal, it's 29 seconds.
* support building with yesod-default 1.1.0Gravatar Joey Hess2012-08-09
| | | | | | | | | Old 1.0.1 version is still supported as well. Cabal autodetects which version is available, but in the Makefile, WITH_OLD_YESOD has to be configured appropriately. I have not squashed all the $newline warnings with the new Yesod. They should go away eventually anyway as Yesod moves past that transition.
* use widgetFileGravatar Joey Hess2012-07-26
|
* webapp now does long pollingGravatar Joey Hess2012-07-26
| | | | | | | | The webapp is now a constantly updating clock! I accomplished this amazing feat using "long polling", with some jquery and a little custom java script. There are more modern techniques, but this one works everywhere.
* added a custom defaultLayout, static site, and faviconGravatar Joey Hess2012-07-26
Broke hamlet out into standalone files. I don't like the favicon display; it should be served from /favicon.ico, but I could only get the static site to serve /static/favicon.ico, so I had to use a <link rel=icon> to pull it in. I looked at Yesod.Default.Handlers.getFaviconR, but it doesn't seem to embed the favicon into the binary?