davemds pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1eca781d1de588ca5b296ab75d0661b9e1c9b647
commit 1eca781d1de588ca5b296ab75d0661b9e1c9b647 Author: davemds <[email protected]> Date: Fri Aug 8 14:55:18 2014 +0200 Edcref: fixed (I hope) the doc for parts aliases --- src/bin/edje/edje_cc_handlers.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 8ddc3fb..e8bba54 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -2414,7 +2414,7 @@ st_styles_style_tag(void) /** @edcsection{collections,Collections Blocks} */ /** @edcsubsection{collections, - * Collections Blocks} */ + * Collections} */ /** @page edcref @@ -3975,15 +3975,25 @@ st_collections_group_limits_horizontal(void) group { parts { alias: "theme_part_path" "somegroup:real_part_path"; - group { "theme_part_path"; } + part { "theme_part_path"; } + part { } + .. } } @description + The parts block is the container for all the parts in the group. + + @property + alias + @parameters + [alias name] [other_group:part name] + @effect Allows for a part to be referenced externally as though it had the name of the alias. In the above example, swallowing an object into part "theme_part_path" will result in the object actually being swallowed into the part "real_part_path" in the "somegroup" group. + @endproperty @endblock */ static void --
