packages feed

xhtml 3000.2.0.2 → 3000.2.0.3

raw patch · 17 files changed

+112/−43 lines, 17 files

Files

+ .gitignore view
@@ -0,0 +1,1 @@+.project
Text/XHtml.hs view
@@ -1,3 +1,7 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ ----------------------------------------------------------------------------- -- | -- Module      :  Text.XHtml@@ -6,8 +10,8 @@ --                (c) Bjorn Bringert, 2004-2006 -- License     :  BSD-style (see the file LICENSE) -- Maintainer  :  Chris Dornan <chris@chrisdornan.com>--- Stability   :  stable--- Portability :  portable+-- Stability   :  Stable+-- Portability :  Portable -- -- An XHTML combinator library. --
Text/XHtml/BlockTable.hs view
@@ -1,4 +1,6 @@--- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  ----------------------------------------------------------------------------- -- |@@ -7,8 +9,8 @@ --                    Science and Technology, 1999-2001 -- License     :  BSD-style (see the file LICENSE) -- Maintainer  :  Chris Dornan <chris@chrisdornan.com>--- Stability   :  stable--- Portability :  portable+-- Stability   :  Stable+-- Portability :  Portable -- -- An XHTML combinator library --
Text/XHtml/Debug.hs view
@@ -1,3 +1,9 @@+{-# OPTIONS_HADDOCK hide #-}+-- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ -- | This module contains functions for displaying --   HTML as a pretty tree. module Text.XHtml.Debug ( HtmlTree(..), treeHtml, treeColors, debugHtml ) where
Text/XHtml/Extras.hs view
@@ -1,4 +1,6 @@--- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Extras where 
Text/XHtml/Frameset.hs view
@@ -1,3 +1,7 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ -- | Produces XHTML 1.0 Frameset. module Text.XHtml.Frameset (      -- * Data types
Text/XHtml/Frameset/Attributes.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Frameset.Attributes where 
Text/XHtml/Frameset/Elements.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Frameset.Elements where 
Text/XHtml/Internals.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  ----------------------------------------------------------------------------- -- |@@ -8,8 +12,8 @@ --                (c) Bjorn Bringert, 2004-2006 -- License     :  BSD-style (see the file LICENSE) -- Maintainer  :  Chris Dornan <chris@chrisdornan.com>--- Stability   :  stable--- Portability :  portable+-- Stability   :  Stable+-- Portability :  Portable -- -- Internals of the XHTML combinator library. -----------------------------------------------------------------------------
Text/XHtml/Strict.hs view
@@ -1,3 +1,7 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ -- | Produces XHTML 1.0 Strict. module Text.XHtml.Strict (      -- * Data types
Text/XHtml/Strict/Attributes.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Strict.Attributes where 
Text/XHtml/Strict/Elements.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Strict.Elements where 
Text/XHtml/Table.hs view
@@ -1,3 +1,8 @@+{-# LANGUAGE CPP #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ -- | Table combinators for XHTML. module Text.XHtml.Table (HtmlTable, HTMLTABLE(..),                         (</>), above, (<->), beside, 
Text/XHtml/Transitional.hs view
@@ -1,3 +1,7 @@+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif+ -- | Produces XHTML 1.0 Transitional. module Text.XHtml.Transitional (      -- * Data types
Text/XHtml/Transitional/Attributes.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Transitional.Attributes where 
Text/XHtml/Transitional/Elements.hs view
@@ -1,4 +1,8 @@+{-# OPTIONS_HADDOCK hide #-} -- #hide+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif  module Text.XHtml.Transitional.Elements where 
xhtml.cabal view
@@ -1,35 +1,44 @@-Name: xhtml-Version: 3000.2.0.2-Copyright: Bjorn Bringert 2004-2006, Andy Gill, and the Oregon Graduate -           Institute of Science and Technology, 1999-2001-Maintainer: Chris Dornan <chris@chrisdornan.com>-Author: Bjorn Bringert-License: BSD3-License-file: LICENSE-Build-depends: base >= 4.0 && < 4.5-Extensions: -Synopsis: An XHTML combinator library-Category:        Web, XML, Pretty Printer-Stability:       Stable-Description:- This package provides combinators for producing-  XHTML 1.0, including the Strict, Transitional and Frameset variants.-Build-Type: Simple-Exposed-Modules: -  Text.XHtml, -  Text.XHtml.Frameset,-  Text.XHtml.Strict,-  Text.XHtml.Transitional,-  Text.XHtml.Debug,-  Text.XHtml.Table-Other-modules:-  Text.XHtml.Strict.Attributes,-  Text.XHtml.Strict.Elements,-  Text.XHtml.Frameset.Attributes,-  Text.XHtml.Frameset.Elements,-  Text.XHtml.Transitional.Attributes,-  Text.XHtml.Transitional.Elements,-  Text.XHtml.BlockTable,-  Text.XHtml.Extras,-  Text.XHtml.Internals-ghc-options: -Wall+Name:               xhtml+Version:            3000.2.0.3+Copyright:          Bjorn Bringert 2004-2006, Andy Gill, and the Oregon Graduate +                    Institute of Science and Technology, 1999-2001+Maintainer:         Chris Dornan <chris@chrisdornan.com>+Author:             Bjorn Bringert+License:            BSD3+License-file:       LICENSE+Build-depends:      base >= 4.0 && < 4.5+Synopsis:           An XHTML combinator library+Description:        This package provides combinators for producing+                    XHTML 1.0, including the Strict, Transitional and+                    Frameset variants.+Stability:          Stable+Category:           Web, XML, Pretty Printer+Homepage:           https://github.com/haskell/xhtml+Build-type:         Simple+Cabal-version:      >= 1.6++Source-repository head+    type:           git+    location:       git@github.com:haskell/xhtml.git++library +    Exposed-modules: +                    Text.XHtml, +                    Text.XHtml.Frameset,+                    Text.XHtml.Strict,+                    Text.XHtml.Transitional,+                    Text.XHtml.Debug,+                    Text.XHtml.Table+    Other-modules:+                    Text.XHtml.Strict.Attributes,+                    Text.XHtml.Strict.Elements,+                    Text.XHtml.Frameset.Attributes,+                    Text.XHtml.Frameset.Elements,+                    Text.XHtml.Transitional.Attributes,+                    Text.XHtml.Transitional.Elements,+                    Text.XHtml.BlockTable,+                    Text.XHtml.Extras,+                    Text.XHtml.Internals+    +    ghc-options:    -Wall+    Extensions:     CPP