Re: Tomcat Eclipse plugin and stand-alone Tomcat - html files

2007-07-29 Thread Eckenfellner Klaus
There is no need to "touch" another file to force the update? > I have seen the publish.xml file in the development > environment for example with stamps for all files. > > /Malin > > > > On 7/29/07, *Eckenfellner Klaus* < [EMAIL

Re: Tomcat Eclipse plugin and stand-alone Tomcat - html files

2007-07-29 Thread Eckenfellner Klaus
hat's obviously not doing the trick :-( > > Any suggestions? > > /Malin > > On 7/29/07, *Eckenfellner Klaus* < [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > the only way to get this behavior you want (changes to html files are > a

Re: Tomcat Eclipse plugin and stand-alone Tomcat - html files

2007-07-29 Thread Eckenfellner Klaus
ey are loaded by the servlet) > > I use Tomcat 5.5 and Tapestry 4.1. > > /Malin > > On 7/29/07, *Eckenfellner Klaus* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > how do you deploy your application, with a WAR-file or do you copy > webapplica

Re: Tomcat Eclipse plugin and stand-alone Tomcat - html files

2007-07-29 Thread Eckenfellner Klaus
how do you deploy your application, with a WAR-file or do you copy webapplication-folder into webapp-folder of tomcat? is it possible that you have set "org.apache.tapestry.disable-caching" during development (see http://tapestry.apache.org/tapestry4/UsersGuide/configuration.html)? which version of

Re: component export message properties to global / application catalog

2007-07-23 Thread Eckenfellner Klaus
in your nav-component, > couldn't you? > >> -Original Message- >> From: Eckenfellner Klaus [mailto:[EMAIL PROTECTED] >> Sent: Monday, July 23, 2007 10:58 AM >> To: users@tapestry.apache.org >> Subject: Re: component export message properties to global

Re: component export message properties to global / application catalog

2007-07-23 Thread Eckenfellner Klaus
requestCycle ... then all visitors have the correct translation. Eckenfellner Klaus wrote: > found the following solution to my problem... > > my border component needs a list of pages. pages are needed to get i18n > which are only stored in the several libraries. for that purpose i wrot

Re: component export message properties to global / application catalog

2007-07-23 Thread Eckenfellner Klaus
> >> -----Original Message- >> From: Eckenfellner Klaus [mailto:[EMAIL PROTECTED] >> Sent: Friday, July 20, 2007 11:56 AM >> To: users@tapestry.apache.org >> Subject: Re: component export message properties to global / >> application catalog >> >>

Re: Stale session problem

2007-07-23 Thread Eckenfellner Klaus
2 months ago i had the same problems like you. to study the vlib application from howard lewis ship helped me a lot, because there is also a basic(but very good) mechanism for user login / logout control. here the mechanism in a nutshell: all pages in your application extends one abstract page, i

Re: component export message properties to global / application catalog

2007-07-23 Thread Eckenfellner Klaus
rvice which could help me. [EMAIL PROTECTED] wrote: > I see, but why can't you initialise all your plugin libs upon the first > request? > Does this really hurt a lot performance-wise? Sorry, but I'm just being > curious ... > > >> -Original Message- >

Re: Stale session problem

2007-07-20 Thread Eckenfellner Klaus
in the example http://svn.apache.org/viewvc/tapestry/tapestry4/tags/4.1.1/tapestry-examples/Vlib/src/java/org/apache/tapestry/vlib/VlibPage.java?revision=488094&view=markup you could see, that everytime before a state is injected with @InjectState("visit") the @InjectStateFlag("visit") method is ca

Re: component export message properties to global / application catalog

2007-07-20 Thread Eckenfellner Klaus
> the navigation/border-component via IComponent.getMessages() > Does that help? > Also, you components/pages could be required to implement some > interface Named {getDisplayName(Locale);} > > >> -----Original Message- >> From: Eckenfellner Klaus [mailto:[EMAI

component export message properties to global / application catalog

2007-07-20 Thread Eckenfellner Klaus
hi everybody! short description of my application: my application uses tapestry components to create some dynamic plugin behavior. tapestry components can be plugged in and are registered with the help of a configuration-point (hint from marcus schulte thx). every plugin / component contribute to

Re: dynamic plugins / menu problem

2007-06-06 Thread Eckenfellner Klaus
().getChildNamespace( id ); >List pages = lib.getPageNames(); > //... > } > >> -Original Message- >> From: Eckenfellner Klaus [mailto:[EMAIL PROTECTED] >> Sent: Wednesday, June 06, 2007 2:34 PM >> To: users@tapestry.apache.org >> Subjec

ADD: dynamic plugins / menu problem

2007-06-06 Thread Eckenfellner Klaus
sorry mentioned to use tapestry 4.0.2 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

dynamic plugins / menu problem

2007-06-06 Thread Eckenfellner Klaus
that i could inject -> now storing information into ASO. my questions: * do you know any better solution, because i am not sure if this is the best way * is the only way to get the Hivemind-Registry to extend ApplicationServlet.constructRegistry ? thx ec