Re: Help figuring out why my error message is not displaying

2010-02-03 Thread Michael Kurz

Hi,

when should the messages be displayed (on page load, on page submit). 
Could you quickly describe your page setup?


regards
Michael

Am 02.02.2010 21:23, schrieb laredotornado:


Hi,

I'm using MyFaces 1.1.5 with Tomahawk 1.1.7.  I have verified in my
controller that this method is being called with non-empty parameters ...

  protected void addErrorMessage(final String inputId, final String 
errMsg)
{
  final FacesMessage message = new FacesMessage();
message.setSeverity(FacesMessage.SEVERITY_ERROR);
message.setSummary(errMsg);
final FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(inputId, message);   
  } // addErrorMessage

but this code on my JSF page is not displaying the error ...

t:messages layout=table showDetail=true showSummary=true
styleClass=error/

Any ideas how to troubleshoot this problem further or do you see anything
immediately wrong?  Thanks, - Dave



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Matthias Wessendorf
cool, thanks!

-M

On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:
 Hi all,

 I just posted a short article about the new Cassablanca skin for Trinidad at
 my blog:
 http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.

 Best regards,
 Bart Kummel

 On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf mat...@apache.orgwrote:

 Hello,

 as FYI, the new skin (cassablanca) has been committed to trunk
 (1.2.14-SNAPSHOT). There will be a release for that in a few weeks.

 Thanks to our friends from Irian.at, for already hosting the new beautiful
 demo:
 http://example.irian.at/trinidad-components-showcase/

 Check it out!

 Special thanks for the code-donation goes to Catalin and team from
 CodeBeat:
 http://www.codebeat.ro

 Enjoy the new skin, guys!

 -Matthias

 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf





-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf


Re: Help figuring out why my error message is not displaying

2010-02-03 Thread laredotornado

We have one form on the JSF page.  When we click the Submit button, that
action links to a method in a controller.  In that controller, if no results
are found from a search, we call the addErrorMessages method I described
above.  I have verified through log statements that that is getting called. 
So I am confused as to why the FacesMessage we are adding to the context is
not getting displayed.  

Thanks for any additional help, - Dave




Michael Kurz wrote:
 
 Hi,
 
 when should the messages be displayed (on page load, on page submit). 
 Could you quickly describe your page setup?
 
 regards
 Michael
 
 Am 02.02.2010 21:23, schrieb laredotornado:

 Hi,

 I'm using MyFaces 1.1.5 with Tomahawk 1.1.7.  I have verified in my
 controller that this method is being called with non-empty parameters ...

protected void addErrorMessage(final String inputId, final String
 errMsg)
 {
final FacesMessage message = new FacesMessage();
  message.setSeverity(FacesMessage.SEVERITY_ERROR);
  message.setSummary(errMsg);
  final FacesContext context = FacesContext.getCurrentInstance();
  context.addMessage(inputId, message);   
} // addErrorMessage

 but this code on my JSF page is not displaying the error ...

 t:messages layout=table showDetail=true showSummary=true
 styleClass=error/

 Any ideas how to troubleshoot this problem further or do you see anything
 immediately wrong?  Thanks, - Dave

 
 

-- 
View this message in context: 
http://old.nabble.com/Help-figuring-out-why-my-error-message-is-not-displaying-tp27426781p27437287.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.



Re: Help figuring out why my error message is not displaying

2010-02-03 Thread Michael Kurz

Do you have any redirects in between?

--
Michael

Am 03.02.2010 15:37, schrieb laredotornado:


We have one form on the JSF page.  When we click the Submit button, that
action links to a method in a controller.  In that controller, if no results
are found from a search, we call the addErrorMessages method I described
above.  I have verified through log statements that that is getting called.
So I am confused as to why the FacesMessage we are adding to the context is
not getting displayed.

Thanks for any additional help, - Dave




Michael Kurz wrote:


Hi,

when should the messages be displayed (on page load, on page submit).
Could you quickly describe your page setup?

regards
Michael

Am 02.02.2010 21:23, schrieb laredotornado:


Hi,

I'm using MyFaces 1.1.5 with Tomahawk 1.1.7.  I have verified in my
controller that this method is being called with non-empty parameters ...

  protected void addErrorMessage(final String inputId, final String
errMsg)
{
  final FacesMessage message = new FacesMessage();
message.setSeverity(FacesMessage.SEVERITY_ERROR);
message.setSummary(errMsg);
final FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(inputId, message);   
  } // addErrorMessage

but this code on my JSF page is not displaying the error ...

t:messages layout=table showDetail=true showSummary=true
styleClass=error/

Any ideas how to troubleshoot this problem further or do you see anything
immediately wrong?  Thanks, - Dave








Re: Help figuring out why my error message is not displaying

2010-02-03 Thread laredotornado

Now that you mention it, we did.  In our faces-config.xml, we had navigation
rules that looked like

  navigation-rule
from-view-id/reports/financialAssistanceReport.jsp/from-view-id
navigation-case
  from-outcomeSUCCESS/from-outcome
  to-view-id/reports/financialAssistanceReport.jsp/to-view-id
  redirect/
/navigation-case
navigation-case
  from-outcomeFAILURE/from-outcome
  to-view-id/reports/error.jsp/to-view-id
  redirect/
/navigation-case
  /navigation-rule

Removing the redirect/ solved the problem of the disappearing messages. 
Thanks!  5 stars - Dave


Michael Kurz wrote:
 
 Do you have any redirects in between?
 
 --
 Michael
 
 Am 03.02.2010 15:37, schrieb laredotornado:

 We have one form on the JSF page.  When we click the Submit button,
 that
 action links to a method in a controller.  In that controller, if no
 results
 are found from a search, we call the addErrorMessages method I
 described
 above.  I have verified through log statements that that is getting
 called.
 So I am confused as to why the FacesMessage we are adding to the context
 is
 not getting displayed.

 Thanks for any additional help, - Dave




 Michael Kurz wrote:

 Hi,

 when should the messages be displayed (on page load, on page submit).
 Could you quickly describe your page setup?

 regards
 Michael

 Am 02.02.2010 21:23, schrieb laredotornado:

 Hi,

 I'm using MyFaces 1.1.5 with Tomahawk 1.1.7.  I have verified in my
 controller that this method is being called with non-empty parameters
 ...

  protected void addErrorMessage(final String inputId, final String
 errMsg)
 {
  final FacesMessage message = new FacesMessage();
message.setSeverity(FacesMessage.SEVERITY_ERROR);
message.setSummary(errMsg);
final FacesContext context =
 FacesContext.getCurrentInstance();
context.addMessage(inputId, message);   
  } // addErrorMessage

 but this code on my JSF page is not displaying the error ...

 t:messages layout=table showDetail=true showSummary=true
 styleClass=error/

 Any ideas how to troubleshoot this problem further or do you see
 anything
 immediately wrong?  Thanks, - Dave




 
 

-- 
View this message in context: 
http://old.nabble.com/Help-figuring-out-why-my-error-message-is-not-displaying-tp27426781p27439848.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Shane Petroff

Matthias Wessendorf wrote:

cool, thanks!
  


Definitely not cool... The performance at the irian site is terrible (it 
sucks at the best of times, but today it is atrocious). It makes both 
Trinidad and Irian look bad. If I didn't already know that Trinidad 
performance was fine, I'd be left with the impression that it was an 
unusable POS.


Shane

-M

On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:
  

Hi all,

I just posted a short article about the new Cassablanca skin for Trinidad at
my blog:
http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.

Best regards,
Bart Kummel

On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf mat...@apache.orgwrote:



Hello,

as FYI, the new skin (cassablanca) has been committed to trunk
(1.2.14-SNAPSHOT). There will be a release for that in a few weeks.

Thanks to our friends from Irian.at, for already hosting the new beautiful
demo:
http://example.irian.at/trinidad-components-showcase/

Check it out!

Special thanks for the code-donation goes to Catalin and team from
CodeBeat:
http://www.codebeat.ro

Enjoy the new skin, guys!

-Matthias

--
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf

  




  



--
Shane



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Matthias Wessendorf
:-)

Shane,
is the performance only for the show-case bad ?
Or for the real sample as well ?
(it is online too)

new:
http://example.irian.at/trinidad-components-showcase/

old:
http://example.irian.at/trinidad-demo/

actually = both are hanging now for me :-)

.-Matthias

On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
 Matthias Wessendorf wrote:

 cool, thanks!


 Definitely not cool... The performance at the irian site is terrible (it
 sucks at the best of times, but today it is atrocious). It makes both
 Trinidad and Irian look bad. If I didn't already know that Trinidad
 performance was fine, I'd be left with the impression that it was an
 unusable POS.

 Shane

 -M

 On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:


 Hi all,

 I just posted a short article about the new Cassablanca skin for Trinidad
 at
 my blog:
 http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.

 Best regards,
 Bart Kummel

 On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
 mat...@apache.orgwrote:



 Hello,

 as FYI, the new skin (cassablanca) has been committed to trunk
 (1.2.14-SNAPSHOT). There will be a release for that in a few weeks.

 Thanks to our friends from Irian.at, for already hosting the new
 beautiful
 demo:
 http://example.irian.at/trinidad-components-showcase/

 Check it out!

 Special thanks for the code-donation goes to Catalin and team from
 CodeBeat:
 http://www.codebeat.ro

 Enjoy the new skin, guys!

 -Matthias

 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf








 --
 Shane





-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf


Re: [Trinidad] new skin and new demo

2010-02-03 Thread Gerhard Petracek
imo it's just an issue with the server...
i'll forward the issue.

regards,
gerhard

http://www.irian.at

Your JSF powerhouse -
JSF Consulting, Development and
Courses in English and German

Professional Support for Apache MyFaces


2010/2/3 Matthias Wessendorf mat...@apache.org

 :-)

 Shane,
 is the performance only for the show-case bad ?
 Or for the real sample as well ?
 (it is online too)

 new:
 http://example.irian.at/trinidad-components-showcase/

 old:
 http://example.irian.at/trinidad-demo/

 actually = both are hanging now for me :-)

 .-Matthias

 On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
  Matthias Wessendorf wrote:
 
  cool, thanks!
 
 
  Definitely not cool... The performance at the irian site is terrible (it
  sucks at the best of times, but today it is atrocious). It makes both
  Trinidad and Irian look bad. If I didn't already know that Trinidad
  performance was fine, I'd be left with the impression that it was an
  unusable POS.
 
  Shane
 
  -M
 
  On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:
 
 
  Hi all,
 
  I just posted a short article about the new Cassablanca skin for
 Trinidad
  at
  my blog:
  http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
 
  Best regards,
  Bart Kummel
 
  On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
  mat...@apache.orgwrote:
 
 
 
  Hello,
 
  as FYI, the new skin (cassablanca) has been committed to trunk
  (1.2.14-SNAPSHOT). There will be a release for that in a few weeks.
 
  Thanks to our friends from Irian.at, for already hosting the new
  beautiful
  demo:
  http://example.irian.at/trinidad-components-showcase/
 
  Check it out!
 
  Special thanks for the code-donation goes to Catalin and team from
  CodeBeat:
  http://www.codebeat.ro
 
  Enjoy the new skin, guys!
 
  -Matthias
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 
 
 
 
 
 
 
  --
  Shane
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Andrew Robinson
Any hope on hosting the demo's at Apache?

On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
gerhard.petra...@gmail.com wrote:
 imo it's just an issue with the server...
 i'll forward the issue.

 regards,
 gerhard

 http://www.irian.at

 Your JSF powerhouse -
 JSF Consulting, Development and
 Courses in English and German

 Professional Support for Apache MyFaces


 2010/2/3 Matthias Wessendorf mat...@apache.org

 :-)

 Shane,
 is the performance only for the show-case bad ?
 Or for the real sample as well ?
 (it is online too)

 new:
 http://example.irian.at/trinidad-components-showcase/

 old:
 http://example.irian.at/trinidad-demo/

 actually = both are hanging now for me :-)

 .-Matthias

 On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
  Matthias Wessendorf wrote:
 
  cool, thanks!
 
 
  Definitely not cool... The performance at the irian site is terrible (it
  sucks at the best of times, but today it is atrocious). It makes both
  Trinidad and Irian look bad. If I didn't already know that Trinidad
  performance was fine, I'd be left with the impression that it was an
  unusable POS.
 
  Shane
 
  -M
 
  On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:
 
 
  Hi all,
 
  I just posted a short article about the new Cassablanca skin for
 Trinidad
  at
  my blog:
  http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
 
  Best regards,
  Bart Kummel
 
  On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
  mat...@apache.orgwrote:
 
 
 
  Hello,
 
  as FYI, the new skin (cassablanca) has been committed to trunk
  (1.2.14-SNAPSHOT). There will be a release for that in a few weeks.
 
  Thanks to our friends from Irian.at, for already hosting the new
  beautiful
  demo:
  http://example.irian.at/trinidad-components-showcase/
 
  Check it out!
 
  Special thanks for the code-donation goes to Catalin and team from
  CodeBeat:
  http://www.codebeat.ro
 
  Enjoy the new skin, guys!
 
  -Matthias
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 
 
 
 
 
 
 
  --
  Shane
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf




Re: [Trinidad] new skin and new demo

2010-02-03 Thread Matthias Wessendorf
ha!
We had had that discussion before (not myfaces specific), of hosting
(java-based) demos :)
Glad you reminded me... :)

I will bring this up w/ infra@

-Matthias

On Wed, Feb 3, 2010 at 7:38 PM, Andrew Robinson
andrew.rw.robin...@gmail.com wrote:
 Any hope on hosting the demo's at Apache?

 On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
 gerhard.petra...@gmail.com wrote:
 imo it's just an issue with the server...
 i'll forward the issue.

 regards,
 gerhard

 http://www.irian.at

 Your JSF powerhouse -
 JSF Consulting, Development and
 Courses in English and German

 Professional Support for Apache MyFaces


 2010/2/3 Matthias Wessendorf mat...@apache.org

 :-)

 Shane,
 is the performance only for the show-case bad ?
 Or for the real sample as well ?
 (it is online too)

 new:
 http://example.irian.at/trinidad-components-showcase/

 old:
 http://example.irian.at/trinidad-demo/

 actually = both are hanging now for me :-)

 .-Matthias

 On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
  Matthias Wessendorf wrote:
 
  cool, thanks!
 
 
  Definitely not cool... The performance at the irian site is terrible (it
  sucks at the best of times, but today it is atrocious). It makes both
  Trinidad and Irian look bad. If I didn't already know that Trinidad
  performance was fine, I'd be left with the impression that it was an
  unusable POS.
 
  Shane
 
  -M
 
  On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com wrote:
 
 
  Hi all,
 
  I just posted a short article about the new Cassablanca skin for
 Trinidad
  at
  my blog:
  http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
 
  Best regards,
  Bart Kummel
 
  On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
  mat...@apache.orgwrote:
 
 
 
  Hello,
 
  as FYI, the new skin (cassablanca) has been committed to trunk
  (1.2.14-SNAPSHOT). There will be a release for that in a few weeks.
 
  Thanks to our friends from Irian.at, for already hosting the new
  beautiful
  demo:
  http://example.irian.at/trinidad-components-showcase/
 
  Check it out!
 
  Special thanks for the code-donation goes to Catalin and team from
  CodeBeat:
  http://www.codebeat.ro
 
  Enjoy the new skin, guys!
 
  -Matthias
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 
 
 
 
 
 
 
  --
  Shane
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf






-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf


Re: [Trinidad] new skin and new demo

2010-02-03 Thread Gerhard Petracek
fyi: the server is back again.

@hosting at apache:
we also saw issues with apache servers...
however, we can talk with the infrastructure team...

regards,
gerhard

http://www.irian.at

Your JSF powerhouse -
JSF Consulting, Development and
Courses in English and German

Professional Support for Apache MyFaces


2010/2/3 Matthias Wessendorf mat...@apache.org

 ha!
 We had had that discussion before (not myfaces specific), of hosting
 (java-based) demos :)
 Glad you reminded me... :)

 I will bring this up w/ infra@

 -Matthias

 On Wed, Feb 3, 2010 at 7:38 PM, Andrew Robinson
 andrew.rw.robin...@gmail.com wrote:
  Any hope on hosting the demo's at Apache?
 
  On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
  gerhard.petra...@gmail.com wrote:
  imo it's just an issue with the server...
  i'll forward the issue.
 
  regards,
  gerhard
 
  http://www.irian.at
 
  Your JSF powerhouse -
  JSF Consulting, Development and
  Courses in English and German
 
  Professional Support for Apache MyFaces
 
 
  2010/2/3 Matthias Wessendorf mat...@apache.org
 
  :-)
 
  Shane,
  is the performance only for the show-case bad ?
  Or for the real sample as well ?
  (it is online too)
 
  new:
  http://example.irian.at/trinidad-components-showcase/
 
  old:
  http://example.irian.at/trinidad-demo/
 
  actually = both are hanging now for me :-)
 
  .-Matthias
 
  On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
   Matthias Wessendorf wrote:
  
   cool, thanks!
  
  
   Definitely not cool... The performance at the irian site is terrible
 (it
   sucks at the best of times, but today it is atrocious). It makes both
   Trinidad and Irian look bad. If I didn't already know that Trinidad
   performance was fine, I'd be left with the impression that it was an
   unusable POS.
  
   Shane
  
   -M
  
   On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com
 wrote:
  
  
   Hi all,
  
   I just posted a short article about the new Cassablanca skin for
  Trinidad
   at
   my blog:
  
 http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
  
   Best regards,
   Bart Kummel
  
   On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
   mat...@apache.orgwrote:
  
  
  
   Hello,
  
   as FYI, the new skin (cassablanca) has been committed to trunk
   (1.2.14-SNAPSHOT). There will be a release for that in a few
 weeks.
  
   Thanks to our friends from Irian.at, for already hosting the new
   beautiful
   demo:
   http://example.irian.at/trinidad-components-showcase/
  
   Check it out!
  
   Special thanks for the code-donation goes to Catalin and team from
   CodeBeat:
   http://www.codebeat.ro
  
   Enjoy the new skin, guys!
  
   -Matthias
  
   --
   Matthias Wessendorf
  
   blog: http://matthiaswessendorf.wordpress.com/
   sessions: http://www.slideshare.net/mwessendorf
   twitter: http://twitter.com/mwessendorf
  
  
  
  
  
  
  
  
   --
   Shane
  
  
 
 
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Matthias Wessendorf
On Wed, Feb 3, 2010 at 8:39 PM, Gerhard Petracek
gerhard.petra...@gmail.com wrote:
 fyi: the server is back again.

 @hosting at apache:
 we also saw issues with apache servers...

uhm... the zone is not managed...
other than that... not sure what issues you mean.
Oh yes, *apache.org is interesting... so sometimes
svn etc are under some sort of attack..

-M

 however, we can talk with the infrastructure team...

 regards,
 gerhard

 http://www.irian.at

 Your JSF powerhouse -
 JSF Consulting, Development and
 Courses in English and German

 Professional Support for Apache MyFaces


 2010/2/3 Matthias Wessendorf mat...@apache.org

 ha!
 We had had that discussion before (not myfaces specific), of hosting
 (java-based) demos :)
 Glad you reminded me... :)

 I will bring this up w/ infra@

 -Matthias

 On Wed, Feb 3, 2010 at 7:38 PM, Andrew Robinson
 andrew.rw.robin...@gmail.com wrote:
  Any hope on hosting the demo's at Apache?
 
  On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
  gerhard.petra...@gmail.com wrote:
  imo it's just an issue with the server...
  i'll forward the issue.
 
  regards,
  gerhard
 
  http://www.irian.at
 
  Your JSF powerhouse -
  JSF Consulting, Development and
  Courses in English and German
 
  Professional Support for Apache MyFaces
 
 
  2010/2/3 Matthias Wessendorf mat...@apache.org
 
  :-)
 
  Shane,
  is the performance only for the show-case bad ?
  Or for the real sample as well ?
  (it is online too)
 
  new:
  http://example.irian.at/trinidad-components-showcase/
 
  old:
  http://example.irian.at/trinidad-demo/
 
  actually = both are hanging now for me :-)
 
  .-Matthias
 
  On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca wrote:
   Matthias Wessendorf wrote:
  
   cool, thanks!
  
  
   Definitely not cool... The performance at the irian site is terrible
 (it
   sucks at the best of times, but today it is atrocious). It makes both
   Trinidad and Irian look bad. If I didn't already know that Trinidad
   performance was fine, I'd be left with the impression that it was an
   unusable POS.
  
   Shane
  
   -M
  
   On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com
 wrote:
  
  
   Hi all,
  
   I just posted a short article about the new Cassablanca skin for
  Trinidad
   at
   my blog:
  
 http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
  
   Best regards,
   Bart Kummel
  
   On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
   mat...@apache.orgwrote:
  
  
  
   Hello,
  
   as FYI, the new skin (cassablanca) has been committed to trunk
   (1.2.14-SNAPSHOT). There will be a release for that in a few
 weeks.
  
   Thanks to our friends from Irian.at, for already hosting the new
   beautiful
   demo:
   http://example.irian.at/trinidad-components-showcase/
  
   Check it out!
  
   Special thanks for the code-donation goes to Catalin and team from
   CodeBeat:
   http://www.codebeat.ro
  
   Enjoy the new skin, guys!
  
   -Matthias
  
   --
   Matthias Wessendorf
  
   blog: http://matthiaswessendorf.wordpress.com/
   sessions: http://www.slideshare.net/mwessendorf
   twitter: http://twitter.com/mwessendorf
  
  
  
  
  
  
  
  
   --
   Shane
  
  
 
 
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf





-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf


Re: [Trinidad] new skin and new demo

2010-02-03 Thread Gerhard Petracek
this server is managed as well.
so i don't see a real issue.
however, as mentioned before - we can talk with the infrastructure team...

regards,
gerhard

http://www.irian.at

Your JSF powerhouse -
JSF Consulting, Development and
Courses in English and German

Professional Support for Apache MyFaces


2010/2/3 Matthias Wessendorf mat...@apache.org

 On Wed, Feb 3, 2010 at 8:39 PM, Gerhard Petracek
 gerhard.petra...@gmail.com wrote:
  fyi: the server is back again.
 
  @hosting at apache:
  we also saw issues with apache servers...

 uhm... the zone is not managed...
 other than that... not sure what issues you mean.
 Oh yes, *apache.org is interesting... so sometimes
 svn etc are under some sort of attack..

 -M

  however, we can talk with the infrastructure team...
 
  regards,
  gerhard
 
  http://www.irian.at
 
  Your JSF powerhouse -
  JSF Consulting, Development and
  Courses in English and German
 
  Professional Support for Apache MyFaces
 
 
  2010/2/3 Matthias Wessendorf mat...@apache.org
 
  ha!
  We had had that discussion before (not myfaces specific), of hosting
  (java-based) demos :)
  Glad you reminded me... :)
 
  I will bring this up w/ infra@
 
  -Matthias
 
  On Wed, Feb 3, 2010 at 7:38 PM, Andrew Robinson
  andrew.rw.robin...@gmail.com wrote:
   Any hope on hosting the demo's at Apache?
  
   On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
   gerhard.petra...@gmail.com wrote:
   imo it's just an issue with the server...
   i'll forward the issue.
  
   regards,
   gerhard
  
   http://www.irian.at
  
   Your JSF powerhouse -
   JSF Consulting, Development and
   Courses in English and German
  
   Professional Support for Apache MyFaces
  
  
   2010/2/3 Matthias Wessendorf mat...@apache.org
  
   :-)
  
   Shane,
   is the performance only for the show-case bad ?
   Or for the real sample as well ?
   (it is online too)
  
   new:
   http://example.irian.at/trinidad-components-showcase/
  
   old:
   http://example.irian.at/trinidad-demo/
  
   actually = both are hanging now for me :-)
  
   .-Matthias
  
   On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca
 wrote:
Matthias Wessendorf wrote:
   
cool, thanks!
   
   
Definitely not cool... The performance at the irian site is
 terrible
  (it
sucks at the best of times, but today it is atrocious). It makes
 both
Trinidad and Irian look bad. If I didn't already know that
 Trinidad
performance was fine, I'd be left with the impression that it was
 an
unusable POS.
   
Shane
   
-M
   
On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com
  wrote:
   
   
Hi all,
   
I just posted a short article about the new Cassablanca skin for
   Trinidad
at
my blog:
   
  http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
   
Best regards,
Bart Kummel
   
On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
mat...@apache.orgwrote:
   
   
   
Hello,
   
as FYI, the new skin (cassablanca) has been committed to trunk
(1.2.14-SNAPSHOT). There will be a release for that in a few
  weeks.
   
Thanks to our friends from Irian.at, for already hosting the
 new
beautiful
demo:
http://example.irian.at/trinidad-components-showcase/
   
Check it out!
   
Special thanks for the code-donation goes to Catalin and team
 from
CodeBeat:
http://www.codebeat.ro
   
Enjoy the new skin, guys!
   
-Matthias
   
--
Matthias Wessendorf
   
blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf
   
   
   
   
   
   
   
   
--
Shane
   
   
  
  
  
   --
   Matthias Wessendorf
  
   blog: http://matthiaswessendorf.wordpress.com/
   sessions: http://www.slideshare.net/mwessendorf
   twitter: http://twitter.com/mwessendorf
  
  
  
 
 
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf



Re: [Trinidad] new skin and new demo

2010-02-03 Thread Matthias Wessendorf
:) yeah. just saying.
I actually prefer to have them on your site :)
Otherwise we need to add it to our zone (yeah, that's the beast that
runs continuum ;-))

-M

On Wed, Feb 3, 2010 at 10:30 PM, Gerhard Petracek
gerhard.petra...@gmail.com wrote:
 this server is managed as well.
 so i don't see a real issue.
 however, as mentioned before - we can talk with the infrastructure team...

 regards,
 gerhard

 http://www.irian.at

 Your JSF powerhouse -
 JSF Consulting, Development and
 Courses in English and German

 Professional Support for Apache MyFaces


 2010/2/3 Matthias Wessendorf mat...@apache.org

 On Wed, Feb 3, 2010 at 8:39 PM, Gerhard Petracek
 gerhard.petra...@gmail.com wrote:
  fyi: the server is back again.
 
  @hosting at apache:
  we also saw issues with apache servers...

 uhm... the zone is not managed...
 other than that... not sure what issues you mean.
 Oh yes, *apache.org is interesting... so sometimes
 svn etc are under some sort of attack..

 -M

  however, we can talk with the infrastructure team...
 
  regards,
  gerhard
 
  http://www.irian.at
 
  Your JSF powerhouse -
  JSF Consulting, Development and
  Courses in English and German
 
  Professional Support for Apache MyFaces
 
 
  2010/2/3 Matthias Wessendorf mat...@apache.org
 
  ha!
  We had had that discussion before (not myfaces specific), of hosting
  (java-based) demos :)
  Glad you reminded me... :)
 
  I will bring this up w/ infra@
 
  -Matthias
 
  On Wed, Feb 3, 2010 at 7:38 PM, Andrew Robinson
  andrew.rw.robin...@gmail.com wrote:
   Any hope on hosting the demo's at Apache?
  
   On Wed, Feb 3, 2010 at 10:26 AM, Gerhard Petracek
   gerhard.petra...@gmail.com wrote:
   imo it's just an issue with the server...
   i'll forward the issue.
  
   regards,
   gerhard
  
   http://www.irian.at
  
   Your JSF powerhouse -
   JSF Consulting, Development and
   Courses in English and German
  
   Professional Support for Apache MyFaces
  
  
   2010/2/3 Matthias Wessendorf mat...@apache.org
  
   :-)
  
   Shane,
   is the performance only for the show-case bad ?
   Or for the real sample as well ?
   (it is online too)
  
   new:
   http://example.irian.at/trinidad-components-showcase/
  
   old:
   http://example.irian.at/trinidad-demo/
  
   actually = both are hanging now for me :-)
  
   .-Matthias
  
   On Wed, Feb 3, 2010 at 6:18 PM, Shane Petroff sh...@mayet.ca
 wrote:
Matthias Wessendorf wrote:
   
cool, thanks!
   
   
Definitely not cool... The performance at the irian site is
 terrible
  (it
sucks at the best of times, but today it is atrocious). It makes
 both
Trinidad and Irian look bad. If I didn't already know that
 Trinidad
performance was fine, I'd be left with the impression that it was
 an
unusable POS.
   
Shane
   
-M
   
On Wed, Feb 3, 2010 at 8:23 AM, Bart Kummel bkum...@gmail.com
  wrote:
   
   
Hi all,
   
I just posted a short article about the new Cassablanca skin for
   Trinidad
at
my blog:
   
  http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html.
   
Best regards,
Bart Kummel
   
On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf
mat...@apache.orgwrote:
   
   
   
Hello,
   
as FYI, the new skin (cassablanca) has been committed to trunk
(1.2.14-SNAPSHOT). There will be a release for that in a few
  weeks.
   
Thanks to our friends from Irian.at, for already hosting the
 new
beautiful
demo:
http://example.irian.at/trinidad-components-showcase/
   
Check it out!
   
Special thanks for the code-donation goes to Catalin and team
 from
CodeBeat:
http://www.codebeat.ro
   
Enjoy the new skin, guys!
   
-Matthias
   
--
Matthias Wessendorf
   
blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf
   
   
   
   
   
   
   
   
--
Shane
   
   
  
  
  
   --
   Matthias Wessendorf
  
   blog: http://matthiaswessendorf.wordpress.com/
   sessions: http://www.slideshare.net/mwessendorf
   twitter: http://twitter.com/mwessendorf
  
  
  
 
 
 
  --
  Matthias Wessendorf
 
  blog: http://matthiaswessendorf.wordpress.com/
  sessions: http://www.slideshare.net/mwessendorf
  twitter: http://twitter.com/mwessendorf
 
 



 --
 Matthias Wessendorf

 blog: http://matthiaswessendorf.wordpress.com/
 sessions: http://www.slideshare.net/mwessendorf
 twitter: http://twitter.com/mwessendorf





-- 
Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
twitter: http://twitter.com/mwessendorf


[Trinidad] Firefox 3.6 missing getBoxObjectFor()

2010-02-03 Thread Bruno Marti

Hi
The lightweight dialogs aren't working in Firefox 3.6.
Solution was found by bugfix TRINIDAD-1695 (
https://issues.apache.org/jira/browse/TRINIDAD-1695 see )

Is this also fixed in Trinidad 1.1.x?
-- 
View this message in context: 
http://old.nabble.com/-Trinidad--Firefox-3.6-missing-getBoxObjectFor%28%29-tp27448692p27448692.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.