RE: Statistic

2008-02-04 Thread mario.buonopane
I'm using

-Original Message-
From: samju [mailto:[EMAIL PROTECTED] 
Sent: 2 febbraio 2008 12.45
To: user@shale.apache.org
Subject: Statistic


I just want to check how many user, Companies, etc. are using Shale.
thanks
For your feedback  in advance!

Sam
-- 
View this message in context:
http://www.nabble.com/Statistic-tp15242062p15242062.html
Sent from the Shale - User mailing list archive at Nabble.com.




This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information.  If you have received it in 
error, please notify the sender immediately and delete the original.  Any other 
use of the email by you is prohibited.


RE: Problem with navigation handler

2008-02-04 Thread mario.buonopane
I'm sorry, but I don't understand
If I return null from the action, how can Shale go do transition OK ?


-Original Message-
From: samju [mailto:[EMAIL PROTECTED] 
Sent: 2 febbraio 2008 12.25
To: user@shale.apache.org
Subject: Re: Problem with navigation handler


Your aim is to apply a ajax call on ricercaSinistro.jsp.
If i got what you means, I think you may do the follow:

The outcome of the Ajax-Call-action can (should )return null.
This Ajax action should be handle outside the Dialog Configuration File.
(we
can mix dialog and non dialog action).

The Pre-Action-State should have as target the dialog End-State.
 
action name=actionRicerca 
  method=#{ test_stateless$ricercaSinistro.findClaim }
transition outcome=OK target=Exit /
/action

view name=ricercaPage viewId=/test_stateless/ricercaSinistro.jsp 
In this View State we can call an Ajax action with the needed null
outcome.
transition outcome= exitdialogaction target= exitdialog  /

/view  
end name=exit  viewId=/test_stateless/ricercaSinistro.jsp
end name=exitdialog  viewId=/test_stateless/home.jsp

I hope this will help


mario.buonopane wrote:
 
 Hi, I'm using basic navigation handler with this configuration:
 
 action name=actionRicerca
 method=#{test_stateless$ricercaSinistro.findClaim}
 
 transition outcome=OK target=ricercaPage /  
 
 transition outcome=error target=Exit/  
 
   /action
 
 
 
 view name=ricercaPage viewId=/test_stateless/ricercaSinistro.jsp
 
 transition outcome=ricerca target=actionRicerca/

 
   /view
 
   
 
 The button of my form call the action ricerca because I want specify
 the action to call in the configuration file of dialog. 
 
 If the action =#{test_stateless$ricercaSinistro.findClaim} return
null
 I have a loop because the control remain to the view ricercaPage and
 call again the outcome ricerca. 
 
  
 
 Is there any one can help me?
 
  
 
 Thanks in advance
 
 Mario 
 
  
 
 
 
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information.  If you
have
 received it in error, please notify the sender immediately and delete
the
 original.  Any other use of the email by you is prohibited.
 
 

-- 
View this message in context:
http://www.nabble.com/Problem-with-navigation-handler-tp15180522p1524192
6.html
Sent from the Shale - User mailing list archive at Nabble.com.




This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information.  If you have received it in 
error, please notify the sender immediately and delete the original.  Any other 
use of the email by you is prohibited.


RE: Problem with navigation handler

2008-02-04 Thread samju

1- findClaim() do return the Transition OK
2- for your ajax call we do not have to use dialog conf. stuff. work outside
the Dialog
so return null from non-Dialog action!

public String nonDialogAction(){

prepare the ajax call
/*as you mentioned befor the output schould be null*/

return null;
/* will let us refresh the last Dialog-State-View. This View is the
Transition outcome OK from a dialog-Action*/
}

public String dialogAction(){
.do smth..
return OK;
}

Sam
 

mario.buonopane wrote:
 
 I'm sorry, but I don't understand
 If I return null from the action, how can Shale go do transition OK ?
 
 
 
 
 -Original Message-
 From: samju [mailto:[EMAIL PROTECTED] 
 Sent: 2 febbraio 2008 12.25
 To: user@shale.apache.org
 Subject: Re: Problem with navigation handler
 
 
 Your aim is to apply a ajax call on ricercaSinistro.jsp.
 If i got what you means, I think you may do the follow:
 
 The outcome of the Ajax-Call-action can (should )return null.
 This Ajax action should be handle outside the Dialog Configuration File.
 (we
 can mix dialog and non dialog action).
 
 The Pre-Action-State should have as target the dialog End-State.
  
 action name=actionRicerca 
   method=#{ test_stateless$ricercaSinistro.findClaim }
   transition outcome=OK target=Exit /
 /action
 
 view name=ricercaPage viewId=/test_stateless/ricercaSinistro.jsp 
 In this View State we can call an Ajax action with the needed null
 outcome.  
 transition outcome= exitdialogaction target= exitdialog  /
   
 /view  
 end name=exit  viewId=/test_stateless/ricercaSinistro.jsp
 end name=exitdialog  viewId=/test_stateless/home.jsp
 
 I hope this will help
 
 
 mario.buonopane wrote:
 
 Hi, I'm using basic navigation handler with this configuration:
 
 action name=actionRicerca
 method=#{test_stateless$ricercaSinistro.findClaim}
 
 transition outcome=OK target=ricercaPage /  
 
 transition outcome=error target=Exit/  
 
   /action
 
 
 
 view name=ricercaPage viewId=/test_stateless/ricercaSinistro.jsp
 
 transition outcome=ricerca target=actionRicerca/
 
 
   /view
 
   
 
 The button of my form call the action ricerca because I want specify
 the action to call in the configuration file of dialog. 
 
 If the action =#{test_stateless$ricercaSinistro.findClaim} return
 null
 I have a loop because the control remain to the view ricercaPage and
 call again the outcome ricerca. 
 
  
 
 Is there any one can help me?
 
  
 
 Thanks in advance
 
 Mario 
 
  
 
 
 
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information.  If you
 have
 received it in error, please notify the sender immediately and delete
 the
 original.  Any other use of the email by you is prohibited.
 
 
 
 -- 
 View this message in context:
 http://www.nabble.com/Problem-with-navigation-handler-tp15180522p1524192
 6.html
 Sent from the Shale - User mailing list archive at Nabble.com.
 
 
 
 
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information.  If you have
 received it in error, please notify the sender immediately and delete the
 original.  Any other use of the email by you is prohibited.
 
 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-navigation-handler-tp15180522p15268070.html
Sent from the Shale - User mailing list archive at Nabble.com.



RE: Statistic

2008-02-04 Thread Richard Eggert
I would imagine that most people on this mailing list are using it, or at least 
thinking about using it.  It's difficult to determine who's using it that is 
not on this list, though.

Rich Eggert
Member of Technical Staff
Proteus Technologies, LLC
http://www.proteus-technologies.com



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Mon 2/4/2008 5:12 AM
To: user@shale.apache.org
Subject: RE: Statistic
 
I'm using

-Original Message-
From: samju [mailto:[EMAIL PROTECTED] 
Sent: 2 febbraio 2008 12.45
To: user@shale.apache.org
Subject: Statistic


I just want to check how many user, Companies, etc. are using Shale.
thanks
For your feedback  in advance!

Sam
-- 
View this message in context:
http://www.nabble.com/Statistic-tp15242062p15242062.html
Sent from the Shale - User mailing list archive at Nabble.com.




This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information.  If you have received it in 
error, please notify the sender immediately and delete the original.  Any other 
use of the email by you is prohibited.



RE: Problem with navigation handler

2008-02-04 Thread mario.buonopane
So, in the JSP I call directly the action, for example in my button:
#{test_stateless$ricercaSinistro.nonDialogAction }

Mario 

-Original Message-
From: samju [mailto:[EMAIL PROTECTED] 
Sent: 4 febbraio 2008 14.27
To: user@shale.apache.org
Subject: RE: Problem with navigation handler


1- findClaim() do return the Transition OK
2- for your ajax call we do not have to use dialog conf. stuff. work
outside
the Dialog
so return null from non-Dialog action!

public String nonDialogAction(){

prepare the ajax call
/*as you mentioned befor the output schould be null*/

return null;
/* will let us refresh the last Dialog-State-View. This View is the
Transition outcome OK from a dialog-Action*/
}

public String dialogAction(){
.do smth..
return OK;
}

Sam
 

mario.buonopane wrote:
 
 I'm sorry, but I don't understand
 If I return null from the action, how can Shale go do transition OK
?
 
 
 
 
 -Original Message-
 From: samju [mailto:[EMAIL PROTECTED] 
 Sent: 2 febbraio 2008 12.25
 To: user@shale.apache.org
 Subject: Re: Problem with navigation handler
 
 
 Your aim is to apply a ajax call on ricercaSinistro.jsp.
 If i got what you means, I think you may do the follow:
 
 The outcome of the Ajax-Call-action can (should )return null.
 This Ajax action should be handle outside the Dialog Configuration
File.
 (we
 can mix dialog and non dialog action).
 
 The Pre-Action-State should have as target the dialog End-State.
  
 action name=actionRicerca 
   method=#{ test_stateless$ricercaSinistro.findClaim }
   transition outcome=OK target=Exit /
 /action
 
 view name=ricercaPage viewId=/test_stateless/ricercaSinistro.jsp

 In this View State we can call an Ajax action with the needed null
 outcome.  
 transition outcome= exitdialogaction target= exitdialog  /
   
 /view  
 end name=exit  viewId=/test_stateless/ricercaSinistro.jsp
 end name=exitdialog  viewId=/test_stateless/home.jsp
 
 I hope this will help
 
 
 mario.buonopane wrote:
 
 Hi, I'm using basic navigation handler with this configuration:
 
 action name=actionRicerca
 method=#{test_stateless$ricercaSinistro.findClaim}
 
 transition outcome=OK target=ricercaPage /  
 
 transition outcome=error target=Exit/  
 
   /action
 
 
 
 view name=ricercaPage
viewId=/test_stateless/ricercaSinistro.jsp
 
 transition outcome=ricerca target=actionRicerca/
 
 
   /view
 
   
 
 The button of my form call the action ricerca because I want
specify
 the action to call in the configuration file of dialog. 
 
 If the action =#{test_stateless$ricercaSinistro.findClaim} return
 null
 I have a loop because the control remain to the view ricercaPage
and
 call again the outcome ricerca. 
 
  
 
 Is there any one can help me?
 
  
 
 Thanks in advance
 
 Mario 
 
  
 
 
 
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information.  If you
 have
 received it in error, please notify the sender immediately and delete
 the
 original.  Any other use of the email by you is prohibited.
 
 
 
 -- 
 View this message in context:

http://www.nabble.com/Problem-with-navigation-handler-tp15180522p1524192
 6.html
 Sent from the Shale - User mailing list archive at Nabble.com.
 
 
 
 
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information.  If you
have
 received it in error, please notify the sender immediately and delete
the
 original.  Any other use of the email by you is prohibited.
 
 

-- 
View this message in context:
http://www.nabble.com/Problem-with-navigation-handler-tp15180522p1526807
0.html
Sent from the Shale - User mailing list archive at Nabble.com.




This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information.  If you have received it in 
error, please notify the sender immediately and delete the original.  Any other 
use of the email by you is prohibited.


Shale Status

2008-02-04 Thread Bernhard Slominski
Hi all,

I make a small presentation about Shale in the JSF Days in Vienna, for that I'd 
like to have some information about the current status of Shale.
I just went through the maillist, but it's a bit difficult to find hard facts.

So my questions are the following

- Next Shale relaese
Right now there is no plan for a Shale 1.0.5 release right?
Corresponding thread: 
http://markmail.org/message/nagpn7igxeowjtx6?q=org%2Eapache%2Eshale%2Edev

- What goes where?
There was this thread: 
http://markmail.org/message/3ws5fzthj2yfdjjp?q=org%2Eapache%2Eshale%2Edev+list:org%2Eapache%2Eshale%2Edev
But there was no final decision on what goes where, so is it still open, or is 
there a decision?

- Shale itsself
Will it disappear as an Apache Top Level project?

Cheers 

Bernhard


Re: Statistic

2008-02-04 Thread Greg Reddin
On Feb 2, 2008 5:44 AM, samju [EMAIL PROTECTED] wrote:

 I just want to check how many user, Companies, etc. are using Shale. thanks
 For your feedback  in advance!

The company I work for uses the Remoting architecture.

Greg


Re: Statistic

2008-02-04 Thread Daniel del Río
We are developing a cms oriented to jsf components that uses clay as
template technology.

El lun, 04-02-2008 a las 10:48 -0600, Greg Reddin escribió:
 On Feb 2, 2008 5:44 AM, samju [EMAIL PROTECTED] wrote:
 
  I just want to check how many user, Companies, etc. are using Shale. thanks
  For your feedback  in advance!
 
 The company I work for uses the Remoting architecture.
 
 Greg



Re: Statistic

2008-02-04 Thread Ryan Wynn
We are using clay as our view handler on a large websphere portal
project.  It works very well for us.  The templating reuse is amazing.


On Feb 4, 2008 12:24 PM, Daniel del Río [EMAIL PROTECTED] wrote:
 We are developing a cms oriented to jsf components that uses clay as
 template technology.

 El lun, 04-02-2008 a las 10:48 -0600, Greg Reddin escribió:

  On Feb 2, 2008 5:44 AM, samju [EMAIL PROTECTED] wrote:
  
   I just want to check how many user, Companies, etc. are using Shale. 
   thanks
   For your feedback  in advance!
 
  The company I work for uses the Remoting architecture.
 
  Greg