Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Lukasz Feldman
Hi, We live in the world where everything need to move forward and evolve. Otherwise it is recognized as dead. That is the reality. I was using Trinidad few years ago. It was fine, but JSF 2.0 has arrived and I have switched to PrimeFaces, which seems to be more elegant and widgets fits real life

Re: [TRINIDAD] JQuery (was: Trinidad is dead -- what do you use instead?)

2012-06-20 Thread Leonardo Uribe
Hi I think it is possible, but note Trinidad skins has a lot more details. In theory you could extract the meta-info of the skin and try to generate a trinidad skin, from a parametrized template, but it is necessary to adjust tha template at hand. For example, I tried to take casablanca skin,

Re: [TRINIDAD] JQuery (was: Trinidad is dead -- what do you use instead?)

2012-06-20 Thread Walter Mourão
Hi Leonard, I did not understand very well. Just take what's useful of jQuery (css stuff) and forget about the rest. How about the components ? Do you mean we can 'decorate' the inputs and other things using only the CSS ? The datepickerhttp://jqueryui.com/demos/datepicker/, for example, needs

Re: [TRINIDAD] JQuery (was: Trinidad is dead -- what do you use instead?)

2012-06-20 Thread Leonardo Uribe
Hi Walter Yes, I know that. There is no stopper that could avoid us to use the datepicker widget, but note to limit the scope of the work, it sounds more convenient to take some styles from that widget and make them fit in the current implementation. It will take less time and effort. Later, we

Re: [TRINIDAD] JQuery (was: Trinidad is dead -- what do you use instead?)

2012-06-20 Thread Scott O'Bryan
Right. That's kind of why I suggested a style sheet parser. The idea is to take some of the styles generated by file roller (the ones that we can) and use them to generate a Trinidad skinning file. Sent from my iPhone On Jun 20, 2012, at 11:42 AM, Leonardo Uribe lu4...@gmail.com wrote: Hi

Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Joachim Schrod
Tobias Eisentrager wrote: I have used Trinidad to develop a couple production applications which are now in the maintenance phase - and am quite happy with it. The hard part for me was to adapt the css and js which came with the components. It's difficult to adapt the components to your

Re: No active contexts for CODI on Weblogic 12c

2012-06-20 Thread Maicon
Hi gerhard, the full stack provided by weblogic javax.el.ELException: //C:/Java/wls1211_dev/user_projects/domains/dev_domain/autodeploy/testeFramework/login.xhtml @18,48 value=#{userMBean.nome}: org.jboss.weld.context.ContextNotActiveException: WELD-001303 No active contexts for scope type

No saved view state could be found after redeploy

2012-06-20 Thread Pavel Arnošt
Hi, I have simple page with one form. When I: 1) load page 2) redeploy application 3) submit form exception is thrown: /index.facesNo saved view state could be found for the view identifier: /index.faces Caused by: javax.faces.application.ViewExpiredException - /index.facesNo saved view

Re: No active contexts for CODI on Weblogic 12c

2012-06-20 Thread Maicon
Gerhard when I use @SessionScoped instead of @ConversationScoped the page is loaded ok. The code of the UserMBean is: @Named(userMBean) @ConversationScoped public class UserMBean implements Serializable { private static final long serialVersionUID = 3140959503723849518L; private

Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Joachim Schrod
Leonardo Uribe wrote: Trinidad is considered rock solid. Its API is stable, well tested and it offers outstanding browser compatibility (now you get why it doesn't look too fancy). I have used Trinidad now for roughly two years in two smaller projects; and yes, it is solid. I wouldn't say

Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Joachim Schrod
Scott O'Bryan wrote: Part of determining a JSF library is finding the one that works right for you. Trinidad has (for a long time) not bad any major increases in functionality. While I do not consider the product dead, I can see some of the frustration. Scott, first let me emphasize that

Re: No saved view state could be found after redeploy

2012-06-20 Thread Ted
there's 2 things you might want to check 1) tomcat's session persistance across tomcat restarts : http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html 2) jsf state saving method, i.e. client or server On Thu, Jun 21, 2012 at 7:16 AM, Pavel Arnošt pavel.arn...@loutka.czwrote: Hi, I

Re: No active contexts for CODI on Weblogic 12c

2012-06-20 Thread Gerhard Petracek
hi maicon, rudy did some tests with wls12c and afaik it worked for him. maybe he can provide further details. regards, gerhard http://www.irian.at Your JSF/JavaEE powerhouse - JavaEE Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2012/6/20

Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Scott O'Bryan
On 06/20/2012 03:30 PM, Joachim Schrod wrote: Leonardo Uribe wrote: Trinidad is considered rock solid. Its API is stable, well tested and it offers outstanding browser compatibility (now you get why it doesn't look too fancy). I have used Trinidad now for roughly two years in two smaller

Re: Trinidad is dead -- what do you use instead?

2012-06-20 Thread Scott O'Bryan
R.I.. On 06/20/2012 03:45 PM, Joachim Schrod wrote: Scott O'Bryan wrote: Part of determining a JSF library is finding the one that works right for you. Trinidad has (for a long time) not bad any major increases in functionality. While I do not consider the product dead, I can see some of

Re[2]: No saved view state could be found after redeploy

2012-06-20 Thread Pavel Arnošt
Hi Ted, 1) tomcat session persistence should be on by default and Manager pathname= / is commented out, so I suppose that it's on 2) state saving metod should be server, it's default and javax.faces.STATE_SAVING_METHOD in web.xml is set to server With Tomcat 7.0.27+OWB 1.1.4+MyFaces

Re: [TRINIDAD] JQuery (was: Trinidad is dead -- what do you use instead?)

2012-06-20 Thread Leonardo Uribe
Hi I see. We could try that. What I like about that idea is that it reduce the amount of files to be created, and at the end sounds less restrictive and go aligned with the efforts in TRINIDAD-2120. Also, here we have the whole point of the discussion. If we can take some skins and include them

Re: Re[2]: No saved view state could be found after redeploy

2012-06-20 Thread Leonardo Uribe
Hi It is a known situation. You need to check the instructions here: http://wiki.apache.org/myfaces/Secure_Your_Application When you redeploy your app, a new encryption key is generated, so the old view state cannot be decoded and ViewExpiredException is thrown. Just set the right params and