name: regex-xmlschema
version: 0.1.0
license: BSD3
license-file: LICENSE
maintainer: Uwe Schmidt <uwe@fh-wedel.de>
stability: experimental
category: Text
synopsis: A regular expression library for W3C XML Schema regular expressions
description: This library supports full W3C XML Schema regular expressions inclusive all Unicode character sets and blocks. The complete grammar can be found under <http://www.w3.org/TR/xmlschema11-2/#regexs>. It is implemented by the technique of derivations of regular expressions. The W3C syntax is extended to support not only union of regular sets, but also intersection, set difference, exor. Matching of subexpressions is also supported. The library can be used for constricting lightweight scanners and tokenizers. It is a standalone library, no external regex libraries are used.
homepage: http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema
copyright: Copyright (c) 2009 Uwe Schmidt
build-type: Simple
cabal-version: >=1.6
tested-with: GHC
extra-source-files:
examples/test/Main.hs
examples/test/.ghci
src/Text/Regex/XMLSchema/String/Unicode/Makefile
src/Text/Regex/XMLSchema/String/Unicode/CharProps.hs
src/Text/Regex/XMLSchema/String/Unicode/GenBlocks.hs
src/Text/Regex/XMLSchema/String/Unicode/UnicodeData.txt
library
exposed-modules:
Text.Regex.XMLSchema.String.CharSet
Text.Regex.XMLSchema.String.RegexParser
Text.Regex.XMLSchema.String.XML.CharProps
Text.Regex.XMLSchema.String.Regex
Text.Regex.XMLSchema.String.Unicode.CharProps
Text.Regex.XMLSchema.String.Unicode.Blocks
Text.Regex.XMLSchema.String
hs-source-dirs: src
ghc-options: -Wall
build-depends: base >= 4,
haskell98 >= 1,
parsec >= 2.1 && < 3