Re: T5 tutorial

2007-07-04 Thread Eko S.W.
Woa. I just know that ! Now I am trying the Beaneditform Thanks Howard et.al, for the work! (I hope I can contribute) 2007/7/4, Robert Sanders <[EMAIL PROTECTED]>: There are also a number of decent HTML Mirroring tools; which I've used at various times to grab local copies of web sites. On wi

Re: Problem in mvn package (can not include all the required jars)

2007-07-04 Thread Eko S.W.
ok. thanks. Maybe I should post this issue on maven mailing list. thank you 2007/7/5, Renat Zubairov <[EMAIL PROTECTED]>: Hm... strange, I can't see anything abnormal there. Sorry. On 04/07/07, Eko S.W. <[EMAIL PROTECTED]> wrote: > Thanks! > Because it is quite large, I opt to just attach it,

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread Nick Westgate
Is this the problem you are trying to fix, or the disabled options? If the latter, I think there is a problem with your model. Cheers, Nick. 蝈蝈龙 wrote: For , As I use complicated CSS, I found the page can't display correctly in IE but it's fine in Firefox. I prefer the generated html code is

Re: 4.1.1 upgrade to 4.1.2 async listener no longer works

2007-07-04 Thread Paul Stanton
I've figured out why the exception is being thrown: my formSubmit method requires the submission control (Submit or LinkSubmit) to have set the tag and selected attributes/parameters. Now, my async button comes in without those set and the null pointer is thrown. So I've added an "if null retu

Re: 4.1.1 Dialog disappears without request

2007-07-04 Thread Paul Stanton
Turns out this is fixed in 4.1.2. I had to do some funky stuff to get 4.1.2 working and it's not 100% yet, but I can't reproduce this particular issue in 4.1.2. So thanks for the suggestion, it did help me figure out another problem ;) Igor Drobiazko wrote: Hi Paul, just guessing: the might

Re: [ANNOUNCE] Tapestry 5.0.5

2007-07-04 Thread Joshua Jackson
On 7/5/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Yet another preview (alpha) release, Tapestry 5.0.5 adds many new components, including a file upload component and the Palette component (for multiple selection). Howard, Will the datepicker component be available on the next release?

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread 蝈蝈龙
For , As I use complicated CSS, I found the page can't display correctly in IE but it's fine in Firefox. I prefer the generated html code is more simple. 2007/7/5, Howard Lewis Ship <[EMAIL PROTECTED]>: It looks like the bug, if any, is that disabled="false" should set the Select component'

Re: [ANNOUNCE] Tapestry 5.0.5

2007-07-04 Thread Massimo Lusetti
On 7/4/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: with the quickstart Maven archetype, and allows expansions inside attributes (rather than just inside body text), as well as many other ;) I hope this will not bite us ... anyway T5 is gaining day after day... Thanks you so much. -- Mass

Re: Problem in mvn package (can not include all the required jars)

2007-07-04 Thread Renat Zubairov
Hm... strange, I can't see anything abnormal there. Sorry. On 04/07/07, Eko S.W. <[EMAIL PROTECTED]> wrote: Thanks! Because it is quite large, I opt to just attach it, not paste it. I have it is okay with you. 2007/7/4, Renat Zubairov <[EMAIL PROTECTED] >: > > Hi > > Could you please post your

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread Howard Lewis Ship
It looks like the bug, if any, is that disabled="false" should set the Select component's disabled parameter to false (which is the default), but it appears it may be set to true. Generally, when the TypeCoercer coverts a string to a boolean, any non-blank string is converted to true, even the

Re: [T5] DataSqueezer

2007-07-04 Thread Howard Lewis Ship
Not currently. Part of the reasoning in T5 is that, with easy injection, it's much less necessary for the framework to do certain things. In T2 (where DataSqueezer started) this was not the case, and the only way to get a lot of common, desirable behavior was for the framework to do it automatic

[T5] DataSqueezer

2007-07-04 Thread Norbert Sándor
Hello, Is there a service equivalent to T4's DataSqueezer? Thanks: Norbi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ANNOUNCE] Tapestry 5.0.5

2007-07-04 Thread Juan E. Maya
Hi Gabriel, u can see more about client side persistence here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/persist.html On 7/4/07, Gabriel Lozano <[EMAIL PROTECTED]> wrote: Great!! Thanks for the release. I was reading in the description of the new features and it says: "...adds c

Re: [T5] How create sub component

2007-07-04 Thread David Avenante
Thank you Hugo, I'll explore this way. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [T5] How create sub component

2007-07-04 Thread Hugo Palma
Well, i think the only way you could achieve that would be to use the Block component. You could create a master page where your component blocks are declared. That would be the only page your web designer would edit. In the other pages where you use the components you would would the RenderBlock

Re: [ANNOUNCE] Tapestry 5.0.5

2007-07-04 Thread Gabriel Lozano
Great!! Thanks for the release. I was reading in the description of the new features and it says: "...adds client-side field persistence...". Can you explain this a little more or point me somewhere where I can read about it? Thanks in advance. Gabriel H. Lozano M. 2007/7/4, Howard Lewis Ship

[ANNOUNCE] Tapestry 5.0.5

2007-07-04 Thread Howard Lewis Ship
The Apache Tapestry project has releases Tapestry 5.0.5. Tapestry is a component-based framework for creating highly dynamic, scalable, and robust web applications using the Java programming language. Tapestry focuses on making it easy to create new components using a very simple programming mode

Re: T5 Templates In src/main/resources Might Interfere With Resource Filtering

2007-07-04 Thread Steven Coco
Hi. You /can/ set up any folders you want to declare as resources; and per-folder, turn filtering on or off. Each folder can have includes and excludes. Filtering is disabled by default. You could move all your message bundles out of this directory and into some new one, and enable filtering;

Re: [T5] How create sub component

2007-07-04 Thread David Avenante
Yes there is always workaround but what I liked in the definition of tapestry is : Tapestry is organized around four key principles: * Simplicity * Consistency * Efficiency * Feedback And I like the first term ;) I like to have SIMPLE file, easy readable and understandable. -

Re: [T5] How create sub component

2007-07-04 Thread Hugo Palma
Regarding helping the web designers get around the templates, i have found in the past that providing a master HTML file with server side includes to include the component templates that you want them to edit worked fine. It was actually a web designer that suggested this, I think they used Dreamw

Re: [T5] How create sub component

2007-07-04 Thread David Avenante
Yes I can understand but this approach is a big constraint, with big implication for my web designer who need to play in templates and need to have a good understanding of my templates hierarchy For me it's an issue with lot of limitation. A simple exemple : I want to create a component who can

Re: T5 tutorial

2007-07-04 Thread Robert Sanders
There are also a number of decent HTML Mirroring tools; which I've used at various times to grab local copies of web sites. On windows WinHTTrack (sp?), on Linux WGet works ok. #Cyrille37# wrote: Read again Olasoji Ajayi's mail : I am new to T5, can anyone point me to some tutorial on T5

Re: Tapestry 5 XML tag(s)

2007-07-04 Thread Hugo Palma
It's all here http://tapestry.apache.org/tapestry5/tapestry-core/guide/templates.html On 7/4/07, Ryan Cuprak <[EMAIL PROTECTED]> wrote: Hello, With Tapestry 5 - where can I find information on how the new xml tags work - like etc? I have done quite a bit of work with 4 and am a little disori

Tapestry 5 XML tag(s)

2007-07-04 Thread Ryan Cuprak
Hello, With Tapestry 5 - where can I find information on how the new xml tags work - like etc? I have done quite a bit of work with 4 and am a little disoriented without the jwcids etc. Not sure what I can put instead of 'pagelink'. I interpret entries on the component reference as attri

T4.1.2 Survey: Is Selenium working for you?

2007-07-04 Thread Geoff Callender
A question for everyone using Selenium who has upgraded from Tapestry 4.1.1 to 4.1.2: - Is Selenium TestRunner still working for you? - Does it get through client validation errors OK? I've found that Selenium IDE is fine but Selenium TestRunner stops at client validation errors. Is th

page redirection and caching

2007-07-04 Thread Ray McBride
Hi All, I have a button on my page which allows a user to set a different locale and causes a page redirection back to this page by throwing a RedirectException. This works fine on my development environment, but unfortunately there appears to be some browser caching problems when it is move

service method in BaseEngine

2007-07-04 Thread munich
Has anyone an idea why the following code will not work? public void service(WebRequest webRequest, WebResponse webResponse) throws IOException { if (webRequest.getServerName().startsWith("en.")){ this._locale=new Locale("e

Re: Feature of Inheritance in Tapestry Template (not only Java)

2007-07-04 Thread Lutz Hühnken
You can define your own components, i.e. take the code that is common to several templates and turn it into a tapestry component. You can than compose your templates from your components. Also, you might want to look at the "Border" component. hth, Lutz On 7/4/07, Eko S.W. <[EMAIL PROTECTED]>

Re: Problem in mvn package (can not include all the required jars)

2007-07-04 Thread Eko S.W.
Thanks! Because it is quite large, I opt to just attach it, not paste it. I have it is okay with you. 2007/7/4, Renat Zubairov <[EMAIL PROTECTED]>: Hi Could you please post your pom.xml here it would be much simpler to see what's going on. Renat On 04/07/07, Eko S.W. <[EMAIL PROTECTED]> wrot

Feature of Inheritance in Tapestry Template (not only Java)

2007-07-04 Thread Eko S.W.
Hi All, I just use Tapestry feature of inheritance in web pages. For example, I could have a BasePage.java which contain single field, @ApplicationState User _userLogged; So all pages will know who logged to the application I setup all the base page class to be of Abstract type, all field to b

BaseEngine and org.apache.tapestry.request-decoder

2007-07-04 Thread munich
How do you inject the Engine into org.apache.tapestry.request-decoder ? In the workbench example there is: I am trying to set the locale inside RequestDecoder dependent on the domain name. In order to set the Locale, BaseEngine is necessary Thanks! ---

Re: 4.1.1 Dialog disappears without request

2007-07-04 Thread Igor Drobiazko
Hi Paul, just guessing: the might be some bug in @EventListener You could try to replace your Buttons by Submit and call your listener methods via action parameter: Why do you prefer the combination of buttons + @EventListener? Your listener methods is triggered by clicking on a button, so you

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread 小司
I meet the same problem.There is not any error tip. 2007/7/4, Allen Guo <[EMAIL PROTECTED]>: Hi All, I use select component in html template like this The generated result is like this bug pet I used the latest TP5.0.5(not snapshot). It's really very strange. Can any

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread Nick Westgate
Then please show the source & usage of your model. Cheers, Nick. 蝈蝈龙 wrote: The same error 2007/7/4, Nick Westgate <[EMAIL PROTECTED]>: What happens if you omit the disabled attribute? Cheers, Nick. Allen Guo wrote: > Hi All, > > I use select component in html template like this > >

Re: 4.1.1 (or 4.1.2) Dojo Dialog escaping pageBeginRender

2007-07-04 Thread Paul Stanton
Thanks Renat, unfortunately the dialog needs to be initialised programmatically .. I need to dynamically stuff an object into it. I might be able to use JS for the close operation though. Renat Zubairov wrote: Hi You can show or hide dialog not from the Tapestry (read server-side) but directl

4.1.1 Dialog disappears without request

2007-07-04 Thread Paul Stanton
Hi all. I can't test this under 4.1.2 because of my other issues (post - 4.1.1 upgrade to 4.1.2 async listener no longer works). I'm having another issue with my dialogs. This one is totally perplexing. What happens is this: 1. I click my add button, the dialog appears. 2. I click my cancel

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread 蝈蝈龙
The same error 2007/7/4, Nick Westgate <[EMAIL PROTECTED]>: What happens if you omit the disabled attribute? Cheers, Nick. Allen Guo wrote: > Hi All, > > I use select component in html template like this > > The generated result is like this > > bug > pet > >

Re: Select Component can't work in TP-5.0.5

2007-07-04 Thread Nick Westgate
What happens if you omit the disabled attribute? Cheers, Nick. Allen Guo wrote: > Hi All, > > I use select component in html template like this > value="shop.currTemplate.backgroundImage" size="1" disabled="false"/> > The generated result is like this > > bug > pet >

Re: Problem in mvn package (can not include all the required jars)

2007-07-04 Thread Renat Zubairov
Hi Could you please post your pom.xml here it would be much simpler to see what's going on. Renat On 04/07/07, Eko S.W. <[EMAIL PROTECTED]> wrote: Dear community, I use jetty as the mean to achieve hot development in Maven. And it works very fine. But, when I try to package it into WAR and h

Re: 4.1.1 (or 4.1.2) Dojo Dialog escaping pageBeginRender

2007-07-04 Thread Renat Zubairov
Hi You can show or hide dialog not from the Tapestry (read server-side) but directly with Javascript. It's pretty simple, you just need to call method "show" or "hide" on the DoJo dialog: function closeDialog() { dojo.widget.byId('DialogContent').hide(); } Renat On 04/07/07, Pau

Select Component can't work in TP-5.0.5

2007-07-04 Thread Allen Guo
Hi All, I use select component in html template like this The generated result is like this bug pet I used the latest TP5.0.5(not snapshot). It's really very strange. Can anyone give me a help? Thank you in advance Allen Guo -

Re: T5 tutorial

2007-07-04 Thread #Cyrille37#
Read again Olasoji Ajayi's mail : I am new to T5, can anyone point me to some tutorial on T5 that I can download, I know there is documentation online but I don't have regular internet access for the moment. He need some Off-Line doc. Perhaps he can make a book with "htmldoc" tool. cyrille

Re: Tapestry make me feel happy !

2007-07-04 Thread #Cyrille37#
Eko S.W. a écrit : I just want to ask one question, but why not T5? I just try Tap too, and I do straight coding in T5 (to my opinion, because it is the latest, and it should be the only choice) Is the current T5 can not do the same ? Of course, T5 is better, but not finished ... I've try T5.0