-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
221 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{-| | ||
Module : Css.Selector | ||
Description : Css 3 selectors in Haskell. | ||
Maintainer : hapytexeu+gh@gmail.com | ||
Stability : experimental | ||
Portability : POSIX | ||
A module for backwards compatibility that re-exports 'Css3.Selector'. This module is deprecated and eventually will be removed. | ||
-} | ||
module Css.Selector {-# DEPRECATED "Use Css3.Selector instead" #-} ( | ||
module Css3.Selector, | ||
) where | ||
-- | | ||
-- Module : Css.Selector | ||
-- Description : Css 3 selectors in Haskell. | ||
-- Maintainer : hapytexeu+gh@gmail.com | ||
-- Stability : experimental | ||
-- Portability : POSIX | ||
-- | ||
-- A module for backwards compatibility that re-exports 'Css3.Selector'. This module is deprecated and eventually will be removed. | ||
module Css.Selector | ||
{-# DEPRECATED "Use Css3.Selector instead" #-} | ||
( module Css3.Selector, | ||
) | ||
where | ||
|
||
import Css3.Selector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{-| | ||
Module : Css.Selector.Core | ||
Description : A module where we define the tree of types to represent and maniplate a css selector. | ||
Maintainer : hapytexeu+gh@gmail.com | ||
Stability : experimental | ||
Portability : POSIX | ||
A module for backwards compatibility that re-exports 'Css3.Selector.Core'. This module is deprecated and eventually will be removed. | ||
-} | ||
module Css.Selector.Core {-# DEPRECATED "Use Css3.Selector.Core instead" #-} ( | ||
module Css3.Selector.Core | ||
) where | ||
-- | | ||
-- Module : Css.Selector.Core | ||
-- Description : A module where we define the tree of types to represent and maniplate a css selector. | ||
-- Maintainer : hapytexeu+gh@gmail.com | ||
-- Stability : experimental | ||
-- Portability : POSIX | ||
-- | ||
-- A module for backwards compatibility that re-exports 'Css3.Selector.Core'. This module is deprecated and eventually will be removed. | ||
module Css.Selector.Core | ||
{-# DEPRECATED "Use Css3.Selector.Core instead" #-} | ||
( module Css3.Selector.Core, | ||
) | ||
where | ||
|
||
import Css3.Selector.Core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{-| | ||
Module : Css.Selector.QuasiQuoters | ||
Description : A module that defines a quasiquoter to parse a string to a css selector. | ||
Maintainer : hapytexeu+gh@gmail.com | ||
Stability : experimental | ||
Portability : POSIX | ||
A module for backwards compatibility that re-exports 'Css3.Selector.QuasiQuoters'. This module is deprecated and eventually will be removed. | ||
-} | ||
module Css.Selector.QuasiQuoters {-# DEPRECATED "Use Css3.Selector.QuasiQuoters instead" #-} ( | ||
module Css3.Selector.QuasiQuoters | ||
) where | ||
-- | | ||
-- Module : Css.Selector.QuasiQuoters | ||
-- Description : A module that defines a quasiquoter to parse a string to a css selector. | ||
-- Maintainer : hapytexeu+gh@gmail.com | ||
-- Stability : experimental | ||
-- Portability : POSIX | ||
-- | ||
-- A module for backwards compatibility that re-exports 'Css3.Selector.QuasiQuoters'. This module is deprecated and eventually will be removed. | ||
module Css.Selector.QuasiQuoters | ||
{-# DEPRECATED "Use Css3.Selector.QuasiQuoters instead" #-} | ||
( module Css3.Selector.QuasiQuoters, | ||
) | ||
where | ||
|
||
import Css3.Selector.QuasiQuoters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{-| | ||
Module : Css.Selector.Utils | ||
Description : A set of utility methods to encode and decode strings. | ||
Maintainer : hapytexeu+gh@gmail.com | ||
Stability : experimental | ||
Portability : POSIX | ||
A module for backwards compatibility that re-exports 'Css3.Selector.Utils'. This module is deprecated and eventually will be removed. | ||
-} | ||
module Css.Selector.Utils {-# DEPRECATED "Use Css3.Selector.Utils instead" #-} ( | ||
module Css3.Selector.Utils | ||
) where | ||
-- | | ||
-- Module : Css.Selector.Utils | ||
-- Description : A set of utility methods to encode and decode strings. | ||
-- Maintainer : hapytexeu+gh@gmail.com | ||
-- Stability : experimental | ||
-- Portability : POSIX | ||
-- | ||
-- A module for backwards compatibility that re-exports 'Css3.Selector.Utils'. This module is deprecated and eventually will be removed. | ||
module Css.Selector.Utils | ||
{-# DEPRECATED "Use Css3.Selector.Utils instead" #-} | ||
( module Css3.Selector.Utils, | ||
) | ||
where | ||
|
||
import Css3.Selector.Utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.