Re: Tap3 file system help

2006-09-05 Thread Peter Dawn
cheers mate. i will give this a try and see how i go. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Custom Component - best solution?

2006-09-05 Thread jake123
Thank you Ed for your fast answer. This looks like it solve all my problems //Jacob -- View this message in context: http://www.nabble.com/Custom-Component---best-solution--tf2220888.html#a6156680 Sent from the Tapestry - User forum at Nabble.com.

Re: Tapestry-acegi pom.xml

2006-09-05 Thread Patrick Moore
A little bit of cavaet emptor on using version ranges in maven2 dependencies. This is a feature that I hope all library writers start using! (including hivemind and tapestry) There is an issue with several projects in the repositories having bad maven-metadata.xml files. Also mvn install:install

RE: I'm trying to get the marvelous BeanForm component working with tap 4.1

2006-09-05 Thread Mark Stang
Switch to Gentoo and have a current system. :-). -Original Message- From: Josh Long [mailto:[EMAIL PROTECTED] Sent: Sun 9/3/2006 1:44 AM To: Tapestry users Subject: Re: I'm trying to get the marvelous BeanForm component working with tap 4.1 ROFL! that's the best response ever!! I'm so

RE: Tap3 file system help

2006-09-05 Thread Mark Stang
Peter, I believe it is built into Tapestry kinda sorta: public void download(IRequestCycle cycle) { if (getOkToDownload()) { HttpServletResponse response = getPage().getRequestCycle().getRequestContext().getResponse(); if (getNoCache())

MasterDetail page + Hibernate + rewinding phase question (question from stupid person :) )

2006-09-05 Thread Vinicius Carvalho
Hello there! From now on I'll just assume I'm stupid. So if anyone cares to help me (remember you are going to be explaining to a stupid person ;) ) I've post this before (a topic comparing with JSF). here's my situation: A master detail page ok? An Event has a mediator and a set of participants

Re: Table component + OpenSessionInView problems

2006-09-05 Thread Vinicius Carvalho
Nope, I don't have any persistent anymore, I used to have but not anymore... Regards On 9/5/06, Eric Fesler <[EMAIL PROTECTED]> wrote: Do you have any persistent properties related to Evento on your page ? If somehow, you have a persistent Evento or if you have serialized an Evento somwhere in

RE: Hivemind is doing my nut. Override FactoryDefaults?

2006-09-05 Thread Jean-Francois Poilpret
If I understand well the initial problem, ie overriding some value defined already in FactoryDefaults, then the normal, out-of-the-box, solution with HiveMind is to define the new value (with the same symbol name) as a contribution to the hivemind.ApplicationDefaults. That's exactly the idea behin

Re: two buttons in dynamic form

2006-09-05 Thread Jani Lindqvist
I made 2 Submit components with different listener methods and pass the selected element with selected / tag attributes and it works fine. On 9/5/06, Jani Lindqvist <[EMAIL PROTECTED]> wrote: Hi All, I have a page that needs to list edit/save forms for elements contained in a collection. For

Re: Hivemind is doing my nut. Override FactoryDefaults?

2006-09-05 Thread Robert Cole
I finally got it working. For reference, here's my solution: Rob Cole

Re: Writing Tapestry 4 app while keeping in mind Tapestry 5 migration points?

2006-09-05 Thread Jesse Kuhnert
Use services to handle lots of your redundant logicStuff like that. Your custom components will have to change no matter what you do, but the basic concept of IOC will still be there so going with that would be a start. On 9/5/06, Josh Joy <[EMAIL PROTECTED]> wrote: Hi All, Currently I'm

Re: Hivemind is doing my nut. Override FactoryDefaults?

2006-09-05 Thread Jesse Kuhnert
I think to override a value you just simply define a new contribution configuration point for hivemind.FactoryDefaults no? Ie (The code is made up and probably non functional, but you get the idea). On 9/5/06, Robert Cole <[EMAIL PROTECTED]> wrote: Hi all, hopefully a very quick one. Ca

Re: Custom Component - best solution?

2006-09-05 Thread Ed Ross
you might want to take a look at http://www.tapestrycomponents.org/Tassel/app?service=external/ViewComponent&sp=SJSCookMenu for some existing menus and how this could be accomplished. On 9/5/06, jake123 <[EMAIL PROTECTED]> wrote: Hi, I am trying to create a custom component that will create

Hivemind is doing my nut. Override FactoryDefaults?

2006-09-05 Thread Robert Cole
Hi all, hopefully a very quick one. Can someone please give me a pointer as to how to override a value in hivemind.FactoryDefaults? Its been holding me up for the last 2 hours and I'm about to pull out what's left of my hair. So far I think that I need to create my own SymbolSource contributio

Custom Component - best solution?

2006-09-05 Thread jake123
Hi, I am trying to create a custom component that will create a menu and submenus to that menu on a completly dynamic web page. The entire site are build up with "components" and I get the entire structure from the database. In the web layer I have a Object called SiteDTO that looks like this:

Re: Urgent! How to remove "base href" generation?

2006-09-05 Thread Richard Kirby
Add renderBaseTag="false" to your @Shell component. Richard. Vjeran Marcinko wrote: Hello. I hate this kind of situations where I need urgently to do something that I haven't done before, and I cannot find documentation on how to do it either. Anyway, Tapestry 4.0.2 generates as HTML head

Urgent! How to remove "base href" generation?

2006-09-05 Thread Vjeran Marcinko
Hello. I hate this kind of situations where I need urgently to do something that I haven't done before, and I cannot find documentation on how to do it either. Anyway, Tapestry 4.0.2 generates as HTML headers, making me problems with accessing my application through some virtual host which

BORDER component encoding

2006-09-05 Thread spamsucks
I'm trying to make my border component to output HTML in the appropriate encoding. This is not the localization issue, just the matter of making my component output in Unicode. The template itself ( the one that is "bordered" by Border ) is outputting correct Unicode, but the border component itse

Re: Table component + OpenSessionInView problems

2006-09-05 Thread Eric Fesler
Do you have any persistent properties related to Evento on your page ? If somehow, you have a persistent Evento or if you have serialized an Evento somwhere in your page, this could explain your lazy instantiation exception. -- ERic On Monday 04 September 2006 21:31, Vinicius Carvalho wrote: >

Writing Tapestry 4 app while keeping in mind Tapestry 5 migration points?

2006-09-05 Thread Josh Joy
Hi All, Currently I'm writing a new Tapestry 4 app. I was wondering if there was some ways I should watch out for when I build my app that will help make the transition to Tapestry 5 smoother? For instance, I was reading through the email archives and it was mentioned to stay away from OGNL? (

two buttons in dynamic form

2006-09-05 Thread Jani Lindqvist
Hi All, I have a page that needs to list edit/save forms for elements contained in a collection. For every element we need to give save button and a button to mark it as complete, that contains a bit more logic. before the completion button was added to the page i just put everything in one form

Re: CMS Integration

2006-09-05 Thread soir
Hello, I work on the integration of Jackrabbit repository with Tapestry. So far, I have implemented the loading of localized assets from CMS and now I am working on the loading of message files from CMS. Igor -- View this message in context: http://www.nabble.com/OT%3A-Tacos-issues-tf1875199.h