Re: Tapestry 4.1.2-SNAPSHOT + Tacos 4.1.0-SNAPSHOT syntax error

2007-04-24 Thread Borut Bolčina
Alright! It works again, thanks to all for quick response. 2007/4/24, Andreas Andreou <[EMAIL PROTECTED]>: Well, this has resulted in a few (perhaps known?) ognl issues - i'm filling some bug reports now. Anyway, try grabbing the new tacos snapshot and retrying... it now works.

Re: T5: Spring Integration Issue

2007-04-24 Thread Matt Welch
As I mentioned, my Spring configurations is confirmed as working. I was using 5.0.3 which I assumed was the latest as it's the one mentioned on the first page as the most recent SNAPSHOT. What's the best way to keep track of the latest available SNAPSHOT? A big "Thanks" to everyone who took the t

Re: Anyone used Any Document Management System with Tapestry ?

2007-04-24 Thread Phillip Rhodes
Btw, I am knee deep in the next version of stitches, I have integrated it to store all content into apache jackrabbit using the jcr api. Phillip - Original Message - From: "sunilmanu" <[EMAIL PROTECTED]> To: users@tapestry.apache.org Sent: Monday, April 23, 2007 4:40:40 PM (GMT-0500) A

Re: Eager loading Tapestry pages

2007-04-24 Thread Howard Lewis Ship
One of the issues is that until we have a request, we don't know a number of things that Tapestry needs when constructing pages and supporting services. This really gets in the way of doing a "warm up". In the past, I've seen scripts that do a warm up against the server before the Apache reverse

Re: Eager loading Tapestry pages

2007-04-24 Thread Jesse Kuhnert
YeahIt's probably ultimately something in javassist. It creates a very large cache of objects when compiling things. Not that it's javassists fault, there are ways to help fix some of that but it's not very straightforward / easy to do. ...Which more or less means intelligently finding ways t

Re: T5 Tapestry IoC services as webservices?

2007-04-24 Thread Howard Lewis Ship
It makes some kind of sense as an add-on. SOAP or REST? (I'd choose REST, right off the bat). It gets uglier from there! On 4/24/07, Bill Holloway <[EMAIL PROTECTED]> wrote: Are there any plans for tools to export T5 IoC services as webservices? bill -- "The future is here. It's just not e

Re: Eager loading Tapestry pages

2007-04-24 Thread Andrus Adamchik
Hi Jesse, Thanks for your reply. I'll try bumping up MaxPermSize value - this is one parameter that can possibly cause the crashes I am observing (Xms/Xmx are sufficiently high already). Although I was still hoping there is a way to warm up the stack to fill in the page cache before the a

T5 Tapestry IoC services as webservices?

2007-04-24 Thread Bill Holloway
Are there any plans for tools to export T5 IoC services as webservices? bill -- "The future is here. It's just not evenly distributed yet." -- Traditional - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

Re: Tap 4.1.2 Snapshot : Unable to parse a validator

2007-04-24 Thread Jesse Kuhnert
https://issues.apache.org/jira/browse/TAPESTRY-1428 Fixed and deploying now - sorry about the regression. On 4/24/07, Shing Hing Man <[EMAIL PROTECTED]> wrote: I have an application written couple of months ago in Tap 4.1.2 Snaphot. When I run it with the latest snapshot : org.apache.tapest

Tap 4.1.2 Snapshot : Unable to parse a validator

2007-04-24 Thread Shing Hing Man
I have an application written couple of months ago in Tap 4.1.2 Snaphot. When I run it with the latest snapshot : org.apache.tapestry:tapestry-framework:4.1.2-20070424.031019-55 I have the following error exception : Unable to parse 'required,min=0.0001[%defaultProbInterestRate], max=19

Stale Link in From with For (tap 4.0.2)

2007-04-24 Thread Holger Stolzenberg
Hi guys, I alway get the following exception for the following code: = PAGE SPEC = = HTML TEMPLATE ===

Re: getKeyProvider() not found in org.apache.tapestry.IDynamicInvoker

2007-04-24 Thread Andreas Andreou
The first one is in there - was trying to isolate them from the environment and recreate them On 4/24/07, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Well you better file them fast as I'm in there fixing things right now and don't see any yet. ;) On 4/24/07, Andreas Andreou <[EMAIL PROTECTED]> wr

Re: T5: Improve pretty url support

2007-04-24 Thread D&J Gredler
+1, unless there's something technical I'm not seeing... add it to JIRA :-) On 4/24/07, janjonge <[EMAIL PROTECTED]> wrote: +1 for me! Jan Jérôme BERNARD wrote: > > Hi, > > I'd like to have my AboutUs page "mapped" to the URL "/about-us.html". > I can't find a trivial way to do it, and wonde

Re: getKeyProvider() not found in org.apache.tapestry.IDynamicInvoker

2007-04-24 Thread Jesse Kuhnert
Well you better file them fast as I'm in there fixing things right now and don't see any yet. ;) On 4/24/07, Andreas Andreou <[EMAIL PROTECTED]> wrote: Borut, this has also (just) been fixed in the latest tacos... As stated in the other email, im filling ALL the related bug reports :) On 4/24/

Re: getKeyProvider() not found in org.apache.tapestry.IDynamicInvoker

2007-04-24 Thread Andreas Andreou
Borut, this has also (just) been fixed in the latest tacos... As stated in the other email, im filling ALL the related bug reports :) On 4/24/07, Borut Bolčina <[EMAIL PROTECTED]> wrote: Thanks Jesse, I tried with version numbers, but am unsure if the right jar is being picked up. I posted a qu

Re: Tapestry 4.1.2-SNAPSHOT + Tacos 4.1.0-SNAPSHOT syntax error

2007-04-24 Thread Andreas Andreou
Well, this has resulted in a few (perhaps known?) ognl issues - i'm filling some bug reports now. Anyway, try grabbing the new tacos snapshot and retrying... it now works.

Re: getKeyProvider() not found in org.apache.tapestry.IDynamicInvoker

2007-04-24 Thread Borut Bolčina
Thanks Jesse, I tried with version numbers, but am unsure if the right jar is being picked up. I posted a question on maven user list under "Depending on snapshots" topic. As I can't afford to much time investigating, I downgraded to 4.1.1 which works. Using on the edge libs and frameworks can rea

Re: Eager loading Tapestry pages

2007-04-24 Thread Jesse Kuhnert
It's hard to say for sure what the problem is without more information but you can try adding things like the below methods to help your startup times: -) Increase or add the initial heap memory size via command line -Xms224m (or whatever seems appropriate) . -) Increase your perm gen space size

Re: Eager loading Tapestry pages

2007-04-24 Thread Andrus Adamchik
Analyzing more thread dumps, I found that PageLoader is not the only contention point, but still Tapestry service stack warmup is the bottleneck. Any ideas? Andrus On Apr 24, 2007, at 5:00 PM, Andrus Adamchik wrote: Maybe that's a FAQ that I overlooked somehow, but a google search wasn't

Re: T5: Improve pretty url support

2007-04-24 Thread janjonge
+1 for me! Jan Jérôme BERNARD wrote: > > Hi, > > I'd like to have my AboutUs page "mapped" to the URL "/about-us.html". > I can't find a trivial way to do it, and wonder why it could not be > done transparently when the name of the page is AboutUs (meaning the > Camel syntax would mean add a d

Re: Call for Papers Opens for ApacheCon US 2007

2007-04-24 Thread Jan de Jonge
Sounds good!! On 4/24/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: I expect to be submitting a session about T5, but if you have something else worthy of note, such as case studies, innovative techniques, or something I haven't thought of, then please submit! -- Forwarded message

Re: Specify where to find the HTML templates

2007-04-24 Thread mateamargo
mateamargo wrote: > > > > Manri Offermann-3 wrote: >> >> Hi, >> >> how about ITemplateSourceDelegate: >> >> org.apache.tapestry. template-source-delegate >> >> or you could modify the specification resolver delegate like this >> example: >> >> http://wiki.apache.org/tapestry/SpeclessPage

Re: Specify where to find the HTML templates

2007-04-24 Thread mateamargo
Manri Offermann-3 wrote: > > Hi, > > how about ITemplateSourceDelegate: > > org.apache.tapestry. template-source-delegate > > or you could modify the specification resolver delegate like this example: > > http://wiki.apache.org/tapestry/SpeclessPagesInWEB-INF > > Regards, > > Manri > Th

Re: T5: Improve pretty url support

2007-04-24 Thread Jérôme BERNARD
I forgot to add that if would be nice to have the PageLink component not to use "start.html" (more precisely tapestry.start-page-name) but '/' (relative to the context of course). Otherwise you have '/' rendering your start page but links to the start page being "start.html" and this has a huge im

Fwd: Call for Papers Opens for ApacheCon US 2007

2007-04-24 Thread Howard Lewis Ship
I expect to be submitting a session about T5, but if you have something else worthy of note, such as case studies, innovative techniques, or something I haven't thought of, then please submit! -- Forwarded message -- From: Rich Bowen <[EMAIL PROTECTED]> Date: Apr 16, 2007 7:40 AM

T5: Improve pretty url support

2007-04-24 Thread Jérôme BERNARD
Hi, I'd like to have my AboutUs page "mapped" to the URL "/about-us.html". I can't find a trivial way to do it, and wonder why it could not be done transparently when the name of the page is AboutUs (meaning the Camel syntax would mean add a dash before the uppercase letter). This is something r

Table-Tree component

2007-04-24 Thread Marcos Chicote
Hi! I need a component with the following funtionality: it's like a table, but it is not a table; and it's like a tree, but it's not a tree. Actually I kwow for sure that it's not a table, but I can't say that it's definitely not a tree. Imagine a table (sortable and pagable) very much like the Tab

Eager loading Tapestry pages

2007-04-24 Thread Andrus Adamchik
Maybe that's a FAQ that I overlooked somehow, but a google search wasn't helpful in solving the problem below... I have a busy application running on Tapestry 4.0.2 / Jetty 6 / JDK 1.5. On startup the JVM would sometimes crash overwhelmed with requests. If it survives for the first 1-2 minu

Re: Upgrading Tapestry

2007-04-24 Thread Jesse Kuhnert
FYI - if you're not against a commercial editor the "HandyTapestry" IDEA plugin does all that you have mentioned and much much more...I use it myself for T4 related dev. http://handyedit.com/ On 4/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Eclipse-WTP is quite decent. With Annotations

Re: getKeyProvider() not found in org.apache.tapestry.IDynamicInvoker

2007-04-24 Thread Jesse Kuhnert
A jira issue (in ognl ? ) would still be nice, but you can do what you want if you use one of the specific version numbers in here: http://people.apache.org/repo/m2-snapshot-repository/org/apache/tapestry/tapestry-framework/maven-metadata.xml On 4/23/07, Borut Bolčina <[EMAIL PROTECTED]> wrote:

Re: How to add a PageLink in a grid?

2007-04-24 Thread Massimo Lusetti
On 4/24/07, Donyee <[EMAIL PROTECTED]> wrote: 更新 but how can i get a arg for the t:context? Set a row parameter within Grid to point to a property object in your page then grab a property (maybe a pkey if that is db related) from tha

Re: Creating unique URLs

2007-04-24 Thread Massimo Lusetti
On 4/24/07, Hans Braxmeier <[EMAIL PROTECTED]> wrote: Thanks Massimo, it works... One more question: Is it possible to change "guess" although the html-file is named guess.html respectively the class-file guess.java? I would say not but with a considerable amount of code patches. -- Massimo

Re: T5: Spring Integration Issue

2007-04-24 Thread SergeEby
Hi, There is a new syntax with 5.0.4-SNAPSHOT and the URL http://tapestry.apache.org/tapestry5/tapestry-spring/ was updated a while ago. There is no more @Inject("spring:yourBean"). It works fine for me. Here is an excerpt: public class UserView { @Inject @SpringBean("userManager") pr

Re: Creating unique URLs

2007-04-24 Thread Hans Braxmeier
Thanks Massimo, it works... One more question: Is it possible to change "guess" although the html-file is named guess.html respectively the class-file guess.java? Hans On Tue, 24 Apr 2007, Massimo Lusetti wrote: > On 4/24/07, Hans Braxmeier <[EMAIL PROTECTED]> wrote: > > > The tapestry tutoria

RE: Upgrading Tapestry

2007-04-24 Thread Marcus.Schulte
Eclipse-WTP is quite decent. With Annotations and/or auto-completion in xml the only things I miss are: - jumping between template and Java files - an autocompleting template editor. both losses don't hurt a lot - for me. Could be different if you used a real lot of different component-types.

RE: Hivemind eager loading of a service which references tapestry services is not possible

2007-04-24 Thread Marcus.Schulte
The name of the config-point is ApplicationInitializers, not ApplicationSpecificationInitializer. > -Original Message- > From: Paul Stanton [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 24, 2007 2:27 AM > To: Tapestry users > Subject: Re: Hivemind eager loading of a service which > re

Re: retrive value from html to java

2007-04-24 Thread Christian Haselbach
On Tue, Apr 24, 2007 at 07:08:44AM -, ana ben wrote: >   > value="ognl:tool" element="tr"> > value="ognl:tool.product.pnumber">Tool Number > > Can any one tell me how to retrive the pnumber value from the html in java > file. You mean what the equivalent of the ognl expr

Re: How to add a PageLink in a grid?

2007-04-24 Thread Donyee
更新 but how can i get a arg for the t:context? I am new to T5! 2007/4/24, Eugene Lozovan <[EMAIL PROTECTED]>: Yes, I also would like to know the way to have a grid with link on a page. E.g. grid with users list and click on a row takes

Re: Specify where to find the HTML templates

2007-04-24 Thread Alejandro Scandroli
When I have explicitly define a template I use this in my component/page: @Asset(value = "/org/trails/component/ObjectTable.html") public abstract IAsset get$template(); Where "value" points to your html template. The method name is very important you can't change it. The down side of this ap

Re: Creating unique URLs

2007-04-24 Thread Massimo Lusetti
On 4/24/07, Hans Braxmeier <[EMAIL PROTECTED]> wrote: The tapestry tutorial demonstrates how to implement the Hi/Lo Game (Start and Guess Page). Is it possible to set the URL dependent on the guessed number? Let's say if I click 10 the Browser's URL should be http://localhost:8080/guess/10, if I

Creating unique URLs

2007-04-24 Thread Hans Braxmeier
Hello, The tapestry tutorial demonstrates how to implement the Hi/Lo Game (Start and Guess Page). Is it possible to set the URL dependent on the guessed number? Let's say if I click 10 the Browser's URL should be http://localhost:8080/guess/10, if I click 5 the Browser's URL should be be http://l

Re: How to add a PageLink in a grid?

2007-04-24 Thread Massimo Lusetti
On 4/24/07, Donyee <[EMAIL PROTECTED]> wrote: Is there a simple way to add a pagelink in the row ? Some suggestion will be great! Use the t:parameter way: your hatml goes here This all goes inside a t:grid component -- Massimo http://meridio.blogspot.com ---

Re: How to add a PageLink in a grid?

2007-04-24 Thread Eugene Lozovan
Yes, I also would like to know the way to have a grid with link on a page. E.g. grid with users list and click on a row takes navigation to an EditSpecifiedUser page. Thanks in advance! On 24/04/07, Donyee <[EMAIL PROTECTED]> wrote: Is there a simple way to add a pagelink in the row ? Some su

RE: Tapestry Forum

2007-04-24 Thread Kolesnikov, Alexander GNI
I think Tapestry forum is very much needed. Exactly for expanding and strengthening Tapestry community. The more communication channels there are about Tapestry, the better for the framework, and for all of us. Different people prefer different things, so there should be ideally plenty of everythin

How to add a PageLink in a grid?

2007-04-24 Thread Donyee
Is there a simple way to add a pagelink in the row ? Some suggestion will be great! -- Chinese name:徐 依伟 English name: will

Re: T5: Spring Integration Issue

2007-04-24 Thread 蝈蝈龙
If you develop base on Tapestry 5.0.3 Please use @Inject("Spring:groupRepository") Instead of @Inject @SpringBean("groupRepository") 'groupRepository' is just your the bean id defined in your spring's configuration file. This is my first to answer question in mail list 2007/4/24, Mat

Tapestry 4.1.2-SNAPSHOT + Tacos 4.1.0-SNAPSHOT syntax error

2007-04-24 Thread Borut Bolčina
Any hints? Tacos 4.1.0-SNAPSHOT Tree is giving me trouble. org.apache.hivemind.ApplicationRuntimeException: Unable to add method java.lang.Object get(ognl.OgnlContext, java.lang.Object) to class ognl.ASTAdd28176527Accessor: [source error] syntax error near ") 1) + (.getTreeIter" at org.apa

Re: Fw: Tacos:Autocompleter , problem with UTF-8 encoding for non latin characters

2007-04-24 Thread Inge Solvoll
My company just switched to UTF-8 to support all european languages. It is not easy, and hopefully this Autocompleter issue was our last problem. Encoding is not fun, it is not easy, and it is not always well documented because it it needs to be configured in so many layers, all made by different