Re: Recommended method to reference assets in .css file?

2012-04-25 Thread badluck13
For practical reasons, I hold all css and image files, directly on server. And I reference full path from application. Its easier for designer to do changes directly on the server, and to not handle with any IDE that we use. They mostly use Dreamweaver for editing css. Bojan -- View this messa

[t5.3.2] Inject hibernate Session problem

2012-04-21 Thread badluck13
Hi guys, I have clean quickstart archetype app, and added tapestry-hibernate to pom. And hibernate.cfg.xml to resources. And after I injected Session to index page I got: No service implements the interface org.hibernate.classic.Session. Is this something new to T5.3 because Session before was

[T5.3.2] Gradle build error

2012-02-13 Thread badluck13
With last release T5.3.2 gradle is trowing exception d:\workspaceNextGen\regme>gradle FAILURE: Build failed with an exception. * Where: Build file 'D:\workspaceNextGen\regme\build.gradle' line: 17 * What went wrong: A problem occurred evaluating root project 'regme'. Cause: You must specify a u

Re: [ANNOUNCE] Tapestry release 5.3.2

2012-02-13 Thread badluck13
Hi just to post a small issue with this release, gradle build is not working in T5.3.2 : d:\workspaceNextGen\regme>gradle FAILURE: Build failed with an exception. * Where: Build file 'D:\workspaceNextGen\regme\build.gradle' line: 17 * What went wrong: A problem occurred evaluating root project

Re: Tapestry for mobile devices

2010-11-15 Thread badluck13
Hi, First of all, I'm gonna respond to this mail in design point of view. Mobile devices now have huge displays and they can display web pages as any computer. But why people build mobile versions of their web sites? Because of USABILITY. Most of web sites are not so good in usability when they

Re: [t5] response encode and redirect problem!

2010-08-26 Thread badluck13
I don't know how to get URL!? :( -- View this message in context: http://tapestry.1045711.n5.nabble.com/t5-response-encode-and-redirect-problem-tp2715046p2739157.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

[t5] response encode and redirect problem!

2010-08-26 Thread badluck13
Hello, I'm trying to redirect to different web site and I have token = "EC-4WT66732GJ787622M" This is string token that I get from paypal... Now on theirs examples I should encodeRedirectURL and than redirect to theirs page... like this: response.sendRedirect(response.encodeRedirectURL(token));

Re: [T5] and PayPal

2010-08-25 Thread badluck13
Sorry, but for now I must also hack it, because I'm out of time and deadline is really close... But in near future I'm interested to work with you to create module for paypal, even components and other stuff, but right now I need solution, and I need it fast ^_^ So if you can share your hack cod

[T5] and PayPal

2010-08-25 Thread badluck13
Did anyone integrated paypal with tapestry? And if you did can you share a little code example... ^_^ TNX -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-and-PayPal-tp2652987p2652987.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: [T5.1] Loop and position of elements

2010-08-23 Thread badluck13
Sorry I mislead you, I already do that onActivate() method... Any other possible solutions? :( -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-1-Loop-and-position-of-elements-tp2644473p2644669.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

[T5.1] Loop and position of elements

2010-08-23 Thread badluck13
Hello dear list, I have little issue here, I have a collection that I fill with values using action links, its empty in begging and I'm adding objects afterwards... @Persist private List l = new ArrayList(); onActionFromAdd(Object o){ l.add(o); } and with help of zone I redisplay loop...