AW: Trouble with the Tap 5 tutorial

2007-04-04 Thread Peter Schröder
i think that there is no need for a tutorial that does not work. i would appreciate it, if someone fixes the archetype, so that beginners dont have to deal with deprecated stuff. -Ursprüngliche Nachricht- Von: Massimo Lusetti [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 3. April 2007

Re: Cant get Ajax @EventListener to work :( [+1]

2007-04-04 Thread Borut Bolčina
Is T 4.1.1 deprecated? The bug reported was for 4.1.1, not for 4.1.2-SNAPSHOT. The status should then be: Will not resolve. Cheers, Borut On 3.4.2007 22:59, Jesse Kuhnert wrote: Resolved as not valid. :) Just so everyone else is clear, elements component event listeners work

Localization of Tacos Datepicker

2007-04-04 Thread Holger Stolzenberg
Hy there, Does anyone know how to localize the tacos:DatePicker. After researching the tacos sources we noticed that all necessary resource bundles (if you wanna call them so) are there for the underlying DHTML calendar, but the DatePicker.script file rom the tacos component statically

Re: Creating ajax-based expandable tree-like structures

2007-04-04 Thread Wojtek Ciesielski
andyhot wrote: Also, 2 very useful implementations of a KeyProvider and a TreeContentProvider where added in tacos-4.1 http://fisheye3.cenqua.com/browse/tacos/tacos-4.1/trunk/tacos-core/src/java/net/sf/tacos/model/impl/BeanPropertyKeyProvider.java?r=469

XTile and getResponseBuilder().updateComponent()

2007-04-04 Thread Hugo Palma
I'm trying to use XTile to implement a similar effect to what the EventListener annotation does, but in JDK 1.4. So, i have the XTile component all setup, i get it to call my listener method and in the listener method i call cycle.getResponseBuilder().updateComponent(mycomp). Problem is, nothing

Re: Create Shoutcast service in Tapestry.

2007-04-04 Thread Hans Drexler
On Tue, 3 Apr 2007 20:49:02 -0400, Jesse Kuhnert wrote You can still do HttpServletResponse.setStatus(int code, String message); It's deprecated so there may be a better way but who knows..It wouldn't make sense if they didn't let you do it. I think the setStatus() will only affect the

No .jwc when using Annotations

2007-04-04 Thread Skorpien126
Hey, I have implementet the following http://wiki.apache.org/tapestry/SpeclessPagesInWEB-INF Code and it works fine. so I tried to it with the components too. A Component Definition looks like that @ComponentClass public abstract class Border extends BaseComponent { } and in the

So a simple question in place of earlier one...

2007-04-04 Thread Wojtek Ciesielski
Hi can I obtain full textual (ie. as a String) URL to a page with some parameters? Let's say that I have a page PageBeingCalled with a string property: public class PageBeingCalled extends BasePage { public abstract void setMyProperty(String prop); public abstract String getMyProperty();

svn repo for Tapestry 4.1.2

2007-04-04 Thread Andrea Chiumenti
Hello, where is the repository for Tapestry 4.1.2 ? kiuma

Re: svn repo for Tapestry 4.1.2

2007-04-04 Thread Andrea Chiumenti
found! thx anyway. On 4/4/07, Andrea Chiumenti [EMAIL PROTECTED] wrote: Hello, where is the repository for Tapestry 4.1.2 ? kiuma

Re: No .jwc when using Annotations

2007-04-04 Thread Skorpien126
YEAAAH ... got it. Simplie the same as the setupImplicitPage().. but setting the setPageSpecification to false. Furthermore I had to overwrite the ComponentSpecificationResolverImpl Class. (Defined it in the hivemodule like this implementation

RE: [announce] ognl 2.7 fail-safe enabled

2007-04-04 Thread Marcus.Schulte
Hi Jesse first of all, thanks a lot for your efforts! Unfortunately this doesn't seem to work for me right now (pom.properties says it's from Mon Apr 02 09:33:49 EST 2007 ) I'll file the exception I'm getting in Jira. Marcus -Original Message- From: Jesse Kuhnert [mailto:[EMAIL

Re: [announce] ognl 2.7 fail-safe enabled

2007-04-04 Thread Jesse Kuhnert
Hey Marcus, Yeah I just ran into that yesterday as well... Was just a dumb catch block mistake. There will be a new tapestry update in a couple more hours. (have to go to dr. first) On 4/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Jesse first of all, thanks a lot for your efforts!

Re: So a simple question in place of earlier one...

2007-04-04 Thread Sam Gendler
Generally, you would make sure the page implements the IExternalPage interface. That allows you to specify parameters in a link and receive them when the page is activated. If you just need to generate the URL, you can create an instance of an ILink via the ExternalService and then get the URL

Difference between an IPage and a IExternalPage

2007-04-04 Thread Andrea Chiumenti
Hi! Can someone briefly explain why an IExternalPage is bookmarkeable while an IPage not ? kiuma

Validation.setFormComponent works only Once???

2007-04-04 Thread Skorpien126
Why does this Code in my RegisterPage doesn´t work: IFormComponent componentPassword = (IFormComponent) getComponent(password); IFormComponent componentPasswordConfirm = (IFormComponent) getComponent(passwordConfirm); if

Re: So a simple question in place of earlier one...

2007-04-04 Thread Wojtek Ciesielski
Sam Gendler wrote: Generally, you would make sure the page implements the IExternalPage interface. That allows you to specify parameters in a link and ... --sam Thanks a lot Wojtek -- Wideofelietony Tadeusza Mosza. O

Re: [announce] ognl 2.7 fail-safe enabled

2007-04-04 Thread Jesse Kuhnert
Fix deploying nowSorry boot that. On 4/4/07, Jesse Kuhnert [EMAIL PROTECTED] wrote: Hey Marcus, Yeah I just ran into that yesterday as well... Was just a dumb catch block mistake. There will be a new tapestry update in a couple more hours. (have to go to dr. first) On 4/4/07, [EMAIL

Re: Cant get Ajax @EventListener to work :( [+1]

2007-04-04 Thread Jesse Kuhnert
I'm not sure that's how it normally works. It is resolved / fixed , just not in 4.1.1. I couldn't even resolve it in 4.1.1 if I wanted to, because 4.1.2is the only next incremental version number available. What were you expecting me to do ? On 4/4/07, Borut Bolčina [EMAIL PROTECTED] wrote:

Re: XTile and getResponseBuilder().updateComponent()

2007-04-04 Thread Jesse Kuhnert
The chain of response builders all inspect the incoming http request headers/ params to see who should handle the request type. If the special http parameter that stands for dojo requests isn't found then I'm guessing you're probably using the standard html response builder which doesn't include

Re: Create Shoutcast service in Tapestry.

2007-04-04 Thread Jesse Kuhnert
Garr oh well . If only we had a servlet spec person around who would know for sure if this is possible. On 4/4/07, Hans Drexler [EMAIL PROTECTED] wrote: On Tue, 3 Apr 2007 20:49:02 -0400, Jesse Kuhnert wrote You can still do HttpServletResponse.setStatus(int code, String message); It's

Re: Trouble with the Tap 5 tutorial

2007-04-04 Thread Howard Lewis Ship
Choose one: 1) A completely accurate tutorial. 2) Access to latest snapshots and alpha builds. On 4/3/07, Peter Schröder [EMAIL PROTECTED] wrote: i think that there is no need for a tutorial that does not work. i would appreciate it, if someone fixes the archetype, so that beginners dont

Re: XTile and getResponseBuilder().updateComponent()

2007-04-04 Thread Andreas Andreou
i'm pretty sure there's a general misunderstanding of what XTile's purpose is/was. It's simply a way to call a server-side method, something like what DWR does (and close to what http://issues.apache.org/jira/browse/TAPESTRY-979describes) No page is rendered while processing that service... See

Re: XTile and getResponseBuilder().updateComponent()

2007-04-04 Thread Hugo Palma
I can see from your reply that there's no easy way of doing this :o( I wish all of us that are stuck with JDK1.4 could have the same functionality available as the EventListener annotation presents. Should i create an issue for this or do you think that this will never be implemented ? Thanks,

Re: XTile and getResponseBuilder().updateComponent()

2007-04-04 Thread Hugo Palma
I didn't misunderstand the XTile purpose. I was just hoping i could use it to implement the functionality i described, bearing in mind that this is not in the scope of the XTile component. Thanks, Hugo On 4/4/07, Andreas Andreou [EMAIL PROTECTED] wrote: i'm pretty sure there's a general

Re: .jwc-file-free components for libraries (4.1.1)

2007-04-04 Thread Steve Shucker
My recent experience (with 4.1.1) is that injecting relative resources isn't working. I have a few components in a library with associated *.script files. Some have templates and use the @Script tag in the template. Others don't have templates and use the @InjectScript annotation. I tried

Page Cleanup Tasks

2007-04-04 Thread Gareth
hi, I am storing a list of items in the session using @Persist(session) and that is working well, however I would like to remove that list from the session if that area of my application is left by the user. Is it possible to establish via the PageDetachListener or some other method which

Session variable and login help ...

2007-04-04 Thread Bruce Petro
We're just getting started in Tapestry and our login is initialized as seen below. But a second browser (mixing IE and Foxfire) seem to share the login of the first person - so I believe this is wrong. I'm guessing that the Start class is only initialized once for all users, is that true? Any

Visit Object deprecated

2007-04-04 Thread Gareth
Are we supposed to use some other form of session persistence, or is it a good pattern to create a user Visit Object and keep all user session variables inside it? Thanks ___ What kind of emailer are you? Find out

T5 Calendars

2007-04-04 Thread Ben Dotte
I saw there are plans to get jscalendar working in T5 and that a separate project was already created to do so but I was curious if there are any plans to port the current dojo-based DropdownDatePicker or the original Tapestry DatePicker to T5. The reason I ask is we had several problems with

Re: Page Cleanup Tasks

2007-04-04 Thread Steve Shucker
I'm not sure where you'd call it from, but IRequestCycle.forgetPage(String) will cause it to dump any state connected to a given page. -Steve Gareth wrote: hi, I am storing a list of items in the session using @Persist(session) and that is working well, however I would like to remove that

Re: Cant get Ajax @EventListener to work :( [+1]

2007-04-04 Thread Borut Bolčina
Sorry, I was in a bad mood this morning. Just now I tried again with 4.1.2 to see if OGNL-16 is still the problem and guess what - it isn't. I will continue with 4.1.2-SNAPSHOT. Thanks for all the hard work Jesse! Best, Borut Jesse Kuhnert wrote: I'm not sure that's how it normally works.

[T4.0.2] Does anybody have any insight about Portlets

2007-04-04 Thread jake123
Hi All, at our company we are going to build a page where our clients will be able to choose from maybe 10-15 different Portlets to be displayed (say that that the page only can take 4-5 Portlets ) Example: ___ |_Menu_| | X || X | | X |

[ANN] Series of Tapestry Tutorials

2007-04-04 Thread Andreas Andreou
Looks like http://www.devshed.com/ have started a series of Tapestry 4 tutorials authored by Alexander Kolesnikov. The first part is at http://www.devshed.com/c/a/Apache/Apache-Tapestry-4-Tutorial/ and it sure looks like quite interesting. -- Andreas Andreou - [EMAIL PROTECTED] -

RE: T5 Upload component?

2007-04-04 Thread Ben Sommerville
FYI - I just submitted an implementation of a file upload component to JIRA. It can be downloaded from https://issues.apache.org/jira/browse/TAPESTRY-1354 You'll have to build it yourself, but it should just work using maven. If anyone tries it out, please let me know if you have any problems or

Re: [ANN] Series of Tapestry Tutorials

2007-04-04 Thread Chris Chiappone
Nice, Did you guys see his dissertation on tapestry. Pretty good work right there. On 4/4/07, Andreas Andreou [EMAIL PROTECTED] wrote: Looks like http://www.devshed.com/ have started a series of Tapestry 4 tutorials authored by Alexander Kolesnikov. The first part is at

T5 IoC remote module def'n problem.

2007-04-04 Thread Bill Holloway
In a separate Eclipse project from my T5 project, I write a service called MyService Interface: package org.example.mylib; public interface MyService { public String doSomething (); } Impl: package org.example.mylib; public class MyServiceImpl implements MyService {

Re: T5 IoC remote module def'n problem.

2007-04-04 Thread Howard Lewis Ship
Looks good to me; somehow you must have the JAR file on the classpath twice. Can we see your Ant build.xml (you obviously aren't using Maven). In T4 I've seen a lot of people set up an eclipse project and store dependencies in src/context/WEB-INF/lib AND add them to the Eclipse project build