Re: [T5] 5.0.7 - Help with log4j.properties file

2008-01-07 Thread buckofive
quot; logs. Could someone who has success logging hibernate post their log4j.properties file? Please. Pretty Please ... with sugar on top. thanks, B buckofive wrote: > > Hi all, > > I'm stuck at the moment trying to get log4j to log any 3rd party > libraries. It seems to w

Re: [T5] 5.0.7 - Help with log4j.properties file

2008-01-08 Thread buckofive
Hi all, Thank you for the responses. I'm a little better but still not there. As you can see my log starts off good but once tapestry is initialized there are no more logs generated from hibernate or spring. At the very end you can see where my DAO (SubjectDAO.java) fetches some records from t

Re: How to get HttpServletResponse Object in Tapestry.

2008-01-08 Thread buckofive
I belive this is covered here: http://wiki.apache.org/tapestry/Tapestry5ObtainingHttpServletRequest and then take a look at api docs: http://tapestry.apache.org/tapestry5/tapestry-core/apidocs/org/apache/tapestry/services/RequestGlobals.html cheers, B swapnilpatil wrote: > > How to get Htt

Help getting generics to work

2008-03-06 Thread buckofive
Hi all, I'm wondering if this is even possible. I read that java 1.5 generics support was as added as of tapestry 5.0.10 but I am unable to get it to work. I always end up with this exception: "Class java.lang.Object does not contain a property named 'id' (within property expression 'genericsT

Re: [T5] Help getting generics to work

2008-03-07 Thread buckofive
oward Lewis Ship wrote: > > Tapestry only understands simple generics applied directly to your > page or component class. > > On Thu, Mar 6, 2008 at 4:59 PM, buckofive <[EMAIL PROTECTED]> wrote: >> >> >> Hi all, >> >> I'm wondering if this

T5: ajax component ids with namespaces

2008-04-22 Thread buckofive
Hi All, I recently updated to Tapestry 5.0.11 from 5.0.10 and unfortunately my custom javascript calls are broken because component id's returned from ajax calls now have a ":#" next to them. For example when I try to get a reference to an object say $('foo') it doesn't exist because it is n

Re: T5: ajax component ids with namespaces

2008-04-25 Thread buckofive
After fiddling with protoype the $$ coupled with the !^ selector seems to work. I'm including some custom helper code to accomplish getting an element by id without regard to the tapestry id namespace. If this is/was obvious or there is better solution, I apologize but hopefully this will be he

[T5] 5.0.7 - Help with log4j.properties file

2008-01-03 Thread buckofive
Hi all, I'm stuck at the moment trying to get log4j to log any 3rd party libraries. It seems to work fine for classes within my web project(ie page classes etc.) and if I set the root level to debug I get what looks like mostly web container statements. Any help would be much appreciated. H

Re: T5 5.0.13 has drop TapestryConstants package ?

2008-06-18 Thread buckofive
LITERAL_BINDING_PREFIX and PROP_BINDING_PREFIX are now in org.apache.tapestry5.BindingConstants as LITERAL and PROP Cheers CG-6 wrote: > > Hi Weisu, > I did come across this SymbolConstants but it does not contain > LITERAL_BINDING_PREFIX and PROP_BINDING_PREFIX .. > > CG > > > > > On

T5: tapestry-hibernate problem when setting @Persist("entity") to a transient object

2008-08-15 Thread buckofive
Hi all, I am having some problems creating a simple crud with tapestry-hibernate 5.0.14. I followed the documentation and I have it mostly working. I can edit and save an existing entity with the @Persist("entity") annotation but if I try to create a new entity by setting the value to a newly

Re: [T5] tapestry-hibernate and transactions

2008-09-03 Thread buckofive
Hi guys, I have run into a related issue. I am using a thrid party library which creates transactions, commits and also performs rollbacks internally. When ever a transaction is rolledback in the third party library I later see a hibernate exception in the log file: org.hibernate.TransactionE

T5: tapestry-spring-security still processes form submissions after logout

2008-09-10 Thread buckofive
Hi all, I am using tapestry-spring-security version 2.0.0-SNAPSHOT (awesome plugin btw) and everything seems to work perfectly except when the combined steps are executed below: - go to a secured page with a form on it. i.e. @Secured("ROLE_ADMIN") public class ... - logout using the LogoutServic

T5: Function Tapestry.Validator.email() does not exist for field 'email'.

2008-10-02 Thread buckofive
Hi all, I just updated to the latest snapshot 5.0.16-SNAPSHOT and I'm getting a client side error during the initial page load: Function Tapestry.Validator.email() does not exist for field 'email'. My Entity method is defined as: @Validate("required,maxlength=70,email") public S

T5: Exception creating a pageLink in Tomcat but not in Jetty

2008-12-29 Thread buckofive
Hi All, I've been racking my brain all day on this one so I probally have tunnel vision but I am getting a weird exception when trying to create a pageLink on tomcat 5.5, jdk 1.6.06. Maybe someone has come across this already. I'm really not sure if this is a tomcat issue, a tapestry issue or my

Re: T5: Exception creating a pageLink in Tomcat but not in Jetty

2008-12-30 Thread buckofive
visit http://www.albourne.com/email.html for > important additional terms relating to this e-mail. > > - Original Message - > From: "buckofive" > To: users@tapestry.apache.org > Sent: Tuesday, 30 December, 2008 8:43:41 AM GMT +02:00 Athens, Beirut, > Bucharest,

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityValue

Re: [T5.1.0.5] Problem with report-plugin on windows

2009-11-04 Thread buckofive
Just as a reference for this thread the JIRA for this issue is here: https://issues.apache.org/jira/browse/TAP5-871 -- View this message in context: http://old.nabble.com/-T5.1.0.5--Problem-with-report-plugin-on-windows-tp25362108p26207956.html Sent from the Tapestry - User mailing list archive

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityValue

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityVal

Re: T 5.1 vs 5.0 JSON encoding - breaks IE8

2009-11-18 Thread buckofive
> Since we recently also fixed a major bug concerning application security, I'd say we should do a 5.1.0.6 release. +1 There should also be a new version of the 5.0 branch with any new security fixes +1 -- View this message in context: http://old.nabble.com/T-5.1-vs-5.0-JSON-encoding---brea

Linksubmit gets javascipt error T5.2.0-SNAPSHOT?

2009-12-03 Thread buckofive
Hi, The latest snapshot when using FF, generates a javascript error (and does not submit). specified in .tml as: --- Save The javascript error: --- this.form.select is not a function --- [Break on this error] if (this.form.select("input#" + ...is.element.id + "-hidden").length == --- 0)\n --

t5.2.0-SNAPSHOT: Possible bug: form.onsubmit is being replaced by a tapestry onsubmit handler

2009-12-10 Thread buckofive
Hi All, It seems tapestry is adding its own onsubmit handler directly to a form element and overwriting mine. Is this on purpose or a bug? (I want to use my own direct handler so I can cancel the event before it gets fired to any listeners). I feel if tapestry is going to write any event handle

Re: T5.2.0-SNAPHOT: newbie exceptions submitting form with BeanEditor

2010-03-19 Thread buckofive
Hi Joe/Howard, I have ran into this same problem a while back and oddly enough (just the other day) I finally got around to filing a JIRA (https://issues.apache.org/jira/browse/TAP5-1051). The only help/clue I can give to the T5 team is that the BeanEditor was working at one time in T5.2.0-SNAPS

T5.0.18: Component Event Handler is not called in a nested page for SWFUpload component

2009-01-22 Thread buckofive
Hi all, I'm working on a SWFUpload component (based on http://www.swfupload.org/ for multiple file uploads at once) which works great if the component is used inside the root Index page but if the component is used in a nested page it no longer works. During the rendering of the component I cr