Re: T5.3.8 ClassNotFound error ONLY when running on a virtualized server?!

2016-01-19 Thread Jon Williams
Dear Mr. Skanky The current release version of Tapestry is 5.4 (not 5.8) Your assertion is incorrect (with regards to Tap 5.4), it works fine for me in the google app engine. What sort of errors are you getting? On Mon, Jan 18, 2016 at 10:27 PM, A G wrote: > Fyi, Tapestry 5.8 does not work on G

Re: Session Cookie Remains after Tapestry Security Logout

2014-11-03 Thread Jon Williams
369... On Mon, Nov 3, 2014 at 12:39 PM, Harry Zhou wrote: > Kalle, > > Thank you so much for the quick reply, based on which we have done the > following: > > 1. We surveyed several Tapestry sites (including the hotelbooking demo app) > and confirmed that leaving the cookie after session invalid

Re: Tynamo tapestry-security 0.6.0 in a v2.5 servlet container

2014-10-02 Thread Jon Williams
hreads in GAE which > is why scheduledExecutors and things like that are not white listed. If you > can isolate the problem further and dig up the reason for the failure, I'll > be happy to assist getting tapestry-security running on GAE. > > Kalle > > On Sun, Sep 14, 2014 at 3

Tynamo tapestry-security 0.6.0 in a v2.5 servlet container

2014-09-14 Thread Jon Williams
Hi Kalle, (& y'all) I see your tapestry-security 0.6.0 has a dependency on the v3.0 servlet spec. I know 0.5.1 had it too, because I have an app running with it in a v3 servlet container that works fine and dandy. I am trying to work tapestry-security 0.6.0 into another app that's in production o

Re: beta15 breaks GAE

2014-07-30 Thread Jon Williams
java.io.File is the culprit On Wed, Jul 30, 2014 at 2:02 PM, Lance Java wrote: > Really? I'm surprised tapestry references java.util.File. Poor form if you > ask me as it goes against j2ee principles. > On 30 Jul 2014 18:42, "Jon Williams" wrote: > > &

beta15 breaks GAE

2014-07-30 Thread Jon Williams
hi *beta15 breaks GAE* ResourceTransformerFactoryImpl creates a File for the asset cache directory. This breaks my app in GAE, since creating a new File is prohibited. Is there a work around to this? Can I turn off the server side asset (File) cache?

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
t; > public static void > contributeApplicationDefaults(MappedConfiguration > configuration) { > > configuration.add(SymbolConstants.JAVASCRIPT_INFRASTRUCTURE_PROVIDER, > "jquery"); > } > > Have I missed something? > > On 27 May 2014, a

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
1 other thing, you will have to Import the bootstrap.js into your ui class to get it all working. @Import(library = {"context:bootstrap/js/bootstrap.js"}) public class Index { On Mon, May 26, 2014 at 4:59 PM, Jon Williams wrote: > it's easy to custom setup Tapestry 5.4 to th

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-05-26 Thread Jon Williams
it's easy to custom setup Tapestry 5.4 to the latest bootstrap version, with all the widgets. make the contribution to the environment like so: configuration.add(SymbolConstants.BOOTSTRAP_ROOT, "context:bootstrap"); then, make a bootstrap distro directory in your webapp context. then put a a ful

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-26 Thread Jon Williams
ion(){ $('a[data-text]').each(function(){ $(this).attr('data-text', "Here's something interesting over at wwps.ca"); }); $.getScript('http://platform.twitter.com/widgets.js'); }); Thanks for having a look. On Sat, Apr 26, 2014 at 10:3

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-25 Thread Jon Williams
copyright © 2014 wild west pool specialties. all rights reserved. On Fri, Apr 25, 2014 at 10:13 AM, Howard Lewis Ship wrote: > Is there any possibility that there are two different Alerts components on > the page? > > On Thu, Apr

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-24 Thread Jon Williams
Still broken in the beta5. Pretty sure this is a bug, i'll make a JIRA issue.

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-14 Thread Jon Williams
Thanks for the style pointers Thiago. Unfortunately not a fix, the problem remains the same. On Mon, Apr 14, 2014 at 6:24 AM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Fri, 11 Apr 2014 09:39:05 -0300, Jon Williams < > williams.jonat...@gmail.com> wrote

Re: Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-13 Thread Jon Williams
you for any forthcoming illuminations. On Fri, Apr 11, 2014 at 6:39 AM, Jon Williams wrote: > hi, > > Why is my alerts component rendering all alerts twice, first in order then > once again in reversed order? > > w/ tap 5.4 beta 3, my tapestry alerts component is render

Re: How to reset a form enclosed in a zone from the java-side handler?

2014-04-12 Thread Jon Williams
lues to whatever defaults you want. > > Geoff > > On 12/04/2014, at 3:24 AM, Jon Williams wrote: > > > I have a form enclosed in a zone. When I submit the form with my register > > button, it's being handled by method: > > private Object onSelectedFromRegister

How to reset a form enclosed in a zone from the java-side handler?

2014-04-11 Thread Jon Williams
I have a form enclosed in a zone. When I submit the form with my register button, it's being handled by method: private Object onSelectedFromRegister() { ... return zone; } The default behaviour seems to be that when the zone gets re-rendered the UI form fields retain their submitted post value

Why is my tap5.4beta3 Alerts Component rendering all alerts twice?

2014-04-11 Thread Jon Williams
hi, Why is my alerts component rendering all alerts twice, first in order then once again in reversed order? w/ tap 5.4 beta 3, my tapestry alerts component is rendering all the org.apache.tapestry5.alerts.Alert objects twice. 1st in the correct order, and then once again in the reverse order. So

Re: Injection related experiences

2014-04-05 Thread Jon Williams
one other thing occurs to me. you should also make sure you are using the Tapestry @Inject annotation and NOT the javax.inject one. On Sat, Apr 5, 2014 at 1:26 PM, Jon Williams wrote: > your findings are a bit odd. > > case 1) should work. > eg. > " > public class Use

Re: Injection related experiences

2014-04-05 Thread Jon Williams
your findings are a bit odd. case 1) should work. eg. " public class UserServiceImpl implements UserService { @Inject private DomainObjectService domainObjectService; " case 2) i never use case 2) because it's handled by your case 1). case 3) Constructor injection is also viable as you

Re: Navigation control in Layout component not rendering properly 5.4beta3 quickstart app

2014-03-16 Thread Jon Williams
this is a fix @Import(stylesheet = {library = {"context:mybootstrap/dist/js/bootstrap.js"}) public class Layout... On Sun, Mar 16, 2014 at 10:04 AM, Jon Williams wrote: > Hi, > > I am running the 5.4 beta 3 tapestry quickstart app. > The navigation on the UI is not rend

Navigation control in Layout component not rendering properly 5.4beta3 quickstart app

2014-03-16 Thread Jon Williams
Hi, I am running the 5.4 beta 3 tapestry quickstart app. The navigation on the UI is not rendering properly. I am new to bootstrap, so I was hoping the quickstart bootstrap would be all working. from Layout.tml...

Re: No suitable driver found for... hibernate enabled tapestry quick start 5.4 beta 3

2014-03-15 Thread Jon Williams
, Mar 15, 2014 at 2:15 PM, Jon Williams wrote: > Hi, > > I got the 5.4 beta 3 version of the tapestry quick start app working here. > Looks nice with the bootstrap ui. > > I just tried enabling Hibernate for this simple project, created a simple > entity and I'm s

No suitable driver found for... hibernate enabled tapestry quick start 5.4 beta 3

2014-03-15 Thread Jon Williams
Hi, I got the 5.4 beta 3 version of the tapestry quick start app working here. Looks nice with the bootstrap ui. I just tried enabling Hibernate for this simple project, created a simple entity and I'm seeing a sql exception No suitable driver error on bootstrapping the app. My HibernateSessionS

Re: an old chestnut - how to disable form inputs after submit pressed

2014-03-15 Thread Jon Williams
Wrap the input fields and other stuff into a and give it the disabled="disabled"attribute. Example http://jsfiddle.net/7qGHN/ On Sat, Mar 15, 2014 at 11:28 AM, Jon Williams wrote: > http://www.codehooligans.com/2006/06/04/convert-forms-to-printable-content/ > > > On S

Re: an old chestnut - how to disable form inputs after submit pressed

2014-03-15 Thread Jon Williams
http://www.codehooligans.com/2006/06/04/convert-forms-to-printable-content/ On Sat, Mar 15, 2014 at 11:25 AM, John wrote: > that would be even better > > thanks for the tip > - Original Message - > From: Jon Williams > To: Tapestry users > Sent: Saturday, M

Re: an old chestnut - how to disable form inputs after submit pressed

2014-03-15 Thread Jon Williams
Or do you want to toggle all the form elements to Read only after the user clicks the submit?

Re: an old chestnut - how to disable form inputs after submit pressed

2014-03-15 Thread Jon Williams
You can accomplish this with a mixin ClickOnce.java @Import(library="context:js/clickonce.js") public class ClickOnce { @Inject private JavaScriptSupport javaScriptSupport; @InjectContainer private ClientElement clientElement; @AfterRender public void afterRender() {

Re: Tapestry App Not booting right - dependency tree help

2014-03-02 Thread Jon Williams
RFLMAO ..."take your (cross-dressing?) dictatorship and your alien craft and your wardrobe and goto mars" ..."I'm not talking about tapestry." On Sun, Mar 2, 2014 at 7:04 PM, nhhockeyplayer nashua < nhhockeypla...@hotmail.com> wrote: > > > all I am after is a build tree that can be checked out,

Re: Tapestry App Not booting right - dependency tree help

2014-03-02 Thread Jon Williams
Seeing as this thread is way off topic already... Software is writing. Any one with 5 or 6 years of basic schooling can right. Like anything, the more you right, the better you get. It's stupid to state that American's are better writers than the rest of the world. There's no evidence of that. Als

Fwd: Tapestry 5.4-beta-2 quickstart app

2014-01-22 Thread Jon Williams
an mvn:run the jetty plugin & walla, the 5.4-beta-2 quickstart is up and running. -- Forwarded message -- From: Jon Williams Date: Sun, Jan 19, 2014 at 2:58 PM Subject: Tapestry 5.4-beta-2 quickstart app To: Tapestry users Hi, I want to: mvn archetype:g

Tapestry 5.4-beta-2 quickstart app

2014-01-19 Thread Jon Williams
Hi, I want to: mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org for *5.4-beta-2* tapestry which, I've found sources for the archetype here: https://repository.apache.org/content/groups/staging/org/apache/tapestry/quickstart/5.4-beta-2/ Is it possible to generate the 5.4-bet

Re: Tapestry 5.1 and ajax callback

2013-12-11 Thread Jon Williams
Servlets are so 1997. http://en.wikipedia.org/wiki/Java_Servlet On Wed, Dec 11, 2013 at 2:47 AM, Lance Java wrote: > In a tapestry app, you should NEVER need a servlet (unless integrating a > servlet based 3rd party library). > > There are far better solutions provided out of the box by Tape

Re: IndieGogo campaign: a month of Apache Tapestry 5

2013-11-26 Thread Jon Williams
Ok Emmanuel, I think u've made your point. U don't like Tapestry or Mr 'Ship. Those parts are understood. You don't have to keep repeating yourself for our benefit. We're all grown ups here. We can live and die by our own hands without your help. Thanks for sharing your opinion, there may have bee

Re: The Rise and Fall of Tapestry

2013-11-22 Thread Jon Williams
Great. Let's hear what all your Anonymous Cowards have to say. On Fri, Nov 22, 2013 at 1:03 PM, Emmanuel Sowah wrote: > Hi guys, > > To my huge surprise, I've received many contributions to my upcoming blog > post and I want to thank all of you that did that. Of course I welcome > some more. S

Re: Web frameworks

2013-11-20 Thread Jon Williams
Dear Mr. FUD Kindly elucidate with a link to your "recent interview" with Mr. Ship. Cheers On Wed, Nov 20, 2013 at 3:04 PM, Emmanuel Sowah wrote: > Guys, > > Don't listen to Thiago, he is just blowing hot air. Tapestry is no more > relevant, as can be seen in the article: > > http://zeroturna

Re: Question about .less to .css transformation T5CONDUIT library for Tapestry 5.3.7

2013-11-10 Thread Jon Williams
ironment (e.g. OS, servlet > container). > > BTW, does your browser seems to apply generated stylesheets? > > Best regards, > Cezary > On 4 Nov 2013 19:45, "Jon Williams" wrote: > > > Hi Tapsters. > > > > Sorry for posting to the Tap users

Re: Question about .less to .css transformation T5CONDUIT library for Tapestry 5.3.7

2013-11-04 Thread Jon Williams
Just checked and I see the same problem running with t5conduit *0.7* also. On Mon, Nov 4, 2013 at 1:44 PM, Jon Williams wrote: > Hi Tapsters. > > Sorry for posting to the Tap users list, but there's hardly any > documentation available for this. t5conduit SNAPSHOT 0.8 seems to

Question about .less to .css transformation T5CONDUIT library for Tapestry 5.3.7

2013-11-04 Thread Jon Williams
Hi Tapsters. Sorry for posting to the Tap users list, but there's hardly any documentation available for this. t5conduit SNAPSHOT 0.8 seems to be misbehaving a bit for me. I have a general question regarding t5conduit-0.8SNAPSHOT. Kindly ignore this message if you're not interested in .less to .c

uk.org.cezary.t5conduit question

2013-11-04 Thread Jon Williams
This message is regarding the T5Conduit tapestry 5.3 less library. Anyone with t5conduit experience (0.8 SNAPSHOT)... Is it possible to get the generated style sheet to be a .css? It seems from the minimal documentation that this is supposedly the default behavior. Currently for me, i'm seeing .

Re: Pro / Contra: Splitting The Project

2013-10-11 Thread Jon Williams
yes i do that. pretty standard i think. Cheers Jon On Fri, Oct 11, 2013 at 1:30 PM, Martin Kersten wrote: > Hi, > >I am sitting in front of 1.5 MB of sources and I think about splitting > the project in half. One for the services + entities + utilities the rest > for the web fun. > > It wo

Re: move tml and properties files into coresponding packges where the java files are

2013-09-10 Thread Jon Williams
Hi Will, This is not necessary if you are using a decent IDE to program w/. My tapestry project files are distributed in my file system as per the standard approach. In Idea, selecting "Project" view will merge the various files into a single tree view of your package structure. Jon On Tue, Sep

Is it possible to get a new Hibernate session and

2013-09-02 Thread Jon Williams
quoting from the wiki... https://wiki.apache.org/tapestry/Tapestry5AvoidingLazyInitializationExceptions "*To really solve Lazy Initialization Exceptions, you need to find out why the Hibernate session closed before you wanted it to, and/or you need to get a new session reattach the object."* * * *

Re: What do we need to learn to use Tapestry 5.4 ?

2013-08-17 Thread Jon Williams
Oh no Martin! ya jinxed it. Now we're gonna have to give Captain 'Ship and his merry men another 6 months. ;-) On Sat, Aug 17, 2013 at 3:27 PM, Martin Kersten wrote: > Wenn is 5.4 planed to hit the road? > > > 2013/8/17 Muhammad Gelbana > > > As far as I understand. T5.4 will have a major refa

Re: Bootstrap 3 and tapestry 5.4

2013-07-29 Thread Jon Williams
That sounds good Mr 'Ship. It's not Mr. 'Ship's fault that twitter chose to change up things in bootstrap 3. It would be a lot of work i would think just to maintain backwards compatibility to now outdated v2 api. & Of course obviously v2 is missing features of 3. Also Mr. 'Ship says he's adding e

Re: DefaultTreeModel doesnt user encoder to get the node

2013-07-14 Thread Jon Williams
how-to maven install the github stitch master zip... http://www.java-forum.org/web-tier/151331-tapestry-einbinden-componentlibraries.html auf Deutschland!http://translate.google.com On Sun, Jul 14, 2013 at 6:33 AM, Boris Horvat wrote: > Component librarybut I can just copy the code as well s

Re: Ways to do page refresh

2013-06-28 Thread Jon Williams
If you mean you want a non-ajax refresh of an entire page you ought to to read http://tapestry.apache.org/page-navigation.html. Hope that helps. On Fri, Jun 28, 2013 at 6:41 PM, newbie newbie wrote: > Hi, > I would like to do a page refresh in my program. I know how to do it with > zone, using

Re: Problems with accessing my SSO from the service layer. request related NPE.

2013-06-27 Thread Jon Williams
Hi, My problem has gone away. A short FYI on how I got past this problem... First I tried adding a new request Builder method in QaModule using the shadowbuilder service that would build my TestRequest. But that didn't work because of a Request service implementation collision with predeclared (in

Problems with accessing my SSO from the service layer. request related NPE.

2013-06-26 Thread Jon Williams
Hi, For background info... I'm running 5.3.7 tapestry release. I'm trying to get a handle to a SSO from inside a service class... (warning...code failure ensues.) I have an SSO "Visit" here's the SSO's "injection" from my service class "UserServiceImpl"... private Visit getVisit() { R

Re: Minimum Heap Size to run basic Tapestry 5 archetype example smoothly

2013-05-23 Thread Jon Williams
per month > > > > > > > > > > > > On Fri, Apr 26, 2013 at 9:01 PM, Kalle Korhonen > > > > wrote: > > > > > > > > > Tektonic's VPS systems have consistently had most amount of memory > > for > > > > the > >

Re: dwr java chat demo in t5

2013-05-22 Thread Jon Williams
Never mind Lance, Seems I have an error in my configuration. I think I'll be able to figure it out myself. thanks anyhow Jon On Wed, May 22, 2013 at 6:10 PM, Jon Williams wrote: > Hi Lance, > > This email thread caught my eye so I went and got your example app. > It seems to

Re: dwr java chat demo in t5

2013-05-22 Thread Jon Williams
Hi Lance, This email thread caught my eye so I went and got your example app. It seems to be running, in a fashion. However, I'm seeing NPE's at runtime... 1 caveat, maybe pertinent. I had to add a dependency to the pom to get a good build... org.eclipse.jetty jet

Re: dependencies of tapestry5

2013-05-07 Thread Jon Williams
If you follow the instructions at tapestry.apache.org getting started page you can quickly create a standard tapestry prototype app using maven. Once you've done the initial configuration steps, and it builds, look in the lib directory of your build to see all the dependencies. On Tue, May 7, 201

Re: Minimum Heap Size to run basic Tapestry 5 archetype example smoothly

2013-04-28 Thread Jon Williams
ood enough for > > running small T5 apps: http://tektonic.net/virtual-servers.html > > > > Kalle > > > > > > On Fri, Apr 26, 2013 at 3:08 PM, Jon Williams > > wrote: > > > > > Weill I went from $9/mo all the way up to $30/mo. Tapestry is now >

Re: Minimum Heap Size to run basic Tapestry 5 archetype example smoothly

2013-04-26 Thread Jon Williams
ith VisualVM. I'd say you want > at least 256MB, with 128MB of PermGen. > > > On Fri, Apr 26, 2013 at 3:04 PM, Jon Williams > wrote: > > > I'd like to know the Minimum Heap Size req'd to run the basic Tapestry 5 > > archetype example smoothly. > >

Minimum Heap Size to run basic Tapestry 5 archetype example smoothly

2013-04-26 Thread Jon Williams
I'd like to know the Minimum Heap Size req'd to run the basic Tapestry 5 archetype example smoothly. I am running my war on Jetty in a hosted environment. Currently I'm running in to issues with 64MB of heap. I don't have plans to make this app behave much beyond a static website. And I'd like to

Jetbrains Idea editor doesn't like tag

2013-04-16 Thread Jon Williams
Hi, I'm using Tapestry 5.3.6 & Jetbrains Idea 12 Just wondering if any else has this same problem/oddity in their Idea development environment. Here's the template for my simple component... http://tapestry.apache.org/schema/tapestry_5_3.xsd"; xmlns:p="tapestry:parameter"> TES

Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Jon Williams
I'm working in Idea 11, but I doubt this has changed in 12... Using this method, you will NOT need to execute maven from the command line. It's all in Idea. Does your application have a pom.xml? If so you can 1. Create a new project, then create a new module by importing your maven config (pom.xml

5.4-alpha-4 build error

2013-04-07 Thread Jon Williams
Hi, I'm new to gradle. I've gitted the tapestry-5 (approx. 1 hr ago). trying to build using gradle. So far I've tried getting in to the project root and executing "gradle". Sadly I see StackTrace. (included below) I'm new to Goovy. Knowing next to nothing I'd say this looks like a Groovy error to

Re: Tapestry 5 book is here

2013-01-25 Thread Jon Williams
pdates in the last weeks. Didn't you get them? > > > On Fri, Jan 25, 2013 at 8:20 PM, Jon Williams > wrote: > > > Will owners of the early access PDF get a free update to your completed > PDF > > Igor? > > > > > > On Fri, Jan 25, 2013 at 9:54 AM

Re: Tapestry 5 book is here

2013-01-25 Thread Jon Williams
Will owners of the early access PDF get a free update to your completed PDF Igor? On Fri, Jan 25, 2013 at 9:54 AM, Lenny Primak wrote: > This is a required reading for anybody working with tapestry. Great job!!! > > On Jan 25, 2013, at 4:20 AM, Igor Drobiazko > wrote: > > > Dear Tapestry commun

Re: [ANN] JumpStart 6.5.4 - fixes populating the database

2013-01-17 Thread Jon Williams
Hi Geoff, I encountered a couple of glitches following your latest installation instructions. Both hsqldb-2.2.9.jar and sqltool-2.2.9.jar have invalid zip headers. I replaced these 2 files with the latest 2.2.9 from HSql and everything is working so far. Thanks Jon On Thu, Jan 17, 2013 at 8:56

Re: Tapestry Book purchase question

2012-11-14 Thread Jon Williams
Indegogo site had for $55 the pdf + hardcopy. But that site has expired. Where do I go now to order the pdf & book bundle? thanks On Tue, Oct 30, 2012 at 7:44 AM, Nicolas Barrera wrote: > Thank you Igor, > > I 've already purchased it, > > is it still on EAP? it seems so finished and complete!

Re: Tapestry website down?

2012-10-15 Thread Jon Williams
Negative. Working fine here in Canada. On Mon, Oct 15, 2012 at 11:43 AM, Russell John-Baptistr wrote: > Is the tapestry.apache.org site down? > > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additiona

Re: Official jboss support

2012-06-12 Thread Jon Williams
ctions work fine - I can't know differently if >> you don't tell me. So Jon, for the benefit of all of us, please post >> specifics that can be acted on and I will see what I can do. Much more >> useful than a rant. >> >> Geoff >> >> On Tuesday, 29 M

Re: Official jboss support

2012-05-28 Thread Jon Williams
Well, the last version of the Jumpstart supposedly worked on JBoss also. Press 1 button, CPU cycles spin for 5 minutes, then your app is pooped out into the appropriate JBoss directory. At this point you are told by the directions that's all there is to do, proceed with the next stage of your proje

Re: Tapestry 5 vs Play! 2

2012-05-04 Thread Jon Williams
EE Java has always included some crap, always will. It's evolving constantly for sure. Oracle has proven that this is their intent to keep making it better. They are doing this for 1 reason, because no matter how you break it down all this truely means to them is more Oracle DB licences (which are

Re: [ANNOUNCE] Tapestry5-Portlet

2012-04-17 Thread Jon Williams
OMG!!! I guess this means I have to start working again. It's great and all, but I got this real comfy dent happening in my couch that I'm hesitant to abandon. Seriously, great work guys, you just upped my game by an order of magnitude. thanks JW 2012/4/17 François Facon > We would be honored

Re: What's new in Tap5.2.x

2012-04-05 Thread Jon Williams
That's easy. Your Tap 4 code, it goes in the toilet, flush it bye bye. As for what's included in the Tap 5 releases simply read the release notes for each of those releases. Peace & Happy Hunting. On Thu, Apr 5, 2012 at 8:02 AM, TechniciuM wrote: > Hi there, > my company is testing the possibil

Re: Dynamic CSS depending on URL

2012-03-29 Thread Jon Williams
Hey Y'all I was reading the thread and you know another prime use case is sizing images for mobile or web using css alone. We need to be able to do this. I could use use it starting yesterday. Just so you know, Jon On Thu, Mar 29, 2012 at 2:20 PM, Juan Alba wrote: > Thanks Lance Again. > > I h

Re: Tapestry TreeGrid

2012-02-18 Thread Jon Williams
I'd just like to say this thread rocks and i love this list. Peace Y'all Jon On Sat, Feb 18, 2012 at 11:05 AM, George Christman wrote: > Thanks Lance, I'll read through those articles this weekend. I'd love to > learn more about these things so I wouldn't need to rely so heavily on the > support

Which Portlet Container?

2011-12-22 Thread Jon Williams
Hi Tapesafarians, I want to start using the new portlet shizzle. I want a portlet container that has minimal BS and isn't 10 Million lines of code. What should I be using? Danke

Re: Questions with Tapestry from a GWT developer's perspective

2011-12-01 Thread Jon Williams
Absolutely simple to make your own components with custom css. Hooks for jQuery included too. Go boldly forward Xman! On Fri, Dec 2, 2011 at 1:44 AM, Xybrek wrote: > Hello, > > I am really new to Tapestry, I just want to ask some questions before I > embark deeper with the framework (although I

Re: Tapestry5 Anchor Usage for Navigation

2011-11-30 Thread Jon Williams
Why are you using Dojo? That crap got jettisoned after Tapestry 4. Use JQuery extension for Tapestry 5 IMO. Peace Jon On Wed, Nov 30, 2011 at 2:16 PM, C.Rigby wrote: > Thanks! This looks interesting and I'll definitely check it out. One > issue > I initially see with it is the demo's URL (on

Re: Tapestry Laptop Stickers

2011-11-28 Thread Jon Williams
irt. How's that > sound? > > I'm not sure what's up with your fascination with the ascii art logo. > > On Mon, Nov 28, 2011 at 11:41 AM, Jon Williams > wrote: > > Howard, you should do a limited run of stickers with the ASCII logo from > > the build

Re: Tapestry Laptop Stickers

2011-11-28 Thread Jon Williams
Howard, you should do a limited run of stickers with the ASCII logo from the build. On Mon, Nov 28, 2011 at 12:07 PM, Howard Lewis Ship wrote: > I still have a backlog of people waiting for T5 Laptop Stickers ... > don't worry, I haven't forgotten you! I hope to get everything > packaged up and

Any Griffon users?

2011-10-23 Thread Jon Williams
I want to do a swing app. Is Griffon OK? Anyone?

Re: Tapestry 5 Training by HLS at Skills Matter, London

2011-09-30 Thread Jon Williams
This reads like a dream. I can't come but if you're ever in Canada I'm there. You are a very smart cookie Howard. Respect is earned and you've got it in spades. What IDE are you using for this course? On Fri, Sep 30, 2011 at 12:27 PM, Howard Lewis Ship wrote: > I'll be headed back to London for m

Re: Textarea with character count?

2011-09-28 Thread Jon Williams
Oh this brings back some bad memories for me. Try doing this with Tapestry 4's Dojo.js Not fun. RANT OFF On Wed, Sep 28, 2011 at 1:58 PM, Bob Harner wrote: > There's some easy-to-modify source code for this at > > http://tinybits.blogspot.com/2009/04/enforce-max-length-on-textareas-and_15.html >

Who can recommend a hosting plan with jdk1.6, resin, dedicated IP addy, 6 domains, web admin interface & shell access?

2011-09-28 Thread Jon Williams
Hi y'all, Who can recommend a hosting plan with jdk1.6, resin, dedicated IP addy, 6 domains, web admin interface & shell access that isn't in India or Tibuktoo? OFF TOPIC I KNOW. I trust you guys/gals. Opinions?

Re: Any interest in starting a Tapestry Meetup in the SF-Bay area?

2011-09-27 Thread Jon Williams
Sh*t dudes. I left SF because there is no decent Tapestry work there. Good luck getting your ball rolling. :-) Send a link if you're hiring. I'm crazy enough to move back to the US for Tapestry. On Tue, Sep 27, 2011 at 6:33 PM, Kalle Korhonen wrote: > Count me in. > > Kalle > > > On Tue, Sep 27,

Re: Meap Tapestry 5 book cancelled?

2011-09-22 Thread Jon Williams
This is terrible news. That was some fine technical writing. Very disappointed. On Thu, Sep 22, 2011 at 10:24 AM, Lenny Primak wrote: > Damn. I was looking forward to the rest of the book. Why did it happen. > Does anybody know? > > > > On Sep 22, 2011, at 12:10 PM, cqasker wrote: > > > I also

Problems in the SVN trunk

2011-09-13 Thread Jon Williams
Hi Y'all, I am trying to build the Tapestry trunk in Idea and am running into 2 issues. 1. Compile time checking can't find selenium.getCssCount method. 2. There is a circular dependency between tapestry-ioc and taperstry-json. thanks Jon

2 test failures building tapestry-core trunk

2011-08-12 Thread Jon Williams
Hi Tapestrians, I've been trying over the last few days to gradle build the tapestry5 svn trunk. I see that Jenkins is happy with whats in the trunk. However, I can't get a clean build as I'm seeing 2 tests fail in tapestry-core Anyone else seeing these failures? thanks Jon in the terminal gradl

Re: SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread Jon Williams
version of firefox do you have? > the current selenium version in t5 is compatible with 3.6 but not with > firefox 4 > and firefox 5. > > Cheers, > Dragan Sahpaski > > > > On Sun, Aug 7, 2011 at 10:39 PM, Jon Williams > wrote: > > > Hi, > > > &g

SVN trunk, gradle build hangs @ > Building > :tapestry-beanvalidator:test

2011-08-07 Thread Jon Williams
Hi, I am attempting to build the SVN trunk. When gradle build gets to the point where it is indicating status "> Building > :tapestry-beanvalidator:test" Mozilla opens a new tab, with no content, and the build hangs. A wild guess, I need to do something to setup selenium locally? What else could

Re: Problem with the idea gradle task

2011-07-29 Thread Jon Williams
nusGeneratedDir > } > > > > On Fri, Jul 29, 2011 at 2:46 PM, Chris Poulsen > wrote: > > As far as I can remember someone committed a fix for this exact issue a > > while ago. > > > > Doing a "gradle build" before using the idea task was a work-around

Re: Problem with the idea gradle task

2011-07-29 Thread Jon Williams
I have the same problem w/"gradle idea" using Gradle 1.0-milestone-3. On Fri, Jul 29, 2011 at 1:51 PM, Howard Lewis Ship wrote: > I haven't tried milestone-4; I'm using milestone-3 and I think I'll > stick there for a bit! > > On Fri, Jul 29, 2011 at 1

Problem with the idea gradle task

2011-07-29 Thread Jon Williams
Hi Tapestrians, Working with the SVN trunk I am unable to gradle the idea project into existence. I'm brand new to gradle, am I missing something? or is the idea task indeed broken? (using Gradle 1.0-milestone-4) thanks cut and paste from the terminal below - Jon-Williamss-MacBoo

RE: Problems with 4.1.6 ExternalPages and back/forward button

2008-10-31 Thread Jon Williams
se.setHeader("Expires", "Mon, 06 Jan 1990 00:00:01 GMT"); . } I hope it helps. Cheers. Alejandro. -- Alejandro Scandroli - http://weblog.amneris.es/ Amneris: We build process-driven web applications. http://www.amneris.es On Thu, Oct 30, 2008 at 12:24 AM, Jon Williams &l

RE: Problems with 4.1.6 ExternalPages and back/forward button

2008-10-29 Thread Jon Williams
s and back/forward button There is a "preventBackButtonFix" attribute of shell that may help. Norman Franke Answering Service for Directors, Inc. www.myasd.com On Oct 29, 2008, at 5:19 PM, Jon Williams wrote: > Tapestry Version 4.1.6 Release > > I have Shell.disableCaching =

Problems with 4.1.6 ExternalPages and back/forward button

2008-10-29 Thread Jon Williams
Tapestry Version 4.1.6 Release I have Shell.disableCaching = true When I back & forward button in my browser to IExternalPages shouldn't ExternalService.service be invoked? It isn't, and I know this was not the case with Tapestry 4.0.*. I can back and forward and ExternalService.service is NOT inv

RE: [RELEASE] Tapestry 4.1.6

2008-09-11 Thread Jon Williams
The release is rendering generator meta info as SNAPSHOT. -Original Message- From: Marcus Schulte [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2008 12:01 PM To: Tapestry development; Tapestry users Subject: [RELEASE] Tapestry 4.1.6 Finally, I finished the 4.1.6 release. Rele

Tapestry 4.1.5 & 4.1.6 back & forward button behavior is screwy

2008-09-08 Thread Jon Williams
Hey Tapestria! I have a simple app where all 3 pages implement IExternalPage. In this app I've thrown everything except the kitchen sink into the headers to prevent page cacheing... (current time) However, in IE6, FF2&3 and Chrome I see the following. When I "back" & "forward" between