I second Sergio's proposal: the podling is clearly capable and autonomous
to manage the various aspects of the project's life and most of all the
releases (kudos). As anticipated when the project joined the Incubator, the
community is small and this will be a topic to discuss for the graduation.

Jacopo

On Mon, Jun 13, 2016 at 8:15 AM, Sergio Fernández <[email protected]> wrote:

> Besides the technical discussion for 2.3.25-incubating, after that release
> you may start to discuss a possible graduation. We have to discuss many
> aspects (specially growth of the community), but technically speaking the
> podling is capable os casting releases.
>
> On Mon, Jun 13, 2016 at 3:55 AM, Albert Kam <[email protected]>
> wrote:
>
> > Hello Daniel,
> >
> > Thanks for the great updates !
> >
> > I have something in mind concerning the <#sep> directive. Is it
> > possible to add a startSeparator only when the previous loop produces
> > content ?
> > This happens a lot when printing json hash entries. Example :
> >
> > <#local hobbies=['read', 'code', 'walk']>
> > {
> > <#list hobbies as hobby>
> >     <#if hobby != 'walk>
> >         'prop${hobby_index}': '${hobby}'<#sep>,<#sep>
> >     </#if>
> > </#list>
> > }
> >
> > This will result in
> > {
> >     'prop0': 'read',
> >     'prop1': 'walk',
> > }
> > Notice the extra comma after 'walk'.
> >
> > I have a workaround for this issue with adding the comma at the head
> > if already had an entry:
> > <#local hasEntry=false>
> > <#list hobbies as hobby>
> >     <#if hobby != 'walk>
> >         <#if hasEntry>,</#if>
> >         'prop${hobby_index}': '${hobby}'
> >         <#local hasEntry=true>
> >     </#if>
> > </#list>
> >
> > This will result in
> > {
> >     'prop0': 'read'
> >     ,
> >     'prop1': 'walk'
> > }
> >
> > The ideal directive to emultate the workaround above would look
> > something like this:
> > <#list hobbies as hobby>
> >     <#if hobby != 'walk>
> >         <#head_sep>,<#head_sep>
> >         'prop${hobby_index}': '${hobby}'
> >     </#if>
> > </#list>
> > Where <#head_sep> renderes the comma only if the previous loop had an
> > entry.
> >
> > Just a suggestion.
> >
> > Thanks !
> >
> >
> > On Mon, Jun 13, 2016 at 3:32 AM, Daniel Dekany <[email protected]>
> > wrote:
> > > I plan to start a voting here on 2016-06-14, for releasing 2.3.25. So
> > > if anyone wants to add anything before that, inform me.
> > >
> > > This is what we have so far:
> > > - Version history:
> >
> http://freemarker.org/builds/2.3.25-nightly/documentation/_html/versions_2_3_25.html
> > > - Last build:
> http://freemarker.org/builds/2.3.25-nightly/freemarker.jar
> > >
> > > --
> > > Thanks,
> > >  Daniel Dekany
> > >
> >
> >
> >
> > --
> > Do not pursue the past. Do not lose yourself in the future.
> > The past no longer is. The future has not yet come.
> > Looking deeply at life as it is in the very here and now,
> > the practitioner dwells in stability and freedom.
> > (Thich Nhat Hanh)
> >
>
>
>
> --
> Sergio Fernández
> Partner Technology Manager
> Redlink GmbH
> m: +43 6602747925
> e: [email protected]
> w: http://redlink.co
>

Reply via email to