<%page args="artist, error, bio, stylesheet, datasource, album, art_links, alb_links, link_images" /> <%! import re import cgi remove_links = re.compile (']*> ',re.VERBOSE) def cleanup(text): if text is None: return _("No information available") text = remove_links.sub ('', text) text = text.replace('\n', '

') return text %> %if error is None:

${artist | h}

<% bio = cleanup(bio) %>

${bio}

${ _("Biography provided by: ")}${datasource}

%else:

${ _("Unable to retrieve artist information:") }

${error | h}

%endif