exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi there. I get the following error message when compiling UiBinder template in GWT 2.4 but not in 2.3: ERROR] Errors in 'generated://C5AF780801F58242DB0EE69038CD0828/com/racios/appoint/client/widgets/weekcalendar/WeekCalendarDesktop_WeekCalendarDesktopUiBinderImpl.java' [ERROR] Line 16:

Re: exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread Thomas Broyer
AFAICT, UiBinder in GWT 2.4 generates a SafeHtmlTemplates (instead of building an HTML string by appending to a StringBuilder, as was done in previous versions). This means that everywhere you have a replaceable part (e.g. {foo} in an attribute, or a widget or ui:msg) it will generate a

Re: exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi Thomas. The template is basically a table representing a 7-day calendar which has: - Different styling for each 0-30 and 30-60 minute slot interval of each hour - Different styling for each odd and even hour row - Different styling for each day column As you can imagine, just