Huh? Regex libraries?
 On Dec 24, 2010 9:14 AM, "Martin Gainty" <mgai...@hotmail.com> wrote:
>
> good advice for portability for regular-expression libraries
>
> any someone put that into the docs?
>
> Happy Christmas and Merry New Year,
> Martin Gainty
> ______________________________________________
> Jogi és Bizalmassági kinyilatkoztatás/Verzicht und
Vertraulichkeitanmerkung/Note de déni et de confidentialité
> Ez az
> üzenet bizalmas. Ha nem ön az akinek szánva volt, akkor kérjük, hogy
> jelentse azt nekünk vissza. Semmiféle továbbítása vagy másolatának
> készítése nem megengedett. Ez az üzenet csak ismeret cserét szolgál és
> semmiféle jogi alkalmazhatósága sincs. Mivel az electronikus üzenetek
> könnyen megváltoztathatóak, ezért minket semmi felelöség nem terhelhet
> ezen üzenet tartalma miatt.
>
> Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene
Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte
Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht
dient lediglich dem Austausch von Informationen und entfaltet keine
rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von
E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen.
> Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le
destinataire prévu, nous te demandons avec bonté que pour satisfaire
informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie
de ceci est interdite. Ce message sert à l'information seulement et n'aura
pas n'importe quel effet légalement obligatoire. Étant donné que les email
peuvent facilement être sujets à la manipulation, nous ne pouvons accepter
aucune responsabilité pour le contenu fourni.
>
>
>
>
>> Date: Fri, 24 Dec 2010 09:05:05 -0500
>> From: d...@newfield.org
>> To: user@struts.apache.org
>> Subject: Re: Calculate module of index in Struts2 iterator
>>
>> On 12/24/10 6:15 AM, JOSE L MARTINEZ-AVIAL wrote:
>> > <s:if test="(#fieldNameStatus.index % 10 )==0">xxxxx</s:if>
>>
>> I guess I've not been around on this list much lately (darned work :-/
>> ). So my constant harping about this hasn't been so constant:
>>
>> I *really* advise people to always use %{} when writing OGNL in a taglib
>> attribute. It makes it clear what is to be evaluated as an OGNL
>> expression and what's just text. It's not just for readability and
>> maintainability -- it's also to future-proof your code. In the future
>> struts may be able to use more ELs than just OGNL, and its the character
>> out front (% = OGNL; $ = EL; # = JUEL (IIRC -- maybe it was MVEL?))
>> that'll indicate the el to be used.
>>
>> <s:if test="%{(#fieldNameStatus.index % 10)==0}">xxxxx</s:if>
>>
>> -Dale
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
>> For additional commands, e-mail: user-h...@struts.apache.org
>>
>

Reply via email to