Show More
@@ -1,48 +1,70 b'' | |||||
1 | """Helper functions |
|
1 | """Helper functions | |
2 |
|
2 | |||
3 | Consists of functions to typically be used within templates, but also |
|
3 | Consists of functions to typically be used within templates, but also | |
4 | available to Controllers. This module is available to both as 'h'. |
|
4 | available to Controllers. This module is available to both as 'h'. | |
5 | """ |
|
5 | """ | |
6 | from pylons import url |
|
6 | from pylons import url | |
|
7 | from pylons.i18n.translation import _, ungettext | |||
7 | from webhelpers.html import (literal, HTML, escape) |
|
8 | from webhelpers.html import (literal, HTML, escape) | |
8 | from webhelpers.html.tools import (auto_link, button_to, highlight, js_obfuscate |
|
9 | from webhelpers.html.tools import (auto_link, button_to, highlight, js_obfuscate | |
9 | , mail_to, strip_links, strip_tags, tag_re) |
|
10 | , mail_to, strip_links, strip_tags, tag_re) | |
10 | from webhelpers.html.tags import (auto_discovery_link, checkbox, css_classes, |
|
11 | from webhelpers.html.tags import (auto_discovery_link, checkbox, css_classes, | |
11 | end_form, file, form, hidden, image, |
|
12 | end_form, file, form, hidden, image, | |
12 | javascript_link, link_to, link_to_if, |
|
13 | javascript_link, link_to, link_to_if, | |
13 | link_to_unless, ol, required_legend, |
|
14 | link_to_unless, ol, required_legend, | |
14 | select, stylesheet_link, |
|
15 | select, stylesheet_link, | |
15 | submit, text, password, textarea, title, |
|
16 | submit, text, password, textarea, title, | |
16 | ul, xml_declaration) |
|
17 | ul, xml_declaration) | |
17 | from webhelpers.text import (chop_at, collapse, convert_accented_entities, |
|
18 | from webhelpers.text import (chop_at, collapse, convert_accented_entities, | |
18 | convert_misc_entities, lchop, plural, rchop, |
|
19 | convert_misc_entities, lchop, plural, rchop, | |
19 | remove_formatting, replace_whitespace, urlify) |
|
20 | remove_formatting, replace_whitespace, urlify) | |
20 |
|
21 | |||
21 | from webhelpers.pylonslib import Flash as _Flash |
|
22 | from webhelpers.pylonslib import Flash as _Flash | |
22 | from webhelpers.pylonslib.secure_form import secure_form |
|
23 | from webhelpers.pylonslib.secure_form import secure_form | |
23 |
|
24 | |||
24 | #Custom helper here :) |
|
25 | #Custom helper here :) | |
25 | class _Link(object): |
|
26 | class _Link(object): | |
26 | ''' |
|
27 | ''' | |
27 | Make a url based on label and url with help of url_for |
|
28 | Make a url based on label and url with help of url_for | |
28 | @param label:name of link if not defined url is used |
|
29 | @param label:name of link if not defined url is used | |
29 | @param url: the url for link |
|
30 | @param url: the url for link | |
30 | ''' |
|
31 | ''' | |
31 |
|
32 | |||
32 | def __call__(self, label='', *url_, **urlargs): |
|
33 | def __call__(self, label='', *url_, **urlargs): | |
33 | if label is None or '': |
|
34 | if label is None or '': | |
34 | label = url |
|
35 | label = url | |
35 | link_fn = link_to(label, url(*url_, **urlargs)) |
|
36 | link_fn = link_to(label, url(*url_, **urlargs)) | |
36 | return link_fn |
|
37 | return link_fn | |
37 |
|
38 | |||
38 |
|
39 | |||
39 | class _GetError(object): |
|
40 | class _GetError(object): | |
40 |
|
41 | |||
41 | def __call__(self, field_name, form_errors): |
|
42 | def __call__(self, field_name, form_errors): | |
42 | tmpl = """<span class="error_msg">%s</span>""" |
|
43 | tmpl = """<span class="error_msg">%s</span>""" | |
43 | if form_errors and form_errors.has_key(field_name): |
|
44 | if form_errors and form_errors.has_key(field_name): | |
44 | return literal(tmpl % form_errors.get(field_name)) |
|
45 | return literal(tmpl % form_errors.get(field_name)) | |
45 |
|
46 | |||
|
47 | class _FileSizeFormat(): | |||
|
48 | """ | |||
|
49 | Formats the value like a 'human-readable' file size (i.e. 13 KB, 4.1 MB, | |||
|
50 | 102 bytes, etc). | |||
|
51 | """ | |||
|
52 | def __call__(self, bytes): | |||
|
53 | try: | |||
|
54 | bytes = float(bytes) | |||
|
55 | except TypeError: | |||
|
56 | return u"0 bytes" | |||
|
57 | ||||
|
58 | if bytes < 1024: | |||
|
59 | return ungettext("%(size)d byte", "%(size)d bytes", bytes) % {'size': bytes} | |||
|
60 | if bytes < 1024 * 1024: | |||
|
61 | return _("%.1f KB") % (bytes / 1024) | |||
|
62 | if bytes < 1024 * 1024 * 1024: | |||
|
63 | return _("%.1f MB") % (bytes / (1024 * 1024)) | |||
|
64 | return _("%.1f GB") % (bytes / (1024 * 1024 * 1024)) | |||
|
65 | ||||
|
66 | ||||
|
67 | filesizeformat = _FileSizeFormat() | |||
46 | link = _Link() |
|
68 | link = _Link() | |
47 | flash = _Flash() |
|
69 | flash = _Flash() | |
48 | get_error = _GetError() |
|
70 | get_error = _GetError() |
General Comments 0
You need to be logged in to leave comments.
Login now