diff markup/template.py @ 182:41db0260ebb1

Renamed `Attributes` to `Attrs` to reduce the verbosity.
author cmlenz
date Mon, 21 Aug 2006 20:03:13 +0000
parents d07ce6c1dbbe
children e27a48802987
line wrap: on
line diff
--- a/markup/template.py
+++ b/markup/template.py
@@ -24,7 +24,7 @@
 import re
 from StringIO import StringIO
 
-from markup.core import Attributes, Namespace, Stream, StreamEventKind, _ensure
+from markup.core import Attrs, Namespace, Stream, StreamEventKind, _ensure
 from markup.core import START, END, START_NS, END_NS, TEXT, COMMENT
 from markup.eval import Expression
 from markup.input import XMLParser
@@ -209,7 +209,7 @@
             kind, (tag, attrib), pos  = stream.next()
             attrs = self.expr.evaluate(ctxt)
             if attrs:
-                attrib = Attributes(attrib[:])
+                attrib = Attrs(attrib[:])
                 if isinstance(attrs, Stream):
                     try:
                         attrs = iter(attrs).next()
@@ -795,7 +795,7 @@
                                                      self._dir_order.index(b.__class__)))
                     dirmap[(depth, tag)] = (directives, len(stream), strip)
 
-                stream.append((kind, (tag, Attributes(new_attrib)), pos))
+                stream.append((kind, (tag, Attrs(new_attrib)), pos))
                 depth += 1
 
             elif kind is END:
@@ -919,7 +919,7 @@
                         if not value:
                             continue
                     new_attrib.append((name, u''.join(value)))
-                yield kind, (tag, Attributes(new_attrib)), pos
+                yield kind, (tag, Attrs(new_attrib)), pos
 
             elif kind is EXPR:
                 result = data.evaluate(ctxt)
Copyright (C) 2012-2017 Edgewall Software