Re: About the new tapestry logo

2006-06-25 Thread [EMAIL PROTECTED]
We need redesign another one? a much better one? A good logo is that the most of tapestry's user like. IMO. ?? Sun, 25 Jun 2006 14:45:20 +0800??liigo <[EMAIL PROTECTED]> : All informations was from tapestry's users' mailing list: "I do not like the new tapestry logo": http://www.nabble.c

Re: Form Object Weird Update Behavior

2006-06-25 Thread Gunna Satria
Hi Todd, It is really strange.. maybe you can give your source so we all can take a look at it.. Gunna Todd Orr <[EMAIL PROTECTED]> wrote: To add to the confusion, there is a TextArea called description that has an analog in the Bar object called description. It is a String just like

Re: AdobeLite for viewing reports

2006-06-25 Thread Peter Dawn
just standard admin related reports. as in how many ppl are accessing the site, usage, bandwidth, pages being accessed. i am populating this information into a report which i can view instead of viewing just logs or a standard admin page with info. i did find an alternative to adobe, but it doesnt

Re: Form Object Weird Update Behavior

2006-06-25 Thread Todd Orr
To add to the confusion, there is a TextArea called description that has an analog in the Bar object called description. It is a String just like id and name, however it does get set on form submission. I think this is a bug. Has anyone experienced something as strange? On 6/25/06, Todd Orr <[EMA

Re: AdobeLite for viewing reports

2006-06-25 Thread Dwi Ardi Irawan
HI, Peter... if don't mind, could you share what you've done to integrate jasperreports n tapestry thnx Peter Dawn wrote: hi all, i have integrated jasper reports within my tapestry web app. for viewing pdf docs i am using the adobe acrobat viewer. now the problem is that adobe is taking up

AdobeLite for viewing reports

2006-06-25 Thread Peter Dawn
hi all, i have integrated jasper reports within my tapestry web app. for viewing pdf docs i am using the adobe acrobat viewer. now the problem is that adobe is taking up huge amounts of memory on my machine and as a result my tapestry web app becomes un-responsive. as it is java and tomcat take u

Re: Form Object Weird Update Behavior

2006-06-25 Thread Todd Orr
BTW, this also happens for new Bar creation. Both id (expected) and name (unexpected) are null. On 6/25/06, Todd Orr <[EMAIL PROTECTED]> wrote: I have an object with properties id and name. I have a form that displays editable inputs for the object's name property. This page implements PageBegin

Re: Tapestry 3 to 4.1 to 5

2006-06-25 Thread kranga
Duh! Yes, as you guys guessed, I meant Hivemind not Hibernate. I think I need to hibernate a little more and get my mind back ... Thanks for your input ... - Original Message - From: "kranga" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Saturday, June 24, 2006 8:05 PM Subject: Tapes

Re: how to inject PageService

2006-06-25 Thread hv @ Fashion Content
disregard. It actually worked as long as I declared the setPageService with an IEngineService parameter. "hv @ Fashion Content" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] >I need to redirecto to a Page in LandingService, so I create a link using >PageService. > > My system

how to inject PageService

2006-06-25 Thread hv @ Fashion Content
I need to redirecto to a Page in LandingService, so I create a link using PageService. My system seems to go completely belly up when I define this. Is it the wrong way to get a page service link ? Thanks, Henrik --

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
OK, I've implemeted Scotts code but I'm still not getting any validation. Reg.page class="com.azudio.tapestry.validator.RequiredCheckbox"> I've put some debugging statements into the RequiredCheckbox class but it seems that when the page with the required che

Form Object Weird Update Behavior

2006-06-25 Thread Todd Orr
I have an object with properties id and name. I have a form that displays editable inputs for the object's name property. This page implements PageBeginRenderListener. I have the following set/get methods: @InitialValue("ognl:new com.foo.Bar()") public abstract Bar getBar(); public abstract void

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
Thanks Scott, I'll give your code a try. It might be worth sticking this up on the wiki as well. Thanks again, Adam On 24 Jun 2006, at 16:55, Maura Wilder wrote: no - Original Message - From: "Jesse Kuhnert" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Saturday, June 24, 2006 1

Re: Tapestry leaks memory in IE and my workaround

2006-06-25 Thread Jesse Kuhnert
It's not really relevant enough to warrent a JIRA issue. This leak would only happen on pages where you are doing XHR type requests...Tap4.1 doesn't use this method of adding events anymore. (I have provided a backwards compatible set of JS functions to mimick the function calls, but they all use

Re: Tapestry leaks memory in IE and my workaround

2006-06-25 Thread hv @ Fashion Content
Have you posted a JIRA bug report? "Cliff Zhao" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] > Tapestry leaks memory in IE. I'm using Tap 4.0.2. I did some research and > like to share it with you. The leaks may be more than I listed here as I > did > not use client side vali

Re: friendly URL restart redirects to /app

2006-06-25 Thread Mike Grundvig
Yes, Mr. Ship just posted that on the Dev forum. I'm very glad to be incorrect. This will save me a ton of time :) Michael Grundvig Electrotank, Inc http://www.electrotank.com - Original Message - From: "hv @ Fashion Content" <[EMAIL PROTECTED]> To: Sent: Sunday, June 25, 2006 11:03

Re: friendly URL restart redirects to /app

2006-06-25 Thread andyhot
Restart service clears the session and redirects to the Tapestry Servlet (which is usually /app) It's quite easy to create your own restart service and do other stuff... See http://svn.apache.org/repos/asf/tapestry/tapestry4/branches/4.0/framework/src/java/org/apache/tapestry/engine/RestartService

Re: friendly URL restart redirects to /app

2006-06-25 Thread hv @ Fashion Content
Thanks for the advice, but you are actually wrong. It is quite trivial to change the Tapestry defaults. The default you are talking about can be changed by a line in the webapp.application file or by a in your applications hivemodule.xml I see on the dev list that Howard already replied :)

Re: friendly URL restart redirects to /app

2006-06-25 Thread hv @ Fashion Content
Would the following be fix the redirect? Or Or change Restart service to act like Home service Henrik "hv @ Fashion Content" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] >I followed the instructions on friendly urls for T4, and it works just fin

Re: friendly URL restart redirects to /app

2006-06-25 Thread Mike Grundvig
Short of re-writing some of the internal guts of Tapestry, templates have to end in the .HTML extension (or you have to rename all the internal Tapestry templates to your new extension). That's what I was referring to. I brought this up only so you wouldn't be caught by surprise like I was. Mi

Re: friendly URL restart redirects to /app

2006-06-25 Thread hv @ Fashion Content
All my templates are named .html, so I can actually access the template in parallel with the page service. I don't consider it a bug, and you can change it. ServiceEncoders deal with how URLs are interpreted not how files/resources are named. In Tap3 you would change it in the .application file

Re: About the new tapestry logo

2006-06-25 Thread hv @ Fashion Content
I wish picking a new logo could be done a bit more logically along the lines a commercial product would be chosen, before actually voting on the change. Coming up with a good logo can take quite a while and rightly so. I see two possible approches: 1) Make a description of the values & directio

Re: friendly URL restart redirects to /app

2006-06-25 Thread Mike Grundvig
This is not directly related to your question but are your pages all named .html? I ask because I saw this: I've found a bug in T4 where your extension might be htm, but Tapestry expects all templates to be named .html. Mike Michael Grundvig Electrotank, Inc http://www.electrotank.com

friendly URL restart redirects to /app

2006-06-25 Thread hv @ Fashion Content
I followed the instructions on friendly urls for T4, and it works just fine except for one thing. The exception page correctly links to '/restart.do', but when you follow the link it gets redirected to '/app' rather than '/' Is this a bug or didn't I configure it correctly? --

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
Thanks Scott, I'll give your code a try. It might be worth sticking this up on the wiki as well. Thanks again, Adam On 24 Jun 2006, at 16:55, Maura Wilder wrote: no - Original Message - From: "Jesse Kuhnert" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Saturday, June 24, 2006 1

Re: Tapestry and Dojo and Tapestry 4.1

2006-06-25 Thread Shing Hing Man
If you have not checked out the helloword example in tacos wiki, at http://tacoscomponents.jot.com/WikiHome you might like take a look at that. Shing --- KE Gan <[EMAIL PROTECTED]> wrote: > Hi, > > I am finishing up (and launching) a project using > Tapestry 4.0.2 soon. I am > planning to

Tapestry and Dojo and Tapestry 4.1

2006-06-25 Thread KE Gan
Hi, I am finishing up (and launching) a project using Tapestry 4.0.2 soon. I am planning to incorporate some Ajax goodness into the next phase of the project. I understand that Tapestry 4.1 incorporate the Dojo Toolkit. I am kind of new to Dojo. Anyone know any example on using Tapestry with Doj