Repository : ssh://darcs.haskell.org//srv/darcs/packages/xhtml

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/16be573978bf265f42525ab8830ba654bb7baf83

>---------------------------------------------------------------

commit 16be573978bf265f42525ab8830ba654bb7baf83
Author: Chris Dornan <[email protected]>
Date:   Wed Aug 31 17:50:36 2011 +0100

    3000.2.0.3: revise xhtml.cabal and source headers to reflect new maintainer 
and home

>---------------------------------------------------------------

 .gitignore               |    1 +
 README                   |    2 +
 Text/XHtml.hs            |    6 ++--
 Text/XHtml/BlockTable.hs |    6 ++--
 Text/XHtml/Internals.hs  |    6 ++--
 xhtml.cabal              |   78 ++++++++++++++++++++++++++--------------------
 6 files changed, 56 insertions(+), 43 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3a4edf6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.project
diff --git a/README b/README
new file mode 100644
index 0000000..9f28597
--- /dev/null
+++ b/README
@@ -0,0 +1,2 @@
+This package provides combinators for producing XHTML 1.0, including
+the Strict, Transitional and Frameset variants.
diff --git a/Text/XHtml.hs b/Text/XHtml.hs
index d2afe78..99b1cd2 100644
--- a/Text/XHtml.hs
+++ b/Text/XHtml.hs
@@ -9,9 +9,9 @@
 --                Science and Technology, 1999-2001,
 --                (c) Bjorn Bringert, 2004-2006
 -- License     :  BSD-style (see the file LICENSE)
--- Maintainer  :  Bjorn Bringert <[email protected]>
--- Stability   :  experimental
--- Portability :  portable
+-- Maintainer  :  Chris Dornan <[email protected]>
+-- Stability   :  Stable
+-- Portability :  Portable
 --
 -- An XHTML combinator library.
 --
diff --git a/Text/XHtml/BlockTable.hs b/Text/XHtml/BlockTable.hs
index 4defc72..42718a8 100644
--- a/Text/XHtml/BlockTable.hs
+++ b/Text/XHtml/BlockTable.hs
@@ -8,9 +8,9 @@
 -- Copyright   :  (c) Andy Gill, and the Oregon Graduate Institute of 
 --                    Science and Technology, 1999-2001
 -- License     :  BSD-style (see the file LICENSE)
--- Maintainer  :  Bjorn Bringert <[email protected]>
--- Stability   :  experimental
--- Portability :  portable
+-- Maintainer  :  Chris Dornan <[email protected]>
+-- Stability   :  Stable
+-- Portability :  Portable
 --
 -- An XHTML combinator library
 --
diff --git a/Text/XHtml/Internals.hs b/Text/XHtml/Internals.hs
index 66d0791..ed13e7d 100644
--- a/Text/XHtml/Internals.hs
+++ b/Text/XHtml/Internals.hs
@@ -11,9 +11,9 @@
 --                Science and Technology, 1999-2001,
 --                (c) Bjorn Bringert, 2004-2006
 -- License     :  BSD-style (see the file LICENSE)
--- Maintainer  :  Bjorn Bringert <[email protected]>
--- Stability   :  experimental
--- Portability :  portable
+-- Maintainer  :  Chris Dornan <[email protected]>
+-- Stability   :  Stable
+-- Portability :  Portable
 --
 -- Internals of the XHTML combinator library.
 -----------------------------------------------------------------------------
diff --git a/xhtml.cabal b/xhtml.cabal
index e5b6fc4..0368a72 100644
--- a/xhtml.cabal
+++ b/xhtml.cabal
@@ -1,34 +1,44 @@
-Name: xhtml
-Version: 3000.2.0.1
-Copyright: Bjorn Bringert 2004-2006, Andy Gill, and the Oregon Graduate 
-           Institute of Science and Technology, 1999-2001
-Maintainer: [email protected]
-Author: Bjorn Bringert
-License: BSD3
-License-file: LICENSE
-build-depends: base >= 4.0 && < 4.5
-Extensions: 
-Synopsis: An XHTML combinator library
-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: -O2 -W
-Extensions: CPP
+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 <[email protected]>
+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:       [email protected]: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



_______________________________________________
Cvs-libraries mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-libraries

Reply via email to