Re: Managing a large multi-team project with Tapestry 5

2011-04-18 Thread antalk
What i've done for our company where we work with 3 people on one site is to divide the site into smaller component libraries, each library is a standalone JAR which on deployment get released in the WEB-INF\lib folder allowing the 'main' site to find this module and make use of it. see: http://

Re: LinkSubmit on T5.1.0.8

2011-04-18 Thread Dmitriy Vsekhvalnov
yeah, interesting it did a trick. but only when i assigned t:id for all components on the page. On Mon, Apr 18, 2011 at 11:31 PM, Howard Lewis Ship wrote: > I'm not sure why the upgrade causes this problem, but the error you > are seeing is associated with having a Select component and not > ass

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-18 Thread TG
Your sample codes works, thanks for that! :) Now, how do I make use of this, as my codes use Enum type? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4312003.html Sent from the Tapestry - User mailing list arc

Managing a large multi-team project with Tapestry 5

2011-04-18 Thread York, John
Hi all, my organization recently released a large project using Tapestry 5. We are in the process of starting another large project and are hoping to leverage some of the existing Tapestry work and components that have already been implemented. We plan to form a second team and would like that t

Re: Multiple Portlets / Sharing SSOs across contexts

2011-04-18 Thread Moritz Gmelin
OK, step 1 solved. I needed to put the tapestryportlet relevant stuff in the context WEB-INF/lib and leave the pure tapestry stuff in the Jetty lib/ext directory. Now I can have multiple portlets in different contexts of my liferay-jetty and display those portlets on my page. Great! (Using tape

Re: LinkSubmit on T5.1.0.8

2011-04-18 Thread Howard Lewis Ship
I'm not sure why the upgrade causes this problem, but the error you are seeing is associated with having a Select component and not assigning a specific component id to it. The default component id is then "select", which is then the default client side id, which is in conflict with the the select(

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-18 Thread Taha Hafeez
Hi I was busy so couldn't write an example for you. I had never used this library directly but I have read its source when I started learning tapestry 5 months ago and it is a great great help. A lot of my components are just a modification of these components( at times the same component but reim

Re: HTMLUnit & Tapestry 5

2011-04-18 Thread Ray Nicholus
I'm actually struggling quite a bit with HTMLUnit. I'm finding quite a few pages that work just fine in "real" browsers but not so well in HTMLUnit. On Mon, Apr 18, 2011 at 12:36 AM, Kalle Korhonen wrote: > Whoops :) To answer your previous question, I have yet to find a > scripted page that wo

LinkSubmit on T5.1.0.8

2011-04-18 Thread Dmitriy Vsekhvalnov
Is it broken? After upgrade from 5.1.0.5 found that all LinkSubmit stop working. Debugging shows JS exception: 'TypeError: Property 'select' of object # is not a function' inside tapestry.js createHidden() function.

Re: New component library

2011-04-18 Thread Howard Lewis Ship
On Mon, Apr 18, 2011 at 11:11 AM, Christian Köberl wrote: >> Is there a SINGLE place , a Tapestry Component Hub, or something where all >> of us can put our components in ? Or what is your opinion on this ? >> >> And can i place my library (once released) on the Tapestry.org site ? or >> are >> th

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-18 Thread TG
ANymore kind soul out there that can help? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4311399.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: New component library

2011-04-18 Thread Christian Köberl
Is there a SINGLE place , a Tapestry Component Hub, or something where all of us can put our components in ? Or what is your opinion on this ? And can i place my library (once released) on the Tapestry.org site ? or are there some requirements to be fulfilled in order 'earn' a place on the Tapest

Re: New component library

2011-04-18 Thread Alex Kotchnev
Playing devils advocate here for a bit .. - Sounds like a lot of work for a feature that many people would like but are not willing to put the time in for it. Also, such a repository is a blessing and a curse - on many of the "plugin repositories" that I've seen (e.g. jquery, grails, netb

Re: New component library

2011-04-18 Thread antalk
Something like this is what i'm looking for ! And i guess a lot of people here also. This would be an excellent idea to integrate into the existing site. -- View this message in context: http://tapestry.1045711.n5.nabble.com/New-component-library-tp4310339p4310720.html Sent from the Tapestry -

Re: How to get the Zone ID from a form (or a submit button)

2011-04-18 Thread Lenny Primak
I figured it out!. findZoneManager wasn't finding the zone because it was getting called during initialization before the zone actually gets instantiated by tapestry's init javascript. I moved the findZoneManager code into the actual click event, and not it works perfectly. Thanks! Now I need

Re: New component library

2011-04-18 Thread Nikola Milikic
Just my 2 cents regarding this general issue of third-party components being listed at one place. Take a look at the Vaadim's add-ons directory . jQuery has the similar thing . I think it would be totally cool to have the similar site for Ta

Re: MailMessagePreparer - embedding images (howardlewisship.tapx)

2011-04-18 Thread Richard Hill
> > It's funny ... the client I wrote this code for didn't actually want > the multi-part message portion; I wrote it thinking they did, THEN > they clarified their system, which relies on a content delivery > network. Glad it was of use! Yes it was thanks. Constructing multipart messages is a

Re: New component library

2011-04-18 Thread Christian Gruber
Some confusion here. Maven is a binary deployment repository. You're asking about a source repository. You can use code.google.com which supports svn and mercurial for source control, github.com, which supports git, sourceforge.com which supports at least svn. Any of these would do. But, please

Re: New component library

2011-04-18 Thread Taha Hafeez
Hi You can host it on https://github.com or http://apache-extras.org/ or code.google.com regards Taha On Mon, Apr 18, 2011 at 5:38 PM, antalk wrote: > The 'problem' with Maven is that it is a read-only repository. I want users > to be able to create bugfixes and or new features. Otherwise ever

Re: New component library

2011-04-18 Thread antalk
The 'problem' with Maven is that it is a read-only repository. I want users to be able to create bugfixes and or new features. Otherwise everyone will be depending on how often we release. -- View this message in context: http://tapestry.1045711.n5.nabble.com/New-component-library-tp4310339p43105

Re: New component library

2011-04-18 Thread LLTYK
Put it in Maven. -- View this message in context: http://tapestry-users.832.n2.nabble.com/New-component-library-tp6282982p6283152.html Sent from the Tapestry Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: us

New component library

2011-04-18 Thread antalk
Hi all, I've had the privilege to work on 2 web projects for our company for which i made the decision to create them with Tapestry . (A good decision in my opinion ;) ) As this progressed i create a shared components library for both projects with some really interesting components like: Dropdo

Multiple Portlets

2011-04-18 Thread Moritz Gmelin
Hi, I have tried using Markus Feindlers code to create some portlets for a liferay portal server. It started very promissing but now I am quite stuck with some tapestry issues. In order for those portlets to get initialized in liferay I needed to place all tapestry jars in the lib folder of th

Re: Blog Post: Tapestry Magic #1

2011-04-18 Thread Taha Hafeez
Hi Thiago & everyone.. Added another post http://tawus.wordpress.com/2011/04/18/meeting-plastic/ regards Taha On Mon, Apr 18, 2011 at 5:47 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sun, 17 Apr 2011 15:18:39 -0300, Adam Zimowski > wrote: > > Hi Taha - >> > > Hi! > >