RE: Adding chat rooms

2014-11-27 Thread Lance Java
Do I have your permission for it? I don't mind what you do with the libraries, fork away! If you come up with something interesting / useful I'd be interested to hear about it.

ApacheCon Europe

2014-11-27 Thread Thilo Tanner
Hi folks, Uli and myself gave our best to promote Tapestry on ApacheCon Europe in Budapest last week. Unfortunately, most people were more interested in buzzword technologies, in particular in the Hadoop ecosystem. Don’t get me wrong, Hadoop is a good technology if you have a real use case for

Re: JQuery upload issue

2014-11-27 Thread Christian Riedel
The cause might be everything from bugs in your code, browser specific bugs to server configuration. You must give us some more details about your setup, code and what you’ve tried so far as well as possible exceptions on server- and client-side. Am 27.11.2014 um 08:44 schrieb Name Surname

requireJS modules in T5 library

2014-11-27 Thread Jan Fryblik
Hello guys, I'm fighting a bit with RequireJS modules. So... I have Tapestry library 'cms' with 'LastArticle' component. So I have simple RequireJS module in resources/META-INF/modules/cms folder with following code define([jquery, t5/core/dom, jquery/jquery.threedots.min], function ($,

Re: requireJS modules in T5 library

2014-11-27 Thread Geoff Callender
Your module is not returning anything and init is invisible outside the module's function. After the init function add this... return { init : init }; The rest looks fine, assuming that you've checked that threedots is AMD compliant. if it isn't then

RE: Issues with beaneditform component

2014-11-27 Thread Chris Mylonas
Dunno - I use the param user in onActivate instead of setData. Also just int. During @setupRender stage, fetch from logic the orig. At save time, my logic sets it all from form object. Make sense?

RE: JQuery upload issue

2014-11-27 Thread Name Surname
NetworkError: 500 Internal Server Error I keep getting this error from console once I press Submit. Subject: Re: JQuery upload issue From: cr.ml...@googlemail.com Date: Thu, 27 Nov 2014 12:16:48 +0100 To: users@tapestry.apache.org The cause might be everything from bugs in your code,

RE: JQuery upload issue

2014-11-27 Thread Name Surname
Forgot to say that I'm running it from localhost. From: wintertime0...@outlook.com To: users@tapestry.apache.org Subject: RE: JQuery upload issue Date: Thu, 27 Nov 2014 14:56:03 +0100 NetworkError: 500 Internal Server Error I keep getting this error from console once I press Submit.

RE: Issues with beaneditform component

2014-11-27 Thread Name Surname
Nope. Implementation is fair OK to me. Checked console and there is nothing and I mean nothing on screen when I press Submit. It's like I didn't press anything??? Date: Thu, 27 Nov 2014 22:48:14 +1100 Subject: RE: Issues with beaneditform component From: ch...@opencsta.org To:

Re: JQuery upload issue

2014-11-27 Thread Christian Riedel
…and the exception on the server, i.e. the Internal Server Error? Am 27.11.2014 um 14:56 schrieb Name Surname wintertime0...@outlook.com: NetworkError: 500 Internal Server Error I keep getting this error from console once I press Submit. Subject: Re: JQuery upload issue From:

List of embedded components

2014-11-27 Thread Eugen
Hello, is there any way in Tapestry 5.4 to list all components embedded in a page or component (defined in template file)? The goal is to implement an annotation, @UpdateParentZone, that would search for the first Zone in the parent components and add the found zone to AjaxResponseRenderer to be

Re: requireJS modules in T5 library

2014-11-27 Thread Thiago H de Paula Figueiredo
On Thu, 27 Nov 2014 09:35:36 -0200, Jan Fryblik jan.fryb...@ebrothers.cz wrote: Hello guys, Hi! scriptSupport.require(LastArticle).invoke(init).with(previewLinesCount); I'm not sure why people want to use .invoke() for simple initializations like this. I'd do just:

Re: Issues with beaneditform component

2014-11-27 Thread Thiago H de Paula Figueiredo
On Wed, 26 Nov 2014 23:44:58 -0200, Name Surname wintertime0...@outlook.com wrote: @CommitAfter public String OnSuccess() { logic.editUser(user); return ListClassesPage; } I'm not sure it matters, but try onSuccess(), without capitalizing the first letter.

Re: List of embedded components

2014-11-27 Thread Thiago H de Paula Figueiredo
On Thu, 27 Nov 2014 12:40:47 -0200, Eugen eugens...@gmail.com wrote: Hello, Hi! is there any way in Tapestry 5.4 to list all components embedded in a page or component (defined in template file)? The goal is to implement an annotation, @UpdateParentZone, that would search for the first

Re: requireJS modules in T5 library

2014-11-27 Thread Jan Fryblik
Thank you both for answers, I've made adjustments and now it works and looks fine. Great! On Thu, 27 Nov 2014 18:06:20 +0100, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Thu, 27 Nov 2014 09:35:36 -0200, Jan Fryblik jan.fryb...@ebrothers.cz wrote: Hello guys, Hi!