packages feed

dom-selector 0.2.0.0 → 0.2.0.1

raw patch · 3 files changed

+5/−12 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Text.XML.Selector.Parser: instance [safe] Eq JQSelectorToken
- Text.XML.Selector.Parser: instance [safe] Eq NameIdClassAttr
- Text.XML.Selector.Parser: instance [safe] Ord NameIdClassAttr
- Text.XML.Selector.Parser: instance [safe] Show JQSelectorToken
- Text.XML.Selector.Parser: instance [safe] Show NameIdClassAttr
- Text.XML.Selector.Types: instance [safe] Enum AttrRel
- Text.XML.Selector.Types: instance [safe] Enum RelPrev
- Text.XML.Selector.Types: instance [safe] Eq AttrRel
- Text.XML.Selector.Types: instance [safe] Eq JQSelector
- Text.XML.Selector.Types: instance [safe] Eq RelPrev
- Text.XML.Selector.Types: instance [safe] Eq TagAttr
- Text.XML.Selector.Types: instance [safe] Ord AttrRel
- Text.XML.Selector.Types: instance [safe] Ord JQSelector
- Text.XML.Selector.Types: instance [safe] Ord RelPrev
- Text.XML.Selector.Types: instance [safe] Ord TagAttr
- Text.XML.Selector.Types: instance [safe] Read AttrRel
- Text.XML.Selector.Types: instance [safe] Read JQSelector
- Text.XML.Selector.Types: instance [safe] Read RelPrev
- Text.XML.Selector.Types: instance [safe] Read TagAttr
- Text.XML.Selector.Types: instance [safe] Show AttrRel
- Text.XML.Selector.Types: instance [safe] Show JQSelector
- Text.XML.Selector.Types: instance [safe] Show RelPrev
- Text.XML.Selector.Types: instance [safe] Show TagAttr
+ Text.XML.Selector.Parser: instance Eq JQSelectorToken
+ Text.XML.Selector.Parser: instance Eq NameIdClassAttr
+ Text.XML.Selector.Parser: instance Ord NameIdClassAttr
+ Text.XML.Selector.Parser: instance Show JQSelectorToken
+ Text.XML.Selector.Parser: instance Show NameIdClassAttr
+ Text.XML.Selector.Types: instance Enum AttrRel
+ Text.XML.Selector.Types: instance Enum RelPrev
+ Text.XML.Selector.Types: instance Eq AttrRel
+ Text.XML.Selector.Types: instance Eq JQSelector
+ Text.XML.Selector.Types: instance Eq RelPrev
+ Text.XML.Selector.Types: instance Eq TagAttr
+ Text.XML.Selector.Types: instance Ord AttrRel
+ Text.XML.Selector.Types: instance Ord JQSelector
+ Text.XML.Selector.Types: instance Ord RelPrev
+ Text.XML.Selector.Types: instance Ord TagAttr
+ Text.XML.Selector.Types: instance Read AttrRel
+ Text.XML.Selector.Types: instance Read JQSelector
+ Text.XML.Selector.Types: instance Read RelPrev
+ Text.XML.Selector.Types: instance Read TagAttr
+ Text.XML.Selector.Types: instance Show AttrRel
+ Text.XML.Selector.Types: instance Show JQSelector
+ Text.XML.Selector.Types: instance Show RelPrev
+ Text.XML.Selector.Types: instance Show TagAttr

Files

Text/XML/Selector/Parser.hs view
@@ -3,10 +3,6 @@ -- {-# LANGUAGE DoAndIfThenElse #-} -{-# LANGUAGE CPP #-}-#if __GLASGOW_HASKELL__ >= 702-{-# LANGUAGE Safe #-}-#endif  module Text.XML.Selector.Parser (parseJQ) where import Text.Parsec
Text/XML/Selector/Types.hs view
@@ -1,8 +1,3 @@-{-# LANGUAGE CPP #-}-#if __GLASGOW_HASKELL__ >= 702-{-# LANGUAGE Safe #-}-#endif- module Text.XML.Selector.Types where   import Data.List (sort)
dom-selector.cabal view
@@ -3,7 +3,7 @@  -- The name of the package. name:                dom-selector-version:             0.2.0.0+version:             0.2.0.1 synopsis:            DOM traversal by CSS selectors for xml-conduit package description:   CSS selector support for xml-conduit/html-conduit. This package supports compile-time checking of CSS selectors using quasiquotes. All DOM traversals are purely functional.@@ -42,14 +42,16 @@   .   Changes:   .-    Ver 0.2: All scraping functions return lazy text now. It is implemented with a type class.+  Ver 0.2.1: Inappropriate Safe Haskell pragma was removed.+  .+  Ver 0.2: All scraping functions in Text.XML.Scraping return lazy text now. They are implemented with a type class.  homepage:            https://github.com/nebuta/ license:             BSD3 license-file:        LICENSE author:              Nebuta Lab maintainer:          nebuta.office@gmail.com-copyright:           Copyright 2012 by Nebuta Lab           +copyright:           Copyright 2012-2013 by Nebuta Lab            category:            Web stability:           beta build-type:          Simple