Home
last modified time | relevance | path

Searched refs:shorten_author_string (Results 1 – 4 of 4) sorted by relevance

/dports/mail/py-alot/alot-0.9/tests/
H A Dtest_helper.py44 short = helper.shorten_author_string(self.authors, 60)
48 short = helper.shorten_author_string(self.authors, 40)
52 short = helper.shorten_author_string(self.authors, 20)
56 short = helper.shorten_author_string(self.authors, 10)
60 short = helper.shorten_author_string(self.authors, 2)
64 short = helper.shorten_author_string(self.authors, 1)
/dports/mail/py-alot/alot-0.9/alot/buffers/
H A Denvelope.py11 from ..helper import shorten_author_string
32 return '[envelope] to: %s' % (shorten_author_string(to, 400))
/dports/mail/py-alot/alot-0.9/alot/widgets/
H A Dsearch.py10 from ..helper import shorten_author_string
202 'authors': (prepare_authors_string, shorten_author_string),
/dports/mail/py-alot/alot-0.9/alot/
H A Dhelper.py123 def shorten_author_string(authors_string, maxlength): function