Re: Wiki implementation using Tapestry

2006-07-07 Thread Julio C. Rivera
Thanks Lennart, but I haven't found that proyect. Thanks Phillip, I will have a look at Stitches, I think it can be very useful. 2006/7/6, Lennart Benoot [EMAIL PROTECTED]: Someday I accidently ran accross a project, mentioned on the blog of Howard, that did somthing similar. Take a look at

Re: WYSIWYG eclipse plugin for Tapestry

2006-07-07 Thread ZedroS Schwart
Here is the link I think : http://ezingbuilder.sourceforge.net/cms/ That's quite a good move ! Great ! However, I don't understand why you say it doesn't work for the Safari Webbrowser. After it's an eclipse plugin, isn't it ? Thanks for the info Cheers, ZedroS On 7/7/06, Jinshan Li [EMAIL

Re: base href=http://localhost:8080/rms//

2006-07-07 Thread Diego
I will check that out. But the thing is that I didn't change tomcat in anyway. On 7/6/06, Paul Field [EMAIL PROTECTED] wrote: Thx for your responce. But does it alway put localhost in the base tag even if the app is deploy on a remove server? Actually the problem might be in the

maven deps makes 4.0 collide with 4.1

2006-07-07 Thread Ted Steen
Hi, When trying T4.1 with tapernate, the 4.0.2 dependencies on tapernate collides with my T4.1. I think this is due to a name change of the artifact Id (from tapestry to tapestry-framework). How do I solve this? -- ted - To

Re: WYSIWYG eclipse plugin for Tapestry

2006-07-07 Thread Jinshan Li
Here is the link I think : http://ezingbuilder.sourceforge.net/cms/ That's quite a good move ! Great ! Thanks. However, I don't understand why you say it doesn't work for the Safari Webbrowser. After it's an eclipse plugin, isn't it ? Because ezingbuilder is not a swt plugin, it use eclipse

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-07 Thread Geoff Callender
Bernard, Peter, this is great feedback. I'll have it fixed soon. Many thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: validation of fields within a For component

2006-07-07 Thread Shing Hing Man
When you use a component in a loop, only one instance of it is used. The problem is that in the java code of your page, you can not, as you said, reference the second,say, 'component' in the loop. Each 'copy' of the component in the loop can be uniquely identified by getClientId(). Example :

Re: validation of fields within a For component

2006-07-07 Thread Shing Hing Man
Oops! Forgotten the custom validation delegate. public class MyDelegate extends ValidationDelegate { private static final long serialVersionUID = -7297508746898486393L; private ListString clientIds = new ArrayListString(); public void addClientsId(String id) {

RE: Stale link, reloaded

2006-07-07 Thread Firas A.
Sorry about the first incomlete posting. Didn't mean to send it. Damn keyboard shortcust!:-) Hello, I've read several postings on this subject, but none of them was of any help. So I realy hope someone

RE: Tapestry JumpStart - calling all armchair critics!

2006-07-07 Thread Petter Måhlén
Btw. If you use Eclipse, have you tried Sysdeo plugin? It allows you to run webapps in Tomcat directly from within code compiled in Eclipse. What more, you can use breakpoints in your webapp code and debug it as normal application :-) You would not need to inject your code with

Mulitple annotations on a property

2006-07-07 Thread Stephane Decleire
Hi all, I need to set a property of a component to be persisted and required together : @Persist(session) @Parameter(required = true) public abstract void setAddress(Address address); public abstract Address getAddress(); But Tapestry send me this exception : Property address has

sending a redirect

2006-07-07 Thread Dan Adams
How do you send a redirect from an engine serivice? -- Dan Adams Software Engineer Interactive Factory 617.235.5857 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Finster Hannon
I would like to get access to my ASO 'Visit' from a servlet filter let's say. I have used a piece I saw Howard post where I am subclassing the ApplicationServlet which will provide access to the HiveMind (HM) registry. I would think then calling from anywhere in the app to the servlet would

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Shing Hing Man
I have noticed that in the retrieveVisit method of InjectStateWorker.java : visit = (Visit) _applicationStateManager.get(visit) ; But in the hivemodule.xml, the state object name is 'Visit' with a captial V. You might like to rename 'visit' to something else. I do not know whether it would

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Shing Hing Man
Sorry ! Here is the correct link. http://lombok.demon.co.uk/tapestry4Demo/app Shing --- Shing Hing Man [EMAIL PROTECTED] wrote: I have noticed that in the retrieveVisit method of InjectStateWorker.java : visit = (Visit) _applicationStateManager.get(visit) ; But in the

Re: sending a redirect

2006-07-07 Thread Ron Piterman
throw a RedirectException Cheers, Ron Dan Adams wrote: How do you send a redirect from an engine serivice? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Joseph Hannon
Shing, I did change the 'Visit' id to something else, 'message', as a test and still get the exception of webRequest being null. From your website: HelloMessage message = (HelloMessage) getAppStateManager().get(message); How are you calling getAppStateManager(), from what class? How are you

RE: Tapernate Usage Questions

2006-07-07 Thread Lane, Geoffrey
So why merge? Why not have an annotation like 'reattach-get' that will get an object fresh from the database? Would that solve the problem of not having to set the value to null? In part we're trying to think about canceling forms. If you cancel, using a Page link (or just navigate away from a

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Joseph Hannon
Shing, Cool. I did replace set-object with the set-service and got the same exception. If you will notice in my original post, this was commented out, I uncommented it and commented the line with set-object . Would you mind showing some code where you are getting your asoService class

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Shing Hing Man
Here is the java class for the asoSevice mentioned in my how-to. Shing ASOService.java : public class ASOService implements IEngineService { @SuppressWarnings(unused) private static Logger log = Logger.getLogger(ASOService.class); public static final String

a component that creates another component

2006-07-07 Thread Alessandro Balletti
Hi, I'd like to create a custom component that during the rendering adds one or more TextFiled components to it's output. Is it possibile? Thanks Ale

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Shing Hing Man
The registry is stored in the servlet context. You can retreived it by : String REGISTRY_KEY_PREFIX = org.apache.tapestry.Registry:; ServletContext context = getServletContext(); Registry registry = (Registry) context.getAttribute(REGISTRY_KEY_PREFIX + testPojoASO);

Re: a component that creates another component

2006-07-07 Thread Shing Hing Man
It should be possible since Daniel Gredler have created a BeanForm component (you supply a pojo, it will generate all the textFields/date picker for you. Just like magic). It is available at Tassel http://equalitylearning.org/Tassel/app I am surpise no one has mentioned this on the list yet.

Re: a component that creates another component

2006-07-07 Thread Alessandro Balletti
It should be possible since Daniel Gredler have created a BeanForm component (you supply a pojo, it will generate all the textFields/date picker for you. Just like magic). It is available at Tassel It seems to be what I'm looking for. Thank you!

Why I hate mailing lists

2006-07-07 Thread Epstein, Ezra
So I wanted to read up about putting multiple portlets/pages in a single Tapestry portlet .war and went happily to the online mailing list archives and what do I find: The archives are segmented: + first by month (oh and only 3 months are online) + then by a page of n postings in a month. +

Portlets -- many in one .war ?

2006-07-07 Thread Epstein, Ezra
We're looking to Tapestry for our portlet development. Basically we love what Tapestry does for servlet/web-app dev. and are hoping it can help with an in-process Portal. Reading the list I'm not optimistic. Here are the questions: 1. How do we add multiple portlets to a single .war (not

RE: Why I hate mailing lists

2006-07-07 Thread Wim V
That would be the best idea since the wheel, I'm tired of putting u all on my junklist coz unsubscribe aint working. One thing I know, I'm never gonna subscribe to another mailing list ever again. From: Epstein, Ezra [EMAIL PROTECTED] Reply-To: Tapestry users users@tapestry.apache.org To:

Re: Why I hate mailing lists

2006-07-07 Thread Angelo Luis
very very very good idea!!! But i never se something like a forum in a apche project... Maybe is teh time to do that!!! On 7/7/06, Epstein, Ezra [EMAIL PROTECTED] wrote: So I wanted to read up about putting multiple portlets/pages in a single Tapestry portlet .war and went happily to the

RE: Why I hate mailing lists

2006-07-07 Thread Ben Dotte
There is an archive going back to 2002 and a search feature here: http://dir.gmane.org/gmane.comp.java.tapestry.user Ben -Original Message- From: Epstein, Ezra [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 2:20 PM To: Tapestry users Subject: Why I hate mailing lists So I wanted

Re: Why I hate mailing lists

2006-07-07 Thread Henri Dupre
Old/new story... Someone created long ago www.tapestryforums.com which had the objective you mention. All the attemps to convert this mailing list in a forum failed... I believe the mailing list is still mirrored there and you can search in the forums. For all the features you want, you can

Re: Accessing ASO 'Visit' from servlet filter

2006-07-07 Thread Shing Hing Man
I have run out of idea. If I come up with something useful, I'll inform you. Shing --- Joseph Hannon [EMAIL PROTECTED] wrote: Follow up: I can get the Visit object from my filter's ServletRequest session.getAttribute(state:apply:Visit), but I was attempting to really use a proper

From the online docs

2006-07-07 Thread Epstein, Ezra
From http://tapestry.apache.org/tapestry4/tapestry-portlet/index.html The pattern of development for Tapestry portlet applications is to create a (generally) small application, consisting of just a few pages. Each Tapestry portlet within a portal page will be a completely separate instance of

Re: Tapestry JumpStart - calling all armchair critics!

2006-07-07 Thread Geoff Callender
Petter Måhlén petter.mahlen at jadestone.se writes: Btw. If you use Eclipse, have you tried Sysdeo plugin? It allows you to run webapps in Tomcat directly from within code compiled in Eclipse. And JBossIDE does the same thing for JBoss in Eclipse! Details are on JumpStart Tips page.

RE: Tapernate Usage Questions

2006-07-07 Thread James Carman
Because if you use get and then update that object, you're completely circumventing the optimistic locking (if you've got that enabled). -Original Message- From: Lane, Geoffrey [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 12:14 PM To: Tapestry users Subject: RE: Tapernate Usage