Re: AJAX zone refresh error messages

2010-11-23 Thread Christian Edward Gruber
I apologize, sincerely, for my colleague using the word "leverage" as a verb. He's been in one too many meetings with management. ;-) But seriously, no, it's not blackbird. It's the little red error messages that pop up when you get XHR errors. (Mike, Blackbird is a javascript-based error co

repo?.maven.org/.../tapestry*/5.2.0 ?!?!

2010-08-18 Thread Christian Edward Gruber
Um... hey all, I'm a little behind in both e-mail and my plans. Why do I see released projects/jars/poms on repo1? I thought we were at 5.2.0- alpha. Are we treating .0 as alpha, .1 as a beta, etc., until we have a release? Christian.

Re: Ok, really dumb questions about ioc scopes...

2010-07-16 Thread Christian Edward Gruber
redo wrote: On Fri, 16 Jul 2010 16:07:58 -0300, Christian Edward Gruber > wrote: I need to bind a service into request scope, so it's whatever I need to do in my module. In web applications, unless you create new threads, request scope is the same as thread scope. If this is not yo

Re: Ok, really dumb questions about ioc scopes...

2010-07-16 Thread Christian Edward Gruber
I need to bind a service into request scope, so it's whatever I need to do in my module. On Jul 16, 2010, at 3:03 PM, Thiago H. de Paula Figueiredo wrote: On Fri, 16 Jul 2010 15:30:15 -0300, Christian Edward Gruber > wrote: I see singleton and per-thread... and there's an imp

Re: Ok, really dumb questions about ioc scopes...

2010-07-16 Thread Christian Edward Gruber
ere's been talk about a sesson scope, but it doesn't exist. SessionState are not services so there's no scope for them. On Fri, Jul 16, 2010 at 11:30 AM, Christian Edward Gruber wrote: I see singleton and per-thread... and there's an implicit session scope wiht SessionS

Ok, really dumb questions about ioc scopes...

2010-07-16 Thread Christian Edward Gruber
I see singleton and per-thread... and there's an implicit session scope wiht SessionState annotations... Are there "session" and "reqeust" scopes? I've managed to avoid a request-scoped object until now, but I think I need one in the ioc... but I don't see these two scopes explicitly docu

Re: More stupid Javassist woes...

2010-07-16 Thread Christian Edward Gruber
, Christian. On Jul 16, 2010, at 12:40 PM, Thiago H. de Paula Figueiredo wrote: On Fri, 16 Jul 2010 13:20:22 -0300, Christian Edward Gruber > wrote: ... so I upgraded us to a patched 3.12.0.GA of javassist and that cured all sorts of woes with our local Google AppEngine development

Re: More stupid Javassist woes...

2010-07-16 Thread Christian Edward Gruber
g? On Fri, Jul 16, 2010 at 9:31 AM, Christian Edward Gruber wrote: Ahahahah. I wish I had that kind of pull/budget. Christian. On Jul 16, 2010, at 12:27 PM, Howard Lewis Ship wrote: I wonder if there's a big organization with deep pockets that would like to fund that effort? :-) On Fri, Ju

Re: More stupid Javassist woes...

2010-07-16 Thread Christian Edward Gruber
Ahahahah. I wish I had that kind of pull/budget. Christian. On Jul 16, 2010, at 12:27 PM, Howard Lewis Ship wrote: I wonder if there's a big organization with deep pockets that would like to fund that effort? :-) On Fri, Jul 16, 2010 at 9:20 AM, Christian Edward Gruber wrote: ...

More stupid Javassist woes...

2010-07-16 Thread Christian Edward Gruber
... so I upgraded us to a patched 3.12.0.GA of javassist and that cured all sorts of woes with our local Google AppEngine development appserver and tapestry... ... until I tried to run code-coverage stats. Apparently our code- coverage system at Google conflicts somehow with what javassist

Re: [Tapestry Central] Everyone out of the Pool! Tapestry goes singleton!

2010-07-15 Thread Christian Edward Gruber
5.2 hasn't even pushed an alpha release. It's by no means inappropriate to include it in 5.2, though I'd love to see 5.2 locked down some enough to push an alpha very soon. Christian. On Jul 15, 2010, at 11:48 AM, Pierce Wetter wrote: This seems like a pretty dramatic change. Should it

Re: Where do I get Tapestry 5.2 from?

2010-07-15 Thread Christian Edward Gruber
An alpha has not yet been released. I believe Howard has said that an alpha or beta is close, but not quite there. Christian. On Jul 15, 2010, at 10:19 AM, Blower, Andy wrote: The download link on the website takes me to a page with only 5.0 & 5.1 on it. The rsync repository (http://peop

Re: javassist error with Tapestry 5.1.0.5 and JBoss 4.2.3GA

2010-07-09 Thread Christian Edward Gruber
I upgraded our organization to 3.12.0.GA javassist and a lot of issues went away. Still a few issues, and I think the guy who patched it for us submitted that patch to javassist, but it's light-years less problematic than 3.9. Christian On Jul 9, 2010, at 5:37 AM, Halil Karakose wrote: A

Re: Component .java file unit testing and @Property

2010-06-17 Thread Christian Edward Gruber
which lets you access private fields. (Of course you'll get other benefits from using Groovy. In short, it's a much better language for testing, especially when combined with Spock.) Cheers, Peter Christian Edward Gruber-3 wrote: Hey, So @Property is beautiful, but sometimes

Re: context on pages.

2010-06-11 Thread Christian Edward Gruber
Ok, that's very interesting, and something we missed. I'll go look at the internal api docs, but is there a tutorial on using it? (I'm going to start pulling some of our examples of use and putting up more howtos or something.) Christian. On Jun 10, 2010, at 7:17 PM, Howard Lewis Ship wr

context on pages.

2010-06-10 Thread Christian Edward Gruber
Hey, I have a page Foo which has a component Bar. I have an onActivate(String blah) on the page, and a form on Bar. I can get everything working, but, when I do onSuccess() on the Bar component, the context is not set on Foo, so the re-driect doesn't include the context. Is the

Re: context on pages.

2010-06-10 Thread Christian Edward Gruber
Sorry - we did just figure out that we were missing onPassivate. Completely re-did it that way. Thanks. quick question though... would yoiu return an array from onPassivate if you needed more than one context element? Christian. On Jun 10, 2010, at 5:54 PM, Markus Feindler wrote: Hi,

Re: Component .java file unit testing and @Property

2010-06-08 Thread Christian Edward Gruber
e.org/tapestry5.1/apidocs/org/apache/tapestry5/ioc/test/TestBase.html On Tue, Jun 8, 2010 at 10:51 PM, Christian Edward Gruber wrote: Hey, So @Property is beautiful, but sometimes when I'm testing the thin controller logic that remains I want access to an @Property from within the test i

Re: Component .java file unit testing and @Property

2010-06-08 Thread Christian Edward Gruber
estBase.html On Tue, Jun 8, 2010 at 10:51 PM, Christian Edward Gruber wrote: Hey, So @Property is beautiful, but sometimes when I'm testing the thin controller logic that remains I want access to an @Property from within the test in order to verify that something was done/changed. I&

Component .java file unit testing and @Property

2010-06-08 Thread Christian Edward Gruber
Hey, So @Property is beautiful, but sometimes when I'm testing the thin controller logic that remains I want access to an @Property from within the test in order to verify that something was done/changed. I've looked at PageTester, but I don't want to dig into the rendered document,

Re: What happend to Tapestry 5

2010-05-30 Thread Christian Edward Gruber
Any ETA on this by the way? I've seen some of the discussions, but didn't get a sense as to when that might be happening. Christian. On May 30, 2010, at 5:38 PM, Igor Drobiazko wrote: This will hopefully change after the relaunch of the Tapestry's web site. Robin is working on that. On S

Re: Google App Engine and Tapestry 5.1.0.x Series

2010-04-23 Thread Christian Edward Gruber
We are now using T5.2 snapshot on GAE without modification. Christian. On Apr 23, 2010, at 10:22 AM, Niclas Meier wrote: Hi, I gathered some experience with tapestry the last 18 Month and I am very satisfied with Tapestry. But at this moment I have quite an issue with a new project. I cho

Re: service shutdown hook in tapestry-ioc

2010-04-21 Thread Christian Edward Gruber
nnectionManager implements interface RegistryShutdownListener{ public void registryDidShutdown() } When the register shuts down, the method registryDidShutdown will be called. Shing --- On Thu, 22/4/10, Christian Edward Gruber wrote: From: Christian Edward Gruber Subject: service s

service shutdown hook in tapestry-ioc

2010-04-21 Thread Christian Edward Gruber
Hi, We're building a service that connects to an RPC system for use in a t5 app (5.2-snap) but can't find anywhere to declare/identify shutdown logic. Is there any sort of event the service impl can hook into either with an annotation or a module contribution somewhere to allow us to

Re: Tapestry 5.1.0.5 Google App Engine

2010-04-17 Thread Christian Edward Gruber
, was it ? ). Most of the tips I picked up from Dmitry's blog. I can check later on and send out my changes that do work w/ 1.3.0 . Although it does give a warning when I build the app w/ 1.3.0 (because there's a newer version), the app runs fine when I deploy to GAE ( http:

Re: Tapestry 5.1.0.5 Google App Engine

2010-04-17 Thread Christian Edward Gruber
, Alex K On Sat, Apr 17, 2010 at 4:38 AM, Christian Edward Gruber < christianedwardgru...@gmail.com> wrote: We figured it out. It wasn't a T5 or GAE issue, but rather how we assembled the war using google's internal build tools. We just hadn't lined up all the pieces be

Re: Tapestry 5.1.0.5 Google App Engine

2010-04-17 Thread Christian Edward Gruber
later on and send out my changes that do work w/ 1.3.0 . Although it does give a warning when I build the app w/ 1.3.0 (because there's a newer version), the app runs fine when I deploy to GAE ( http://www.zadachite.com) Regards, Alex K On Fri, Apr 16, 2010 at 3:00 PM, Christian Edward Grube

Re: Tapestry 5.1.0.5 Google App Engine

2010-04-16 Thread Christian Edward Gruber
Actually, we're going to use 5.2 (I'm working with Mike Taylor on this) We'll check the list archives, but a lot of what we're seeing seems related on first blush, but isn't related, because we can't get to the problem solved in those e-mails (we're not getting the main page component looke

Re: Tapestry and SeeSaw talk

2010-03-31 Thread Christian Edward Gruber
Likewise. I'd love to see it. Christian. On Mar 31, 2010, at 1:34 PM, Ivano Luberti wrote: Keep getting a permission denied message Il 26/03/2010 17.03, Ben Gidley ha scritto: Hi, Skillsmatter have changed the permissions - so it may work better now or try http://vimeo.com/10399058 Ben

Re: Page alias & Guice integration

2009-09-29 Thread Christian Edward Gruber
--- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ --

Re: Supporting multiple devices, eg. browser + mobile + TV

2009-09-02 Thread Christian Edward Gruber
or http://www.arsmachina.com.br/thiago - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.

Re: Auto Running a Method in a Service Impl

2009-08-22 Thread Christian Edward Gruber
dditional commands, e-mail: users-h...@tapestry.apache.org - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christian

Re: [T5.1] Serialization and IoC?

2009-08-20 Thread Christian Edward Gruber
Why would they be manifested by the IoC? Are they value/domain objects? They probably shouldn't be managed by the IoC, but by a service which is itself injected. That service should then be able to provide these objects and, if given them in serialized form and re- constitute them appropr

Re: Tapestry 5.1 running in Google App Engine (GAE)

2009-08-12 Thread Christian Edward Gruber
Christian! Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: [Announce] Tapestry Testify project - v1.0.0 released

2009-08-07 Thread Christian Edward Gruber
additional EU corporate and regulatory disclosures. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwa

Re: Testify injection only works once per test

2009-07-27 Thread Christian Edward Gruber
es.htm for additional EU corporate and regulatory disclosures. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org

Re: Testify + Testng

2009-07-15 Thread Christian Edward Gruber
m for additional EU corporate and regulatory disclosures. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For a

Re: ChenilleKit Mail -- How to Use? or Any Mailer?

2009-06-17 Thread Christian Edward Gruber
unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Solving the T5 Documentation Dilemma

2009-05-13 Thread Christian Edward Gruber
docs, and +1 for tapestry forum Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail

Re: Benchmarking Tapestry

2009-05-12 Thread Christian Edward Gruber
has to re-fresh more frequently, then it's possible that T5 can vastly outperform the other in a complex application, by design. cheers, Christian Edward Gruber christianedwardgru...@gmail.com http://www.geekinasuit.com/ ---

Re: Benchmarking Tapestry

2009-05-12 Thread Christian Edward Gruber
r additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org Fo

Re: Benchmarking Tapestry

2009-05-11 Thread Christian Edward Gruber
input would be greatly appreciated. Thanks Neil Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Encoding with exceptions

2009-05-08 Thread Christian Edward Gruber
That's also possible. I could do that and then render... hmm... Christian. On 8-May-09, at 03:18 , Otho wrote: Is html input mandatory? Id not, how about using bbcode or some wiki markup language? 2009/5/7 Christian Edward Gruber Yeah - I don't, at least not yet. I probabl

Re: Encoding with exceptions

2009-05-07 Thread Christian Edward Gruber
) into XML and transform out the content you don't like, then store that in DB or render it raw. On Thu, May 7, 2009 at 1:26 PM, Christian Edward Gruber wrote: Hi, I was considering how to write a minimal markup component - that is a component which can handle encoding raw text i

Encoding with exceptions

2009-05-07 Thread Christian Edward Gruber
an include some rendering hints. Probably my first go will be to create a component that pre- encodes and does a MarkupWriter.writewRaw() with the results, but it feels like a bad hack. cheers, Christian. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.

Re: [ANN] Javamail service in Tapestry 5.x IoC

2009-05-06 Thread Christian Edward Gruber
auto-loading metadata. That's the only difference between them though. Christian. On 6-May-09, at 15:00 , Christian Edward Gruber wrote: Hey all, I just released an early version (0.6) of israfil-mail-service - a simple mail sending service with a pluggable transport (currently i

[ANN] Javamail service in Tapestry 5.x IoC

2009-05-06 Thread Christian Edward Gruber
yet, though it's certainly usable - I'm moving it into production later today or tomorrow to provide some notification on a site. I've tested it with T5.1, not T5, but it accidentally picked up the T5.0.18 jars at one point and seemed to have little problem, so I expect

Re: Protocol Buffers RPC Server Implemention based on Tapestry(5.1.0.4),Mina(2.0-M5) and Protobuf(2.0.3)

2009-05-06 Thread Christian Edward Gruber
Nice! On 6-May-09, at 07:32 , Jun Tsai wrote: I had implementd a RPC server based on Tapestry(5.1.0.4),Mina(2.0- M5) and Protobuf(2.0.3).I hope useful for you。 http://github.com/bitiboy/fepss-rpc/tree/t5 t5 branch. -- regards, Jun Tsai Christian Edward Gruber e-mail: christianedwardgru

Re: What is beautiful about Tapestry?

2009-04-30 Thread Christian Edward Gruber
--- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ --

Re: Solving the T5 Documentation Dilemma

2009-04-29 Thread Christian Edward Gruber
On Apr 29, 2009, at 7:29 PM, Howard Lewis Ship wrote: On Wed, Apr 29, 2009 at 4:11 PM, Christian Edward Gruber wrote: ... project which could be versioned (or at least released) on a different cycle. This could keep (for any branch such as 5.0, 5.1) the docs as fresh as you wanted to

Re: Solving the T5 Documentation Dilemma

2009-04-29 Thread Christian Edward Gruber
stry5 Christian Edward Gruber christianedwardgru...@gmail.com http://www.geekinasuit.com/

Re: T5: What is NOT beautiful about Tapestry?

2009-04-29 Thread Christian Edward Gruber
I'm interested about this - can you elaborate what you mean by this? What about the structure is too static, and what dynamism are you looking for? Christian. On 29-Apr-09, at 19:16 , Pedro Januário wrote: - The static structure and dynamic behaviour need. Christian Edward Gru

Re: Solving the T5 Documentation Dilemma

2009-04-29 Thread Christian Edward Gruber
reator of Apache Tapestry Director of Open Source Technology at Formos - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-ma

Re: Solving the T5 Documentation Dilemma

2009-04-29 Thread Christian Edward Gruber
Ship Creator of Apache Tapestry Director of Open Source Technology at Formos - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-

Re: [wiki T5 howtos] Utf8 filter hints obsolete?

2009-04-27 Thread Christian Edward Gruber
#x27;UTF-8') for the entire application. This solved some ugly problems with needed to know the character set of the page before we could parse the URL to determine the name of the page (!). On Mon, Apr 27, 2009 at 5:03 PM, Christian Edward Gruber wrote: I had some problems with UTF-8 char

Re: [wiki T5 howtos] Utf8 filter hints obsolete?

2009-04-27 Thread Christian Edward Gruber
mmands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber christianedwardgru...@gmail.com http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Web framework evaluation - What is beautiful in Tapestry?

2009-04-26 Thread Christian Edward Gruber
much less flexible. Christian. On 26-Apr-09, at 11:53 , Otho wrote: Another great point is the component orientation which makes for a much more natural flow of coding compared to pure MVC. Christian Edward Gruber e-mail: christianedwardgru...@gmai

Re: [tap-ioc] point of injection

2009-04-21 Thread Christian Edward Gruber
On 21-Apr-09, at 07:02 , manuel aldana wrote: Christian Edward Gruber wrote: On 20-Apr-09, at 19:39 , Thiago H. de Paula Figueiredo wrote: Now I get it. Thanks Christian! All you said, to me, is one more reason to not inject services in domain objects . . . :) Yeah - that's such an

Re: [tap-ioc] passing a set of autobuild types to bind()

2009-04-21 Thread Christian Edward Gruber
h should be fine. For testability I can just inject a test- implementation of this interface. I don't see a strong coupling to the container in my model (apart from the @Inject annotation). Christian Edward Gruber wrote: Are your model classes their own controllers? If you're d

Re: [tap-ioc] passing a set of autobuild types to bind()

2009-04-20 Thread Christian Edward Gruber
nsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To u

Re: [tap-ioc] point of injection

2009-04-20 Thread Christian Edward Gruber
not separated concerns well. Christian. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: [tap-ioc] point of injection

2009-04-20 Thread Christian Edward Gruber
objects, which use services internally. You create them by for instance passing mandatory fields into the constructor. I don't get this example. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ --

Re: [appengine-java] Re: is it possible to use comet with java appengine?

2009-04-20 Thread Christian Edward Gruber
up, send email to google-appengine-java+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en -~--~~~~--~~--~--~--- Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: h

Google Application Engine whitelist info

2009-04-17 Thread Christian Edward Gruber
et this opinion into the wild for the sake of the Tapestry contributors' decision making. So no nasty quoting me 13 weeks from now if javax.xml.stream.* isn't whitelisted. ;) cheers, Christian. Christian Edward Gruber christianedwardgru...@gmail.com http://www.geekinasuit.com/ --

Re: Java support added to Google AppEngine

2009-04-17 Thread Christian Edward Gruber
ut incurring any additional latency. Applications that are heavily CPU- bound may incur some additional latency in long-running requests in order to make room for other apps sharing the same servers. Requests for static files are not affected by this limit." Christian Edward Gruber wrote

Re: Java support added to Google AppEngine

2009-04-17 Thread Christian Edward Gruber
il: users-h...@tapestry.apache.org ----- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com w

Re: Woodstox dependency needed?

2009-04-17 Thread Christian Edward Gruber
oward M. Lewis Ship Creator of Apache Tapestry Director of Open Source Technology at Formos - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christ

Re: Java support added to Google AppEngine

2009-04-16 Thread Christian Edward Gruber
commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional

Re: Decent jetty runner for eclipse

2009-04-15 Thread Christian Edward Gruber
etty decent apart from the lack of Java 6 support, also I seem to recall it didn't work in the latest eclipse at that time so sadly I ditched it. Is it working in Ganymede with JDK 6 anybody? - Original Message - From: "Christian Edward Gruber" To: "Tapestry users&q

Re: SUCCESSFULL deploy Tapestry5 on google appengine

2009-04-13 Thread Christian Edward Gruber
the GAE people are in terms of opening up the STAX API. On Mon, Apr 13, 2009 at 8:11 AM, Christian Edward Gruber wrote: It's the stax dependency on javax.xml.stream for the moment. Howard, any thoughts about having an alternate template processor? It's injected, so would that

Re: SUCCESSFULL deploy Tapestry5 on google appengine

2009-04-13 Thread Christian Edward Gruber
features I wanted in 5.1. Anythings possible, but I'd like to see how flexible the GAE people are in terms of opening up the STAX API. On Mon, Apr 13, 2009 at 8:11 AM, Christian Edward Gruber wrote: It's the stax dependency on javax.xml.stream for the moment. Howard, any thoughts about

Re: SUCCESSFULL deploy Tapestry5 on google appengine

2009-04-13 Thread Christian Edward Gruber
ess so far ? just curious... -- http://dwiardiirawan.blogspot.com "cos everyone could be extraordinary...lighten up !" Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/

Re: Java support added to Google AppEngine

2009-04-12 Thread Christian Edward Gruber
ling list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com web

Decent jetty runner for eclipse

2009-04-11 Thread Christian Edward Gruber
Hi. I just started using "Run Jetty Run" and it seems to be pretty no- fuss. http://code.google.com/p/run-jetty-run/wiki/GettingStarted regards, Christian. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geeki

Re: Java support added to Google AppEngine

2009-04-08 Thread Christian Edward Gruber
Oh, I'll be blogging. Christian. On Apr 8, 2009, at 11:22 AM, Thiago H. de Paula Figueiredo wrote: On Wed, Apr 8, 2009 at 12:19 PM, Christian Edward Gruber wrote: I'm already on it. Nice! Please post your impressions here or at a blog. :)

Re: Java support added to Google AppEngine

2009-04-08 Thread Christian Edward Gruber
apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber christianedwardgru...@gmail.com http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

Re: RSS Rome

2009-03-26 Thread Christian Edward Gruber
stablished with the first call to element() and is maintained across subsequent calls. I can't figure out how to solve this. I need some help urgently. Thanks in advance. Christian Edward Gruber e-mail: christianedwardgru...@gmail.

Re: Tapestry4e - New free eclipse plugin for Tapestry 5

2009-03-22 Thread Christian Edward Gruber
-- Howard M. Lewis Ship Creator Apache Tapestry and Apache HiveMind - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-ma

Re: Tapestry4e - New free eclipse plugin for Tapestry 5

2009-03-22 Thread Christian Edward Gruber
nds, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional comma

Re: Tapestry4e - New free eclipse plugin for Tapestry 5

2009-03-22 Thread Christian Edward Gruber
egards, Juan M Salamanca - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: h

Re: New to Tapestry- Lots of questions sorry!

2009-03-20 Thread Christian Edward Gruber
can do with HTML, CSS and JavaScript you can do with Tapestry. Tapestry deals with the server side of things, but also helps with some JavaScript issues, specially AJAX. -- Thiago --------- To unsubscribe, e-mail: users-unsubscr...@tape

Re: [T5] How to tackle memory leak problem (Perm Gem Out of Space)

2009-03-17 Thread Christian Edward Gruber
Christian Edward Gruber < christianedwardgru...@gmail.com> wrote: Your behaviour could simply be that the defaults in JRockit are set such that you get more permgen space, or that the space is used more efficiently. In such a case, you're masking the problem, not resolving it. I b

Re: [T5] How to tackle memory leak problem (Perm Gem Out of Space)

2009-03-16 Thread Christian Edward Gruber
That's funny, since jrockit is recommended for deployment, not development (by BEA anyway). I'd be careful. We got some crazy garbage collection behaviour on that VM before (using BEA portal, not T5). Your behaviour could simply be that the defaults in JRockit are set such that you get

Re: T5: passing a form in the URL?

2009-03-09 Thread Christian Edward Gruber
Technically, you should be able to use the normal encoding of the form tag. http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4 What I don't know is whether T5 will consume it. Christian On Mar 9, 2009, at 8:45 PM, Angelo Chen wrote: question is, can we tell t:form to use GET inste

Re: T5: passing a form in the URL?

2009-03-09 Thread Christian Edward Gruber
L--tp22412124p22412124.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Chris

Re: [DISCUSS] JavaScript, Degradation, Page Load, Script Placement

2009-02-27 Thread Christian Edward Gruber
ist. It would amount to a page refresh, and on some browsers not even that, since the browser would cache the page since you're not going anywhere. So for non-js or js-disabled clients, you need a real URL. christian. Christian Edward Gruber e-mail: christianedwardgru...@gmail.

Re: [DISCUSS] JavaScript, Degradation, Page Load, Script Placement

2009-02-27 Thread Christian Edward Gruber
I think some actual hard numbers would help with this. If an example page renders one way with js at the bottom, and another way with js at the top, these can be timed and compared. If real-world performance differences are at an acceptable minimum, then it's fine. But the fact that "top

Re: T5: Quickstart archetype not working

2009-02-26 Thread Christian Edward Gruber
at profiles would be active in a default execution of maven. You might then see what profiles are active so you can target your search. Christian. On 26-Feb-09, at 09:55 , Massimo Lusetti wrote: On Thu, Feb 26, 2009 at 3:36 PM, Christian Edward Gruber wrote: Ok, the problem here h

Re: T5: Quickstart archetype not working

2009-02-26 Thread Christian Edward Gruber
Hi Massimo, Ok, the problem here has nothing to do with snapshots or maven acting non-deterministically. It's that you haven't provided a groupId, artifactId, and java package for your quickstarted project. You're running this in batch-mode, for reasons I don't understand, unless yo

Re: T5: Quickstart archetype not working

2009-02-25 Thread Christian Edward Gruber
That way I never get snapshots unless I'm explicitly allowing them. Can you provide the full command-line, and I'll try it out on an empty local repo and see what I get? Christian. On 25-Feb-09, at 12:05 , Massimo Lusetti wrote: On Wed, Feb 25, 2009 at 5:46 PM, Christian Edward Gruber

Re: T5: Quickstart archetype not working

2009-02-25 Thread Christian Edward Gruber
2009 at 5:35 PM, Christian Edward Gruber wrote: This shouldn't be true as of 2.0.9, what with the plugin lock-down, unless you're using version ranges or snapshot versions. The maven guys have had their problems, but they're sorting it out. What does "plugin lock-

Re: T5: Quickstart archetype not working

2009-02-25 Thread Christian Edward Gruber
uch a nightmare that you can get different results when you force it to re-download modules. Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail:

Re: T5: Intellij 8.1 and template live reloading

2009-02-12 Thread Christian Edward Gruber
rs-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/ - To unsubscribe, e-mail: use

Re: T5 Question: how to access a parameter defined in parent component(not container) in 5.1.0.0

2009-02-12 Thread Christian Edward Gruber
eMind - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gr

Re: T5 Question: how to access a parameter defined in parent component(not container) in 5.1.0.0

2009-02-12 Thread Christian Edward Gruber
- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org Christian Edward Gruber e-mail: christianedwardgru...@gmail.com weblog: http://www.geekinasuit.com/

Re: Agile 2009

2009-02-11 Thread Christian Edward Gruber
9, at 21:18 , Howard Lewis Ship wrote: Ok, I'm in as "hlship" ... see if you can add me to the proposal. Great idea, thanks! On Wed, Feb 11, 2009 at 6:06 PM, Christian Edward Gruber wrote: That's awesome, Howard. I'll send an off-list message on getting signed up to t

Re: Agile 2009

2009-02-11 Thread Christian Edward Gruber
ules undermines that), but I do practice the principles of an agile developer, to the best of my knowledge. In any case, I'm glad this is being covered. On Wed, Feb 11, 2009 at 12:00 PM, Christian Edward Gruber wrote: I just proposed a session for Agile2009 on using Tapestry 5 in an a

Agile 2009

2009-02-11 Thread Christian Edward Gruber
I just proposed a session for Agile2009 on using Tapestry 5 in an agile development context, focusing on its rapid development capabilities (reloading, etc.) it's strong support for clean layers, no wasted code, and inversion-of-control. I thought I'd let the lists know. If anyone wants t

Re: Site security

2009-02-11 Thread Christian Edward Gruber
admin side(very restricted), both on the same server. Will this still solve my issue if I use 2 webservers or will I need 2 separate servers? --James -Original Message- From: Christian Edward Gruber [mailto:christianedwardgru...@gmail.com] Sent: February-10-09 7:45 PM To: Tapestry

Re: Site security

2009-02-10 Thread Christian Edward Gruber
certain IP range to log into the site, however some people need to use the site from laptops on the road. What is the best way to accomplish this? I was thinking through the mac address of the machine maybe or something of that nature? Thanks, --James Christian Edward Gruber

  1   2   >