import HTMLgen
class Area(AbstractTag) string __module__ = 'HTMLgen' dictionary attr_dict = {'id': '', 'target': '', ' ... string attr_template = '%(alt)s%(class)s%(coords) ... tuple attrs = ('alt', 'class', 'coords', ... string tagname = 'AREA' # Methods inherited by Area from AbstractTag def __add__(self, other) def __call__(self, text) def __init__(self, *contents, **kw) def __len__(self) def __setattr__(self, name, value) def __str__(self) def append(self, *items) def copy(self) def empty(self) def last(self) def markup(self, rex=None, marker=None, **kw) def prepend(self, *items)
The area is linked to a HREF specified by the href attribute.
The coords attribute is required and describes the position of
an area (in pixels) of the image in comma-separated x,y
coordinates where the upper-left corner is "0,0". For shape=rect
(the default), it is "left,top,right,bottom". For shape=circle
,
it is "center_x,center_y,radius". For shape=polygon
, it is
successive x,y vertices of the polygon. If the first and last
coordinates are not the same, then a segment is inferred to close
the polygon. If no href keyword is given a NOHREF will be
generated indicating that this region should generate no links.
Support self + list
Enable instances to be callable as text processing functions.
>>> S = HTMLgen.Strong() >>> print S('Hi!') >>> <STRONG>Hi!</STRONG>
Return the integer length of the container list.
Intercept attribute assignments.
If the attribute is a legal HTML tag attribute add it to the dict used for substitution in __str__, otherwise just set it as an instance attribute.
Generate an HTML formatted string for this object.
Append one or more items to the end of the container.
Return a full copy of the object.
Empty the contents of the container.
Return a reference to the last item in the container.
Markup the contained text with a given regex with a given tag class instance or function.
Returns the number of matching text groups.
Prepend one or more items to the top of the container.
Copyright © Robin Friedrich
All Rights Reserved
Comments to author: friedrich@pythonpros.com
Generated: Thu May 28 1998