[Fix up location of recent uploads page and rss feed Duncan Coutts **20080731000758] { hunk ./Distribution/Server/Pages/Recent.hs 76 -rssFeedURL = "/packages/recent.rss" +rssFeedURL = "/recent.rss" hunk ./Distribution/Server/Pages/Recent.hs 79 -recentAdditionsURL = "/packages/recent.html" +recentAdditionsURL = "/recent.html" hunk ./Main.hs 168 - , dir "archive" [ dir "recent" [ dir "rss" - [ method GET $ do - cacheState <- Cache.get cache - ok $ Cache.packagesFeed cacheState - ] - , method GET $ do - cacheState <- Cache.get cache - ok $ Cache.recentChanges cacheState - ] - ] + , dir "recent.rss" + [ method GET $ ok . Cache.packagesFeed =<< Cache.get cache ] + , dir "recent.html" + [ method GET $ ok . Cache.recentChanges =<< Cache.get cache ] hunk ./static/accounts.html 12 -What's new +What's new hunk ./static/hackage.html 12 -What's new +What's new hunk ./static/hackage.html 36 -as an RSS feed). +as an RSS feed). hunk ./static/upload.html 15 -What's new +What's new }