yesod-examples 0.8.0.1 → 0.8.0.2
raw patch · 3 files changed
+3/−3 lines, 3 files
Files
- src/blog.lhs +1/−1
- src/chat.hs +1/−1
- yesod-examples.cabal +1/−1
src/blog.lhs view
@@ -1,4 +1,4 @@-<p>Well, just about every web framework I've seen starts with a blog tutorial- so here's mine! Actually, you'll see that this is actually a much less featureful blog than most, but gives a good introduction to Yesod basics. I recommend you start by <a href="/book/basics.html">reading the basics chapter</a>.</p>+<p>Well, just about every web framework I've seen starts with a blog tutorial- so here's mine! Actually, you'll see that this is actually a much less featureful blog than most, but gives a good introduction to Yesod basics. I recommend you start by <a href="/book/basics">reading the basics chapter</a>.</p> <p>This file is literate Haskell, so we'll start off with our language pragmas and import statements. Basically every Yesod application will start off like this:</p>
src/chat.hs view
@@ -5,7 +5,7 @@ module Main where -import Yesod hiding (Message)+import Yesod import Yesod.Helpers.Static import Control.Concurrent.STM
yesod-examples.cabal view
@@ -1,5 +1,5 @@ Name: yesod-examples-Version: 0.8.0.1+Version: 0.8.0.2 Synopsis: Example programs using the Yesod Web Framework. Description: These are the same examples and tutorials found on the documentation site. Homepage: http://www.yesodweb.com/