Re: Quartz for Tapestry5

2013-08-08 Thread Chris Cureau
Beautiful...and just what I needed too! Thanks! On Thu, Aug 8, 2013 at 10:02 AM, Dmitry Gusev dmitry.gu...@gmail.comwrote: FYI: https://github.com/anjlab/anjlab-tapestry-commons/tree/master/anjlab-tapestry-quartz -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: implementation of 'tapestry.hmac-passphrase

2013-08-03 Thread Chris Cureau
http://tapestry.apache.org/configuration.html#Configuration-tapestry.hmacpassphrase Hint: Don't change it once its set. On Aug 3, 2013 11:00 AM, Nikola Vulovic nivuk...@gmail.com wrote: i get this error message in log and in AlertManager (ClientDataEncoderImpl.java:61) - The symbol

tapestry-bootstrap repository issue

2013-07-03 Thread Chris Cureau
I got a strange error from Eclipse this morning when trying to add tapestry-bootstrap to my pom... ArtifactDescriptorException: Failed to read artifact descriptor for org.got5:tapestry5-jquery:jar:3.2.1: ArtifactResolutionException: Failure to transfer org.got5:tapestry5-jquery:pom:3.2.1 from

Re: tapestry-bootstrap repository issue

2013-07-03 Thread Chris Cureau
are Apache projects so their artifacts will certainly not be hosted on Apache's staging repo. Perhaps you need to first figure out which version of Tapestry5 you want to use. Kalle On Wed, Jul 3, 2013 at 6:38 AM, Chris Cureau cmcur...@gmail.com wrote: I got a strange error from Eclipse

Re: Can tapestry run on Android

2013-05-27 Thread Chris Cureau
Tapestry itself runs on a web container, like tomcat. The served pages will operate in chrome in android and probably firefox as well, though I haven't tested it there. You can also use jQuery mobile for added capabilities, but a dedicated project like tapestry-jQuery doesn't exist yet as far as

Stopping/Removing a job from PeriodicExecutor

2013-05-22 Thread Chris Cureau
Hi there! I currently have a project that is using a PeriodicExecutor to kick off processes on a regular basis. I need to expand on that so that I can stop a running job, reschedule the times, and remove the job completely from the PeriodicExecutor. Don't see any sort of code out there to do

Re: Tapestry 5.3.6 and Debian/ppc

2013-03-05 Thread Chris Cureau
exclusion groupIdorg.apache.tapestry/groupId artifactIdtapestry-ioc/artifactId /exclusion /exclusions mrg On Mon, Mar 4, 2013 at 1:27 PM, Chris Cureau cmcur...@gmail.com wrote: Michael, On the nose! tapestry-security depended on 5.3.4, but I am building on 5.3.6. Funny

Re: Tapestry 5.3.6 and Debian/ppc

2013-03-04 Thread Chris Cureau
directory). mrg On Mon, Mar 4, 2013 at 5:57 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Sun, 03 Mar 2013 13:48:01 -0300, Chris Cureau cmcur...@gmail.com wrote: Caused by: java.lang.**ClassNotFoundException: org.apache.tapestry5.ioc.**internal.util.LockSupport

Re: Trying to get tapestry-bootstrap running with 5.3.6

2013-02-08 Thread Chris Cureau
Tapestry-bootstrap needs tapestry 5.3.4. I just cloned the tapestry-bootstrap git repository and changed the dependency to 5.3.6. If there's a better way, please let me know! On Feb 8, 2013 8:12 PM, George Ludwig georgelud...@gmail.com wrote: I've been running in circles trying to make Eclipse

Re: Tapestry 5 book is here

2013-01-25 Thread Chris Cureau
I've been extremely happy with my book so far...Thanks for all your hard work, Igor! :) On Fri, Jan 25, 2013 at 3:20 AM, Igor Drobiazko igor.drobia...@gmail.comwrote: Dear Tapestry community, I'm glad to announce that the long awaited Tapestry 5 book is now available for purchase as

Re: date and time picker

2012-11-29 Thread Chris Cureau
I haven't found a ready-made tapestry component, but building up a component isn't too hard. Mobiscroll (http://mobiscroll.com) is a good option, as is jQuery TIme Entry (http://keith-wood.name/timeEntry.html) depending on your needs. On Thu, Nov 29, 2012 at 7:03 AM, John j...@quivinco.com

Re: breadcrumb trail component

2012-10-29 Thread Chris Cureau
https://github.com/argoyle/tapestry-breadcrumbs On Mon, Oct 29, 2012 at 10:10 AM, John j...@quivinco.com wrote: Hi, Is there a component to display a breadcrumb trail at the top of a page so users can navigate site structure they have followed? John

Re: Tapestry 5.3.2 autocomplete mixin not working

2012-09-25 Thread Chris Cureau
Hi! This may or may not be your issue, but f you are using tapestry5-jquery, you may have some issues with autocomplete unless you use t:mixins=jquery/autocomplete or disable Prototype first. Just a thought... On Wed, Sep 12, 2012 at 9:48 AM, djst da...@ctu.dk wrote: Hi there. I'm trying to

Re: hide primary key on call to edit form

2012-09-06 Thread Chris Cureau
You guessed right...I removed the onPassivate() method and all is well. Thanks! On Thu, Sep 6, 2012 at 10:36 AM, Lance Java lance.j...@googlemail.comwrote: Firstly, I would avoid session usage unless it is definitely required. Passing the primary key in the URL is a good way of avoiding

Re: javascript component questions

2012-08-21 Thread Chris Cureau
as a parameter of your component. Emmanuel 2012/8/20 Chris Cureau cmcur...@gmail.com Thanks, François...that might solve the issue. I want to contribute this back to tapestry5-jquery, and the easier I can make it to use the better IMHO. This component is created from fullcalendar

Re: javascript component questions

2012-08-21 Thread Chris Cureau
2012/8/20 Chris Cureau cmcur...@gmail.com Thanks, François...that might solve the issue. I want to contribute this back to tapestry5-jquery, and the easier I can make it to use the better IMHO. This component is created from fullcalendar ( http://arshaw.com/fullcalendar/). It's

Re: Proposal for DateField validation patch

2012-08-21 Thread Chris Cureau
While we're working on the DateField component, would it be time to consider adding one of the MIT licensed TimeField components as well? Perhaps as an option on top of DateField? On Tue, Aug 21, 2012 at 7:05 PM, trsvax trs...@gmail.com wrote: After discovering DateField does not really

Re: javascript component questions

2012-08-20 Thread Chris Cureau
Sorry...probably do need to be more specific. It was late last night and I was already frustrated with it... Lots of parameters == items that need to be specific to the page being rendered at the time rather than common to all components of type freecalendar. For example, each page will

Re: javascript component questions

2012-08-20 Thread Chris Cureau
I could do this, yes...I guess I was just trying to avoid having quite so much markup in the tml file... On Mon, Aug 20, 2012 at 8:34 AM, trsvax trs...@gmail.com wrote: Most jQuery components can be implemented by simply extending the Widget mixin for example @Import (library={your js

Re: javascript component questions

2012-08-20 Thread Chris Cureau
class and pass it as property to your calendar component parameter. By way could you give us more details about the jQuery plugin you are using? Regards François 2012/8/20 Chris Cureau cmcur...@gmail.com: I could do this, yes...I guess I was just trying to avoid having quite so much

Tapestry5 book

2012-08-14 Thread Chris Cureau
Igor, Thanks for the book link this morning! I'm going to spend a good few hours a day absorbing... May I suggest some instruction on how to make components out of javascript packages? A good example of how to create a wrapper for something like gmap3 would be quite beneficial... I ask

Re: Tapestry5 book

2012-08-14 Thread Chris Cureau
project. We use the same structure for each components/mixins. And there is a gmap component ! At work, we are working on an integration of the full calendar. Are you interested? I will ask the developer as soon as i am back from my holydays. Manu Le mardi 14 août 2012, Chris Cureau a écrit

Re: Tapestry 5 Book EAP Launched

2012-08-01 Thread Chris Cureau
If someone would want to withdraw their contribution, I'd be happy to pay them instead...a buy out, if you will. :) Otherwise, I'll contribute...I've been waiting for this book for a long time! On Wed, Aug 1, 2012 at 12:38 PM, Stephan Windmüller stephan.windmuel...@tu-dortmund.de wrote: On

Re: Autocomplete mixin in a beaneditor

2012-06-12 Thread Chris Cureau
The only way I got it to work was to leave the field out of the beaneditor and present it as a normal textfield. If you're using the default template, use a div type of beaneditor-row and it all looks uniform. On Apr 22, 2012 2:21 AM, Chris Cureau cmcur...@gmail.com wrote: I've been trying

Re: Example of jquery tabs with formfragments

2012-05-30 Thread Chris Cureau
Thanks very much! I'll test it out this morning...and if I can get it working decently, I'll make up a post for others to use. Speaking of, is there a cook book of sorts for tapestry5-jQuery as there is for tapestry? Maybe I can give back that way. :) On May 29, 2012 6:34 PM, arterzatij

Re: Example of jquery tabs with formfragments

2012-05-30 Thread Chris Cureau
Okay, giving it a try, but running into another issue... I've got two tabs that contain forms and three tabs that contain grid data. As it stands now, the forms redraw themselves (albeit without data) and the grids return nothing. My guess is that I'm missing a zone refresh somewhere. I

Re: Example of jquery tabs with formfragments

2012-05-30 Thread Chris Cureau
/DocsDatefield.tml 2012/5/30 Chris Cureau cmcur...@gmail.com: Okay, giving it a try, but running into another issue... I've got two tabs that contain forms and three tabs that contain grid data. As it stands now, the forms redraw themselves (albeit without data) and the grids return nothing

Re: Building object through wizard.

2012-05-25 Thread Chris Cureau
Hi George! What I am doing for this is following the Jumpstart example...I store all of my entities in the Conversation, and on the last page of the Wizard I write them to the database. It's worked out very well so far. Check out

Re: Is there a way to have Tapestry generate well-formatted html?

2012-05-21 Thread Chris Cureau
For what its worth, Firebug and Chrome's debugging tools format the output for you. You can always use this and not mess with the whitespace compression at all... On Mon, May 21, 2012 at 10:58 AM, Rural Hunter ruralhun...@gmail.comwrote: It's very hard to view what actually Tapestry generated

tapestry-security and CAS integration?

2012-05-18 Thread Chris Cureau
Since Apache Shiro 1.2.0, there is a plugin that allows Schiro to communicate directly with CAS SSO server. Has this functionality made it into tapestry-security yet? It'd be handy to have. :) Cheers, Chris

tapestry-jquery: changing superfish menu colors

2012-05-13 Thread Chris Cureau
I'm sure that I'm overlooking something, but I can't seem to find the css in my project that controls how jquery components are drawn. I want to change the color of the superfish menu from the default blue to something that matches the rest of the pages a little more closely. How can I do this?

Re: tapestry-jquery: changing superfish menu colors

2012-05-13 Thread Chris Cureau
Thanks, Clement! I hadn't yet needed to delve into CSS, and I wasn't sure about overriding...guess I should have tried it first. :) leaving the design elements to someone else has its disadvantages On May 13, 2012 2:51 PM, Clément OUDOT clem.ou...@gmail.com wrote: 2012/5/13 Chris Cureau

Re: Zone refresh in form fragment 'wizard'

2012-05-09 Thread Chris Cureau
No takers? Ah well...I'll break it into separate pages. I just wish I knew what I was doing wrong. Maybe a renderobject in the template would help? Igor, can't wait for your book! On May 8, 2012 10:25 AM, Chris Cureau cmcur...@gmail.com wrote: I've looked at the form fragments in firebug

Re: Zone refresh in form fragment 'wizard'

2012-05-08 Thread Chris Cureau
is ignoring the block altogether. On Tue, May 8, 2012 at 8:57 AM, Thiago H. de Paula Figueiredo thiag...@gmail.com wrote: On Tue, 08 May 2012 10:48:38 -0300, Chris Cureau cmcur...@gmail.com wrote: Hi Thiago! Hi! Thanks for the quick response. I put together a smaller version of my page

Re: Zone refresh in form fragment 'wizard'

2012-05-08 Thread Chris Cureau
the following information: p/p div id=summaryZone class=t-zone tapestry-zone/div p/p To complete this employee, press the emFinish/em button. p/p On May 8, 2012 10:15 AM, Thiago H. de Paula Figueiredo thiag...@gmail.com wrote: On Tue, 08 May 2012 11:19:02 -0300, Chris Cureau cmcur...@gmail.com wrote

Zone refresh in form fragment 'wizard'

2012-05-07 Thread Chris Cureau
Hi there! I'm following Geoff's excellent jumpstart on creating a wizard using form fragments. I've got it all working so far, but I want to create a summary form fragment that displays a table with the text that was entered on the previous form fragment panel. The final page has a zone defined