Re: Stream redirection problem when using JFreeChart with Tapestry

2010-08-13 Thread Chuck Kring
You should try to separate JFreeChart from Tapestry. As a test, have the onChart getStream return a FileInputStream from a known-good jpeg file. This will allow you to determine if the problem is in the Tapestry event handling or the chart. Chuck On 8/13/2010 3:56 AM, Ruksen Inanir wrote:

Re: Component (with a Zone and ActionLink) in a loop

2010-08-13 Thread Thiago H. de Paula Figueiredo
On Fri, 13 Aug 2010 22:08:40 -0300, Donny Nadolny wrote: I have a component that has a Zone and an ActionLink within the zone (which updates the zone that contains it). This works fine normally, but when I use it in a loop (actually a nested loop) and click the ActionLink, it only update

Component (with a Zone and ActionLink) in a loop

2010-08-13 Thread Donny Nadolny
I have a component that has a Zone and an ActionLink within the zone (which updates the zone that contains it). This works fine normally, but when I use it in a loop (actually a nested loop) and click the ActionLink, it only updates the first zone. I've read some previous messages (http://mai

Re: Using Tapestry? Add yourself to the Map!

2010-08-13 Thread cleverpig
So great~ I find new friends at Beijing. On Fri, Aug 13, 2010 at 11:40 PM, Howard Lewis Ship wrote: > I keep a public Google Map of people using Tapestry ... feel free to > add yourself to it: > > http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=106662057515738259524.0004696f8216ba268b74a&

Re: Libarary "core" mapping not working in 5.2.0-SNAPSHOT

2010-08-13 Thread Thiago H. de Paula Figueiredo
On Fri, 13 Aug 2010 20:09:49 -0300, raulmt wrote: named ViewCore inside the core package). If using the core library mapping will not be permited anymore, what would be the best way to preserve or at least redirect existing links like the previous one? Use LinkTransformer (URL rewriting).

Re: Libarary "core" mapping not working in 5.2.0-SNAPSHOT

2010-08-13 Thread raulmt
I wanted to switch to T5.2, and I found exactly this problem. I have an app with many modules, and one of them is the "CoreModule", which maps all its components to the LibraryMapping "core". In Tapestry documentation, it says: Note: it is possible to add a mapping for "core". "core" is the core

Versioned assets

2010-08-13 Thread raulmt
Hi, In Tapestry, assets are versioned with the application version appended to the start of all classpath and context assets. This is a great feature because of effective cache and cache invalidation after an application upgrade. But, problems come when I linked one of these assets before upgrad

Re: tapestry-jersey

2010-08-13 Thread Borut Bolčina
Uf, thanks! Is there a T5 wiki reference to it? I will try it. -Borut 2010/8/13 Alejandro Scandroli > Hi Borut > > Do you know http://wiki.github.com/yunglin/tapestry-jersey/ ? > I haven't tried it, but it sure looks like what you are looking for. > > Cheers. > Alejandro. > > On Thu, Aug 12, 20

Using Tapestry? Add yourself to the Map!

2010-08-13 Thread Howard Lewis Ship
I keep a public Google Map of people using Tapestry ... feel free to add yourself to it: http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=106662057515738259524.0004696f8216ba268b74a&ll=39.639538,-9.140625&spn=141.978715,308.320312&z=2 -- Howard M. Lewis Ship Creator of Apache Tapestry Th

Re: tapestry-jersey

2010-08-13 Thread Alejandro Scandroli
Hi Borut Do you know http://wiki.github.com/yunglin/tapestry-jersey/ ? I haven't tried it, but it sure looks like what you are looking for. Cheers. Alejandro. On Thu, Aug 12, 2010 at 7:05 PM, Kalle Korhonen wrote: > On Thu, Aug 12, 2010 at 9:15 AM, Borut Bolčina > wrote: >> perhaps this shoul

Re: Refresh zone periodicaly

2010-08-13 Thread Pablo dos Reis
Mite, Is your "ActionLink" inside the "zone"? I already had problem with this. 2010/8/13 Bryan Lewis > Let me try that again. I've had very good results with this PeriodicUpdate > mixin that I heard about from this list. > > http://blog.bolkey.com/2010/05/creating-a-news-feed-in-tapestry-5 >

Using a modules message-catalog in another module

2010-08-13 Thread Alexander Muthmann
Hi there, I'm currently developing a website which is extended by external modules. I have a top-menu which displays some basic classes and all registered classes provided by external modules. Now I have the following problem: Normally I would display a link with this code: ${message:mypage}

Re: Refresh zone periodicaly

2010-08-13 Thread Bryan Lewis
Let me try that again. I've had very good results with this PeriodicUpdate mixin that I heard about from this list. http://blog.bolkey.com/2010/05/creating-a-news-feed-in-tapestry-5 On Fri, Aug 13, 2010 at 9:06 AM, Bryan Lewis wrote: > I've had very good results with this mixin that I heard

Re: Refresh zone periodicaly

2010-08-13 Thread Bryan Lewis
I've had very good results with this mixin that I heard about from this list. On Thu, Aug 12, 2010 at 9:14 PM, Mite wrote: > > Hi > Is there a way to refresh a zone on a fixed period automatically? > > Thanks > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Refresh-z

Re: Select in Loop

2010-08-13 Thread Thiago H. de Paula Figueiredo
On Fri, 13 Aug 2010 09:16:08 -0300, Inge Solvoll wrote: You have hit one of my problem spots in T5 :) I also just use formState="iteration", because I simply don't understand how to make the alternatives work... Quick answer: it makes the form store information about the objects being

Re: Refresh zone periodicaly

2010-08-13 Thread Pablo dos Reis
Hi Mite, I think you don' t need put t:id and id in the component only one is enough. But for you have sure if the problem is javascript or other thing. I recommend the firebug. http://getfirebug.com/ 2010/8/13 Mite > > I have tried this approach: > > > > function refreshZoneEvent() > { > do

Re: Select in Loop

2010-08-13 Thread Inge Solvoll
You have hit one of my problem spots in T5 :) I also just use formState="iteration", because I simply don't understand how to make the alternatives work... On Fri, Aug 13, 2010 at 1:40 PM, Mite wrote: > > I made a ValueEncoder and also put formState="iteration" in the loop. The > second one see

Re: Select in Loop

2010-08-13 Thread Mite
I made a ValueEncoder and also put formState="iteration" in the loop. The second one seemed to made it work, even though I don't really understand why. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Select-in-Loop-tp2471420p2572247.html Sent from the Tapestry - User mai

RE: Stream redirection problem when using JFreeChart with Tapestry

2010-08-13 Thread Ruksen Inanir
Yes it seems to be valid. I wrote some lines of code which saves the image to a file before returning the stream just to see if the stream returned belongs to image. And image file is created correctly. Somehow I cannot redirect to stream to page, although it actually is created.. -Ori

Tynamo on T5:conversation.moderator component doesn't work with IE7.

2010-08-13 Thread cleverpig
hi, all! I found conversation.moderator seem like doesn't work with IE7.I'd tested conversation moderator component,it work well at chrome. my tapestry version:5.2.0-20100208,when I use this component in page with IE browser,it never send ajax request to server after page loaded. but with chrome,e

Re: T5.1 Ajax requests and responses out of order

2010-08-13 Thread Andreas Andreou
dojo used to have queueBind - that would trigger an ajax request only after the previous one had returned... the implementation is just a few lines, see http://bugs.dojotoolkit.org/browser/trunk/src/io/common.js?rev=7811 around line 340 On Fri, Aug 13, 2010 at 08:44, Kartweel wrote: > > > Josh Ca