text
stringlengths
0
828
check_signature(
object_name,
the_object,
object_signature)
except AutodiscoveryError as err:
raise AutodiscoveryError(
'Plugin ""%s"" '
'contains object ""%s"" with a wrong signature: %s' %
(plugin_name, object_name, err))
plugin[object_name] = the_object
if other_data:
the_other_data = {}
for data_name, (dummy, data_default) in iteritems(other_data):
the_other_data[data_name] = getattr(the_plugin, data_name,
data_default)
try:
the_other_data = wash_urlargd(the_other_data, other_data)
except Exception as err:
raise AutodiscoveryError(
'Plugin ""%s"" contains other '
'data with problems: %s' %
(plugin_name, err))
plugin.update(the_other_data)
return plugin
return plugin_builder"
4636,"def email_quoted_txt2html(text,
tabs_before=0,
indent_txt='>>',
linebreak_txt=""\n"",
indent_html=('<div class=""commentbox"">', ""</div>""),
linebreak_html='<br/>',
indent_block=True):
""""""
Takes a typical mail quoted text, e.g.::
hello,
you told me:
>> Your mother was a hamster and your father smelt of elderberries
I must tell you that I'm not convinced. Then in this discussion:
>>>> Is there someone else up there we could talk to?
>> No. Now, go away, or I shall taunt you a second time-a!
I think we're not going to be friends!
and return an html formatted output, e.g.::
hello,<br/>
you told me:<br/>
<div>
Your mother was a hamster and your father smelt of elderberries
</div>
I must tell you that I'm not convinced. Then in this discussion:
<div>
<div>
Is there someone else up there we could talk to?
</div>
No. Now, go away, or I shall taunt you a second time-a!
</div>
I think we're not going to be friends!
The behaviour is different when C{indent_block} is C{True} or C{False}.
When C{True} the when C{indent_html} is only added at each change of
level of indentation, while it is added for each line when C{False}.
For eg::
>> a
>> b
>>>> c
would result in (if C{True})::
<div class=""commentbox"">
a<br/>
b<br/>
<div class=""commentbox"">
c<br/>
</div>
</div>
or would be (if C{False})::
<div class=""commentbox""> a</div><br/>
<div class=""commentbox""> b</div><br/>
<div class=""commentbox""><div class=""commentbox""> c</div></div><br/>
@param text: the text in quoted format
@param tabs_before: number of tabulations before each line
@param indent_txt: quote separator in email (default:'>>')
@param linebreak_txt: line separator in email
@param indent_html: tuple of (opening, closing) html tags.
default: ('<div class=""commentbox"">', ""</div>"")
@param linebreak_html: line separator in html (default: '<br/>')
@param indent_block: if indentation should be done per 'block'
i.e. only at changes of indentation level
(+1, -1) or at each line.
@return: string containing html formatted output
""""""
washer = HTMLWasher()
final_body = """"
nb_indent = 0
text = text.strip('\n')