[OT] Who is responsible for tapestry.apache.org styling?

2012-02-20 Thread Chris Mylonas
Hey List! I've been evaluating confluence for a few days and realised you use the gliffy-confluence plugin for the awesome diagrams that are found in the tapestry docs - I hadn't realised you were using confluence and had just assumed it was some extended maven mojo that created all that. Who

Re: best way to patch tapestry?

2012-02-20 Thread Paul Stanton
Kalle, I hadn't thought of the version bit .. I think that sounds good. I will try to get that working. One problem is that (while I know I should) I haven't had the time to create our own internal maven repository yet. We currently include a bunch of jars via system ... ugly, I know but tim

Re: best way to patch tapestry?

2012-02-20 Thread Kalle Korhonen
On Mon, Feb 20, 2012 at 2:47 PM, Paul Stanton wrote: > I have multiple tapestry projects which all need to have the patches > applied, and so far the only reliable method I can find is to include them > in each projects source tree. I am finding it difficult to ensure that the > patch is applied w

Re: best way to patch tapestry?

2012-02-20 Thread Chris Mylonas
Hi Paul, > I have multiple tapestry projects which all need to have the patches applied, > and so far the only reliable method I can find is to include them in each > projects source tree. I am finding it difficult to ensure that the patch is > applied when it is contained in its own jar since

best way to patch tapestry?

2012-02-20 Thread Paul Stanton
Hi All, Like many of you, I've had to create a couple of local patches to get certain things in tapestry working correctly. For example, a fix for the DateField component (https://issues.apache.org/jira/browse/TAP5-841) and a custom AssetDispatcher to perform a 302 redirect instead of failin

Re: tapestry 5.3 antlr version

2012-02-20 Thread Chris Mylonas
Whoops - sorry Paul - ignore my last post - just re-read your message. On 21/02/2012, at 8:47 AM, Paul Stanton wrote: > Hi all, > > I've recently noticed that in tapestry-hibernate 5.3.2 directly depends on > antlr 2.7.6, while tapestry-core 5.3.2 depends no antlr 2.7.7 > > Is this a mistake?

Re: tapestry 5.3 antlr version

2012-02-20 Thread Chris Mylonas
Hmmm.. This doesn't reckon so: http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-hibernate/5.3.1 http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-hibernate/5.3.2 In the "This artifact depends on..." section On 21/02/2012, at 8:47 AM, Paul Stanton wrote: > Hi all, >

tapestry 5.3 antlr version

2012-02-20 Thread Paul Stanton
Hi all, I've recently noticed that in tapestry-hibernate 5.3.2 directly depends on antlr 2.7.6, while tapestry-core 5.3.2 depends no antlr 2.7.7 Is this a mistake? Thanks, Paul. - To unsubscribe, e-mail: users-unsubscr...@ta

Re: TreeGrid ActionLink

2012-02-20 Thread George Christman
Awesome Lance, I was a little concerned at first lol. On Mon, Feb 20, 2012 at 3:36 AM, Lance Java [via Tapestry] < ml-node+s1045711n5498481...@n5.nabble.com> wrote: > Tree accepts a "label" parameter which can be a block. > > > > > context="node.id">${node.label} > >

Re: Tynamo Security Components

2012-02-20 Thread Kalle Korhonen
Yeah, I've missed that too at times. Please open an issue at http://jira.codehaus.org/browse/TYNAMO. Kalle On Mon, Feb 20, 2012 at 4:18 AM, Dusko Jovanovski wrote: > I think I was a bit vague on why I propose this improvement. > > The scenario is the following: > > > Admin or Superadmin >    

PartialMarkupRendererFilter Question

2012-02-20 Thread Barry Books
I added a PartialMarkupRendererFilter to my Bootstrap module to support AJAX and it does not behave exactly as I expected. In a MarkupRendererFilter the content is set after the filter runs so you can filter the content with a Visitor. It seems in a PartialMarkupRendererFilter the content is placed

RE: [T5.3] Contributing a Service Override using addInstance()

2012-02-20 Thread Blower, Andy
I managed to get this to work by tracking down all dependencies and finding that one was being used in the services' constructor. Once I moved the initialisation code into a lazy init method I stopped getting the exceptions. Unfortunately, I still have an issue because when using addInstance() T

Re: Tynamo Security Components

2012-02-20 Thread Dusko Jovanovski
I think I was a bit vague on why I propose this improvement. The scenario is the following: Admin or Superadmin Not Admin or Superadmin To get this output, currently you either have to inject the SecurityService and call it's method hasAnyRoles(String) which is what the compo

Tynamo Security Components

2012-02-20 Thread Dusko Jovanovski
Hello Tynamo developers First of all, I love the module, keep up the good work. I would like to propose one improvement for all the security components (org.tynamo.security.components package), an "else" block parameter (very similar to the tapestry "if" component). That would come in pretty hand

Re: Please keep Accessibility in mind

2012-02-20 Thread François Facon
Hi Jonathan, By design, Tapestry is ready to serve pages to anyone. For your information, in https://github.com/got5/tapestry5-jquery we took some of the component you mentioned. Ensuring that systems, applications, and data are accessible in the long-term run is not easy. So any suggestions are w

Re: TreeGrid ActionLink

2012-02-20 Thread Lance Java
Monday morning-itus... Try the following: Page.java @InjectComponent @Property Tree tree; - tml - ${tree.node.label} ${tree.node.label} On Monday, 20 February 2012, Lance Java wrote: > Tree accepts a "label" parameter w

Re: TreeGrid ActionLink

2012-02-20 Thread Lance Java
Tree accepts a "label" parameter which can be a block. ${node.label} ${node.label} This will require a getter() in your page to get the currently rendering TreeNode (ie the "node" property from the Tree component) and at this stage