Re: Insight: T5 is a compiler

2011-04-28 Thread Thiago H. de Paula Figueiredo
On Thu, 28 Apr 2011 18:16:51 -0300, Andreas Andreou wrote: of course JSP templates are not interpreted character by character but *just* converted to servlets, javac'ed and finally executed This is compilation in my dictionary, as JSP (a language) is compiled into a servlet (Java language

Re: Insight: T5 is a compiler

2011-04-28 Thread Thiago H. de Paula Figueiredo
On Thu, 28 Apr 2011 18:03:09 -0300, Pierce T. Wetter III wrote: I think we're saying the same thing in different ways. "Tapestry compiles the template into a program to generate the content" is a shorter way of saying what you just said. As opposed to JSP which interprets the template c

Re: Insight: T5 is a compiler

2011-04-28 Thread Andreas Andreou
of course JSP templates are not interpreted character by character but *just* converted to servlets, javac'ed and finally executed On Fri, Apr 29, 2011 at 00:03, Pierce T. Wetter III wrote: > > I think we're saying the same thing in different ways. > > "Tapestry compiles the template into a progr

Re: T5: @Cached(watch) parameter requires public property

2011-04-28 Thread Thiago H. de Paula Figueiredo
On Thu, 28 Apr 2011 17:38:01 -0300, Adam Zimowski wrote: Hi Again - Hi! Is there a specific reason why watch parameter for @Cached annotation requires public property when using default prop binding? I'd guess the JVM bytecode verifier would complain about invalid access, as the prop

Re: Insight: T5 is a compiler

2011-04-28 Thread Pierce T. Wetter III
I think we're saying the same thing in different ways. "Tapestry compiles the template into a program to generate the content" is a shorter way of saying what you just said. As opposed to JSP which interprets the template character by character. Other systems (WebObjects is one) convert temp

T5: @Cached(watch) parameter requires public property

2011-04-28 Thread Adam Zimowski
Hi Again - Is there a specific reason why watch parameter for @Cached annotation requires public property when using default prop binding? This is an inconvenient limitation IMO, as I don't necessarily want to expose my watch property publicly. For example, my watch on getShoppingCart may be somet

Re: Insight: T5 is a compiler

2011-04-28 Thread Howard Lewis Ship
I think the biggest insight I attempt to inject into people is the component template: It's easy to think about it the way a JSP operates: working character-by-character. But for Tapestry, the template is actually a blueprint for building a structure in memory, and that structure is a program for

Insight: T5 is a compiler

2011-04-28 Thread Pierce T. Wetter III
I'm job hunting right now which means I sometimes have to explain why I chose Tapestry for a web application platform. ( http://www.linkedin.com/in/pwetter if your company needs a new Director of Web Development ). I had an insight yesterday that I thought I would share. Tapestry is a compi

Re: Tapestry render plain text as html

2011-04-28 Thread Argo Vilberg
Works! Thank you very much! Argo 2011/4/28 Adam Zimowski > Hi - > > You probably want to use OutputRaw component like this: > > > > Here is documentation link: > > http://tapestry.apache.org/current/tapestry-core/ref/org/apache/tapestry5/corelib/components/OutputRaw.html > > Adam > > On Thu

Re: Tapestry render plain text as html

2011-04-28 Thread Adam Zimowski
Hi - You probably want to use OutputRaw component like this: Here is documentation link: http://tapestry.apache.org/current/tapestry-core/ref/org/apache/tapestry5/corelib/components/OutputRaw.html Adam On Thu, Apr 28, 2011 at 11:07 AM, Argo Vilberg wrote: > I want write simple content manage

Tapestry render plain text as html

2011-04-28 Thread Argo Vilberg
I want write simple content management system in Tapestry 5. If i use String variable in template ${content} Then tapestry render this text to look like html Example Text is : Teenusest But tapestry shows this in template as

Teenusest

So how can i disable this HTML ren


Re: Blog Post: Tapestry Magic #1

2011-04-28 Thread Taha Hafeez
I have been using it for about 6 months and had some things to share. Don't worry I am already running out of vacations and ideas !! regards Taha On Thu, Apr 28, 2011 at 7:53 PM, Massimo Lusetti wrote: > On Thu, Apr 28, 2011 at 4:20 PM, Taha Hafeez > wrote: > > > Two more posts > > Have you b

Re: New Tapestry website - webalertpro.com

2011-04-28 Thread Igor Drobiazko
Don't forget to provide a nice screenshot displaying other page than just the login page. On Thu, Apr 28, 2011 at 4:39 PM, Joel Halbert wrote: > Hi Folks, > > Is anyone in charge of vetoing/adding websites to the the Tapestry > Applications page? > > http://tapestry.apache.org/applications.html

Re: New Tapestry website - webalertpro.com

2011-04-28 Thread Thiago H. de Paula Figueiredo
On Thu, 28 Apr 2011 11:39:59 -0300, Joel Halbert wrote: Hi Folks, Hi! Is anyone in charge of vetoing/adding websites to the the Tapestry Applications page? http://tapestry.apache.org/applications.html If you file an ICLA, you can edit it yourself, as the new site is wiki-powered. W

New Tapestry website - webalertpro.com

2011-04-28 Thread Joel Halbert
Hi Folks, Is anyone in charge of vetoing/adding websites to the the Tapestry Applications page? http://tapestry.apache.org/applications.html We'd be honoured to join the roll call of websites with our latest Tapestry based product, WebAlertPro The front of house is actually wordpress: http://w

Re: Blog Post: Tapestry Magic #1

2011-04-28 Thread Massimo Lusetti
On Thu, Apr 28, 2011 at 4:20 PM, Taha Hafeez wrote: > Two more posts Have you become addicted? ... No worries it's the joke Tapestry5 play on everyone using it... Cheers -- Massimo http://meridio.blogspot.com - To unsubscribe

Re: Blog Post: Tapestry Magic #1

2011-04-28 Thread Taha Hafeez
Two more posts http://tawus.wordpress.com/2011/04/28/tapestry-magic-8-applicationstatemanager/ http://tawus.wordpress.com/2011/04/28/tapestry-magic-9-integrating-with-hibernate-and-multiple-database-support/ regards Taha On Tue, Apr 26, 2011 at 10:50 PM, Taha Hafeez wrote: > Perf4j integratio

Re: Referencing external assets

2011-04-28 Thread Hugo Palma
Thanks for the reference, still, i think support for external assets should definitely be part of the framework. I've created the request here https://issues.apache.org/jira/browse/TAP5-1515 2011/4/28 François Facon > Hi Hugo, > > You can override AssetPathConverter service. > > example: > >

Re: Referencing external assets

2011-04-28 Thread François Facon
Hi Hugo, You can override AssetPathConverter service. example: http://code.google.com/p/corner/source/browse/corner3/trunk/src/main/java/corner/asset/services/impl/CDNAssetPathConverterImpl.java François 2011/4/28 Hugo Palma : > Hi all, > i'm trying to use the @Import annotation to import a ja

Referencing external assets

2011-04-28 Thread Hugo Palma
Hi all, i'm trying to use the @Import annotation to import a javascript library from Google CDN but can't seem to find a correct asset prefix to reference an url. I would like something like: @Import(library = { "uri: https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"; }) But nothi