Re: Status of Tiles without Struts

2007-05-18 Thread Antonio Petrelli

2007/5/18, lightbulb432 [EMAIL PROTECTED]:


Could somebody who's in the know here explain what the status of this
project is, and how I can get it up and running in a simple way?




Me! Me! :-)

http://tiles.apache.org/

Antonio


Re: Status of Tiles without Struts

2007-05-18 Thread Lance

I have used sitemesh in the past http://www.opensymphony.com/sitemesh/
This is a filter that intercepts the html on the way out, parses it then 
decorates it with a header, menu etc. etc.


lightbulb432 wrote:

Great, thanks!

Out of curiosity, what are the alternatives to Tiles for JSP templating? 


Assuming I'd like to use JSP for the view, what ways of making a
maintainable website are there? Of course I could use the JSP include action
and directive, but that wouldn't be maintainable (or would it in practice -
what's your experience?)

What alternatives are there, and how do they compare to Tiles?

Thanks.



Antonio Petrelli-3 wrote:
  

2007/5/18, lightbulb432 [EMAIL PROTECTED]:


Could somebody who's in the know here explain what the status of this
project is, and how I can get it up and running in a simple way?
  


Me! Me! :-)

http://tiles.apache.org/

Antonio





  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Status of Tiles without Struts

2007-05-18 Thread lightbulb432

Great, thanks!

Out of curiosity, what are the alternatives to Tiles for JSP templating? 

Assuming I'd like to use JSP for the view, what ways of making a
maintainable website are there? Of course I could use the JSP include action
and directive, but that wouldn't be maintainable (or would it in practice -
what's your experience?)

What alternatives are there, and how do they compare to Tiles?

Thanks.



Antonio Petrelli-3 wrote:
 
 2007/5/18, lightbulb432 [EMAIL PROTECTED]:

 Could somebody who's in the know here explain what the status of this
 project is, and how I can get it up and running in a simple way?
 
 
 
 Me! Me! :-)
 
 http://tiles.apache.org/
 
 Antonio
 
 

-- 
View this message in context: 
http://www.nabble.com/Status-of-Tiles-without-Struts-tf3778187.html#a10686178
Sent from the Struts - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Status of Tiles without Struts

2007-05-18 Thread LAMY Olivier
Hi,
A question I see in documentation [1] : container.render(myapp.homepage, 
request, response);


But in last version 2.0.3 : this method doesn't exists anymore ?
What is the new one ?

Thanks,

--
Olivier


[1] : http://tiles.apache.org/tutorial/basic/pages.html 

-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 18 mai 2007 16:48
À : Struts Users Mailing List
Objet : Re: Status of Tiles without Struts

2007/5/18, lightbulb432 [EMAIL PROTECTED]:

 Could somebody who's in the know here explain what the status of this 
 project is, and how I can get it up and running in a simple way?



Me! Me! :-)

http://tiles.apache.org/

Antonio


This e-mail, any attachments and the information contained therein (this 
message) are confidential and intended solely for the use of the addressee(s). 
If you have received this message in error please send it back to the sender 
and delete it. Unauthorized publication, use, dissemination or disclosure of 
this message, either in whole or in part is strictly prohibited.
** 
Ce message électronique et tous les fichiers joints ainsi que  les informations 
contenues dans ce message ( ci après le message ), sont confidentiels et 
destinés exclusivement à l'usage de la  personne à laquelle ils sont adressés. 
Si vous avez reçu ce message par erreur, merci  de le renvoyer à son émetteur 
et de le détruire. Toutes diffusion, publication, totale ou partielle ou 
divulgation sous quelque forme que se soit non expressément autorisées de ce 
message, sont interdites.
** 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Status of Tiles without Struts

2007-05-18 Thread LAMY Olivier
Ok. See in sources.
If someone interested :

HttpServletRequest request = ServletActionContext.getRequest();
HttpServletResponse response = ServletActionContext.getResponse();
container.render( location, new Object[] { request, response } ); 

--
Olivier

-Message d'origine-
De : LAMY Olivier [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 18 mai 2007 19:31
À : Struts Users Mailing List
Objet : RE: Status of Tiles without Struts

Hi,
A question I see in documentation [1] : container.render(myapp.homepage, 
request, response);


But in last version 2.0.3 : this method doesn't exists anymore ?
What is the new one ?

Thanks,

--
Olivier


[1] : http://tiles.apache.org/tutorial/basic/pages.html 

-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED]
Envoyé : vendredi 18 mai 2007 16:48
À : Struts Users Mailing List
Objet : Re: Status of Tiles without Struts

2007/5/18, lightbulb432 [EMAIL PROTECTED]:

 Could somebody who's in the know here explain what the status of this 
 project is, and how I can get it up and running in a simple way?



Me! Me! :-)

http://tiles.apache.org/

Antonio


This e-mail, any attachments and the information contained therein (this 
message) are confidential and intended solely for the use of the addressee(s). 
If you have received this message in error please send it back to the sender 
and delete it. Unauthorized publication, use, dissemination or disclosure of 
this message, either in whole or in part is strictly prohibited.
**
Ce message électronique et tous les fichiers joints ainsi que  les informations 
contenues dans ce message ( ci après le message ), sont confidentiels et 
destinés exclusivement à l'usage de la  personne à laquelle ils sont adressés. 
Si vous avez reçu ce message par erreur, merci  de le renvoyer à son émetteur 
et de le détruire. Toutes diffusion, publication, totale ou partielle ou 
divulgation sous quelque forme que se soit non expressément autorisées de ce 
message, sont interdites.
** 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Status of Tiles without Struts

2007-05-18 Thread Antonio Petrelli

HEY ALL!!!

For questions regarding Tiles 2 ask the Tiles 2 Users mailing list, please:

http://tiles.apache.org/mail-lists.html

Antonio

2007/5/18, LAMY Olivier [EMAIL PROTECTED]:

Ok. See in sources.
If someone interested :

HttpServletRequest request = ServletActionContext.getRequest();
HttpServletResponse response = ServletActionContext.getResponse();
container.render( location, new Object[] { request, response } );

--
Olivier

-Message d'origine-
De : LAMY Olivier [mailto:[EMAIL PROTECTED]
Envoyé : vendredi 18 mai 2007 19:31
À : Struts Users Mailing List
Objet : RE: Status of Tiles without Struts

Hi,
A question I see in documentation [1] : container.render(myapp.homepage, 
request, response);


But in last version 2.0.3 : this method doesn't exists anymore ?
What is the new one ?

Thanks,

--
Olivier


[1] : http://tiles.apache.org/tutorial/basic/pages.html

-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED]
Envoyé : vendredi 18 mai 2007 16:48
À : Struts Users Mailing List
Objet : Re: Status of Tiles without Struts

2007/5/18, lightbulb432 [EMAIL PROTECTED]:

 Could somebody who's in the know here explain what the status of this
 project is, and how I can get it up and running in a simple way?



Me! Me! :-)

http://tiles.apache.org/

Antonio


This e-mail, any attachments and the information contained therein (this 
message) are confidential and intended solely for the use of the addressee(s). If 
you have received this message in error please send it back to the sender and delete it. 
Unauthorized publication, use, dissemination or disclosure of this message, either in 
whole or in part is strictly prohibited.
**
Ce message électronique et tous les fichiers joints ainsi que  les informations contenues 
dans ce message ( ci après le message ), sont confidentiels et destinés 
exclusivement à l'usage de la  personne à laquelle ils sont adressés. Si vous avez reçu 
ce message par erreur, merci  de le renvoyer à son émetteur et de le détruire. Toutes 
diffusion, publication, totale ou partielle ou divulgation sous quelque forme que se soit 
non expressément autorisées de ce message, sont interdites.
**


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]