hexpat-0.20.11: XML parser/formatter based on expat

Safe HaskellNone
LanguageHaskell98

Text.XML.Expat.Internal.Qualified

Description

In the default representation, qualified tag and attribute names such as <abc:hello> are represented just as a string containing a colon, e.g. "abc:hello".

This module provides functionality to handle these more intelligently, splitting all tag and attribute names into their Prefix and LocalPart components.

Synopsis

Documentation

data QName text Source #

A qualified name.

Qualified names have two parts, a prefix and a local part. The local part is the name of the tag. The prefix scopes that name to a particular group of legal tags.

The prefix will usually be associated with a namespace URI. This is usually achieved by using xmlns attributes to bind prefixes to URIs.

Constructors

QName 

Fields

Instances

Eq text => Eq (QName text) Source # 

Methods

(==) :: QName text -> QName text -> Bool #

(/=) :: QName text -> QName text -> Bool #

Show text => Show (QName text) Source # 

Methods

showsPrec :: Int -> QName text -> ShowS #

show :: QName text -> String #

showList :: [QName text] -> ShowS #

NFData text => NFData (QName text) Source # 

Methods

rnf :: QName text -> () #

type QAttributes text = Attributes (QName text) text Source #

Type shortcut for attributes with qualified names

mkQName :: text -> text -> QName text Source #

Make a new QName from a prefix and localPart.

mkAnQName :: text -> QName text Source #

Make a new QName with no prefix.

toQualified :: (NodeClass n c, GenericXMLString text) => n c text text -> n c (QName text) text Source #

fromQualified :: (NodeClass n c, GenericXMLString text) => n c (QName text) text -> n c text text Source #