Re: WebSocket for tapestry

2014-05-13 Thread Michael Dukaczewski
Is tapestry-atmosphere compatible with Tapestry 5.4? Am 13.05.14 10:27, schrieb Lance Java: In particular, you'll be interested in the usage of HttpServletHttpServletRequestFilter. https://github.com/uklance/tapestry-atmosphere/blob/master/tapestry-atmosphere/src/main/java/org/lazan/t5/atmosp

Re: Loving the eclipse-tapestry5-plugin

2014-01-13 Thread Michael Dukaczewski
Maybe a special configuration for the plugin is not necessary. It would probably be enough to read the .classpath file to use the classpath of the eclipse project? Am 16.12.13 10:45, schrieb Michael Dukaczewski: It depends on the project I'm working on. I have projects in maven layo

Re: Loving the eclipse-tapestry5-plugin

2013-12-16 Thread Michael Dukaczewski
ould it be per Eclipse project? On Tue, Dec 3, 2013 at 5:26 PM, Michael Dukaczewski wrote: I love the plugin also. But a way to configure the file locations would be great. We use a different project layout from Maven. Regards, Michael Am 02.12.13 20:37, schrieb Lance Java: I've just st

Re: Loving the eclipse-tapestry5-plugin

2013-12-03 Thread Michael Dukaczewski
I love the plugin also. But a way to configure the file locations would be great. We use a different project layout from Maven. Regards, Michael Am 02.12.13 20:37, schrieb Lance Java: I've just started using the new(ish) eclipse-tapestry5-plugin and I must say it's great!! The killer featur

DOAP File

2013-01-08 Thread Michael Dukaczewski
The Apache Tapestry 5 DOAP file appears to be outdated: http://projects.apache.org/projects/tapestry.html - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apach

[T5.3-rc-3] UTF-8 not working with Tomcat7

2011-11-03 Thread Michael Dukaczewski
Since Tapestry 5.3-beta-28 UTF-8 encoding is not working anymore when I deploy on Tomcat7. Locally with Jetty everything is ok, but on Tomcat I only get "?". Until Tapestry 5.3-beta-27 everything was ok with both Jetty and Tomcat. --

Re: AjaxFormLoop problem with Tapestry 5.2.-beta-9

2011-10-05 Thread Michael Dukaczewski
anuel DEMEY: My Sample is the one on the Tapestry-jQuery Test application : https://github.com/got5/tapestry5-jquery/blob/master/src/test/java/org/got5/tapestry5/jquery/test/pages/test/AjaxFormLoop.java Manu 2011/9/21 Michael Dukaczewski Emmanuel is right. I have the same problem. This simple ex

Re: AjaxFormLoop problem with Tapestry 5.2.-beta-9

2011-09-21 Thread Michael Dukaczewski
Emmanuel is right. I have the same problem. This simple example does not work with Tapestry 5.3-beta-9: public class AjaxTest { @Persist private List source; @Property private String str; public List getSource() { if (source == nul

Re: commons-codec version

2011-09-15 Thread Michael Dukaczewski
11 at 10:16 AM, Michael Dukaczewski < > m.dukaczew...@tu-bs.de> wrote: > >> Is there a reason why Tapestry still uses commons-codec-1.3 from 2004? >> The current version is 1.5 and I have a project where I need to use the >> current version. Can there be problems? Would it

commons-codec version

2011-09-15 Thread Michael Dukaczewski
Is there a reason why Tapestry still uses commons-codec-1.3 from 2004? The current version is 1.5 and I have a project where I need to use the current version. Can there be problems? Would it make sense to link Tapestry generally to the new version? ---

Re: chenillekit

2011-05-18 Thread Michael Dukaczewski
Yes, the site is reachable, but ... "Last Published: 2009-09-18" ... so it is almost dead. Am 18.05.2011 11:55, schrieb Massimo Lusetti: > On Wed, May 18, 2011 at 7:01 AM, Chris Collins > wrote: > >> Does anyone know if chenillekit is dead? A quick play trying to use it with >> t5.2.5 failed

Re: [T5.2] Is there a reason why T5.2 is not using the latest version of scriptaculous?

2010-10-02 Thread Michael Dukaczewski
scriptaculous V1.8.3 (October 8, 2009) * Update to Prototype 1.6.1 * Effect.toggle to return effect (to be able to do Effect.toggle(element, 'appear', {sync: true});) [RStankov] * Use element.identify() for fetching element.id in Sortable.create [RStankov] * Fix deprecated usage of Positio

Re: [T5.2] Tapestry IoC Configuration (remove?)

2010-09-17 Thread Michael Dukaczewski
GzipSupported(); } >> public boolean isCompressable(String contentType) { >>if (contentType.equals("application/json")) return true; >> >> return delegate.isCompressable(contentType); >> } >> }; >> >> } >> >> On Thu, Sep

Re: [T5.2] Tapestry IoC Configuration (remove?)

2010-09-16 Thread Michael Dukaczewski
case with gzip compression. So is there a way to reactivate it? Am 16.09.2010 16:12, schrieb Thiago H. de Paula Figueiredo: > On Thu, 16 Sep 2010 10:40:08 -0300, Michael Dukaczewski > wrote: > >> thanks for your answer, but that does not help me. >> Is there a simple wor

Re: [T5.2] Tapestry IoC Configuration (remove?)

2010-09-16 Thread Michael Dukaczewski
iguration > have an override method that can be used to replace another contribution > identified by the id > > g, > kris > > > > > Von:Michael Dukaczewski > An: users@tapestry.apache.org > Datum: 15.09.2010 11:23 > Betreff:[T5.2] Tapestr

[T5.2] Tapestry IoC Configuration (remove?)

2010-09-15 Thread Michael Dukaczewski
How can I remove something from the distributed configuration? For example there is a default: contributeResponseCompressionAnalyzer(Configuration configuration) { configuration.add("application/json"); } I am missing something like: contributeResponseCompressionAnalyzer(Configuration config

[T5] Key order in JSONObject

2010-09-13 Thread Michael Dukaczewski
Hi! I have a problem with the JSONObject in Tapestry. I would like to use a Javascript Prototype component which expects a JSON object. The component outputs the data in the order they were transmitted in the JSON object. The problem is that in the implementation of the JSONObject in Tapestry a ma

Re: automatic zone update

2009-05-06 Thread Michael Dukaczewski
stry >> // will render it for us >> return content; >> } >> } >> >> lazyZone.js >> --- >> Tapestry.Initializer.lazyZoneLoad = function(element, url) { >> $T(element).zoneManager.updateFromURL(url); >&

automatic zone update

2009-05-05 Thread Michael Dukaczewski
I'm trying to create a zone which automatically updates itself after some time. Any suggestions? - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

[T5] Pagelink bug in Tapestry 5.0.16?

2008-11-17 Thread Michael Dukaczewski
I think I found a bug in the new Tapestry Release Candidate. I have a page (Foo.tml) with following code: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Foo Home And of course an Index page. In Tapestry 5.0.15 it worked fine, but now the link does not work anymore. That

Re: Dynamic list of strings in a form

2008-04-23 Thread Michael Dukaczewski
he index property: > > > The way your page was written you were telling tapestry to update the > item property for each value in the list, which it dutifully did. But, > what you really wanted was it to put the items into your list. > > Hope that helps, > Josh > >

Dynamic list of strings in a form

2008-04-15 Thread Michael Dukaczewski
I am using Tapestry 5.0.11 and have a problem with a dynamic list of strings in a form. What I am trying, is the following: In the Page.java: @Persist private List items; @Property private String item; public List getItems() { if (items == null) { items = new LinkedLis

Re: Eclipse errors on .tml files

2008-04-14 Thread Michael Dukaczewski
I can not reproduce your problem, but for the second one you can try: Jan Vissers schrieb: For completeness, here is my Layout: http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml"; xmlns:t="http://tapestry.apache.org/schema