Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread Jeremy Ford
The action parameter is used by Turbine to run this action first before any rendering occurs. Using the action parameter allows you to use the forwarding service/redirect mechansims. Placing items into the context will be lost because your portlet will get a new context during the render phase

RE: Default Template

2004-05-06 Thread Andy . Sun
A new psml file is created for the new user based on the following property in the JetSpeedResource.propterties file. services.Profiler.newuser.template= It is default to "turbine" right out of box. That means the new user will get a copy of turbine's psml. If you want a user to see contents from t

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread cyaconi
Now it's working perfect.. THANK YOU VERY MUCH JEREMY!! And just to know... when do I use the action parameter?? "Jeremy Ford" <[EMAIL PROTECTED]> 06-05-2004 15:16 Por favor, responda a "Jetspeed Users List" <[EMAIL PROTECTED]> Para [EMAIL PROTECTED] cc Asunto Re: VelocityPortlet Set to MA

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread Jeremy Ford
The link should look like: http://127.0.0.1/intranet/portal/media-type/html/user/anon/page/default.psml?idArticulo=7&eventSubmit_doDetalle= Do not pass the action parameter. Jeremy Ford [EMAIL PROTECTED] From: [EMAIL PROTECTED] Reply-To: "Jetspeed Users List" <[EMAIL PROTECTED]> To: "Jetspeed

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread cyaconi
What do you mean with "the link that you use to fire you action should not include the action in the url"?. If I not include the action, How can jetspeed know wich do method must execute? This is the URL I'm invoking: http://127.0.0.1/intranet/portal/media-type/html/user/anon/page/default.ps

Re: Help with VelocityPortletAction

2004-05-06 Thread Michael Rothrock
You can exit your buildNormalContext method without doing anything by setting a flag in the request. Put the following line in your action: rundata.getRequest().setAttribute("skip_normal", new Boolean(true)); And put the following at the start of buildNormalContext: Boolean reqVal = (Boolean)

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread Jeremy Ford
If you are using then GenericMVC action/portlets, then the link that you use to fire you action should not include the action in the url. Jetspeed will automatically run the action in your portlet. Jeremy Ford [EMAIL PROTECTED] From: [EMAIL PROTECTED] Reply-To: "Jetspeed Users List" <[EMAIL PR

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread cyaconi
Making a "dirty" play with session variables, I'm controling the flow, but my problem now is that the object that was put in context in the doXXX method, aren't there when the buildNormalContext() is called again, so the template can't render it... What could be happening!?? Please, any help i

RE: Converting the existing application into portal framework

2004-05-06 Thread Mark Orciuch
There's WebSurfPortlet offered at the Jetspeed Community Portlets page: http://portals.apache.org/jetspeed-1/community-portlets.html. From portlet description, it sounds like what you want. Unfortunately, it hasn't been updated to work with latest releases. I'm sure with some effort, you could make

Customize the jetspeed ldap 's schema

2004-05-06 Thread [EMAIL PROTECTED]
Hi I'm a newbie. I'm using JestSpeed 1.4 with OpenLdap 2.0.25. The Authentication works fine , but I need to customize the jetspeed ldap default schema. I managed to add an ldap's attribute but I don't know how to get it from a portlet. There's a way to do it ? It is Possible to customize the

Customize the jetspeed ldap 's schema

2004-05-06 Thread [EMAIL PROTECTED]
Hi I'm a newbie. I'm using JestSpeed 1.4 with OpenLdap 2.0.25. The Authentication works fine , but I need to customize the jetspeed ldap default schema. I managed to add an ldap's attribute but I don't know how to get it from a portlet. There's a way to do it ? It is Possible to customize the

Re: Jetspeed Licensing

2004-05-06 Thread Raphaël Luta
Le 6 mai 04, à 12:01, Jonathan Hawkins a écrit : We are looking at using Jetspeed as our Portal container for our various web applications. Do we have to display the "Powered by Jetspeed" logo ? Many thanks No, it's not a requirement. The license simply asks you to acknowledge the use of Jetsp

RE: Jetspeed 1.5 tutorial build failure for goal torque:sql-gener ate

2004-05-06 Thread Nicolas MAYEUR
Thank's a lot. It's working now! Nico -Message d'origine- De : Raphaël Luta [mailto:[EMAIL PROTECTED] Envoyé : mercredi 5 mai 2004 19:30 À : Jetspeed Users List Objet : Re: Jetspeed 1.5 tutorial build failure for goal torque:sql-gener ate Given the issues you describe, I'd say it's rela

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread cyaconi
Thank you Stuart, and given this behavior, is there any pattern or best practices implementing an action??? I don't want to re-invent the wheel, so ppl, please share your experience in this topic. Thank you!! PD: I come from the struts world, where the action methods is executed independently

Customize the jetspeed ldap 's schema

2004-05-06 Thread [EMAIL PROTECTED]
Hi I'm a newbie. I'm using JestSpeed 1.4 with OpenLdap 2.0.25. The Authentication works fine , but I need to customize the jetspeed ldap default schema. I managed to add an ldap's attribute but I don't know how to get it from a portlet. There's a way to do it ? It is Possible to customize the

Default Template

2004-05-06 Thread Jonathan Hawkins
I have created a default template for a non-logged in user ok, copied the required default.psml file to the anon user. I also want a template for a new logged in user who belongs to a specific group. I created a new user and setup the portlets they would see, no problem, copied the psml file from

Jetspeed Licensing

2004-05-06 Thread Jonathan Hawkins
We are looking at using Jetspeed as our Portal container for our various web applications. Do we have to display the "Powered by Jetspeed" logo ? Many thanks Jon -Original Message- From: Stefano Bianchi [mailto:[EMAIL PROTECTED] Sent: 06 May 2004 08:49 To: Jetspeed Users List Subject: Re

Help with VelocityPortletAction

2004-05-06 Thread cyaconi
Hi. Please, I need help or at least, some kind of information. How can avoid the call to buildNormalContext method??? I mean, I need to execute another method in the action (which is executed), but always, and after the call to my own method, the buildNormalContext is called again. Please, help!

Re: VelocityPortlet Set to MAXIMIZE mode

2004-05-06 Thread Stuart Belden
buildNormalContext() is always executed after any action is called. One way to avoid this is to loop through the req parameters and exit rendering in BNC if you find a param that beings with (eventSubmit_) >>> [EMAIL PROTECTED] 05/05/04 07:02PM >>> Hi people... I'm building a VelocityPortletAct

Re: Converting the existing application into portal framework

2004-05-06 Thread Stefano Bianchi
Dear Oliver, you are right, but I was speaking of a "one minute setup"! 1. no portal context -> isolated context (e .g user information have to be submitted through url...not beautiful) Usually, my webapps starts with a jsp retrieving user info from the portal with proper tags. 2. no layout schem

AW: Converting the existing application into portal framework

2004-05-06 Thread Oliver Pfau
Hi, I am working on this problems, too. But when you use an iframe you have significant disadvantages: 1. no portal context -> isolated context (e .g user information have to be submitted through url...not beautiful) 2. no layout scheme from the portal 3. possibly a scrollbar hierarchy the minim

Re: Converting the existing application into portal framework

2004-05-06 Thread Stefano Bianchi
Dear Karthik, my personal experience for a quick setup: use an IFramePortlet to host an external webapp inside Jetspeed Everything "seems" integrated but you keep modules separated. All my portal is setup this way. Hope it helps somehow Cheers, Stefano - Original Message - From: "Kart

Converting the existing application into portal framework

2004-05-06 Thread Karthik
Hi All, I have just started to work on portal implementation of our Web Application using Jetspeed-1.5. My present scenario is: 1. I have a working web application. 2. I have to implement the portal concept into my web application. 3. I have downloaded the Jetspeed1.5 war file and