[Updates to copy on front page, Added crash course to quicklinks, removed links to obsolete tutorial.happstack.com, Added link to web-routes on docs page. other copy updates. jeremy@seereason.com**20110713210052 Ignore-this: 9669a8add1b3dc55e011aadbe253526c ] hunk ./Main.hs 10 -import Happstack.Server (Conf(port), Method(GET), Response, ServerPartT, asContentType, dir, fileServe, methodM, nullConf, ok, nullDir, seeOther, serveFile, simpleHTTP, toResponse) +import Happstack.Server (Browsing(DisableBrowsing), Conf(port), Method(GET), Response, ServerPartT, asContentType, dir, serveDirectory, methodM, nullConf, ok, nullDir, seeOther, serveFile, simpleHTTP, toResponse) hunk ./Main.hs 67 - , dir "theme" $ fileServe [] themeDir + , dir "theme" $ serveDirectory DisableBrowsing [] themeDir hunk ./Main.hs 69 - , fileServe [] ircLogDir + , serveDirectory DisableBrowsing [] ircLogDir hunk ./Main.hs 75 - , dir "crashcourse" $ fileServe [] "/home/jeremy/public_html/happstack-crashcourse" - , fileServe [] docDir + , dir "crashcourse" $ serveDirectory DisableBrowsing [] "/home/jeremy/public_html/happstack-crashcourse" + , serveDirectory DisableBrowsing [] docDir hunk ./Main.hs 228 +
The Happstack project focuses on three areas of development:
+ +Happstack's RAM cloud database architecture provides you the speed and predictability of RAM based queries combined with the durability, replication, and ACID properties of traditional databases. This architecture provides you with fast, predictable query times with out the uncertainly of cache misses. It simplifies your development because it is built around Haskell datatypes and functions. This means you do not need to learn a specialized query language. You also do not have to worry about database denormalization, data marshaling, SQL-injection attacks, etc. Nor do you have to worry about installing, tuning, configuring, and upgrading a caching layer such as memcached or database servers.
+Happstack favors the use of acid-state, a RAM cloud database architecture. acid-state provides you the speed and predictability of RAM based queries combined with the durability, replication, and ACID properties of traditional databases. This architecture provides you with fast, predictable query times with out the uncertainly of cache misses. It simplifies your development because it is built around Haskell datatypes and functions. This means you do not need to learn a specialized query language. You also do not have to worry about database denormalization, data marshaling, SQL-injection attacks, etc. Nor do you have to worry about installing, tuning, configuring, and upgrading a caching layer such as memcached or database servers.
hunk ./Main.hs 310 -Happstack does not force you to use any particular templating or HTML generation solution. Each organization and project has different needs and a one size fits all approach can not satisfy everyone. Instead Happstack provides integration with a variety of templating solutions to meet different needs. This includies HSP, HStringTemplate, hamlet, BlazeHTML and more! It is easy to add additional 3rd party or custom options as well. A discussion of options can be found here.
+Happstack does not force you to use any particular templating or HTML generation solution. Each organization and project has different needs and a one size fits all approach can not satisfy everyone. Instead Happstack provides integration with a variety of templating solutions to meet different needs. This includies HSP, HStringTemplate, hamlet, heist, BlazeHTML and more! It is easy to add additional 3rd party or custom options as well. A discussion of options can be found here.
hunk ./Main.hs 313 -Happstack includes a number of optional features which can increase the type safety of your web application. This means greater assurance that your site is free from broken URLs, SQL and javascript injection attacks, missing form fields, etc. This includes technology such as web-routes for type-safe URL routing and formlets for type-safe form processing.
+Happstack includes a number of optional features which can increase the type safety of your web application. This means greater assurance that your site is free from broken URLs, SQL and javascript injection attacks, missing form fields, etc. This includes technology such as web-routes for type-safe URL routing and digestive-functors for type-safe form processing.
hunk ./Main.hs 407 -The Happstack Crash Course is the new friendly introduction to Happstack. Unfortunately, it is so new that it isn't done yet. But it is still a great place to get started. It is updated frequency so check back often.
+The Happstack Crash Course is the most complete resource for learning Happstack. New sections are added regularly, so check back often.
+ {- hunk ./Main.hs 411 +-} hunk ./Main.hs 415 - Happstack type-safe routing and URLs using web-routes and the Regular library +Crash course section of web-routes
+Happstack type-safe routing and URLs using web-routes and the Regular library
hunk ./Main.hs 420 -You can browse the source code for the guestbook demohere.
+You can browse the source code for the guestbook demo here.
hunk ./debian/changelog 1 +haskell-happstackdotcom (0.0.47) unstable; urgency=low + + * Updates to copy on front page + * Added crash course to quicklinks + * removed links to obsolete tutorial.happstack.com + * Added link to web-routes on docs page + + -- Jeremy Shaw