packages feed

html-minimalist 0.2 → 0.3

raw patch · 5 files changed

+10/−7 lines, 5 filessetup-changedPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Text.HTML.Light.Element: thead :: [Attr] -> [Content] -> Content

Files

README view
@@ -8,5 +8,5 @@   http://slavepianos.org/rd/   http://haskell.org/ -(c) rohan drape, 2006-2010+(c) rohan drape, 2006-2011     gpl, http://gnu.org/copyleft/
+ Setup.hs view
@@ -0,0 +1,3 @@+#!/usr/bin/env runhaskell+import Distribution.Simple+main = defaultMain
− Setup.lhs
@@ -1,3 +0,0 @@-#!/usr/bin/env runhaskell-> import Distribution.Simple-> main = defaultMain
Text/HTML/Light/Element.hs view
@@ -118,6 +118,9 @@ th :: [Attr] -> [Content] -> Content th z e = Elem (Element (unqual "th") z e Nothing) +thead :: [Attr] -> [Content] -> Content+thead z e = Elem (Element (unqual "thead") z e Nothing)+ title :: [Attr] -> [Content] -> Content title z e = Elem (Element (unqual "title") z e Nothing) 
html-minimalist.cabal view
@@ -1,5 +1,5 @@ Name:              html-minimalist-Version:           0.2+Version:           0.3 Synopsis:          Minimalist haskell html library Description:       Text.HTML.Light is a very simple Haskell module                     for writing [x]html documents.  It provides @@ -7,12 +7,12 @@                    in terms of Text.XML.Light. License:           GPL Category:          Text-Copyright:         (c) Rohan Drape, 2006-2010+Copyright:         (c) Rohan Drape, 2006-2011 Author:            Rohan Drape Maintainer:        rd@slavepianos.org Stability:         Experimental Homepage:          http://slavepianos.org/rd/?t=html-minimalist-Tested-With:       GHC == 6.10.3+Tested-With:       GHC == 6.12.1 Build-Type:        Simple Cabal-Version:     >= 1.6