Re: Partly OT: problems with Eclipse / T5

2009-03-17 Thread Jan Vissers
> Hi, > > I'm using Jetty/T5/Eclipse. > > Earlier this-afternoon I made the mistake of doing a Maven "Update > Project Configuration" and Maven anihilated my build setup. What a great tool Maven is... > > I have set the classpath back to what it was and everything compiles > and the application w

Re: Blog post about Tapestry 5

2008-12-18 Thread Jan Vissers
> Borut Bolčina wrote: >> Hi, >> >> I'd like some feedback / proofreading on http://bbwebcraft.blogspot.com/ >> as >> I want to smooth the first steps with Tapestry 5 for newbies (including >> me). >> >> > I think you step to step environment set-up is really good and handily > replace the now out

Re: [T5] 5.0.17 URLEncoderImpl.decode error

2008-12-11 Thread Jan Vissers
> He Martijn, > > The URL is not really generated. I was playing with Freemarker (Java > template engine). > I tried it to send a mail... > The URL is in the mail template and the email param is replaced by > freemarker: > http://localhost:8090/tapestry/test/user/${user.userEmail}"/> > > My test wa

Re: Live class reloading problems

2008-11-20 Thread Jan Vissers
Sorry to say but the whole 'class reloading' feature to me seems to be specifically geared towards Jetty and tomcat. I haven't seen any other (servlet) containers that can use this Tapestry feature. Have you? -J. > I use the Tomcat that's in JBoss, so it might be a little different, > but all it

Re: How to use Tapestry with Flash components?

2008-11-17 Thread Jan Vissers
Here is some info for ya about Adobe Flash components en Tapestry: http://knol.google.com/k/knol/system/knol/pages/Search?q=+intitle%3A%22tapestry+5+flash+integration%22+inauthor%3A%22toby+hobson%22&restrict=general > I'd like to know how to use Tapestry framework with Flash components to a > mu

T4.1.5 and OC4J: Missing classpath resource '/dojo-0.4.3-custom-4.1.5/'.

2008-05-14 Thread Jan Vissers
Hi, We're trying to migrate an 4.1.2 app to 4.1.5, but are running into an issue. It seems the exception page isn't properly initialized. Can anybody shed some light on this? 08/05/14 10:52:29 org.apache.hivemind.ApplicationRuntimeException: Missing classpath resource '/dojo-0.4.3-custom-4.1.5

Re: Antwort: Re: T5 Activation/Passivation - strangeness

2008-04-28 Thread Jan Vissers
Wow! Yes - this was it indeed. Thx, -J. On Mon, 2008-04-28 at 11:20 +0200, Christian Koeberl wrote: > > Jan Vissers <[EMAIL PROTECTED]> wrote: > > Our layout component has: > > > > If you have this in your code the browser will request > "/your

Re: T5 Activation/Passivation - strangeness

2008-04-28 Thread Jan Vissers
plate > code, I would say it's a bug. Share more code if you can. Another thing - although the error gets thrown the application behaves 'normally'. > > chris > > Jan Vissers wrote: > > Our layout component has: > > > > > > > > If we re

Re: T5 Activation/Passivation - strangeness

2008-04-28 Thread Jan Vissers
Our layout component has: If we remove this element - the error disappears. Now this must be a bug, right? -J. On Mon, 2008-04-28 at 10:40 +0200, Jan Vissers wrote: > Hi, > > In our project we get the following message passivating/activating > pages: > > java.lang.NumberFo

T5 Activation/Passivation - strangeness

2008-04-28 Thread Jan Vissers
Hi, In our project we get the following message passivating/activating pages: java.lang.NumberFormatException: For input string: "favicon.ico" The more details stack trace shows: Caused by: java.lang.RuntimeException: Coercion of favicon.ico to type java.lang.Long (via String --> Long) failed:

Creating components - best practices

2008-04-25 Thread Jan Vissers
Hi, I've been migrating some of my T4 components to T5, but now - also triggered by some useful feedback on this mailing list - are wondering whether I've been using the right approach. Let me start by saying that my components are fairly simple, the visible part is all made up from .tml (no prog

T5 - how to have every request have one jpa 'session'

2008-04-25 Thread Jan Vissers
Hi, We're about to use JPA in our T5 application. Does someone have some good pointers for us how to introduce 'session-per-request' functionality for that combo. Basically what I want is to introduce a fresh EntityManager at the start of T5's request and commit (or rollback) at the end of it. Obv

Re: My breadcrumb component from T4 to T5

2008-04-24 Thread Jan Vissers
after us > _breadcrumbs.subList(index+1, _breadcrumbs.size()).clear(); > } else { // we're not in the list, so add us (probably want some > logic to keep the list from getting too long) > _breadcrumbs.add(myBreadcrumb); > } > } > > > Hope that helps, >

Re: My breadcrumb component from T4 to T5

2008-04-24 Thread Jan Vissers
s fire, so why not > handle it in one place? > > Or am I missing something? > > On Wed, Apr 23, 2008 at 2:27 PM, Jan Vissers <[EMAIL PROTECTED]> > wrote: >> Hi, >> >> I'm not sure if I understand... >> Do you mean to say that manipulating the bre

Re: My breadcrumb component from T4 to T5

2008-04-23 Thread Jan Vissers
ate handler. > > So, why not do this all in one event handler, perhaps setupRender? > > > > On Wed, Apr 23, 2008 at 11:44 AM, Jan Vissers <[EMAIL PROTECTED]> > wrote: >> > I used T4 for a short period a long time ago, so I'm not understanding >> > the

Re: T5 contributeMasterDispatcher - how to have default rootContext access be part of it

2008-04-23 Thread Jan Vissers
something that > would be worth adding as a warning? > > chris > > Jan Vissers wrote: >> Great Peter, >> >> This was indeed the problem. As I pointed out earlier - I use(d) Chris >> great writeup on dispatchers on the wiki and also anothe

Re: T5 contributeMasterDispatcher - how to have default rootContext access be part of it

2008-04-23 Thread Jan Vissers
d only. If you > interrupt the response, for example with a redirect, then try returning > true. > > if(interruptHere)){ > response.sendRedirect("/login"); > return true; > } > return false; > > Peter > > Jan Vissers wrote: >>

Re: My breadcrumb component from T4 to T5

2008-04-23 Thread Jan Vissers
workflow is okay - as it is proven in T4. I'm just looking for the correct points to hook it into T5. Thx, -J. > > > Josh > > On Wed, Apr 23, 2008 at 8:19 AM, Jan Vissers <[EMAIL PROTECTED]> > wrote: >> Hi, >> >> Need some advice. In T4 I had

My breadcrumb component from T4 to T5

2008-04-23 Thread Jan Vissers
Hi, Need some advice. In T4 I had a breadcrumb component that got its information from a breadcrumb model structure. Each page that needed to go onto the crumb path would implement some base page class. This page class implemented PageRenderListener and IExternalPage. The former to add info to the

Re: T5 contributeMasterDispatcher - how to have default rootContext access be part of it

2008-04-23 Thread Jan Vissers
r > > Included also are relevant links to javadocs, as well as references to > the TapestryModule, where you can see how it influences dispatcher ordering. > > chris > > Jan Vissers wrote: > > Hi, > > > > Just posted a question on dispatcher chain - but I thi

T5 contributeMasterDispatcher - how to have default rootContext access be part of it

2008-04-23 Thread Jan Vissers
Hi, Just posted a question on dispatcher chain - but I think the subject line was way to unclear - so sorry for asking the question again. I want all of my pages (also the one that is shown when I access root context without anything - so no '/start') to be passed thru my dispatcher. How can I do

How to have default /app rootContext web access pass the dispatcher chain

2008-04-23 Thread Jan Vissers
Hi, I've written an adapter - inspired by work by Chris. However when I access my application the 'rootContext' web access, doesn't pass thru this dispatcher. Basically what I want is for every request to be introspected by my dispatcher. Is that possible? -J.

T5 equivalent for T4 IExternalPage.activateExternalPage

2008-04-22 Thread Jan Vissers
Hi, Just out of curiosity. What's T5 designated alternative for T4's IExternalPage public void activateExternalPage(Object[] parameters, IRequestCycle cycle) Thx, -J. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

T5 equivalent for T4 PageBeginRenderListener.pageBeginRender

2008-04-22 Thread Jan Vissers
Just out of curiosity; What is T5's alternative for: PageBeginRenderListener public void pageBeginRender(PageEvent event) Thx, -J. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

A big round of applause to the (cooperative) people on the mailing list

2008-04-18 Thread Jan Vissers
Just spent a lot of timing hammering away at a problem and with the help of the great Tapestry community - which is building - finally got it working. Wanting to say thank you to all of you and we'll keep on rocking! Together we can make Tapestry 5 great! -J.

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
the object property from the class. The default binding > prefix for params is "prop" which is what you want in this case. > > Jan Vissers wrote: > > I think I'm getting a bit further now - sorry to spam this list by the > > way... > > > > If I pass th

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
can see the > line causing this as well as the stack trace, we can nail down where T5 > is expecting something it's not getting. > > Jan Vissers wrote: > > The layout component that passes in the 'breadCrumb' model to the > > 'heading' component whi

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
;loginPage=inherit:loginPage","breadCrumbs=basePage.breadCrumbHolder.model" }) On Fri, 2008-04-18 at 16:47 +0200, Jan Vissers wrote: > The layout component that passes in the 'breadCrumb' model to the > 'heading' component which should render the breadcru

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
x27;t shared ;-). What I'm referring to is your .tml file where > you use this component. > > Jan Vissers wrote: > > In the snippet below if I change: > > public List getBreadCrumbs() > > > > and let it return a freshly created list. The loop construct work

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
here > you use this component. > > Jan Vissers wrote: > > In the snippet below if I change: > > public List getBreadCrumbs() > > > > and let it return a freshly created list. The loop construct works. > > However via the @Parameter (passing it it) doesn&#

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
In the snippet below if I change: public List getBreadCrumbs() and let it return a freshly created list. The loop construct works. However via the @Parameter (passing it it) doesn't. -J. On Fri, 2008-04-18 at 16:27 +0200, Jan Vissers wrote: > Here it is: > > import

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
this.crumb = crumb; } public boolean isLastCrumb() { return (index == breadCrumbs.size() - 1); } } On Fri, 2008-04-18 at 16:22 +0200, Chris Lewis wrote: > We still haven't seen your template code, where you declare this > component and pass it the model.

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
rid in which I reference a bean > property of a custom class. It's possible that the two are vastly > different, but I wouldn't think that. > > Jan Vissers wrote: > > On the component I have: > > > > @Parameter > > private List breadCrumbs; &g

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
rumb" property, a getter > > for your "breadCrumbs," and your crumb bean defines a "getName" method, > > you *should* be good. > > > > It would be helpful if you can include the exception, specifically the > > line it references, etc. > >

Re: Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
st the relevant part from template would > be helpful. > > chris > > Jan Vissers wrote: > > Hi, > > > > Just to make sure I'm not missing something. > > > > In T4 when I wrote a @For construct I could use value="..." as long as I >

Could not find a coercion from type java.lang.String to type com.****.lighting.guidecontrol.view.BreadcrumbBean

2008-04-18 Thread Jan Vissers
Hi, Just to make sure I'm not missing something. In T4 when I wrote a @For construct I could use value="..." as long as I provided a setter|getter pair for the class involved - in this case BreadcrumbBean. I want to iterate over a list of beans and use each instance individually. Now T5 throws up

Re: T5: How do I access a page property in my component

2008-04-18 Thread Jan Vissers
> bind as > > (I think) > > > I'd suggest trying the first... > but, at least you have a solution that works. > > --nK > > On Fri, Apr 18, 2008 at 11:32 AM, Jan Vissers <[EMAIL PROTECTED]> > wrote: > > > Ok - figured out what @In

Re: T5: How do I access a page property in my component

2008-04-18 Thread Jan Vissers
t; > (I think) > > > I'd suggest trying the first... > but, at least you have a solution that works. > > --nK > > On Fri, Apr 18, 2008 at 11:32 AM, Jan Vissers <[EMAIL PROTECTED]> > wrote: > Ok - figured out what @InjectContainer gives me. >

Re: T5: How do I access a page property in my component - PagePool Page Page[Start en] is dirty

2008-04-18 Thread Jan Vissers
(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:735) [ERROR] PagePool Page Page[Start en] is dirty, and will be discarded (rather than returned to the page pool). On Fri, 2008-04-18 at 12:32 +0200, Jan Vissers wrote: > Ok - figured out what @InjectContainer gives me. > Al

Re: T5: How do I access a page property in my component

2008-04-18 Thread Jan Vissers
rties :-( -J. On Fri, 2008-04-18 at 12:26 +0200, Jan Vissers wrote: > Thanks - but I don't understand... > > What is the parameter - the containing page? > > Basically I want to access a property from my 'AbstractBasePage' which > has some common properties on i

Re: T5: How do I access a page property in my component

2008-04-18 Thread Jan Vissers
AIL PROTECTED]> > wrote: > > > Jan, > > > > There's probably a simpler way, but you should be able to use > > @InjectContainer in your component to get the page and call whatever > > methods (in your case a a getter) you want. I imagine there's a mor

T5: How do I access a page property in my component

2008-04-18 Thread Jan Vissers
Hi, I want to access a page property from within my component - that has been placed on that page. In T4 I had something like 'page.' - how is this done in T5? Thx, -J. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: How to 'bypass' client side validation - when 'Cancel' is pressed.

2008-04-18 Thread Jan Vissers
y to do this as far as I know. I believe the current > > workaround is to create an action link styled as a button and do whatever > > needs doing there. > > > > -Filip > > > > > > On 2008-04-15 19:34, Jan Vissers wrote: > > > > > I'm gett

Templating/Layout question

2008-04-16 Thread Jan Vissers
Hi, Consider this Layout component: Suppose my 'body' can contain one or more 'Panel's. I want this Panel to have some standard UI assets and functionality, but most of it is 'free format'. Basically the 'free format

How to 'bypass' client side validation - when 'Cancel' is pressed.

2008-04-15 Thread Jan Vissers
I'm getting the hang of it --- and liking it! Yet another question; How can I bypass normal client side validation, in case I have a form that includes a 'Cancel' button. Currently I need to enter something valid before I can 'Cancel' my action - not really what I want ;-) -J. -

Re: Custom 'feedback' component - how to acquire ValidationTracker?

2008-04-15 Thread Jan Vissers
need custom feedback will have to override this getValidationTracker method. -J. On Tue, 2008-04-15 at 17:57 +0200, Jan Vissers wrote: > Hi, > > In T4, I had a custom feedback component that acquired the > ValidationDelegate to do stuff with the errors recorded in a fo

Custom 'feedback' component - how to acquire ValidationTracker?

2008-04-15 Thread Jan Vissers
Hi, In T4, I had a custom feedback component that acquired the ValidationDelegate to do stuff with the errors recorded in a form. I like to mimic this component in T5. + Feedback component @Parameter private ValidationTracker validationTracker + AbstractBasePage @Component(inheritInformalParamet

Re: Tapestry 5 - doesn't generate valid XHTML

2008-04-15 Thread Jan Vissers
When I apply text/xhtml my browser issues a 'File download' dialog. -J. On Tue, 2008-04-15 at 07:38 -0700, Fernando Padilla wrote: > application/xhtml+xml - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Tapestry 5 - doesn't generate valid XHTML

2008-04-15 Thread Jan Vissers
Hi, Is this a known issue? For instance the following link is rendered by T5: The element isn't closed. There are more similar cases. Thx, -J. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

Re: Eclipse errors on .tml files

2008-04-14 Thread Jan Vissers
e "div" must match "(p|h1|h2|h3|h4|h5|h6|div| ul|ol|dl|pre|hr|blockquote|address|fieldset|table|form|a|br|span|bdo| object|img|map|tt|i|b|big|small|em|strong|dfn|code|q|sub|sup|samp|kbd| var|cite|abbr|acronym|input|select|textarea|label|button|ins|del|script| noscript)". Any idea

Re: Layout component usage - renders multiple elements

2008-04-14 Thread Jan Vissers
oward Lewis Ship wrote: > xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> > > On Mon, Apr 14, 2008 at 11:02 AM, Jan Vissers <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Using > > http://tapestry.apache.org/tapestry5/tapestry-co

Re: T5 - what happend to the 'state:' binding

2008-04-14 Thread Jan Vissers
the fields, to > expose this information to the template and to other components. > > Some people define base classes for their pages that provide the > necessary fields, annotations and accessors. > > On Mon, Apr 14, 2008 at 9:42 AM, Jan Vissers <[EMAIL PROTECTED]> wrote:

Layout component usage - renders multiple elements

2008-04-14 Thread Jan Vissers
Hi, Using http://tapestry.apache.org/tapestry5/tapestry-core/guide/layout.html I have a setup where the layout component uses a couple of other components. All of which have: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> at the top - to keep a certain degree of previewability. However

Re: T5 - what happend to the 'state:' binding

2008-04-14 Thread Jan Vissers
lp would be appreciated! -J. On Mon, 2008-04-14 at 19:15 +0200, Igor Drobiazko wrote: > Read here about the application state: > http://tapestry.apache.org/tapestry5/tapestry-core/guide/appstate.html > > On Mon, Apr 14, 2008 at 7:09 PM, Jan Vissers <[EMAIL PROTECTED]> > wrot

Re: T5 - what happend to the 'state:' binding

2008-04-14 Thread Jan Vissers
Similarly - to be complete - The component in T4 reference a page property via 'page.XYZ' Would like to know how 'page.' is achieved in T5. -J. On Mon, 2008-04-14 at 19:09 +0200, Jan Vissers wrote: > Let me explain: > > I have an ASO defined in a Base clas

Re: T5 - what happend to the 'state:' binding

2008-04-14 Thread Jan Vissers
oduce this mechnanism in T5. -J. On Mon, 2008-04-14 at 18:42 +0200, Jan Vissers wrote: > Is there an equivalent for state: binding in T5 and if so - how can I > use it. > > > - > To unsubscribe, e-mail:

T5 - what happend to the 'state:' binding

2008-04-14 Thread Jan Vissers
Is there an equivalent for state: binding in T5 and if so - how can I use it. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Accessing a containing component parameter from within a 'child' component

2008-04-14 Thread Jan Vissers
Yep, you're right! Thanks for the example. -J. On Mon, 2008-04-14 at 16:09 +0200, Christian Koeberl wrote: > > inherit: binding - however this doesn't work for me. > That should work. > > With the inherit keyword you can forward parameters to sub-components, > like this example of a zebra Grid

Re: Accessing a containing component parameter from within a 'child' component

2008-04-14 Thread Jan Vissers
I believe there is something mentioned on it on: http://tapestry.apache.org/tapestry5/tapestry-core/guide/parameters.html#Inherited%20Parameter%20Bindings with inherit: binding - however this doesn't work for me. -J. On Mon, 2008-04-14 at 15:18 +0200, Jan Vissers wrote: > Hi, >

Accessing a containing component parameter from within a 'child' component

2008-04-14 Thread Jan Vissers
Hi, I have an embedded component which should render something different depending on a component parameter of the component containing the embedded component (wow - try to say that quickly ;-). How can I do that? -J. - To uns

Re: Eclipse errors on .tml files

2008-04-14 Thread Jan Vissers
operties/editors/file associations, if I recall you need to > associate the extension with the html editor. > > Jan Vissers wrote: > > Hi, > > > > I know this is probably a small concern - but I don't like the red error > > indicators in Eclipse. They popup wh

Eclipse errors on .tml files

2008-04-14 Thread Jan Vissers
Hi, I know this is probably a small concern - but I don't like the red error indicators in Eclipse. They popup whenever I have a .tml file. It says: Attribute "xmlns:t" must be declared for element type "html". Is there any way to suppress this error? -J. -

Re: Getting Answers on the User List

2008-04-11 Thread Jan Vissers
Howard, Do like I do - just laugh at his remarks. At first I thought it was annoying, now I think they're actually quite funny. Not that they have any technical merit. -J. > Yawn. > > On Fri, Apr 11, 2008 at 7:33 AM, Rob Smeets <[EMAIL PROTECTED]> wrote: >> And especially, Howard himself recentl

T5: How to add DOCTYPE decl and additional attributes to html element?

2008-04-10 Thread Jan Vissers
Hi, Using T5.0.11 and each generated HTML should contain: http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml";> How can I achieve this? Thank you, -J. - To unsubscribe, e-mail: [EMAIL PROTECTED

T5 (5.0.11) - ready for production deployment

2008-03-26 Thread Jan Vissers
Hi, I have an opportunity to use T5 (5.0.11) in an assignment. My question is; is it safe for me to do so? The application is quite simple in that not many UI components/forms have to be created. There will be a requirement to have google suggest like functionality, along with a small other Ajax c

Re: [T5] Maven2 or Ivy?

2008-03-25 Thread Jan Vissers
We're using/investigating Tapestry5 by using our own Ivy repository, which has the required dependencies installed. Working your way through Tapestry (luckily) doesn't force you in using Maven - I gave up on that piece of junk long time ago. Peter Beshai wrote: Sorry if this has been mentioned

Re: T5.0.10 / OC4J10.1.3+ without maven

2008-03-03 Thread Jan Vissers
for baring with me... > -J. > > > >> The first step is to add an issue to JIRA. >> >> You did PACKAGE up the classes files as a new JAR, right? Just moving >> won't accomplish anything. >> >> On Mon, Mar 3, 2008 at 6:00 PM, Jan Vissers <[EM

Re: T5.0.10 / OC4J10.1.3+ without maven

2008-03-03 Thread Jan Vissers
x27;. Is there a .css that cannot be loaded or something? Thanks for baring with me... -J. > The first step is to add an issue to JIRA. > > You did PACKAGE up the classes files as a new JAR, right? Just moving > won't accomplish anything. > > On Mon, Mar 3, 2008 at 6:00 P

Re: T5.0.10 / OC4J10.1.3+ without maven

2008-03-03 Thread Jan Vissers
> The ClassNameLocator service is the point of weakness here; it makes > some "guesses" about class loader structure in order to perform the > scan. > > On Mon, Mar 3, 2008 at 4:53 PM, Jan Vissers <[EMAIL PROTECTED]> > wrote: >> Hi, >> >> Comparing w

T5.0.10 / OC4J10.1.3+ without maven

2008-03-03 Thread Jan Vissers
Hi, Comparing wicket and T5 for our next stack selection; giving T5 a final go on OC4J 10.1.3+ (also 11g) - without maven. Simplest of projects: WEB-INF/web.xml contains: tapestry.app-package com.cumquatit.tapestry.tutorial app org.apache.tapestry.TapestryFil

Re: Using Tapestry-ioc Separately

2008-02-05 Thread Jan Vissers
Indeed T5's IoC can be used without T5 core, although IMHO you're better of using Google Guice. If you're already familiar with T5 IoC, using Guice isn't that hard. Just my 0.02ct -J. > It's purposely separated out for use in non-web applications, for that > exact intention. > > On Feb 5, 2008

Will there be $content$ and $remove$ functionality in T5?

2008-01-31 Thread Jan Vissers
We use this quite often in T4, for web design/prototyping purposes. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Basic queries about Tapestry

2008-01-28 Thread Jan Vissers
> On Jan 28, 2008 5:47 AM, HHB <[EMAIL PROTECTED]> wrote: >> >> Hi. >> Why Tapestry5 came with its own DI container? why not using Spring or >> Guice >> as the default container? >> What are the advantages of T5 DI container over Spring & Guice? > > Because those containers are broken or limited.

Re: JSR-168/JSR-286 revisited --- what's happening at the 'neighbours'

2008-01-09 Thread Jan Vissers
/9/08, Jan Vissers <[EMAIL PROTECTED]> wrote: Seems like my question/thread got hijacked. Just to set the record straight - I am not a fan of Wicket! I'm just interested in wondering whether Portlet Support in T5 is a wish that more of us share - only this way, we can try to convi

Re: JSR-168/JSR-286 revisited --- what's happening at the 'neighbours'

2008-01-09 Thread Jan Vissers
Regards, -J. Jan Vissers wrote: http://wicket.apache.org/ Apart from wicket also switching to slf4j, the new version now also supports JSR-168/JSR-286. Apparently without changing code. - To unsubscribe, e-mail: [EMAIL PROT

JSR-168/JSR-286 revisited --- what's happening at the 'neighbours'

2008-01-02 Thread Jan Vissers
http://wicket.apache.org/ Apart from wicket also switching to slf4j, the new version now also supports JSR-168/JSR-286. Apparently without changing code. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Re: Does Tapestry5 support Portlets specs JSR168 and 286

2007-12-29 Thread Jan Vissers
> Add me to the portlet petition; Me too! > Add me to the portlet petition; we're about to start development on a > portal > with Liferay and it would be great to have portlet support in T5. > > Regards, > > D > > > On 12/28/07, Emmanuel Sowah <[EMAIL PROTECTED]> wrote: >> >> Howard, >> >> Well,

T5 & Ajax - Which Ajax/Javascript framework will be next?

2007-12-25 Thread Jan Vissers
Reading http://tapestry.apache.org/tapestry5/tapestry-core/guide/ajax.html I'm just wondering what Ajax/Javascript 'du jour' will be in T5.0.8 I thought that Dojo was *the* standard framework of choice of Tapestry. Am I missing something here? -J. ---

Re: Mixing T5 and Guice --- best practices

2007-10-30 Thread Jan Vissers
Please, please don't 'shoot' me - but if this is the case what would be a reason for me to use T5 IoC, other that for injecting stuff into page classes? Thiago H de Paula Figueiredo wrote: On Mon, 29 Oct 2007 23:08:20 -0200, Jan Vissers <[EMAIL PROTECTED]> wrote: A dif

Re: Mixing T5 and Guice --- best practices

2007-10-29 Thread Jan Vissers
till not quite clear to me why T5 IoC exists. But then again - I'm just a simple developer waiting for the next great version of *the web framework*. -J. > On Mon, 29 Oct 2007 16:28:33 -0200, Jan Vissers <[EMAIL PROTECTED]> > wrote: > >> Partially inspired by a question/som

Re: Mixing T5 and Guice --- best practices

2007-10-29 Thread Jan Vissers
? -J > Nothing stops you from using T5 IoC in a non-T5 application, though. > > -Filip > > Jan Vissers skrev: >> Exactly - and to me T5 IoC looks/is very closely related to T5 the web >> application framework, whereas

Re: Mixing T5 and Guice --- best practices

2007-10-29 Thread Jan Vissers
ce contributions (something none of the > other IoC containers seem to "get") ... but Guice pushes the spectrum of > finding matches based on type and annotations. > > On 10/29/07, Thiago H de Paula Figueiredo <[EMAIL PROTECTED]> wrote: >> >> On M

Re: Mixing T5 and Guice --- best practices

2007-10-29 Thread Jan Vissers
y, or at least and > ObjectLocator > to make them play together (allow Guice beans to be injected into Tapestry > services/components). > > A contribution to MasterObjectProvider could do the job. > > Haven't looked into it in detail. > > On 10/29/07, Jan Vissers &l

Mixing T5 and Guice --- best practices

2007-10-29 Thread Jan Vissers
Partially inspired by a question/some work by Leon Pennings (on this list), partially because of my interest in Guice - if been trying to test some stuff on how best to integrate Guice and T5. Before asking whether my approach is appropriate I would like to ask what your opinion is on the whole

Tapestry and Eclipse WTP, Geronimo/Jetty (this time...)

2007-10-25 Thread Jan Vissers
Having a real hard time trying out Tapestry 5, using some different configuration as is mentioned on the website. Anyone having some experience with the above mentioned combo? Thx. - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

"No redeploy, no restart ..." --- yeah right

2007-09-30 Thread Jan Vissers
Yep, its me again asking a question on Tapestry 5 and support for other web server containers than Jetty for the complete techical features as depicted for T5. Up until now I have never had a real answer, so I'm trying my luck again. On the home page of T5 I read: http://tapestry.apache.org/tapest

Re: T5 Momentum

2007-09-17 Thread Jan Vissers
For me one of the real concerns is whether T5 delivers on the promise of live class reloading and more generally how T5 behaves on different containers than Jetty. I ran into issues getting T5's tutorial to work on OC4J, and was directed

Re: Revisit T5 / OC4J (Oracle) 10.1.3 - No root element has been defined.

2007-09-13 Thread Jan Vissers
compliant in this area, so it works easily. > I've > never used OC4J so I can't say what the issue is off hand. > > On 9/11/07, Jan Vissers <[EMAIL PROTECTED]> wrote: >> >> Does this mean that the 'hot' reloading feature of T5 will be unusable &g

Re: Revisit T5 / OC4J (Oracle) 10.1.3 - No root element has been defined.

2007-09-11 Thread Jan Vissers
Does this mean that the 'hot' reloading feature of T5 will be unusable in OC4J Is this feature working on any other container that Jetty? > See the Tomcat notes; it has a similar issue. > > On 9/11/07, Jan Vissers <[EMAIL PROTECTED]> wrote: >> >> On a di

Re: Revisit T5 / OC4J (Oracle) 10.1.3 - No root element has been defined.

2007-09-11 Thread Jan Vissers
orial/ > WEB-INF/lib/tapestry-ioc-5.0.5.jar > WEB-INF/classes/org/apache/ > WEB-INF/lib/tapestry-core-5.0.5.jar > WEB-INF/address/ > WEB-INF/classes/org/apache/tapestry/tutorial/data/ > WEB-INF/ > >> That's really odd, its as if the framework was unable to locate

Re: Revisit T5 / OC4J (Oracle) 10.1.3 - No root element has been defined.

2007-09-11 Thread Jan Vissers
uld you do a "jar tf" on your WAR file? > > On 9/10/07, Jan Vissers <[EMAIL PROTECTED]> wrote: >> >> Retrying some stuff on OC4J 10.1.3 and T5. >> >> Running into issues going through Tapestry 5 Tutorial #1 (Forms). >> From 'Start' to &#x

Revisit T5 / OC4J (Oracle) 10.1.3 - No root element has been defined.

2007-09-10 Thread Jan Vissers
Retrying some stuff on OC4J 10.1.3 and T5. Running into issues going through Tapestry 5 Tutorial #1 (Forms). >From 'Start' to 'Create Address' the link returns the following error: No root element has been defined. Stack trace org.apache.tapestry.dom.Document.toMarkup(Document.java:89) org.apache

Re: Does Tapestry (4) and Hibernate coexist nicely

2007-08-29 Thread Jan Vissers
db.dao.proto.AccountDAO"> > > > > > > I've been doing this in production for 6 months or longer and it's > been working very, very well. Adding database operations to a > Tape

Does Tapestry (4) and Hibernate coexist nicely

2007-08-29 Thread Jan Vissers
When it comes to lazy loading? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T4.1.2 / Spring 2.0.6 / Hib3 Lazy loading and PropertySelectionModel stuff

2007-08-29 Thread Jan Vissers
Tapestry cannot know which list member to show for a given value. 2007/8/28, Jan Vissers <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: Hi, I'm witnessing some 'interesting' behavior, using lazily loaded collections (Hibernate) combined with PropertySelecti

T4.1.2 / Spring 2.0.6 / Hib3 Lazy loading and PropertySelectionModel stuff

2007-08-28 Thread Jan Vissers
Hi, I'm witnessing some 'interesting' behavior, using lazily loaded collections (Hibernate) combined with PropertySelectionModel stuff. Before getting into too much detail - using my JUnit tests I can prove that traversing the (nested) objectgraph actually has the information (albeit via CGLIB pro

Re: T5 IoC vs. Guice

2007-07-11 Thread Jan Vissers
Thx. for point this blog entry out. > You should read Howard's blog, he has some answers to "why not Guice" in > it. > http://tapestryjava.blogspot.com/search?q=guice > > Kalle > > > On 7/11/07, Jan Vissers <[EMAIL PROTECTED]> wrote: >> >>

T5 IoC vs. Guice

2007-07-11 Thread Jan Vissers
Hi, Just a quick question; having read about Guice (http://code.google.com/p/google-guice/) and rereading the arguments made for T5 IoC (http://tapestry.apache.org/tapestry5/tapestry-ioc/index.html - why not Spring, why not Hivemind) I just have to ask: In hindsight would it have been just as goo

Re: T4.1.2 - css background images not working - bug?

2007-07-03 Thread Jan Vissers
ch an asset Tapestry is managing it should be handled by your servlet container. Is that not the case here? On 7/2/07, Jan Vissers <[EMAIL PROTECTED]> wrote: Apparently the images are a bit differently processed in T4.1.2 Change the url below from ../images/... to images/... makes the

Re: T4.1.2 - css background images not working - bug?

2007-07-02 Thread Jan Vissers
both (design + runtime) that would be nice. -J. Jan Vissers wrote: Hi, Moving from 4.1.1 to 4.1.2 I noticed that css background images are broken. For example: #logo { float: left; padding-top: 15px; padding-left: 200px; padding-bottom: 40px; background: url(../images

  1   2   >