Re: [ANN] A new blog about Tapestry and a quirky new blog engine

2013-10-09 Thread Thiago H de Paula Figueiredo
On Wed, 09 Oct 2013 12:57:31 -0300, Lance Java wrote: I noticed your blog has links to URL's on port 8080. Is this on purpose? My proxy at work blocks these URL's. Bug fixed and fix deployed! :) -- Thiago H. de Paula Figueiredo Tapestry, Java and Hibernate consultant and developer http://

Re: [ANN] A new blog about Tapestry and a quirky new blog engine

2013-10-09 Thread Thiago H de Paula Figueiredo
On Wed, 09 Oct 2013 12:57:31 -0300, Lance Java wrote: Nice! Yay! :) I noticed your blog has links to URL's on port 8080. Is this on purpose? My proxy at work blocks these URL's. It's a bug in the Eloquentia's link rewriting code I thought I had already fixed. :( Thanks for the tip. I

Re: [ANN] A new blog about Tapestry and a quirky new blog engine

2013-10-09 Thread Lance Java
Nice! I noticed your blog has links to URL's on port 8080. Is this on purpose? My proxy at work blocks these URL's.

Re: Getting Block content as String

2013-10-09 Thread Thiago H de Paula Figueiredo
On Wed, 09 Oct 2013 11:21:57 -0300, Davide Vecchi wrote: Thiago: thanks for the clarification. I actually went for some redesign; I gave up trying to get the block content, although it still feels a bit weird to me, probably just because I'm new to Tapestry. Where the data is coming from i

RE: Getting Block content as String

2013-10-09 Thread Lance Java
As Thiago said, can you specify the value somewhere (message catalogue, database etc) and reference the same value in both the template and the action?

RE: Getting Block content as String

2013-10-09 Thread Lance Java
You can only get the rendered HTML after the point at which your block is rendered to tapestry's MarkupWriter. So, you only have an opportunity to get the HTML in a full page render request or an AJAX event request which causes a partial page render Getting the HTML in a non-ajax action (ie your

RE: Getting Block content as String

2013-10-09 Thread Davide Vecchi
Thiago: thanks for the clarification. I actually went for some redesign; I gave up trying to get the block content, although it still feels a bit weird to me, probably just because I'm new to Tapestry. Where the data is coming from is just a block that I had put in the template with the exact p

Re: Getting Block content as String

2013-10-09 Thread Thiago H de Paula Figueiredo
On Wed, 09 Oct 2013 04:10:55 -0300, Davide Vecchi wrote: Hi, thanks for the assistance. The template is quite big so I will have to strip it down much, to avoid posting a lot of unrelated stuff; I will do that as soon as possible. Hi! Ok! I guess just the part containing the "label" field

Re: [ANN] Tapestry 5.4 alternative datepicker

2013-10-09 Thread Barry Books
I pushed a new snapshot. What documentation there is here https://github.com/trsvax/tapestry-datepicker This version allows overriding the location of the javascript and css for the jquery date picker. The basic features are 1. Translators for textfield to validate date/calendar/timestamp entry

Re: [5.4.20] injected-uploader module require.js 404

2013-10-09 Thread Geoff Callender
Affecting me, too, with a page that has Upload and some other components within the one Zone. Worked fine under 5.3. Voted https://issues.apache.org/jira/browse/TAP5-2188 . It doesn't appear to be causing me a problem, but I'd prefer not seeing the worrying error messages in the js console. Ch

Re: Getting Block content as String

2013-10-09 Thread Lance Java
It's probably overkill but depending on what you are doing, you might find tapestry-offline useful https://github.com/uklance/tapestry-offline

Re: Getting Block content as String

2013-10-09 Thread Lance Java
Here's some discussion which has a couple of answers http://apache-tapestry-mailing-list-archives.1045711.n5.nabble.com/Encoding-a-template-as-a-valid-JSON-String-td5723504.html

Re: [T5.4] Removing Bootstrap from pages individually

2013-10-09 Thread Felix Gonschorek
Hi, you can disable the auto-include of the core stack when you add this to your AppModule: public void contributeMarkupRenderer(OrderedConfiguration configuration) { configuration.override("ImportCoreStack", null); } then you can add the core stack individually as needed with @Import(stack="c

RE: Getting Block content as String

2013-10-09 Thread Davide Vecchi
Hi, thanks for the assistance. The template is quite big so I will have to strip it down much, to avoid posting a lot of unrelated stuff; I will do that as soon as possible. In the meantime, does it mean that I better stop trying to get the value of that "label" field from that Block instance ?