davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=d6ab0de2dda73b338e39bb823e99b5e8b100f4bd
commit d6ab0de2dda73b338e39bb823e99b5e8b100f4bd Author: Dave Andreoli <[email protected]> Date: Thu Dec 25 13:15:23 2014 +0100 Better docs for available Genlist item styles --- CODING | 6 +++--- efl/elementary/genlist.pyx | 19 ++++++++++--------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/CODING b/CODING index d0ed309..e9c06ed 100644 --- a/CODING +++ b/CODING @@ -60,15 +60,15 @@ Release process instructions release announcement for phame/ml. * ssh to download.enlightenment.org and mv tarballs & md5sums to: - /srv/web/download.enlightenment.org/public_html/rel/bindings/python -* Upload to pypi + /srv/web/download.enlightenment.org/public_html/rel/bindings/python +* Upload the .tar.gz archive to pypi * Create and push the tag for the release git tag -a v1.9.0 && git push origin v1.9.0 * Create and push the branch for stable backporting git branch python-efl-1.9 && git push origin python-efl-1.9 * Publish the blog post on phame (Official Announcements) * Announce the release to [email protected] - (an alias for e-announce etc.) + (an alias for e-announce etc.) * Update download link on website (clone website/www.git, edit, commit, push) * Change versions again in efl/__init__.py (ex: 1.9.99) diff --git a/efl/elementary/genlist.pyx b/efl/elementary/genlist.pyx index e72d6a1..97983e7 100644 --- a/efl/elementary/genlist.pyx +++ b/efl/elementary/genlist.pyx @@ -91,15 +91,16 @@ parameter described below. A brief description of these functions follows: Available item styles: -- default -- default_style - The text part is a textblock -- double_label -- icon_top_text_bottom -- group_index - -- one_icon - Only 1 icon (left) :since: 1.1 -- end_icon - Only 1 icon (at end/right) :since: 1.1 -- no_icon - No icon (at end/right) :since: 1.1 +- ``default`` +- ``default_style`` The text part is a textblock +- ``double_label`` Two different text parts +- ``icon_top_text_bottom`` +- ``group_index`` +- ``one_icon`` Only 1 icon (left) (since: 1.1) +- ``end_icon`` Only 1 icon (at end/right) (since: 1.1) +- ``no_icon`` No icon (since: 1.1) +- ``full`` Only one object, elm.swallow.content, which consumes whole area of + the genlist item (since: 1.7) Structure of items ================== --
