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:

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

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:

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

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 base href= as HTML headers, making me problems with accessing my application through some

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 base href=

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:

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

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/ViewComponentsp=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 a

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 contribution configuration-id=hivemin.FactoryDefaults foo / /contribution (The code is made up and probably non functional, but you get the idea). On 9/5/06, Robert

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 Robert Cole
I finally got it working. For reference, here's my solution: service-point id=MySettings interface=org.apache.hivemind.SymbolSource invoke-factory construct class=org.apache.hivemind.service.impl.DefaultSymbolSource set-configuration

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 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

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: 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())

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

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

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.