Re: tapestry-bootstrap question

2013-12-06 Thread Nicolas Barrera
I 'm using 5.3 Nicolás.- On Fri, Dec 6, 2013 at 6:15 AM, Eugen wrote: > Hi, > which vewrsion of Tapestry are You using? > for 5.4 You don't need to user fwtype, just 'class' attribute > > Eugen > > 2013/12/5 Nicolas Barrera : > > Hi, >

tapestry-bootstrap question

2013-12-05 Thread Nicolas Barrera
Hi, Just wandering why should I use the fwtype parameter as in the jumpstart bootstrap example ( http://jumpstart.doublenegative.com.au/jumpstart/examples/styling/bootstrap/1 ) Refresh I 've been using the tapestry-bootstrap library and using the class parameter instead and obtained same result

Re: [T5.3] How to submit a form in a sub component and have a callback ?

2013-11-20 Thread Nicolas Barrera
Sorry, I 'm in a hurry so I 'll write short... Have you looked for information on submitNotifier? it's like a pub/sub on the submit event, take a look. cheers Nicolás.- On Wed, Nov 20, 2013 at 12:22 PM, Hottois Ludwig < ludwig.hott...@worldline.com> wrote: > Hi everyone ! > > > > I’m surpri

Re: [5.4] Multi Page Form

2013-11-15 Thread Nicolas Barrera
Hi, I 've never done something like that but perhaps you could find some inspiration in http://jumpstart.doublenegative.com.au/jumpstart/ check these examples which are related to multi-page forms: Wizard Using Form Fragments

Re: Eclipse Tapestry5 Plugin update

2013-09-09 Thread Nicolas Barrera
Excuse me, is this eclipse plugin different from the previous one discussed in this list? (that one was a google SoC project) can they operate simultaneously without problems? or shall I uninstall the previous prior to install this new one? thanks. Nicolás.- On Mon, Sep 9, 2013 at 4:07 PM, Dm

Re: changing t:type binding prefix

2013-08-16 Thread Nicolas Barrera
, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Fri, 16 Aug 2013 12:05:18 -0300, Nicolas Barrera > wrote: > > Hi, >> > > Hi! > > > I 've tried to dynamically change the t:type attribute of an input >> textfield by doing this:

changing t:type binding prefix

2013-08-16 Thread Nicolas Barrera
Hi, I 've tried to dynamically change the t:type attribute of an input textfield by doing this:

How to disable blackbird in T5.1.0.5

2013-07-19 Thread Nicolas Barrera
Hello, I 'm using Tapestry 5.1.0.5. I 've read in this documentation page ( http://tapestry.apache.org/configuration.html) that there is a symbol for enabling/disabling the blackbird console but it says "(in Tapestry 5.2 and newer)". Is there any way to disable it in Tapestry 5.1.0.5? thanks.

Re: Helpfulness of errors for missing @Symbols

2013-04-21 Thread Nicolas Barrera
I agree it's a very odd error report, I 'd just like to add that you could protect your hairiness level contributing to the factory default defaults service, there you can define factory defaults to symbols which in some cases saves you from crashing in that way. Of course there 're some situatio

Re: For Nabble users

2013-03-25 Thread Nicolas Barrera
It's great to hear that you keep mirroring to nabble as it's a nice archive and pretty useful for searches please do not change that. cheers Nicolás.- On Fri, Mar 22, 2013 at 10:57 PM, Lance Java wrote: > Sorry, wasn't aware of the extra work it was creating. I'm happy for a > solution that k

Re: Keep component's state between requests

2013-03-20 Thread Nicolas Barrera
Thank you both for your suggestions, I think I don't really like to force the container component to know about the context that the inner component needs, so I went for the @Persist with CLIENT strategy, Thank you again, cheers. Nicolás.- On Wed, Mar 20, 2013 at 1:13 AM, Geoff Callender < g

Re: Tapestry Tree (jquery)

2013-02-25 Thread Nicolas Barrera
Hi, reading the api docs it seems that the only triggered events are NODE_SELECTED and NODE_UNSELECTED anyway looking into the code..., the Tree component seems to have an ExpandChildren event which perhaps is bubbled up and you can do something there..., ( I 'm not pretty sure of this ) ( http

Re: deployment of images

2013-02-21 Thread Nicolas Barrera
Check your maven configuration as George says.., because when you 're programming a component in a library (not in a webapp) there will be no src/main/webapp directory to put your images into, and you 'll need to do what you were doing before. cheers. Nicolás.- On Thu, Feb 21, 2013 at 1:44 AM

Re: Spring injection by interface

2013-02-07 Thread Nicolas Barrera
Hi, I don't know your full configuration of tapestry and tapestry-spring, anyway the createWebApplicationContext you 've implemented doesn't seem to do anything very special. you could specify your xml contexts locations in your web.xml like this: contextConfigLocation

Re: Spring injection by interface

2013-02-06 Thread Nicolas Barrera
Have you read this? http://tapestry.apache.org/integrating-with-spring-framework.html you should be using a tapestry library called tapestry-spring for this: @Inject private MyBeanClass mbc; to work. cheers Nicolás.- On Wed, Feb 6, 2013 at 9:47 AM, lukaszkaleta wrote: > I am using tapestry

@Inject or @InjectService?

2013-02-04 Thread Nicolas Barrera
Hi, I was in trouble with an Alias service construction error due to recursion and found in the list Howard saying that injecting the parameter using @InjectService instead of @Inject would solve it... and in fact it did! So now I find myself guessing which would be the difference between these t

Re: form with dynamic extensible content

2013-02-04 Thread Nicolas Barrera
Interesting options Lance, I 've thought about the event but not the decorator one. thanks! Nicolás.- On Wed, Jan 30, 2013 at 6:54 PM, Lance Java wrote: > There are a couple of options you may not have considered: > > 1. You could fire a component event from your component to your page. This

Re: form with dynamic extensible content

2013-01-30 Thread Nicolas Barrera
Thanks Lance, I had to use the Environment object..., as my hierarchy of components was the following: PageA --- form -- delegate---> delegate returns the block from pageB using ComponentSource service =-=-=-=-=-=-=-=- PageB ---

Re: Modular Tapestry application in Eclipse

2013-01-28 Thread Nicolas Barrera
As an alternative to Jonathan approach (which I didn't know until know... and it looks good btw)... I'm using this configuration to the jetty plugin in the pom.xml (also to use workspace resolution with m2eclipse, as he said it's useful to not having to mvn install modules all the time)

Re: BeanEditForm and hibernate

2012-11-19 Thread Nicolas Barrera
, component="nameField") > public void validateName() { >//... > } > > > > > > > > > 2. Retrieve profile in separate transaction with uncommited read isolation. > > > On Fri, Nov 16, 2012 at 5:15 PM, Nicolas Barrera &g

BeanEditForm and hibernate

2012-11-16 Thread Nicolas Barrera
Hi all, I 'm not using the tapestry-hibernate module. I 'm using spring configured hibernate, tapestry-spring, and an open session in view spring filter. I can use BeanEditForm to create a new entity and save it, the problem is when trying to modify an existing entity. My problem is that during

Re: Tapestry Book purchase question

2012-10-30 Thread Nicolas Barrera
> > On Fri, Oct 26, 2012 at 5:17 PM, Nicolas Barrera > wrote: > > > Ok thanks Thiago, I thought that... > > > > but may be I should rephrase the question this way, > > > > does purchasing the book here: > > http://tapestry5book.dpdcart.com > >

Re: Tapestry Book purchase question

2012-10-26 Thread Nicolas Barrera
AM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Fri, 26 Oct 2012 11:52:01 -0200, Nicolas Barrera > wrote: > > Hi, >> > > Hi! > > > is it the pdf EAP?, or the book?, or the complete pdf? (I used to think >> the book wasn't f

Re: Help with URLRewriter and links

2012-10-15 Thread Nicolas Barrera
Nicolás.- On Mon, Oct 15, 2012 at 12:12 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > Hi! > > Please post your URL rewriting code. > > > On Mon, 15 Oct 2012 11:10:41 -0300, Nicolas Barrera > wrote: > > Hello Tapestry users, >>

Help with URLRewriter and links

2012-10-15 Thread Nicolas Barrera
Hello Tapestry users, I 'm using T5.1 in my project, so I 'm using the URLRewriter method of rewriting urls. I 'm trying to develop a page who will show error messages for different situations, (e.g. 404, 503,... and when spring-security detects that you have no privileges for a page). This page

Re: Tapestry 5 Book EAP Launched

2012-08-02 Thread Nicolas Barrera
thank you, that was the info I needed. Nicolás.-

Re: Tapestry 5 Book EAP Launched

2012-08-02 Thread Nicolas Barrera
Drobiazko wrote: > Hi Nicolas, > > as Thiago just answered, for $25 you get the book as PDF (updates + final). > For $55 you additionally get the printed book. You don't have to pay > anything again. Does it answer your question? > > Regards > > On Thu, Aug 2,

Re: Tapestry 5 Book EAP Launched

2012-08-02 Thread Nicolas Barrera
Hi Igor, thanks for your reply it was very clear, now I got another doubt, apart from having early access to the book and receiving it's updates, does supporting this campaign implies that I 'll be paying a cheaper price for the book than what it will cost once it's officially released? that was

Re: Tapestry 5 Book EAP Launched

2012-08-01 Thread Nicolas Barrera
Hi, just wanted to stay clear with this, If I buy the pdf version perk today, I 'll receive by e-mail the current pdf draft, the next draft updates and lastly the pdf final version? cheers, Nicolás.-

Re: Lightweight TapestryTools update site

2012-07-23 Thread Nicolas Barrera
pestry components in it. > > If it is problem 1, you should find out how to pop up auto-complete > panel in your Eclipse. > > Thanks > > 2012/7/18 Nicolas Barrera : > > I 'm running Ubuntu 12.04 LTS > > > > so it's woking for you in your environment :

Re: Lightweight TapestryTools update site

2012-07-18 Thread Nicolas Barrera
gt;> > > > > Hope I 'm helping with some clues... > > > > regards, > > > > Nicolás.- > > > > > > On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei > wrote: > > > >> Hi Nicolas, > >> > >> Thank you for your fe

Re: Lightweight TapestryTools update site

2012-07-18 Thread Nicolas Barrera
Hi Gavin, I wanted to ask this prior to open a new issue... I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno Version: Juno Release / Build id: 20120614-1722 and although tapestrytools seems to be working fine, auto-complete features aren't popping out when writing wrote: > Tapes

Re: Is tapestry tools supposed to work with Eclipse Juno?

2012-07-04 Thread Nicolas Barrera
ion to Juno. It might also > happen that the migration won't fit within GSoC timeframe. > > On Sun, Jul 1, 2012 at 2:40 PM, Nicolas Barrera > wrote: > > > Well my question is in the subject, > > > > sorry I don't have time to test it myself yet. > > &g

Is tapestry tools supposed to work with Eclipse Juno?

2012-07-01 Thread Nicolas Barrera
Well my question is in the subject, sorry I don't have time to test it myself yet. thanks in advance, Nicolás.-

Can grid without data show headers?

2012-05-30 Thread Nicolas Barrera
Hi all, I guess subject is self-explanatory... Does somebody knows about a parameter so that I can show headers even if the source collection of a grid is empty? thanks you in advance, cheers. Nicolás.-

Re: T5.3 's Tree in a Loop

2012-05-23 Thread Nicolas Barrera
#x27;deferred="true"' with the links. > > As Lance wrote, there may not be analogous support for trees in a loop. > > > > > Am 23.05.2012 16:44, schrieb Nicolas Barrera: > > Arno, sorry can you send me the link of the javadoc you 're looking > >

Re: T5.3 's Tree in a Loop

2012-05-23 Thread Nicolas Barrera
Arno, sorry can you send me the link of the javadoc you 're looking at? 'cause I couldn't find nothing about deffered in http://tapestry.apache.org/5.3.3/apidocs/org/apache/tapestry5/corelib/components/Loop.html Lance, I 'm thinking about what you said and the loop and form relationship, I don't

T5.3 's Tree in a Loop

2012-05-23 Thread Nicolas Barrera
Hi, I got the need to show a dynamic number of tree components in a page, I thought about using a loop around a tree component but I 've bumped with the problem that I 'll need to set the Tree's model property with something variable. I 've already tried this:

Loop and parameters question

2012-05-18 Thread Nicolas Barrera
Hi, all I got the following question, supose that I want to define an accordion like this... t:activeElementId="activeElement"> > > > Element 1 > > content from block 1 > > > > Element 2 > > content from block 2 > > > > > but, that I w

chenille kit and T5.3

2012-05-14 Thread Nicolas Barrera
Hi all..., does somebody knows if chenille kit project is compatible with T 5.3? I was thinking to add this library to a T5.3 project and I wondered if this was possible. cheers and thanks in advance. Nicolás.-

Re: How to define a "private" service (a service only for another service)

2012-03-27 Thread Nicolas Barrera
Maybe you could use a custom annotation on the service... just like those used for disambiguate services and make that anntotation only visible to the service that needs the private service... I 'm not really sure about this... in fact i haven't tested it and... most important i think this way of

Re: memory leaks

2012-03-15 Thread Nicolas Barrera
said). So for me tap5's class reloading works like a charm. Nicolás.- On Thu, Mar 15, 2012 at 2:22 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 15 Mar 2012 13:13:32 -0300, Nicolas Barrera > wrote: > > I 'm having an issue using mvn:

Re: memory leaks

2012-03-15 Thread Nicolas Barrera
I 'm having an issue using mvn:jetty (which can reload the context by pressing enter on the console)... after I press enter (reload context) let's say 3 times an outofmemoryerror turns out... I 'm not pointing towards tapestry's live class reloading (it doesn't even need context reloading to work

Re: Tapestry TreeGrid

2012-02-17 Thread Nicolas Barrera
Hi, I 've seen Lance's ways of implementing hierarchical data on a flat table... and I think it could be improved adding two index columns as it says here: http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/ there you could easily query for example to a complete branch of the tree

Re: Tapestry Change hibernate properties on fly

2012-02-10 Thread Nicolas Barrera
Hi Ramprasath, here are my thoughts perhaps you can find them useful when I read this part of the requirement > 2. System will automate the report generation process , i.e kind of query > builder ..Which will connect to the data base and user can generate query > using user interface ( i.

Re: [T5.3 beta 2] Using Tapestry-Spring-Security with 5.3?

2012-02-06 Thread Nicolas Barrera
thanks for the code, it's very useful for me too... :) Nicolás.-

Re: What is your tapestry project setup like (build tool/ide)

2012-01-23 Thread Nicolas Barrera
Hi, our setup is, Eclipse + m2e + jetty:run maven plugin configured as an ecilpse external tool with the resolve artifacts in workspace option enabled. we don't use any other plugins for tapestry,... tapestry projects are created through our own tapestry maven archetypes through maven command l

Re: remote archetype catalog for quickstart

2011-12-26 Thread Nicolas Barrera
Hi Paul..., I got to know about a bug on m2e that does not allow you to create remote catalogs... I think that you may be stuck into that bug... some guys in the company I work got that error while updating versions of eclipse and m2e earlier this year... I 've searched again on the web for thi

Re: animated graph

2011-12-19 Thread Nicolas Barrera
Hi!, I was just beggining to integrate an animated graph/chart library when I saw this post... well... as I said... I 'm just begining so I ain't got any solution right now but... my 20 cents would be that I 've decided to use amCharts framework ( http://www.amcharts.com/) because you could use it

Re: prototypejs is dead - time to bring t5-jquery in?

2011-12-16 Thread Nicolas Barrera
javascript abstraction layer +1, I guess it also sounds like the way of making things right, which is what tapestry rings a bell for me... cheers Nicolás.-

Re: [OT] What happened to tynamo.org

2011-12-01 Thread Nicolas Barrera
could that be realated to errors on the tynamo mailing list? cheers Nicolás.- On Thu, Dec 1, 2011 at 3:02 PM, Kalle Korhonen wrote: > Thanks for letting me know. Codehaus has likely been doing some > infrastructure work. http://tynamo.codehaus.org still works. Opened a > Haus chore http://jira

Re: [TYNAMO] Exception Handling

2011-11-24 Thread Nicolas Barrera
got it, same as me. Nicolás.-

Re: [TYNAMO] Exception Handling

2011-11-24 Thread Nicolas Barrera
Hi Ale, thanks for the help, so you say that tynamo's mailing list should be working alright but just for moment to moment is down? then i 'll be retrying to post there. About what you answered me... i 've finally avoided the problem overriding the isAllowRemove method calling one of the bean's

Re: [TYNAMO] Exception Handling

2011-11-23 Thread Nicolas Barrera
uld be glad if someone threw some invoice here, thanks! Nicolás.- On Wed, Nov 23, 2011 at 9:19 AM, Nicolas Barrera wrote: > Hi all, (sorry I 'm asking about tynamo on Tapestry's user list but I > tried to use us...@tynamo.codehaus.org but mailer said it wasn't working) > >

[TYNAMO] Exception Handling

2011-11-23 Thread Nicolas Barrera
Hi all, (sorry I 'm asking about tynamo on Tapestry's user list but I tried to use us...@tynamo.codehaus.org but mailer said it wasn't working) Here goes a newbie question runner up...: I got a tynamo app working using the archetype and then modifying it, I got two model classes - Person - Local

Re: Tapestry / Obfuscation / Service Alias recursion

2011-11-16 Thread Nicolas Barrera
erkoe < tapestry.christian.koeb...@gmail.com> wrote: > I guess you did forget to change the "tapestry.app-package" context > parameter > or/and change the module classes in MANIFEST.MF. > > Chris > > > Nicolas Barrera wrote: > > > > Hi all, > > > >

Tapestry / Obfuscation / Service Alias recursion

2011-11-16 Thread Nicolas Barrera
Hi all, I wanted to share my strange use case and the errors I 'm facing in my way to accomplish it, either way if none can help me this serves as a kind of therapy don't you think? The problem appears only after obfuscating the webapp do you think this can araise problems with tapestry IoC? (I '

Re: Meap Tapestry 5 book cancelled?

2011-09-22 Thread Nicolas Barrera
I believe the project was not purely translation as dutch version was prior 5.2 and the MEAP version was taking into account post 5.2 features and making comparisons between versions as with the page pooling mechanism and current singleton pages mechanism. hope the project recovers somehow cheer

Re: tapestry ready for production?

2011-09-11 Thread Nicolas Barrera
Hi Alfonso, you better build a small application and try out the frameworks you 're evaluating... if tapestry is production ready?, well yes no doubt... I 'm not sure if 5.3 is stable (i believe it was still in beta stage) but 5.2.x surely is. I think you should build up your own thoughts by you

Re: Tapestry integration with Maven and subversion

2011-08-22 Thread Nicolas Barrera
Hi, I don't know if this is a topic to be treated on this list but here come my thoughts... a) maven: if you used the tapestry maven archetype to create the project that you 're currently working at... you 're almost done.., in fact... if you 're running your t5 applicaction using the maven jett

Re: tapestry-security and sso

2011-08-12 Thread Nicolas Barrera
Vangel, thank you so much for your clean explanation and the online example you offer... I 'll take all this into account, cheers! Nicolás.- On Thu, Aug 11, 2011 at 10:27 PM, Vangel V. Ajanovski wrote: > > Of course comments are welcome by anyone, especially regarding how to > better the sol

Re: tapestry-security and sso

2011-07-25 Thread Nicolas Barrera
Thanks clement, will take it into account when implementing sso (although that would be in some time from here) cheers all and thanks again! Nicolás.- 2011/7/22 Clément OUDOT > 2011/7/22 Nicolas Barrera : > > Hi, > > > > just wondered... (nothing concrete) > &g

Re: tapestry-security and sso

2011-07-22 Thread Nicolas Barrera
t any recommendations anyone could give :) well thanks again for your answer about shiro statu's, cheers! Nicolás.- On Fri, Jul 22, 2011 at 12:39 PM, Kalle Korhonen wrote: > On Fri, Jul 22, 2011 at 7:11 AM, Nicolas Barrera > wrote: > > about a tapestry app implementing singl

tapestry-security and sso

2011-07-22 Thread Nicolas Barrera
Hi, just wondered... (nothing concrete) about a tapestry app implementing single -sign on... does tapestry-security integrates with a CAS server? ( I 'm thinking about that because I 've never used shiro although I could start using it, no problem. But I come from acegi where it integrated with

Re: Doubt including component in page

2011-07-08 Thread Nicolas Barrera
n you would give a tapestry newbie on how to depend or include his own components into pages? well, I hope I wasn't messy on my question :) cheers and thanks. On Thu, Jul 7, 2011 at 12:55 PM, Nicolas Barrera wrote: > Thanks both, you just hit the note..., > > though I was pretty s

Re: Doubt including component in page

2011-07-07 Thread Nicolas Barrera
rc/main/resources/testComponent/components in case your application > package > is testComponent. > > regards > Taha > > On Thu, Jul 7, 2011 at 8:24 PM, Nicolas Barrera > wrote: > > > Hi, > > > > I just wanted to run this test..., I got a tapestry a

Doubt including component in page

2011-07-07 Thread Nicolas Barrera
Hi, I just wanted to run this test..., I got a tapestry archetype and added this code in the components package: Comp1.java: package testComponent.components; > > public class Comp1 { > > } > > Comp1.tml http://tapestry.apache.org/schema/tapestry_5_1_0.xsd"; > xmlns:p="tapestry:parameter">

Re: Tapestry 5.3: Reloading in Production Mode.

2011-06-27 Thread Nicolas Barrera
I just don't know..., but you could check out a discussion about this some time ago here: http://tapestry.1045711.n5.nabble.com/Live-reload-in-production-td4313825.html Nicolás.- On Mon, Jun 27, 2011 at 4:16 AM, laloluke wrote: > Hello, > > The Release Notes 5.3 says that Reloading is disabl

Re: [ANN] AjaxUpload : An ajax based upload component

2011-06-27 Thread Nicolas Barrera
taha, your component seems very cool!, thanks wish I had some time to test it :) cheers! Nicolás.- On Sun, Jun 26, 2011 at 8:46 PM, Taha Hafeez wrote: > Works on ie6 too !! (I seldom happens that your script runs unaltered on > ie6) > > regards > Taha > > On Sun, Jun 26, 2011 at 8:19 PM, Taha

Re: Which tapx version?

2011-06-20 Thread Nicolas Barrera
> > source code https://github.com/hlship/tapx/blob/release-1.0.0 > > François > > > 2011/6/17 Nicolas Barrera : > > Hi, > > > > Just wanted to ask about tapx... > > > > I 'm using Tapestry 5.1.0.5, which tapx version should I use? > > >

Which tapx version?

2011-06-17 Thread Nicolas Barrera
Hi, Just wanted to ask about tapx... I 'm using Tapestry 5.1.0.5, which tapx version should I use? also I 've found in the mailing list that formos repositories won't be used anymore... but I only found snapshot repository on howardlewisship.com aren't release repositories available for tapx?

Re: RE : Mixin competes with Zone's event handler

2011-06-17 Thread Nicolas Barrera
Hi again! just wanted to round up thanking everyone collaborating with all those invoices, which were very handy :) On Thu, Jun 16, 2011 at 6:43 PM, Kalle Korhonen wrote: > > ...and that nesting and event propagation is the "right" > way of ordering html dom events. > > I finally got it to work

Re: RE : Mixin competes with Zone's event handler

2011-06-16 Thread Nicolas Barrera
Hi Thiago, thanks for answering... perhaps before getting this in a JIRA issue, you would ilke to analyze what Kalle says here: http://tapestry.1045711.n5.nabble.com/T5-actionlink-ajax-zone-and-user-onclick-handler-tp2400741p2400745.html about that setting an order of the event handler calls you

Re: Mixin competes with Zone's event handler

2011-06-16 Thread Nicolas Barrera
quot-Confirm-quot-mixin-won-t-cancel-when-in-zone-td5048950.html#a5048950 > > Josh > > On Thu, Jun 16, 2011 at 8:42 AM, Nicolas Barrera > wrote: > > Hi T5 users! > > > > I got the following problem (I dsthink my mixin is competing with the > Zone'

Mixin competes with Zone's event handler

2011-06-16 Thread Nicolas Barrera
Hi T5 users! I got the following problem (I think my mixin is competing with the Zone's javascript code when the actionLink I apply my mixing has also a t:zone), i 'm developing a confirmation dialog box Mixin... (using some cool modal window plugin) that is.., i got an ActionLink with t:mixin="

Re: [OT] The response time of websites - comparison between frameworks

2011-06-13 Thread Nicolas Barrera
sweet figures! cheers Nicolás.- On Mon, Jun 13, 2011 at 11:31 AM, Kalle Korhonen wrote: > Tapestry is officially very, very fast: > > http://www.jtict.com/blog/rails-wicket-grails-play-lift-jsp/comment-page-1/#comment-22319 > . > We of course knew that already but I hope the author updates th

Re: Easiest way to communicate with the WebApp

2011-06-13 Thread Nicolas Barrera
On Sun, Jun 12, 2011 at 9:55 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > > Another option is to implement a service that opens a server socket to > receive the commands. Again, you'll need to implement some kind of > authentication. > > Perhaps you could connect to a JMS queue

Re: What would YOU like to see in a four day Tapestry training course?

2011-05-02 Thread Nicolas Barrera
When I first came across tapestry5 I got some trouble understanding that everything was a component and even the simplicity and coherence of the way of implementing a layout in tapestry made some noise to me until I understood it right. Tml things like ${} expression and the binding with it's vari

Re: How to setup favicon?

2011-04-08 Thread Nicolas Barrera
Well..., Tapestry and favicon work great together..., just follow the steps described before and try not to get messed with pages that have different layouts as I did :S. sorry for the noise in the list.., and thanks for your responses. Nicolás.-

Re: How to setup favicon?

2011-04-08 Thread Nicolas Barrera
${title} > > href="${context:/i/filename.ico}"/> > > > (I forget why I needed both links and maybe I don't any more... some > browser > inconsistency.) > > > > On Fri, Apr 8, 2011 at 10:23 AM, Nicolas Barrera > wrote: > > > Hi!, thank

Re: How to setup favicon?

2011-04-08 Thread Nicolas Barrera
Fri, Apr 8, 2011 at 10:30 AM, Nicola Buso wrote: > >> Are you running in Jetty? I notice it replace my favicon on localhost >> (mvn jetty:run); under tomcat my favicon is shown: >> >> >> on my layout component as usual: >> >> >> >> >>

Re: How to setup favicon?

2011-04-08 Thread Nicolas Barrera
la Buso wrote: > Are you running in Jetty? I notice it replace my favicon on localhost > (mvn jetty:run); under tomcat my favicon is shown: > > > on my layout component as usual: > > > > > nicola. > > > On 04/08/2011 03:11 PM, Thiago H. de Paula Figueiredo wrot

How to setup favicon?

2011-04-08 Thread Nicolas Barrera
Hi, I 've read on the internet about setting up favicon on a web site. As I see it, it takes some easy steps to do it the cross-browser way: - Add a 16x16 .ico file at the website root folder (I 've put it in src/main/webapp/favicon.ico) - Add the following html code inside the header tag: > >

Re: Using HTTPS to secure tapestry pages

2011-02-24 Thread Nicolas Barrera
Hi, public void contributeMetaDataLocator( > MappedConfiguration configuration) { > configuration.add(MetaDataConstants.SECURE_PAGE, "true"); > } > didn't work for me either... I 'm using tapestry 5.0.1.5, can you confirm me if that configuration should work on this version? thanks Nicol

Re: 10 Minute Web Application Demo

2011-02-16 Thread Nicolas Barrera
Same behaviour as Joel Halbert, Ubuntu 10.10 and ff, kind of weird. Nicolás.-

Re: Noticed another stackoverflow question on Tapestry 5, go vote

2011-02-09 Thread Nicolas Barrera
Hi antalk, You could use Tapestry and use many different datasources..., since tapestry is a presentation framework, I think you could just drop tapestry-hibernate. I 'm using tapestry backed up with pre-existent spring/hibernate beans and although I 'm not using it right now I think I could use

Re: Firefox 4 and required attribute

2011-02-05 Thread Nicolas Barrera
ll browsers will somehow support this. > > The question is who is outputting the attribute? > > On Fri, Feb 4, 2011 at 21:06, Nicolas Barrera wrote: > > Hi, > > > > I 've not tested it personally but my client has used ff4 with my t5 > > application. > >

Firefox 4 and required attribute

2011-02-04 Thread Nicolas Barrera
Hi, I 've not tested it personally but my client has used ff4 with my t5 application. The unexpected result is that ff checks for that field to have a value... preventing tapestry own validation to execute. is that a kind of issue on tapestry?, I really don't know but maybe the required attribut

Re: Question on Tapesry Services IoC

2011-01-26 Thread Nicolas Barrera
> wrote: > > > >> Nicolas, > >>I might actually have a bit of time to implement this enhancement. It > >> should be an easy enhancement that should have zero impact on the > current > >> users. > >> > >>I'll respond in this thr

Re: Question on Tapesry Services IoC

2011-01-25 Thread Nicolas Barrera
; your own value for the "spring-security.target.alwaysUseDefault". Would > that > work for you ? This certainly seems like a capability that would be useful > to be able to configure T-S-S with. > > Anyway, let me know if you want this, or if this was just an academi

Re: Question on Tapesry Services IoC

2011-01-25 Thread Nicolas Barrera
http://tapestry.apache.org/tapestry5/tapestry-ioc/startup.html Nicolás.- On Tue, Jan 25, 2011 at 10:44 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Tue, 25 Jan 2011 11:33:16 -0200, Nicolas Barrera > wrote: > > Hi Thiago, >> > > Hi, Nic

Re: Question on Tapesry Services IoC

2011-01-25 Thread Nicolas Barrera
do < thiag...@gmail.com> wrote: > On Tue, 25 Jan 2011 11:24:00 -0200, Nicolas Barrera > wrote: > > Concisely what I want is to get a Service from a 3rd party module and >> change one of it's properties, any ideas on the simplest way to do it >> without >> in

Re: Question on Tapesry Services IoC

2011-01-25 Thread Nicolas Barrera
r > implementation (see documentation) > > g, > kris > > > > > > Von:Nicolas Barrera > An: Tapestry users > Datum: 21.01.2011 17:27 > Betreff:Re: Question on Tapesry Services IoC > > > > Thanks Kristian, > > first I want to a

Re: Question on Tapesry Services IoC

2011-01-21 Thread Nicolas Barrera
n.marinko...@porscheinformatik.at> wrote: > hi nicloas, > > you could use a builder method to decouple tapestry ioc from 3rd party > libraries/constructors > > public SomethingManager buildSomethinManager(Map<> map, ...) > { > return new SomethingManger(map, ... ); > }

Re: Question on Tapesry Services IoC

2011-01-20 Thread Nicolas Barrera
ing to manage > > public static void > contributeSomethingManager(MappendConfiguration > configuration) { > // put items in that eventually end up in SomethingManager > } > > MappedConfiguration has an override method which you can use to set a > value on top of another from within you

Question on Tapesry Services IoC

2011-01-19 Thread Nicolas Barrera
Hi, I 'm trying to understand how does Tapestry IoC works.., I 'm currently reading the new docs and I 'm also putting my hands on an example I got on a working application. What I can't understand yet is how does contribution works, I got that you can define a Service like: public static SaltS

Re: ValidationException constructor arguments

2011-01-18 Thread Nicolas Barrera
Just returning void after recording various errors.., worked fine... thanks Nicolás.- On Tue, Jan 18, 2011 at 4:12 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Tue, 18 Jan 2011 16:43:24 -0200, Nicolas Barrera > wrote: > > So I thought.., if I can

Re: ValidationException constructor arguments

2011-01-18 Thread Nicolas Barrera
Thiago..., thanks for answering, that's what i was doing, I implemented an event handler like this: public void onValidateFormFromExample() throws ValidationException { > I think I misread some information at this page: http://tapestry.apache.org/input-validation.html > Now, what if you want

ValidationException constructor arguments

2011-01-18 Thread Nicolas Barrera
Hi, I wanted to ask as a design question... why do you think ValidationException only accepts a String as it's constructor argument? Right now I 'm working on a form's validation, validation of a field value depends upon other field's value so I thought the only way to do that would be on server

Re: Grid with Scroll synchronization + Customization

2010-12-28 Thread Nicolas Barrera
Jim, I think Duruk said that he's already managing pagination... so I think that he's already using setMaxResults... unless he's using pagination only in the view side but not paginating the query... (using maxresult). Duruk, if you 're not using max result in your queries, you 're just pagina

  1   2   >