You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-user@portals.apache.org by "Ing. Andrej Vanek" <a....@bonum.sk> on 2005/06/22 11:46:16 UTC

Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Hello,

I am runnning Jetspeed-2. My intention is to put a link to a web application into the user's portal page. If he clicks on it I expect to open a new browser window running the web application without explicitely to have to login again- it should use the Jetspeed-2's SSO login. I do want to run the web application in a separate web-browser window, not as part of the portal via any portal bridge (because of window size, speed, no changes to javascript and application etc). But I would like to use portal to integrate my running web applications.

I suppose this could be acomplished by sharing Jetspeed-2's SSO with external web application which is to be opened from the portal. Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell me much about how to do it... 

Could anybody give me some information (or links, documentation, articles) how to use the Jetspeed-2's SSO and how to collaborate with other web applications running on the same Tomcat Instance?
Did anybody already solve this issue?

Best Regards, Andrej

Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by Andrej Vanek <a....@bonum.sk>.
I tried to do what you said but unfortunately it does not work...
I did it this way:

(1) opened http://localhost:8080/jetspeed/ in a web browser and logged in as
user admin (via Login Portlet)
(2) put http://localhost:8080/test/ to the address line in the same browser
window (IE6.0 on win2k) to see getUserPrincipal
the http://localhost:8080/test/ app contained only one jsp:
<html><head><title>Test</title></head>
<body>
  <h3>Test autorizacie</h3>
  <%
        out.println("User Principal: " + request.getUserPrincipal());
  %>
</body>
</html>
(3) response seen in web browser:
Test autorizacie
User Principal: null
(4) then re-typed the address back to http://localhost:8080/jetspeed/
and seen the user admin is still logged in jetspeed (see login Portlet)

I do not see clearly why should it work if my webapp (the above jsp) is not
configured to use the same SSO as jetspeed uses.
My question is how to configure both of them: the jetspeed-2's SSO and the
web app's configuration (or tomcat container's realm config?).

Best Regards, Andrej
----- Original Message -----
> From: "David Sean Taylor"
> To: "Jetspeed Users List"
> Sent: Thursday, June 23, 2005 3:00 AM
> Subject: Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB
applications running on the same Tomcat instance?
>

> Since we are using JAAS to authenticate in Jetspeed-2, your web
> application running in the same instance could get the authenticated
> user from the servlet request's getUserPrincipal.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org>
Ing. Andrej Vanek wrote:
> > Hello,
> >
> > I am runnning Jetspeed-2. My intention is to put a link to a web
> > application into the user's portal page. If he clicks on it I expect
> > to open a new browser window running the web application without
> > explicitely to have to login again- it should use the Jetspeed-2's
> > SSO login. I do want to run the web application in a separate
> > web-browser window, not as part of the portal via any portal bridge
> > (because of window size, speed, no changes to javascript and
> > application etc). But I would like to use portal to integrate my
> > running web applications.
> >
> > I suppose this could be acomplished by sharing Jetspeed-2's SSO with
> > external web application which is to be opened from the portal.
> > Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does
> > not tell me much about how to do it...
> >
> > Could anybody give me some information (or links, documentation,
> > articles) how to use the Jetspeed-2's SSO and how to collaborate with
> > other web applications running on the same Tomcat Instance? Did
> > anybody already solve this issue?
> >
> > Best Regards, Andrej
> >




---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jetspeed-2's JAAS config: How to?

Posted by James Liao <ji...@gmail.com>.
Hi Andrej,
Check this issue for JAAS authentication, there is something you pay
attention to.
http://issues.apache.org/jira/browse/JS2-238

- JamesLiao

On 6/29/05, Santiago Urrizola <ch...@yahoo.com.ar> wrote:
> Andrej
> 
> > (1) where can I tell jetspeed-2 to use another JAAS module than the
> > default
> > one?
> 
> If you want to change de LoginModule try to see this file
> components\security\src\java\login.conf
> I change all the login process but isnt necesary to change the LoginModule
> 
> Saludos
> Santiago
> 
> ----- Original Message -----
> From: "Andrej Vanek" <a....@bonum.sk>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Wednesday, June 29, 2005 5:03 AM
> Subject: Jetspeed-2's JAAS config: How to?
> 
> 
> > Hello,
> >
> > does anybody know anything about Jetspeed-2's JAAS configuration ?
> > Particularly:
> >
> > (1) where can I tell jetspeed-2 to use another JAAS module than the
> > default
> > one?
> > (2) does anybody know anything about JOSSO (http://www.josso.org)? Can it
> > be
> > used instead of jetspeed-2's JAAS authentication ?
> >
> > Andrej
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> > For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> >
> 
> 
> 
> 
> 
> 
> ___________________________________________________________
> 1GB gratis, Antivirus y Antispam
> Correo Yahoo!, el mejor correo web del mundo
> http://correo.yahoo.com.ar
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jetspeed-2's JAAS config: How to?

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
Andrej

> (1) where can I tell jetspeed-2 to use another JAAS module than the 
> default
> one?

If you want to change de LoginModule try to see this file
components\security\src\java\login.conf
I change all the login process but isnt necesary to change the LoginModule

Saludos
Santiago

----- Original Message ----- 
From: "Andrej Vanek" <a....@bonum.sk>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Wednesday, June 29, 2005 5:03 AM
Subject: Jetspeed-2's JAAS config: How to?


> Hello,
>
> does anybody know anything about Jetspeed-2's JAAS configuration ?
> Particularly:
>
> (1) where can I tell jetspeed-2 to use another JAAS module than the 
> default
> one?
> (2) does anybody know anything about JOSSO (http://www.josso.org)? Can it 
> be
> used instead of jetspeed-2's JAAS authentication ?
>
> Andrej
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Jetspeed-2's JAAS config: How to?

Posted by Andrej Vanek <a....@bonum.sk>.
Hello,

does anybody know anything about Jetspeed-2's JAAS configuration ?
Particularly:

(1) where can I tell jetspeed-2 to use another JAAS module than the default
one?
(2) does anybody know anything about JOSSO (http://www.josso.org)? Can it be
used instead of jetspeed-2's JAAS authentication ?

Andrej



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
hi, i have really two problems,
the first problem, is i cant order the psml files inside a folder,
and de second is i cant oder de folder (groups of links) in the left menu

i have a folfer.metadata i all directories.
the /pages/folder.metadata (root of pages) containes the order of the 
folders (group of links)  like this
  <document-order>inicio.ds</document-order>
  <document-order>registro.ds</document-order>
  <document-order>contacto.ds</document-order>

its works fine, but not when i enter some link (i lost this order)

but the worst problem is inside a folder i cant order the psml pages in it, 
soy
the inicio.ds file contains this

 <document-path regexp="true">/inicio/*.*</document-path>

and inside the /inicio fodler i have a folder.metadata file who order all 
the pages in the folder.
But they didnt order.
 i still not understan wath happens.





----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 1:56 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
>
> Seems like the use case is more complex than I had thought.
>
> However, i do not see the <document-order/> entries, (for the document 
> sets), from your first email here in this folder. Could that be the issue?
>
> Try to make ALL of the folder.metadata directories contain all the same 
> entries, (btw: yes, I know it is ugly).
>
> Randy
>
> Santiago Urrizola wrote:
>
>> Here is my folder.metadata in the /inicio folder
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <folder>
>>  <title>Inicio</title>   <document-order>noticias.psml</document-order>
>>  <document-order>eventos.psml</document-order>
>>  <document-order>buscador.psml</document-order>
>>  <document-order>proveedores.psml</document-order>
>>  <document-order>criticas.psml</document-order>
>>  <document-order>cupones.psml</document-order>
>>  <security-constraints>
>>    <security-constraints-ref>public-view</security-constraints-ref>
>>  </security-constraints>
>> </folder>
>>
>>
>> but in the menu the pages still apaears in alfabetycal order.
>> Wath happens ??
>>
>>
>> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
>> To: "Jetspeed Users List" <je...@portals.apache.org>
>> Sent: Tuesday, June 28, 2005 12:38 PM
>> Subject: Re: Jestpeed 2 - Left Menu order
>>
>>
>>> Santiago,
>>>
>>> ordering is not a strength of this impl. try copying your 
>>> folder.metadata entries deeper in your pages subdirs.
>>>
>>> HTH,
>>>
>>> Randy
>>>
>>>
>>> Santiago Urrizola wrote:
>>>
>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>
>>>> Have this strcutre in my portal
>>>>    /web-inf/pages
>>>>                    /contact
>>>>                    /init
>>>>                    /register
>>>>
>>>> i the page directory i order this folder in the folder.metadata file
>>>>  <document-order>init.ds</document-order>
>>>>  <document-order>register.ds</document-order>
>>>>  <document-order>contact.ds</document-order>
>>>>
>>>> So when i enter the portal, the menu looks in this order (each .ds file 
>>>> containts the pages inside echar folder)
>>>>            1 - init
>>>>            2 - register
>>>>            3 - contact
>>>>
>>>> The problem is when i link some menu in the init group (the first group 
>>>> in the menu) automaticaly the left menu changes his order and looks 
>>>> like this
>>>>
>>>>        1 contact
>>>>        2 init
>>>>        3 contact
>>>>
>>>>  This is the alfabetical order of the folders, how can i change this ?? 
>>>> i need help please !!!
>>>> Santiago
>>>>
>>>>
>>>>    ___________________________________________________________ 1GB 
>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>>> mundo http://correo.yahoo.com.ar
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>        ____________________________________________________
>> Lo nuevo y lo que viene
>> Salón del Automóvil de Buenos Aires
>> Cobertura especial:
>> http://ar.autos.yahoo.com/special/salon/index.html
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
thanks a lot.
i am on it !!!

----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 2:28 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
>
> I am VERY late in getting it committed... should have been done weeks ago 
> and I am still at it.
>
> All I can say is: "soon". Keep an eye on the dev list...
>
> Randy
>
> Santiago Urrizola wrote:
>
>>> Can you wait for M4?
>>
>> off course i can wait !!!!
>> do you know when whe can use it ?
>>
>>
>>
>> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
>> To: "Jetspeed Users List" <je...@portals.apache.org>
>> Sent: Tuesday, June 28, 2005 2:19 PM
>> Subject: Re: Jestpeed 2 - Left Menu order
>>
>>
>>> Santiago,
>>>
>>> Understood... but it is not at all clear how to fix this easily.
>>>
>>> The new menu implementation will address this issue by allowing the 
>>> ordering to be explicity delared in the menu instead of the folders.
>>>
>>> Can you wait for M4?
>>>
>>> Randy
>>>
>>> Santiago Urrizola wrote:
>>>
>>>> Hi, i put all the contents of the
>>>>    /pages/inicio/folder.metadata insidea
>>>>    /pages/folder.metadata
>>>>
>>>>  <document-order>noticias.psml</document-order>
>>>>  <document-order>eventos.psml</document-order>
>>>>  <document-order>buscador.psml</document-order>
>>>>  <document-order>proveedores.psml</document-order>
>>>>  <document-order>criticas.psml</document-order>
>>>>  <document-order>cupones.psml</document-order>
>>>>
>>>> and ist works, but it this ok or its a bug ??, because i havce a lot of 
>>>> folders, a a lot of folder and pages for each role of users, and this 
>>>> is very dificul to do with this solution
>>>>
>>>> Some help
>>>>
>>>> ----- Original Message ----- From: "Randy Watler" 
>>>> <wa...@wispertel.net>
>>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>>> Sent: Tuesday, June 28, 2005 1:56 PM
>>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>>
>>>>
>>>>> Santiago,
>>>>>
>>>>> Seems like the use case is more complex than I had thought.
>>>>>
>>>>> However, i do not see the <document-order/> entries, (for the document 
>>>>> sets), from your first email here in this folder. Could that be the 
>>>>> issue?
>>>>>
>>>>> Try to make ALL of the folder.metadata directories contain all the 
>>>>> same entries, (btw: yes, I know it is ugly).
>>>>>
>>>>> Randy
>>>>>
>>>>> Santiago Urrizola wrote:
>>>>>
>>>>>> Here is my folder.metadata in the /inicio folder
>>>>>>
>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>> <folder>
>>>>>>  <title>Inicio</title> 
>>>>>> <document-order>noticias.psml</document-order>
>>>>>>  <document-order>eventos.psml</document-order>
>>>>>>  <document-order>buscador.psml</document-order>
>>>>>>  <document-order>proveedores.psml</document-order>
>>>>>>  <document-order>criticas.psml</document-order>
>>>>>>  <document-order>cupones.psml</document-order>
>>>>>>  <security-constraints>
>>>>>>    <security-constraints-ref>public-view</security-constraints-ref>
>>>>>>  </security-constraints>
>>>>>> </folder>
>>>>>>
>>>>>>
>>>>>> but in the menu the pages still apaears in alfabetycal order.
>>>>>> Wath happens ??
>>>>>>
>>>>>>
>>>>>> ----- Original Message ----- From: "Randy Watler" 
>>>>>> <wa...@wispertel.net>
>>>>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>>>>> Sent: Tuesday, June 28, 2005 12:38 PM
>>>>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>>>>
>>>>>>
>>>>>>> Santiago,
>>>>>>>
>>>>>>> ordering is not a strength of this impl. try copying your 
>>>>>>> folder.metadata entries deeper in your pages subdirs.
>>>>>>>
>>>>>>> HTH,
>>>>>>>
>>>>>>> Randy
>>>>>>>
>>>>>>>
>>>>>>> Santiago Urrizola wrote:
>>>>>>>
>>>>>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>>>>>
>>>>>>>> Have this strcutre in my portal
>>>>>>>>    /web-inf/pages
>>>>>>>>                    /contact
>>>>>>>>                    /init
>>>>>>>>                    /register
>>>>>>>>
>>>>>>>> i the page directory i order this folder in the folder.metadata 
>>>>>>>> file
>>>>>>>>  <document-order>init.ds</document-order>
>>>>>>>>  <document-order>register.ds</document-order>
>>>>>>>>  <document-order>contact.ds</document-order>
>>>>>>>>
>>>>>>>> So when i enter the portal, the menu looks in this order (each .ds 
>>>>>>>> file containts the pages inside echar folder)
>>>>>>>>            1 - init
>>>>>>>>            2 - register
>>>>>>>>            3 - contact
>>>>>>>>
>>>>>>>> The problem is when i link some menu in the init group (the first 
>>>>>>>> group in the menu) automaticaly the left menu changes his order and 
>>>>>>>> looks like this
>>>>>>>>
>>>>>>>>        1 contact
>>>>>>>>        2 init
>>>>>>>>        3 contact
>>>>>>>>
>>>>>>>>  This is the alfabetical order of the folders, how can i change 
>>>>>>>> this ?? i need help please !!!
>>>>>>>> Santiago
>>>>>>>>
>>>>>>>>
>>>>>>>>    ___________________________________________________________ 1GB 
>>>>>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>>>>>>> mundo http://correo.yahoo.com.ar
>>>>>>>>
>>>>>>>> ---------------------------------------------------------------------
>>>>>>>>
>>>>>>>> To unsubscribe, e-mail: 
>>>>>>>> jetspeed-user-unsubscribe@portals.apache.org
>>>>>>>> For additional commands, e-mail: 
>>>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>>
>>>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>>>> For additional commands, e-mail: 
>>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>>
>>>>>>
>>>>>>        ____________________________________________________
>>>>>> Lo nuevo y lo que viene
>>>>>> Salón del Automóvil de Buenos Aires
>>>>>> Cobertura especial:
>>>>>> http://ar.autos.yahoo.com/special/salon/index.html
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>>> For additional commands, e-mail: 
>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>>
>>>>
>>>>
>>>>
>>>>     ___________________________________________________________ 1GB 
>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>>> mundo http://correo.yahoo.com.ar
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>>     ___________________________________________________________ 1GB 
>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo 
>> http://correo.yahoo.com.ar
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Randy Watler <wa...@wispertel.net>.
Santiago,

I am VERY late in getting it committed... should have been done weeks 
ago and I am still at it.

All I can say is: "soon". Keep an eye on the dev list...

Randy

Santiago Urrizola wrote:

>> Can you wait for M4?
>
> off course i can wait !!!!
> do you know when whe can use it ?
>
>
>
> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Tuesday, June 28, 2005 2:19 PM
> Subject: Re: Jestpeed 2 - Left Menu order
>
>
>> Santiago,
>>
>> Understood... but it is not at all clear how to fix this easily.
>>
>> The new menu implementation will address this issue by allowing the 
>> ordering to be explicity delared in the menu instead of the folders.
>>
>> Can you wait for M4?
>>
>> Randy
>>
>> Santiago Urrizola wrote:
>>
>>> Hi, i put all the contents of the
>>>    /pages/inicio/folder.metadata insidea
>>>    /pages/folder.metadata
>>>
>>>  <document-order>noticias.psml</document-order>
>>>  <document-order>eventos.psml</document-order>
>>>  <document-order>buscador.psml</document-order>
>>>  <document-order>proveedores.psml</document-order>
>>>  <document-order>criticas.psml</document-order>
>>>  <document-order>cupones.psml</document-order>
>>>
>>> and ist works, but it this ok or its a bug ??, because i havce a lot 
>>> of folders, a a lot of folder and pages for each role of users, and 
>>> this is very dificul to do with this solution
>>>
>>> Some help
>>>
>>> ----- Original Message ----- From: "Randy Watler" 
>>> <wa...@wispertel.net>
>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>> Sent: Tuesday, June 28, 2005 1:56 PM
>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>
>>>
>>>> Santiago,
>>>>
>>>> Seems like the use case is more complex than I had thought.
>>>>
>>>> However, i do not see the <document-order/> entries, (for the 
>>>> document sets), from your first email here in this folder. Could 
>>>> that be the issue?
>>>>
>>>> Try to make ALL of the folder.metadata directories contain all the 
>>>> same entries, (btw: yes, I know it is ugly).
>>>>
>>>> Randy
>>>>
>>>> Santiago Urrizola wrote:
>>>>
>>>>> Here is my folder.metadata in the /inicio folder
>>>>>
>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>> <folder>
>>>>>  <title>Inicio</title>   
>>>>> <document-order>noticias.psml</document-order>
>>>>>  <document-order>eventos.psml</document-order>
>>>>>  <document-order>buscador.psml</document-order>
>>>>>  <document-order>proveedores.psml</document-order>
>>>>>  <document-order>criticas.psml</document-order>
>>>>>  <document-order>cupones.psml</document-order>
>>>>>  <security-constraints>
>>>>>    <security-constraints-ref>public-view</security-constraints-ref>
>>>>>  </security-constraints>
>>>>> </folder>
>>>>>
>>>>>
>>>>> but in the menu the pages still apaears in alfabetycal order.
>>>>> Wath happens ??
>>>>>
>>>>>
>>>>> ----- Original Message ----- From: "Randy Watler" 
>>>>> <wa...@wispertel.net>
>>>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>>>> Sent: Tuesday, June 28, 2005 12:38 PM
>>>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>>>
>>>>>
>>>>>> Santiago,
>>>>>>
>>>>>> ordering is not a strength of this impl. try copying your 
>>>>>> folder.metadata entries deeper in your pages subdirs.
>>>>>>
>>>>>> HTH,
>>>>>>
>>>>>> Randy
>>>>>>
>>>>>>
>>>>>> Santiago Urrizola wrote:
>>>>>>
>>>>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>>>>
>>>>>>> Have this strcutre in my portal
>>>>>>>    /web-inf/pages
>>>>>>>                    /contact
>>>>>>>                    /init
>>>>>>>                    /register
>>>>>>>
>>>>>>> i the page directory i order this folder in the folder.metadata 
>>>>>>> file
>>>>>>>  <document-order>init.ds</document-order>
>>>>>>>  <document-order>register.ds</document-order>
>>>>>>>  <document-order>contact.ds</document-order>
>>>>>>>
>>>>>>> So when i enter the portal, the menu looks in this order (each 
>>>>>>> .ds file containts the pages inside echar folder)
>>>>>>>            1 - init
>>>>>>>            2 - register
>>>>>>>            3 - contact
>>>>>>>
>>>>>>> The problem is when i link some menu in the init group (the 
>>>>>>> first group in the menu) automaticaly the left menu changes his 
>>>>>>> order and looks like this
>>>>>>>
>>>>>>>        1 contact
>>>>>>>        2 init
>>>>>>>        3 contact
>>>>>>>
>>>>>>>  This is the alfabetical order of the folders, how can i change 
>>>>>>> this ?? i need help please !!!
>>>>>>> Santiago
>>>>>>>
>>>>>>>
>>>>>>>    ___________________________________________________________ 
>>>>>>> 1GB gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo 
>>>>>>> web del mundo http://correo.yahoo.com.ar
>>>>>>>
>>>>>>> --------------------------------------------------------------------- 
>>>>>>>
>>>>>>> To unsubscribe, e-mail: 
>>>>>>> jetspeed-user-unsubscribe@portals.apache.org
>>>>>>> For additional commands, e-mail: 
>>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --------------------------------------------------------------------- 
>>>>>>
>>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>>> For additional commands, e-mail: 
>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>
>>>>>
>>>>>        ____________________________________________________
>>>>> Lo nuevo y lo que viene
>>>>> Salón del Automóvil de Buenos Aires
>>>>> Cobertura especial:
>>>>> http://ar.autos.yahoo.com/special/salon/index.html
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: 
>>>>> jetspeed-user-help@portals.apache.org
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>
>>>
>>>
>>>     ___________________________________________________________ 1GB 
>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>> mundo http://correo.yahoo.com.ar
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>
>     
>
>     
>        
> ___________________________________________________________ 1GB 
> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
> mundo http://correo.yahoo.com.ar
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
> Can you wait for M4?
off course i can wait !!!!
do you know when whe can use it ?



----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 2:19 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
>
> Understood... but it is not at all clear how to fix this easily.
>
> The new menu implementation will address this issue by allowing the 
> ordering to be explicity delared in the menu instead of the folders.
>
> Can you wait for M4?
>
> Randy
>
> Santiago Urrizola wrote:
>
>> Hi, i put all the contents of the
>>    /pages/inicio/folder.metadata insidea
>>    /pages/folder.metadata
>>
>>  <document-order>noticias.psml</document-order>
>>  <document-order>eventos.psml</document-order>
>>  <document-order>buscador.psml</document-order>
>>  <document-order>proveedores.psml</document-order>
>>  <document-order>criticas.psml</document-order>
>>  <document-order>cupones.psml</document-order>
>>
>> and ist works, but it this ok or its a bug ??, because i havce a lot of 
>> folders, a a lot of folder and pages for each role of users, and this is 
>> very dificul to do with this solution
>>
>> Some help
>>
>> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
>> To: "Jetspeed Users List" <je...@portals.apache.org>
>> Sent: Tuesday, June 28, 2005 1:56 PM
>> Subject: Re: Jestpeed 2 - Left Menu order
>>
>>
>>> Santiago,
>>>
>>> Seems like the use case is more complex than I had thought.
>>>
>>> However, i do not see the <document-order/> entries, (for the document 
>>> sets), from your first email here in this folder. Could that be the 
>>> issue?
>>>
>>> Try to make ALL of the folder.metadata directories contain all the same 
>>> entries, (btw: yes, I know it is ugly).
>>>
>>> Randy
>>>
>>> Santiago Urrizola wrote:
>>>
>>>> Here is my folder.metadata in the /inicio folder
>>>>
>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>> <folder>
>>>>  <title>Inicio</title>   <document-order>noticias.psml</document-order>
>>>>  <document-order>eventos.psml</document-order>
>>>>  <document-order>buscador.psml</document-order>
>>>>  <document-order>proveedores.psml</document-order>
>>>>  <document-order>criticas.psml</document-order>
>>>>  <document-order>cupones.psml</document-order>
>>>>  <security-constraints>
>>>>    <security-constraints-ref>public-view</security-constraints-ref>
>>>>  </security-constraints>
>>>> </folder>
>>>>
>>>>
>>>> but in the menu the pages still apaears in alfabetycal order.
>>>> Wath happens ??
>>>>
>>>>
>>>> ----- Original Message ----- From: "Randy Watler" 
>>>> <wa...@wispertel.net>
>>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>>> Sent: Tuesday, June 28, 2005 12:38 PM
>>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>>
>>>>
>>>>> Santiago,
>>>>>
>>>>> ordering is not a strength of this impl. try copying your 
>>>>> folder.metadata entries deeper in your pages subdirs.
>>>>>
>>>>> HTH,
>>>>>
>>>>> Randy
>>>>>
>>>>>
>>>>> Santiago Urrizola wrote:
>>>>>
>>>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>>>
>>>>>> Have this strcutre in my portal
>>>>>>    /web-inf/pages
>>>>>>                    /contact
>>>>>>                    /init
>>>>>>                    /register
>>>>>>
>>>>>> i the page directory i order this folder in the folder.metadata file
>>>>>>  <document-order>init.ds</document-order>
>>>>>>  <document-order>register.ds</document-order>
>>>>>>  <document-order>contact.ds</document-order>
>>>>>>
>>>>>> So when i enter the portal, the menu looks in this order (each .ds 
>>>>>> file containts the pages inside echar folder)
>>>>>>            1 - init
>>>>>>            2 - register
>>>>>>            3 - contact
>>>>>>
>>>>>> The problem is when i link some menu in the init group (the first 
>>>>>> group in the menu) automaticaly the left menu changes his order and 
>>>>>> looks like this
>>>>>>
>>>>>>        1 contact
>>>>>>        2 init
>>>>>>        3 contact
>>>>>>
>>>>>>  This is the alfabetical order of the folders, how can i change this 
>>>>>> ?? i need help please !!!
>>>>>> Santiago
>>>>>>
>>>>>>
>>>>>>    ___________________________________________________________ 1GB 
>>>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>>>>> mundo http://correo.yahoo.com.ar
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>>> For additional commands, e-mail: 
>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>>
>>>>
>>>>        ____________________________________________________
>>>> Lo nuevo y lo que viene
>>>> Salón del Automóvil de Buenos Aires
>>>> Cobertura especial:
>>>> http://ar.autos.yahoo.com/special/salon/index.html
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>>     ___________________________________________________________ 1GB 
>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo 
>> http://correo.yahoo.com.ar
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Randy Watler <wa...@wispertel.net>.
Santiago,

Understood... but it is not at all clear how to fix this easily.

The new menu implementation will address this issue by allowing the 
ordering to be explicity delared in the menu instead of the folders.

Can you wait for M4?

Randy

Santiago Urrizola wrote:

> Hi, i put all the contents of the
>    /pages/inicio/folder.metadata insidea
>    /pages/folder.metadata
>
>  <document-order>noticias.psml</document-order>
>  <document-order>eventos.psml</document-order>
>  <document-order>buscador.psml</document-order>
>  <document-order>proveedores.psml</document-order>
>  <document-order>criticas.psml</document-order>
>  <document-order>cupones.psml</document-order>
>
> and ist works, but it this ok or its a bug ??, because i havce a lot 
> of folders, a a lot of folder and pages for each role of users, and 
> this is very dificul to do with this solution
>
> Some help
>
> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Tuesday, June 28, 2005 1:56 PM
> Subject: Re: Jestpeed 2 - Left Menu order
>
>
>> Santiago,
>>
>> Seems like the use case is more complex than I had thought.
>>
>> However, i do not see the <document-order/> entries, (for the 
>> document sets), from your first email here in this folder. Could that 
>> be the issue?
>>
>> Try to make ALL of the folder.metadata directories contain all the 
>> same entries, (btw: yes, I know it is ugly).
>>
>> Randy
>>
>> Santiago Urrizola wrote:
>>
>>> Here is my folder.metadata in the /inicio folder
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <folder>
>>>  <title>Inicio</title>   <document-order>noticias.psml</document-order>
>>>  <document-order>eventos.psml</document-order>
>>>  <document-order>buscador.psml</document-order>
>>>  <document-order>proveedores.psml</document-order>
>>>  <document-order>criticas.psml</document-order>
>>>  <document-order>cupones.psml</document-order>
>>>  <security-constraints>
>>>    <security-constraints-ref>public-view</security-constraints-ref>
>>>  </security-constraints>
>>> </folder>
>>>
>>>
>>> but in the menu the pages still apaears in alfabetycal order.
>>> Wath happens ??
>>>
>>>
>>> ----- Original Message ----- From: "Randy Watler" 
>>> <wa...@wispertel.net>
>>> To: "Jetspeed Users List" <je...@portals.apache.org>
>>> Sent: Tuesday, June 28, 2005 12:38 PM
>>> Subject: Re: Jestpeed 2 - Left Menu order
>>>
>>>
>>>> Santiago,
>>>>
>>>> ordering is not a strength of this impl. try copying your 
>>>> folder.metadata entries deeper in your pages subdirs.
>>>>
>>>> HTH,
>>>>
>>>> Randy
>>>>
>>>>
>>>> Santiago Urrizola wrote:
>>>>
>>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>>
>>>>> Have this strcutre in my portal
>>>>>    /web-inf/pages
>>>>>                    /contact
>>>>>                    /init
>>>>>                    /register
>>>>>
>>>>> i the page directory i order this folder in the folder.metadata file
>>>>>  <document-order>init.ds</document-order>
>>>>>  <document-order>register.ds</document-order>
>>>>>  <document-order>contact.ds</document-order>
>>>>>
>>>>> So when i enter the portal, the menu looks in this order (each .ds 
>>>>> file containts the pages inside echar folder)
>>>>>            1 - init
>>>>>            2 - register
>>>>>            3 - contact
>>>>>
>>>>> The problem is when i link some menu in the init group (the first 
>>>>> group in the menu) automaticaly the left menu changes his order 
>>>>> and looks like this
>>>>>
>>>>>        1 contact
>>>>>        2 init
>>>>>        3 contact
>>>>>
>>>>>  This is the alfabetical order of the folders, how can i change 
>>>>> this ?? i need help please !!!
>>>>> Santiago
>>>>>
>>>>>
>>>>>    ___________________________________________________________ 1GB 
>>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web 
>>>>> del mundo http://correo.yahoo.com.ar
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: 
>>>>> jetspeed-user-help@portals.apache.org
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>
>>>        ____________________________________________________
>>> Lo nuevo y lo que viene
>>> Salón del Automóvil de Buenos Aires
>>> Cobertura especial:
>>> http://ar.autos.yahoo.com/special/salon/index.html
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>
>     
>
>     
>        
> ___________________________________________________________ 1GB 
> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
> mundo http://correo.yahoo.com.ar
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
Hi, i put all the contents of the
    /pages/inicio/folder.metadata insidea
    /pages/folder.metadata

  <document-order>noticias.psml</document-order>
  <document-order>eventos.psml</document-order>
  <document-order>buscador.psml</document-order>
  <document-order>proveedores.psml</document-order>
  <document-order>criticas.psml</document-order>
  <document-order>cupones.psml</document-order>

and ist works, but it this ok or its a bug ??, because i havce a lot of 
folders, a a lot of folder and pages for each role of users, and this is 
very dificul to do with this solution

Some help

----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 1:56 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
>
> Seems like the use case is more complex than I had thought.
>
> However, i do not see the <document-order/> entries, (for the document 
> sets), from your first email here in this folder. Could that be the issue?
>
> Try to make ALL of the folder.metadata directories contain all the same 
> entries, (btw: yes, I know it is ugly).
>
> Randy
>
> Santiago Urrizola wrote:
>
>> Here is my folder.metadata in the /inicio folder
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <folder>
>>  <title>Inicio</title>   <document-order>noticias.psml</document-order>
>>  <document-order>eventos.psml</document-order>
>>  <document-order>buscador.psml</document-order>
>>  <document-order>proveedores.psml</document-order>
>>  <document-order>criticas.psml</document-order>
>>  <document-order>cupones.psml</document-order>
>>  <security-constraints>
>>    <security-constraints-ref>public-view</security-constraints-ref>
>>  </security-constraints>
>> </folder>
>>
>>
>> but in the menu the pages still apaears in alfabetycal order.
>> Wath happens ??
>>
>>
>> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
>> To: "Jetspeed Users List" <je...@portals.apache.org>
>> Sent: Tuesday, June 28, 2005 12:38 PM
>> Subject: Re: Jestpeed 2 - Left Menu order
>>
>>
>>> Santiago,
>>>
>>> ordering is not a strength of this impl. try copying your 
>>> folder.metadata entries deeper in your pages subdirs.
>>>
>>> HTH,
>>>
>>> Randy
>>>
>>>
>>> Santiago Urrizola wrote:
>>>
>>>> Hi all. i have a problem with the order in the left menu of J2.
>>>>
>>>> Have this strcutre in my portal
>>>>    /web-inf/pages
>>>>                    /contact
>>>>                    /init
>>>>                    /register
>>>>
>>>> i the page directory i order this folder in the folder.metadata file
>>>>  <document-order>init.ds</document-order>
>>>>  <document-order>register.ds</document-order>
>>>>  <document-order>contact.ds</document-order>
>>>>
>>>> So when i enter the portal, the menu looks in this order (each .ds file 
>>>> containts the pages inside echar folder)
>>>>            1 - init
>>>>            2 - register
>>>>            3 - contact
>>>>
>>>> The problem is when i link some menu in the init group (the first group 
>>>> in the menu) automaticaly the left menu changes his order and looks 
>>>> like this
>>>>
>>>>        1 contact
>>>>        2 init
>>>>        3 contact
>>>>
>>>>  This is the alfabetical order of the folders, how can i change this ?? 
>>>> i need help please !!!
>>>> Santiago
>>>>
>>>>
>>>>    ___________________________________________________________ 1GB 
>>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>>> mundo http://correo.yahoo.com.ar
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>        ____________________________________________________
>> Lo nuevo y lo que viene
>> Salón del Automóvil de Buenos Aires
>> Cobertura especial:
>> http://ar.autos.yahoo.com/special/salon/index.html
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Randy Watler <wa...@wispertel.net>.
Santiago,

Seems like the use case is more complex than I had thought.

However, i do not see the <document-order/> entries, (for the document 
sets), from your first email here in this folder. Could that be the issue?

Try to make ALL of the folder.metadata directories contain all the same 
entries, (btw: yes, I know it is ugly).

Randy

Santiago Urrizola wrote:

> Here is my folder.metadata in the /inicio folder
>
> <?xml version="1.0" encoding="UTF-8"?>
> <folder>
>  <title>Inicio</title>   <document-order>noticias.psml</document-order>
>  <document-order>eventos.psml</document-order>
>  <document-order>buscador.psml</document-order>
>  <document-order>proveedores.psml</document-order>
>  <document-order>criticas.psml</document-order>
>  <document-order>cupones.psml</document-order>
>  <security-constraints>
>    <security-constraints-ref>public-view</security-constraints-ref>
>  </security-constraints>
> </folder>
>
>
> but in the menu the pages still apaears in alfabetycal order.
> Wath happens ??
>
>
> ----- Original Message ----- From: "Randy Watler" <wa...@wispertel.net>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Tuesday, June 28, 2005 12:38 PM
> Subject: Re: Jestpeed 2 - Left Menu order
>
>
>> Santiago,
>>
>> ordering is not a strength of this impl. try copying your 
>> folder.metadata entries deeper in your pages subdirs.
>>
>> HTH,
>>
>> Randy
>>
>>
>> Santiago Urrizola wrote:
>>
>>> Hi all. i have a problem with the order in the left menu of J2.
>>>
>>> Have this strcutre in my portal
>>>    /web-inf/pages
>>>                    /contact
>>>                    /init
>>>                    /register
>>>
>>> i the page directory i order this folder in the folder.metadata file
>>>  <document-order>init.ds</document-order>
>>>  <document-order>register.ds</document-order>
>>>  <document-order>contact.ds</document-order>
>>>
>>> So when i enter the portal, the menu looks in this order (each .ds 
>>> file containts the pages inside echar folder)
>>>            1 - init
>>>            2 - register
>>>            3 - contact
>>>
>>> The problem is when i link some menu in the init group (the first 
>>> group in the menu) automaticaly the left menu changes his order and 
>>> looks like this
>>>
>>>        1 contact
>>>        2 init
>>>        3 contact
>>>
>>>  This is the alfabetical order of the folders, how can i change this 
>>> ??  i need help please !!!
>>> Santiago
>>>
>>>
>>>    
>>>            
>>> ___________________________________________________________ 1GB 
>>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>>> mundo http://correo.yahoo.com.ar
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>        
> ____________________________________________________
> Lo nuevo y lo que viene
> Salón del Automóvil de Buenos Aires
> Cobertura especial:
> http://ar.autos.yahoo.com/special/salon/index.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
Here is my folder.metadata in the /inicio folder

<?xml version="1.0" encoding="UTF-8"?>
<folder>
  <title>Inicio</title>  
  <document-order>noticias.psml</document-order>
  <document-order>eventos.psml</document-order>
  <document-order>buscador.psml</document-order>
  <document-order>proveedores.psml</document-order>
  <document-order>criticas.psml</document-order>
  <document-order>cupones.psml</document-order>
  <security-constraints>
    <security-constraints-ref>public-view</security-constraints-ref>
  </security-constraints>
</folder>


but in the menu the pages still apaears in alfabetycal order.
Wath happens ??


----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 12:38 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
> 
> ordering is not a strength of this impl. try copying your 
> folder.metadata entries deeper in your pages subdirs.
> 
> HTH,
> 
> Randy
> 
> 
> Santiago Urrizola wrote:
> 
>> Hi all. i have a problem with the order in the left menu of J2.
>>
>> Have this strcutre in my portal
>>    /web-inf/pages
>>                    /contact
>>                    /init
>>                    /register
>>
>> i the page directory i order this folder in the folder.metadata file
>>  <document-order>init.ds</document-order>
>>  <document-order>register.ds</document-order>
>>  <document-order>contact.ds</document-order>
>>
>> So when i enter the portal, the menu looks in this order (each .ds 
>> file containts the pages inside echar folder)
>>            1 - init
>>            2 - register
>>            3 - contact
>>
>> The problem is when i link some menu in the init group (the first 
>> group in the menu) automaticaly the left menu changes his order and 
>> looks like this
>>
>>        1 contact
>>        2 init
>>        3 contact
>>
>>  This is the alfabetical order of the folders, how can i change this 
>> ??  i need help please !!!
>> Santiago
>>
>>
>>     
>>
>>     
>>        
>> ___________________________________________________________ 1GB 
>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
>> mundo http://correo.yahoo.com.ar
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>

		
____________________________________________________
Lo nuevo y lo que viene
Salón del Automóvil de Buenos Aires
Cobertura especial:
http://ar.autos.yahoo.com/special/salon/index.html

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
i hace a folder.metadata, inside all the directorys, ordering the pages in 
each one, but still dosnt order this,. how can i do this ?? its very 
important to me, that the page show in a predefined order not in alfabetical 
order.


----- Original Message ----- 
From: "Randy Watler" <wa...@wispertel.net>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Tuesday, June 28, 2005 12:38 PM
Subject: Re: Jestpeed 2 - Left Menu order


> Santiago,
>
> ordering is not a strength of this impl. try copying your folder.metadata 
> entries deeper in your pages subdirs.
>
> HTH,
>
> Randy
>
>
> Santiago Urrizola wrote:
>
>> Hi all. i have a problem with the order in the left menu of J2.
>>
>> Have this strcutre in my portal
>>    /web-inf/pages
>>                    /contact
>>                    /init
>>                    /register
>>
>> i the page directory i order this folder in the folder.metadata file
>>  <document-order>init.ds</document-order>
>>  <document-order>register.ds</document-order>
>>  <document-order>contact.ds</document-order>
>>
>> So when i enter the portal, the menu looks in this order (each .ds file 
>> containts the pages inside echar folder)
>>            1 - init
>>            2 - register
>>            3 - contact
>>
>> The problem is when i link some menu in the init group (the first group 
>> in the menu) automaticaly the left menu changes his order and looks like 
>> this
>>
>>        1 contact
>>        2 init
>>        3 contact
>>
>>  This is the alfabetical order of the folders, how can i change this ?? 
>> i need help please !!!
>> Santiago
>>
>>
>>
>>     ___________________________________________________________ 1GB 
>> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo 
>> http://correo.yahoo.com.ar
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jestpeed 2 - Left Menu order

Posted by Randy Watler <wa...@wispertel.net>.
Santiago,

ordering is not a strength of this impl. try copying your 
folder.metadata entries deeper in your pages subdirs.

HTH,

Randy


Santiago Urrizola wrote:

> Hi all. i have a problem with the order in the left menu of J2.
>
> Have this strcutre in my portal
>    /web-inf/pages
>                    /contact
>                    /init
>                    /register
>
> i the page directory i order this folder in the folder.metadata file
>  <document-order>init.ds</document-order>
>  <document-order>register.ds</document-order>
>  <document-order>contact.ds</document-order>
>
> So when i enter the portal, the menu looks in this order (each .ds 
> file containts the pages inside echar folder)
>            1 - init
>            2 - register
>            3 - contact
>
> The problem is when i link some menu in the init group (the first 
> group in the menu) automaticaly the left menu changes his order and 
> looks like this
>
>        1 contact
>        2 init
>        3 contact
>
>  This is the alfabetical order of the folders, how can i change this 
> ??  i need help please !!!
> Santiago
>
>
>     
>
>     
>        
> ___________________________________________________________ 1GB 
> gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del 
> mundo http://correo.yahoo.com.ar
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Jestpeed 2 - Left Menu order

Posted by Santiago Urrizola <ch...@yahoo.com.ar>.
Hi all. i have a problem with the order in the left menu of J2.

Have this strcutre in my portal
    /web-inf/pages
                    /contact
                    /init
                    /register

i the page directory i order this folder in the folder.metadata file
  <document-order>init.ds</document-order>
  <document-order>register.ds</document-order>
  <document-order>contact.ds</document-order>

So when i enter the portal, the menu looks in this order (each .ds file 
containts the pages inside echar folder)
            1 - init
            2 - register
            3 - contact

The problem is when i link some menu in the init group (the first group in 
the menu) automaticaly the left menu changes his order and looks like this

        1 contact
        2 init
        3 contact

  This is the alfabetical order of the folders, how can i change this ??  i 
need help please !!!
Santiago


	

	
		
___________________________________________________________ 
1GB gratis, Antivirus y Antispam 
Correo Yahoo!, el mejor correo web del mundo 
http://correo.yahoo.com.ar 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance? And Slide?

Posted by Andrej Vanek <a....@bonum.sk>.
Another issue:

I would like the jetspeed SSO to authenticate access for:
- jetspeed session
- access to jakarta Slide from external application
- access to jakarta Slide from jetspeed's portlet

By "SSO to authenticate" I mean: once a user logs into jetspeed he should
get access without need to login again to all the above components.

is it possible?
how to configure all those components (jetspeed-2,Slide,external web app)?

Andrej
----- Original Message -----
> Ing. Andrej Vanek wrote:
> > Hello,
> >
> > I am runnning Jetspeed-2. My intention is to put a link to a web
> > application into the user's portal page. If he clicks on it I expect
> > to open a new browser window running the web application without
> > explicitely to have to login again- it should use the Jetspeed-2's
> > SSO login. I do want to run the web application in a separate
> > web-browser window, not as part of the portal via any portal bridge
> > (because of window size, speed, no changes to javascript and
> > application etc). But I would like to use portal to integrate my
> > running web applications.
> >
> > I suppose this could be acomplished by sharing Jetspeed-2's SSO with
> > external web application which is to be opened from the portal.
> > Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does
> > not tell me much about how to do it...
> >
> > Could anybody give me some information (or links, documentation,
> > articles) how to use the Jetspeed-2's SSO and how to collaborate with
> > other web applications running on the same Tomcat Instance? Did
> > anybody already solve this issue?
> >
> > Best Regards, Andrej




---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by David Sean Taylor <da...@bluesunrise.com>.
Ing. Andrej Vanek wrote:
> Hello,
> 
> I am runnning Jetspeed-2. My intention is to put a link to a web
> application into the user's portal page. If he clicks on it I expect
> to open a new browser window running the web application without
> explicitely to have to login again- it should use the Jetspeed-2's
> SSO login. I do want to run the web application in a separate
> web-browser window, not as part of the portal via any portal bridge
> (because of window size, speed, no changes to javascript and
> application etc). But I would like to use portal to integrate my
> running web applications.
> 
> I suppose this could be acomplished by sharing Jetspeed-2's SSO with
> external web application which is to be opened from the portal.
> Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does
> not tell me much about how to do it...
> 
> Could anybody give me some information (or links, documentation,
> articles) how to use the Jetspeed-2's SSO and how to collaborate with
> other web applications running on the same Tomcat Instance? Did
> anybody already solve this issue?
> 
> Best Regards, Andrej
> 
Since we are using JAAS to authenticate in Jetspeed-2, your web 
application running in the same instance could get the authenticated 
user from the servlet request's getUserPrincipal.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by perry law <pr...@gmail.com>.
I agree with it. The documentation is very skimmy. We need to work on
the documentation if we want the adoption of this portal in user
community. It should be made simple enough.

-Perry

On 6/22/05, Marky Goldstein <re...@rosa.com> wrote:
> I agree that the page
> 
> http://portals.apache.org/jetspeed-2/sso.html
> 
> does not tell a lot...
> 
> Shall we start an Apache Jetspeed 2 Documentation project?
> 
> Best regards,
> Marky Goldstein
> 
> 
> 
> 
> 
> Ing. Andrej Vanek wrote:
> 
> >Hello,
> >
> >I am runnning Jetspeed-2. My intention is to put a link to a web application into the user's portal page. If he clicks on it I expect to open a new browser window running the web application without explicitely to have to login again- it should use the Jetspeed-2's SSO login. I do want to run the web application in a separate web-browser window, not as part of the portal via any portal bridge (because of window size, speed, no changes to javascript and application etc). But I would like to use portal to integrate my running web applications.
> >
> >I suppose this could be acomplished by sharing Jetspeed-2's SSO with external web application which is to be opened from the portal. Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell me much about how to do it...
> >
> >Could anybody give me some information (or links, documentation, articles) how to use the Jetspeed-2's SSO and how to collaborate with other web applications running on the same Tomcat Instance?
> >Did anybody already solve this issue?
> >
> >Best Regards, Andrej
> >
> >
> >
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


AW: AW: Apache Jetspeed 2 Documentation Project

Posted by Benjamin Bratkus <br...@oio.de>.
i could write some article about my rss portlet and so about
developing/deploying JSR 168 portlets, psml, security

Benjamin Bratkus

--
Orientation in Objects GmbH
Weinheimerstr. 68
D-68309 Mannheim
http://www.oio.de
Tel +49(0)621-71839-0
Fax. +49(0)621-71839-50
------

-----Ursprüngliche Nachricht-----
Von: Marky Goldstein [mailto:ready@rosa.com]
Gesendet: Donnerstag, 23. Juni 2005 11:26
An: Jetspeed Users List
Betreff: Re: AW: Apache Jetspeed 2 Documentation Project


That's interesting. I have placed the link in the Wiki as well.
Let's collect first, what we've got.
Then let's setup the project team and plan.
Best regards,
Marky


Raphaël Luta wrote:

> Once the wiki is stabilized, my plan was to cut a forrestized
> site for documentation since forrest natively supports
> wiki formats.
>
> You can check out an early test here:
>
> http://people.apache.org/~raphael/j2forrest/
>
> This URL compiles all the docs currently available for j2
> (both from website docs and design-docs).
>
> Marky Goldstein wrote:
>
>> Hi,
>>
>> By the way, later we will anyway move to a Jetspeed
>> based portal with a wiki and content management
>> system ;-> and after that we will convince Apache to
>> change it's portals...
>>
>> Best regards,
>> Marky
>>
>>
>> Marky Goldstein wrote:
>>
>>> http://wiki.apache.org/portals/Jetspeed2
>>>
>>> We just started. We will structure it directly into the Wiki.
>>> It's like programming: writing, structuring, reading, feedbacking,
>>> writing, structuring, reading, feedbacking and so on. A Wiki get's
>>> structured by the people and I guess we have some very structured
>>> people here, do we? ;->
>>>
>>> I have seen sites such as userlinux.com that were built
>>> on Wikis and that were very well structured.
>>> Best regards,
>>> Marky
>>>
>>>
>>>
>>> ng. Andrej Vanek wrote:
>>>
>>>> will be the documentation project somehow coordinated or just
>>>> "brainstormed"
>>>> into wiki and then revised ?
>>>> i.e. how can I help?
>>>>
>>>>
>>>>
>>>>> From: "Marky Goldstein"
>>>>>
>>>>> I just did documentation for another Open
>>>>> Source project using a Wiki, and I must
>>>>> say that it was extremly good.
>>>>>
>>>>> I we find some people that spend 15 to 30 minutes
>>>>> documenting and structuring every day, then we will
>>>>> have a good documentation within just a few weeks.
>>>>>
>>>>> Best regards,
>>>>> Marky Goldstein
>>>>>
>>>>>
>>>>>> How can we start such a project?
>>>>>> Best regards,
>>>>>> Marky
>>>>>>
>>>>>> Benjamin Bratkus wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>>> i agree to, so if there would be a documentation project i would
>>>>>>> help
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>> too
>>>>
>>>>
>>>>>>> Benjamin Bratkus
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>> Use the wiki:
>>>>>
>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


communication problem

Posted by Sascha <dg...@fishtown-team.de>.
Hello.

I've still a problem with the communication between javascript(in a SVG
file) and my portlet.

With 'RenderResponse.encodeURL(RenderRequest.getContextPath());' I got
the URL of my portlet. It's 'http://localhost:8080/HelloWorld'. I call
this URL in javascript:
'getURL("http://localhost:8080/HelloWorld?par=dummy",
callbackFunction);' but the java code 'if
(RenderRequest.getParameter("par") != null)' is never called.

I tried this with a normal java applet and there is no problem. Maybe
there is still a problem with the URL or is there anything I must know
about portlets that might help me? 

Any help is very apprechiated!


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Error from PortletPreferences

Posted by David Pankros <dp...@miragy.com>.
Can anyone confirm this?  I'm setting a couple parameters from within
processAction and then when I store them I get the following:

12:19:46,687 INFO  [STDOUT]
[org.apache.ojb.broker.core.PersistenceBrokerImpl] WARN:
12:19:46,687 INFO  [STDOUT] No running tx found, please only store in
context of an PB-transaction, to avoid side-effects - e.g. when rollback
of complex objects

This is jetspeed2-m4dev from SVN last night (an old m3dev snapshot also
did the same thing too).  It's running on JBoss 4.0.1 SP-1. Any
thoughts?  

Dave

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.0/27 - Release Date: 6/23/2005
 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


RE: again SVG

Posted by David Pankros <dp...@miragy.com>.
> ...
> function onclickFunction(evt)
> {
>   getURL("http://localhost:8080/HelloWorld?par=dummy",
> callbackFunction);
> }
> 
I'm not sure exactly what you're trying to do. Or maybe I don't
understand your approach.  I feel like I am missing SOMETHING.

That URL you're using, isn't a portal URL and so, HelloWorld will
probably be called as a standard servlet, outside the context of the
portal server.  That is fine for displaying images or for referencing an
external resource, such as your SVG, but most certainly NOT OK if you're
trying to submit a form to, perform an action on, or request a refresh
of a portlet, as your reference to doView suggests.  In my experience,
for a Portal URL (RenderURL or ActionURL), you can't just append "GET"
parameters to the URL as a string as you could with a traditional
servlet and expect it to work.  

I suggest you obtain the JSR168 spec from here:
http://www.jcp.org/en/jsr/detail?id=168

Read the section on portal URLs and how to set parameters (PLT.7).  I
think understanding the spec a little more will help you more in the
long-run than just fixing each problem as they arise.  

As an alternative, you can always create a form with an actionURL and a
hidden input.  Your SVG can set the value of the hidden input and submit
the form.  THEN you'd be able to get the values, if not in doView
certainly in processAction.

Dave

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.0/27 - Release Date: 6/23/2005
 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


again SVG

Posted by Sascha <dg...@fishtown-team.de>.
Hello.

Again a little SVG problem. I hope someone can help me. I want to pass a
parameter from javascript function 'onclickFunction' in the SVG code to
my portlet. I doesn't work. It displays the SVG the right way but when I
click the SVG circle it doesn't display the '<br>i got the
parameter!'...


Here is the Java code:

public void doView(RenderRequest request, RenderResponse response)
            throws PortletException, IOException {
  response.setContentType("text/html");
  PrintWriter writer = response.getWriter();
  if (request.getParameter("par") != null) {
    writer.println("<br>i got the parameter!");
  } else {
    writer
      .println("<p align=\"center\">Hello World</p>"
      + "<embed src=\""
      + response.encodeURL(request.getContextPath())
      + "/Test.svg\" type=\"image/svg-xml\" width=\"100px\"
height=\"100px\"/>");
  }
}


And here is the SVG code:

...
function onclickFunction(evt)
{
  getURL("http://localhost:8080/HelloWorld?par=dummy",
callbackFunction);
}
     
function callbackFunction(urlRequestStatus)
{
}
...
<circle id="id-01" cx="50" cy="50" r="20" onclick
="onclickFunction(evt)"   style="fill:green">
</circle>


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: portlet url?

Posted by James Liao <ji...@gmail.com>.
Hi,
Try this:
call the following code in your portlet:
String url = renderResponse.encodeURL(renderRequest.getContextPath());

- James Liao

On 6/23/05, Sascha <dg...@fishtown-team.de> wrote:
> Hello.
> 
> I think it's a simple question: how do I get the URL of my selfwritten
> portlet? (i did "view source" but didn't find it - must be something
> like http://localhost:8080/jetspeed/portal/...)
> 
> Thank you.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


portlet url?

Posted by Sascha <dg...@fishtown-team.de>.
Hello.

I think it's a simple question: how do I get the URL of my selfwritten
portlet? (i did "view source" but didn't find it - must be something
like http://localhost:8080/jetspeed/portal/...)

Thank you.


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
IBM does all its translations in India, I believe. Is there still
somebody from IBM on this mailing list?
;->
Marky

massimiliano wrote:

> The girl who has translate the others (J1) is not more available,
> and my english it's not much correct.
>
> Massimiliano
>
> ----- Original Message ----- From: "Marky Goldstein" <re...@rosa.com>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Thursday, June 23, 2005 12:11 PM
> Subject: Re: AW: Apache Jetspeed 2 Documentation Project
>
>
> Hi Massimilano,
> Can you deliver those as well in English? Or
> shall we organize translation?
> Best regards,
> Marky
>
>
> massimiliano wrote:
>
>> If you want you can put my articles about J2 (italian section ?)
>>
>> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II
>>
>> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_I
>>
>> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2
>>
>> (other articles are in progress)
>>
>> Massimiliano Dessì
>>
>> ----- Original Message ----- From: "Marky Goldstein" <re...@rosa.com>
>> To: "Jetspeed Users List" <je...@portals.apache.org>
>> Sent: Thursday, June 23, 2005 11:25 AM
>> Subject: Re: AW: Apache Jetspeed 2 Documentation Project
>>
>>
>> That's interesting. I have placed the link in the Wiki as well.
>> Let's collect first, what we've got.
>> Then let's setup the project team and plan.
>> Best regards,
>> Marky
>>
>>
>> Raphaël Luta wrote:
>>
>>> Once the wiki is stabilized, my plan was to cut a forrestized
>>> site for documentation since forrest natively supports
>>> wiki formats.
>>>
>>> You can check out an early test here:
>>>
>>> http://people.apache.org/~raphael/j2forrest/
>>>
>>> This URL compiles all the docs currently available for j2
>>> (both from website docs and design-docs).
>>>
>>> Marky Goldstein wrote:
>>>
>>>> Hi,
>>>>
>>>> By the way, later we will anyway move to a Jetspeed
>>>> based portal with a wiki and content management
>>>> system ;-> and after that we will convince Apache to
>>>> change it's portals...
>>>>
>>>> Best regards,
>>>> Marky
>>>>
>>>>
>>>> Marky Goldstein wrote:
>>>>
>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>
>>>>> We just started. We will structure it directly into the Wiki.
>>>>> It's like programming: writing, structuring, reading, feedbacking, 
>>>>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>>>>> structured by the people and I guess we have some very structured 
>>>>> people here, do we? ;->
>>>>>
>>>>> I have seen sites such as userlinux.com that were built
>>>>> on Wikis and that were very well structured.
>>>>> Best regards,
>>>>> Marky
>>>>>
>>>>>
>>>>>
>>>>> ng. Andrej Vanek wrote:
>>>>>
>>>>>> will be the documentation project somehow coordinated or just 
>>>>>> "brainstormed"
>>>>>> into wiki and then revised ?
>>>>>> i.e. how can I help?
>>>>>>
>>>>>>
>>>>>>> From: "Marky Goldstein"
>>>>>>>
>>>>>>> I just did documentation for another Open
>>>>>>> Source project using a Wiki, and I must
>>>>>>> say that it was extremly good.
>>>>>>>
>>>>>>> I we find some people that spend 15 to 30 minutes
>>>>>>> documenting and structuring every day, then we will
>>>>>>> have a good documentation within just a few weeks.
>>>>>>>
>>>>>>> Best regards,
>>>>>>> Marky Goldstein
>>>>>>>
>>>>>>>> How can we start such a project?
>>>>>>>> Best regards,
>>>>>>>> Marky
>>>>>>>>
>>>>>>>> Benjamin Bratkus wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>>> i agree to, so if there would be a documentation project i 
>>>>>>>>> would help
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>> too
>>>>>>
>>>>>>>>> Benjamin Bratkus
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>> Use the wiki:
>>>>>>>
>>>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --------------------------------------------------------------------- 
>>>>>>
>>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>>> For additional commands, e-mail: 
>>>>>> jetspeed-user-help@portals.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: 
>>>>> jetspeed-user-help@portals.apache.org
>>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by massimiliano <ma...@gruppoatlantis.com>.
The girl who has translate the others (J1) is not more available,
and my english it's not much correct.

Massimiliano

----- Original Message ----- 
From: "Marky Goldstein" <re...@rosa.com>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Thursday, June 23, 2005 12:11 PM
Subject: Re: AW: Apache Jetspeed 2 Documentation Project


Hi Massimilano,
Can you deliver those as well in English? Or
shall we organize translation?
Best regards,
Marky


massimiliano wrote:

> If you want you can put my articles about J2 (italian section ?)
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_I
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2
>
> (other articles are in progress)
>
> Massimiliano Dessì
>
> ----- Original Message ----- From: "Marky Goldstein" <re...@rosa.com>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Thursday, June 23, 2005 11:25 AM
> Subject: Re: AW: Apache Jetspeed 2 Documentation Project
>
>
> That's interesting. I have placed the link in the Wiki as well.
> Let's collect first, what we've got.
> Then let's setup the project team and plan.
> Best regards,
> Marky
>
>
> Raphaël Luta wrote:
>
>> Once the wiki is stabilized, my plan was to cut a forrestized
>> site for documentation since forrest natively supports
>> wiki formats.
>>
>> You can check out an early test here:
>>
>> http://people.apache.org/~raphael/j2forrest/
>>
>> This URL compiles all the docs currently available for j2
>> (both from website docs and design-docs).
>>
>> Marky Goldstein wrote:
>>
>>> Hi,
>>>
>>> By the way, later we will anyway move to a Jetspeed
>>> based portal with a wiki and content management
>>> system ;-> and after that we will convince Apache to
>>> change it's portals...
>>>
>>> Best regards,
>>> Marky
>>>
>>>
>>> Marky Goldstein wrote:
>>>
>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>
>>>> We just started. We will structure it directly into the Wiki.
>>>> It's like programming: writing, structuring, reading, feedbacking, 
>>>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>>>> structured by the people and I guess we have some very structured 
>>>> people here, do we? ;->
>>>>
>>>> I have seen sites such as userlinux.com that were built
>>>> on Wikis and that were very well structured.
>>>> Best regards,
>>>> Marky
>>>>
>>>>
>>>>
>>>> ng. Andrej Vanek wrote:
>>>>
>>>>> will be the documentation project somehow coordinated or just 
>>>>> "brainstormed"
>>>>> into wiki and then revised ?
>>>>> i.e. how can I help?
>>>>>
>>>>>
>>>>>> From: "Marky Goldstein"
>>>>>>
>>>>>> I just did documentation for another Open
>>>>>> Source project using a Wiki, and I must
>>>>>> say that it was extremly good.
>>>>>>
>>>>>> I we find some people that spend 15 to 30 minutes
>>>>>> documenting and structuring every day, then we will
>>>>>> have a good documentation within just a few weeks.
>>>>>>
>>>>>> Best regards,
>>>>>> Marky Goldstein
>>>>>>
>>>>>>> How can we start such a project?
>>>>>>> Best regards,
>>>>>>> Marky
>>>>>>>
>>>>>>> Benjamin Bratkus wrote:
>>>>>>>
>>>>>>>
>>>>>>>> i agree to, so if there would be a documentation project i would 
>>>>>>>> help
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>> too
>>>>>
>>>>>>>> Benjamin Bratkus
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> Use the wiki:
>>>>>>
>>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
Hi Massimilano,
Can you deliver those as well in English? Or
shall we organize translation?
Best regards,
Marky


massimiliano wrote:

> If you want you can put my articles about J2 (italian section ?)
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_I
>
> http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2
>
> (other articles are in progress)
>
> Massimiliano Dessì
>
> ----- Original Message ----- From: "Marky Goldstein" <re...@rosa.com>
> To: "Jetspeed Users List" <je...@portals.apache.org>
> Sent: Thursday, June 23, 2005 11:25 AM
> Subject: Re: AW: Apache Jetspeed 2 Documentation Project
>
>
> That's interesting. I have placed the link in the Wiki as well.
> Let's collect first, what we've got.
> Then let's setup the project team and plan.
> Best regards,
> Marky
>
>
> Raphaël Luta wrote:
>
>> Once the wiki is stabilized, my plan was to cut a forrestized
>> site for documentation since forrest natively supports
>> wiki formats.
>>
>> You can check out an early test here:
>>
>> http://people.apache.org/~raphael/j2forrest/
>>
>> This URL compiles all the docs currently available for j2
>> (both from website docs and design-docs).
>>
>> Marky Goldstein wrote:
>>
>>> Hi,
>>>
>>> By the way, later we will anyway move to a Jetspeed
>>> based portal with a wiki and content management
>>> system ;-> and after that we will convince Apache to
>>> change it's portals...
>>>
>>> Best regards,
>>> Marky
>>>
>>>
>>> Marky Goldstein wrote:
>>>
>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>
>>>> We just started. We will structure it directly into the Wiki.
>>>> It's like programming: writing, structuring, reading, feedbacking, 
>>>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>>>> structured by the people and I guess we have some very structured 
>>>> people here, do we? ;->
>>>>
>>>> I have seen sites such as userlinux.com that were built
>>>> on Wikis and that were very well structured.
>>>> Best regards,
>>>> Marky
>>>>
>>>>
>>>>
>>>> ng. Andrej Vanek wrote:
>>>>
>>>>> will be the documentation project somehow coordinated or just 
>>>>> "brainstormed"
>>>>> into wiki and then revised ?
>>>>> i.e. how can I help?
>>>>>
>>>>>
>>>>>> From: "Marky Goldstein"
>>>>>>
>>>>>> I just did documentation for another Open
>>>>>> Source project using a Wiki, and I must
>>>>>> say that it was extremly good.
>>>>>>
>>>>>> I we find some people that spend 15 to 30 minutes
>>>>>> documenting and structuring every day, then we will
>>>>>> have a good documentation within just a few weeks.
>>>>>>
>>>>>> Best regards,
>>>>>> Marky Goldstein
>>>>>>
>>>>>>> How can we start such a project?
>>>>>>> Best regards,
>>>>>>> Marky
>>>>>>>
>>>>>>> Benjamin Bratkus wrote:
>>>>>>>
>>>>>>>
>>>>>>>> i agree to, so if there would be a documentation project i 
>>>>>>>> would help
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>> too
>>>>>
>>>>>>>> Benjamin Bratkus
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> Use the wiki:
>>>>>>
>>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>>> For additional commands, e-mail: 
>>>>> jetspeed-user-help@portals.apache.org
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by massimiliano <ma...@gruppoatlantis.com>.
If you want you can put my articles about J2 (italian section ?)

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_I

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2

(other articles are in progress)

Massimiliano Dessì

----- Original Message ----- 
From: "Marky Goldstein" <re...@rosa.com>
To: "Jetspeed Users List" <je...@portals.apache.org>
Sent: Thursday, June 23, 2005 11:25 AM
Subject: Re: AW: Apache Jetspeed 2 Documentation Project


That's interesting. I have placed the link in the Wiki as well.
Let's collect first, what we've got.
Then let's setup the project team and plan.
Best regards,
Marky


Raphaël Luta wrote:

> Once the wiki is stabilized, my plan was to cut a forrestized
> site for documentation since forrest natively supports
> wiki formats.
>
> You can check out an early test here:
>
> http://people.apache.org/~raphael/j2forrest/
>
> This URL compiles all the docs currently available for j2
> (both from website docs and design-docs).
>
> Marky Goldstein wrote:
>
>> Hi,
>>
>> By the way, later we will anyway move to a Jetspeed
>> based portal with a wiki and content management
>> system ;-> and after that we will convince Apache to
>> change it's portals...
>>
>> Best regards,
>> Marky
>>
>>
>> Marky Goldstein wrote:
>>
>>> http://wiki.apache.org/portals/Jetspeed2
>>>
>>> We just started. We will structure it directly into the Wiki.
>>> It's like programming: writing, structuring, reading, feedbacking, 
>>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>>> structured by the people and I guess we have some very structured people 
>>> here, do we? ;->
>>>
>>> I have seen sites such as userlinux.com that were built
>>> on Wikis and that were very well structured.
>>> Best regards,
>>> Marky
>>>
>>>
>>>
>>> ng. Andrej Vanek wrote:
>>>
>>>> will be the documentation project somehow coordinated or just 
>>>> "brainstormed"
>>>> into wiki and then revised ?
>>>> i.e. how can I help?
>>>>
>>>>
>>>>> From: "Marky Goldstein"
>>>>>
>>>>> I just did documentation for another Open
>>>>> Source project using a Wiki, and I must
>>>>> say that it was extremly good.
>>>>>
>>>>> I we find some people that spend 15 to 30 minutes
>>>>> documenting and structuring every day, then we will
>>>>> have a good documentation within just a few weeks.
>>>>>
>>>>> Best regards,
>>>>> Marky Goldstein
>>>>>
>>>>>> How can we start such a project?
>>>>>> Best regards,
>>>>>> Marky
>>>>>>
>>>>>> Benjamin Bratkus wrote:
>>>>>>
>>>>>>
>>>>>>> i agree to, so if there would be a documentation project i would 
>>>>>>> help
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>> too
>>>>
>>>>>>> Benjamin Bratkus
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>> Use the wiki:
>>>>>
>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
That's interesting. I have placed the link in the Wiki as well.
Let's collect first, what we've got.
Then let's setup the project team and plan.
Best regards,
Marky


Raphaël Luta wrote:

> Once the wiki is stabilized, my plan was to cut a forrestized
> site for documentation since forrest natively supports
> wiki formats.
>
> You can check out an early test here:
>
> http://people.apache.org/~raphael/j2forrest/
>
> This URL compiles all the docs currently available for j2
> (both from website docs and design-docs).
>
> Marky Goldstein wrote:
>
>> Hi,
>>
>> By the way, later we will anyway move to a Jetspeed
>> based portal with a wiki and content management
>> system ;-> and after that we will convince Apache to
>> change it's portals...
>>
>> Best regards,
>> Marky
>>
>>
>> Marky Goldstein wrote:
>>
>>> http://wiki.apache.org/portals/Jetspeed2
>>>
>>> We just started. We will structure it directly into the Wiki.
>>> It's like programming: writing, structuring, reading, feedbacking, 
>>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>>> structured by the people and I guess we have some very structured 
>>> people here, do we? ;->
>>>
>>> I have seen sites such as userlinux.com that were built
>>> on Wikis and that were very well structured.
>>> Best regards,
>>> Marky
>>>
>>>
>>>
>>> ng. Andrej Vanek wrote:
>>>
>>>> will be the documentation project somehow coordinated or just 
>>>> "brainstormed"
>>>> into wiki and then revised ?
>>>> i.e. how can I help?
>>>>
>>>>  
>>>>
>>>>> From: "Marky Goldstein"
>>>>>
>>>>> I just did documentation for another Open
>>>>> Source project using a Wiki, and I must
>>>>> say that it was extremly good.
>>>>>
>>>>> I we find some people that spend 15 to 30 minutes
>>>>> documenting and structuring every day, then we will
>>>>> have a good documentation within just a few weeks.
>>>>>
>>>>> Best regards,
>>>>> Marky Goldstein
>>>>>  
>>>>>
>>>>>> How can we start such a project?
>>>>>> Best regards,
>>>>>> Marky
>>>>>>
>>>>>> Benjamin Bratkus wrote:
>>>>>>
>>>>>>   
>>>>>>
>>>>>>> i agree to, so if there would be a documentation project i would 
>>>>>>> help
>>>>>>>       
>>>>>>
>>>>>>
>>>>>>
>>>> too
>>>>  
>>>>
>>>>>>> Benjamin Bratkus
>>>>>>>
>>>>>>>       
>>>>>>
>>>>>>
>>>>>>
>>>>> Use the wiki:
>>>>>
>>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>>   
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>>
>>>>  
>>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Raphaël Luta <ra...@aptiwan.com>.
Once the wiki is stabilized, my plan was to cut a forrestized
site for documentation since forrest natively supports
wiki formats.

You can check out an early test here:

http://people.apache.org/~raphael/j2forrest/

This URL compiles all the docs currently available for j2
(both from website docs and design-docs).

Marky Goldstein wrote:
> Hi,
> 
> By the way, later we will anyway move to a Jetspeed
> based portal with a wiki and content management
> system ;-> and after that we will convince Apache to
> change it's portals...
> 
> Best regards,
> Marky
> 
> 
> Marky Goldstein wrote:
> 
>> http://wiki.apache.org/portals/Jetspeed2
>>
>> We just started. We will structure it directly into the Wiki.
>> It's like programming: writing, structuring, reading, feedbacking, 
>> writing, structuring, reading, feedbacking and so on. A Wiki get's 
>> structured by the people and I guess we have some very structured 
>> people here, do we? ;->
>>
>> I have seen sites such as userlinux.com that were built
>> on Wikis and that were very well structured.
>> Best regards,
>> Marky
>>
>>
>>
>> ng. Andrej Vanek wrote:
>>
>>> will be the documentation project somehow coordinated or just 
>>> "brainstormed"
>>> into wiki and then revised ?
>>> i.e. how can I help?
>>>
>>>  
>>>
>>>> From: "Marky Goldstein"
>>>>
>>>> I just did documentation for another Open
>>>> Source project using a Wiki, and I must
>>>> say that it was extremly good.
>>>>
>>>> I we find some people that spend 15 to 30 minutes
>>>> documenting and structuring every day, then we will
>>>> have a good documentation within just a few weeks.
>>>>
>>>> Best regards,
>>>> Marky Goldstein
>>>>  
>>>>
>>>>> How can we start such a project?
>>>>> Best regards,
>>>>> Marky
>>>>>
>>>>> Benjamin Bratkus wrote:
>>>>>
>>>>>    
>>>>>
>>>>>> i agree to, so if there would be a documentation project i would help
>>>>>>       
>>>>>
>>>>>
>>> too
>>>  
>>>
>>>>>> Benjamin Bratkus
>>>>>>
>>>>>>       
>>>>>
>>>>>
>>>> Use the wiki:
>>>>
>>>> http://wiki.apache.org/portals/Jetspeed2
>>>>   
>>>
>>>
>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>>
>>>  
>>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
Hi,

By the way, later we will anyway move to a Jetspeed
based portal with a wiki and content management
system ;-> and after that we will convince Apache to
change it's portals...

Best regards,
Marky


Marky Goldstein wrote:

> http://wiki.apache.org/portals/Jetspeed2
>
> We just started. We will structure it directly into the Wiki.
> It's like programming: writing, structuring, reading, feedbacking, 
> writing, structuring, reading, feedbacking and so on. A Wiki get's 
> structured by the people and I guess we have some very structured 
> people here, do we? ;->
>
> I have seen sites such as userlinux.com that were built
> on Wikis and that were very well structured.
> Best regards,
> Marky
>
>
>
> ng. Andrej Vanek wrote:
>
>> will be the documentation project somehow coordinated or just 
>> "brainstormed"
>> into wiki and then revised ?
>> i.e. how can I help?
>>
>>  
>>
>>> From: "Marky Goldstein"
>>>
>>> I just did documentation for another Open
>>> Source project using a Wiki, and I must
>>> say that it was extremly good.
>>>
>>> I we find some people that spend 15 to 30 minutes
>>> documenting and structuring every day, then we will
>>> have a good documentation within just a few weeks.
>>>
>>> Best regards,
>>> Marky Goldstein
>>>   
>>>
>>>> How can we start such a project?
>>>> Best regards,
>>>> Marky
>>>>
>>>> Benjamin Bratkus wrote:
>>>>
>>>>     
>>>>
>>>>> i agree to, so if there would be a documentation project i would help
>>>>>       
>>>>
>> too
>>  
>>
>>>>> Benjamin Bratkus
>>>>>
>>>>>       
>>>>
>>> Use the wiki:
>>>
>>> http://wiki.apache.org/portals/Jetspeed2
>>>   
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>  
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
http://wiki.apache.org/portals/Jetspeed2

We just started. We will structure it directly into the Wiki.
It's like programming: writing, structuring, reading, 
feedbacking, writing, structuring, reading, feedbacking 
and so on. A Wiki get's structured by the people and I 
guess we have some very structured people here, do we? 
;->

I have seen sites such as userlinux.com that were built
on Wikis and that were very well structured. 

Best regards,
Marky



ng. Andrej Vanek wrote:

>will be the documentation project somehow coordinated or just "brainstormed"
>into wiki and then revised ?
>i.e. how can I help?
>
>  
>
>>From: "Marky Goldstein"
>>
>>I just did documentation for another Open
>>Source project using a Wiki, and I must
>>say that it was extremly good.
>>
>>I we find some people that spend 15 to 30 minutes
>>documenting and structuring every day, then we will
>>have a good documentation within just a few weeks.
>>
>>Best regards,
>>Marky Goldstein
>>    
>>
>>>How can we start such a project?
>>>Best regards,
>>>Marky
>>>
>>>Benjamin Bratkus wrote:
>>>
>>>      
>>>
>>>>i agree to, so if there would be a documentation project i would help
>>>>        
>>>>
>too
>  
>
>>>>Benjamin Bratkus
>>>>
>>>>        
>>>>
>>Use the wiki:
>>
>>http://wiki.apache.org/portals/Jetspeed2
>>    
>>
>
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>  
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by "Ing. Andrej Vanek" <a....@bonum.sk>.
will be the documentation project somehow coordinated or just "brainstormed"
into wiki and then revised ?
i.e. how can I help?

> From: "Marky Goldstein"
>
> I just did documentation for another Open
> Source project using a Wiki, and I must
> say that it was extremly good.
>
> I we find some people that spend 15 to 30 minutes
> documenting and structuring every day, then we will
> have a good documentation within just a few weeks.
>
> Best regards,
> Marky Goldstein
>> How can we start such a project?
>> Best regards,
>> Marky
>>
>> Benjamin Bratkus wrote:
>>
>>> i agree to, so if there would be a documentation project i would help
too
>>>
>>> Benjamin Bratkus
>>>
>
> Use the wiki:
>
> http://wiki.apache.org/portals/Jetspeed2




---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Marky Goldstein <re...@rosa.com>.
I just did documentation for another Open
Source project using a Wiki, and I must
say that it was extremly good.

I we find some people that spend 15 to 30 minutes
documenting and structuring every day, then we will
have a good documentation within just a few weeks.

Best regards,
Marky Goldstein

Raphaël Luta wrote:

> Marky Goldstein wrote:
>
>> How can we start such a project?
>> Best regards,
>> Marky
>>
>> Benjamin Bratkus wrote:
>>
>>> i agree to, so if there would be a documentation project i would 
>>> help too
>>>
>>> Benjamin Bratkus
>>>
>
> Use the wiki:
>
> http://wiki.apache.org/portals/Jetspeed2
>
> FYI, the major focus of J2 M4 is to improve documentation
> starting with code level documentation, clarify the
> project structure doing some spring cleaning...
>
> Any user help on building FAQs/user oriented docs is *extremely*
> welcome, enough for me to offer a huge drink to such user
> at next ApacheCon Europe in Stuttgart :=)
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project

Posted by Raphaël Luta <ra...@apache.org>.
Marky Goldstein wrote:
> How can we start such a project?
> Best regards,
> Marky
> 
> Benjamin Bratkus wrote:
> 
>> i agree to, so if there would be a documentation project i would help too
>>
>> Benjamin Bratkus
>>

Use the wiki:

http://wiki.apache.org/portals/Jetspeed2

FYI, the major focus of J2 M4 is to improve documentation
starting with code level documentation, clarify the
project structure doing some spring cleaning...

Any user help on building FAQs/user oriented docs is *extremely*
welcome, enough for me to offer a huge drink to such user
at next ApacheCon Europe in Stuttgart :=)

-- 
Raphaël Luta - raphael@apache.org
Apache Portals - Enterprise Portal in Java
http://portals.apache.org/




---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: AW: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by Marky Goldstein <re...@rosa.com>.
How can we start such a project?
Best regards,
Marky

Benjamin Bratkus wrote:

>i agree to, so if there would be a documentation project i would help too
>
>Benjamin Bratkus
>
>--
>Orientation in Objects GmbH
>Weinheimerstr. 68
>D-68309 Mannheim
>http://www.oio.de
>Tel +49(0)621-71839-0
>Fax. +49(0)621-71839-50
>------
>
>-----Ursprüngliche Nachricht-----
>Von: perry law [mailto:prlegal@gmail.com]
>Gesendet: Mittwoch, 22. Juni 2005 17:36
>An: Jetspeed Users List
>Betreff: Re: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2
>Newbie: How to share portal's SSO with other WEB applications running on
>the same Tomcat instance?
>
>
>I agree with it. The documentation is very skimmy. We need to work on
>the documentation if we want the adoption of this portal in user
>community. It should be made simple enough.
>
>-Perry
>
>On 6/22/05, Marky Goldstein <re...@rosa.com> wrote:
>  
>
>>I agree that the page
>>
>>http://portals.apache.org/jetspeed-2/sso.html
>>
>>does not tell a lot...
>>
>>Shall we start an Apache Jetspeed 2 Documentation project?
>>
>>Best regards,
>>Marky Goldstein
>>
>>
>>
>>
>>
>>Ing. Andrej Vanek wrote:
>>
>>    
>>
>>>Hello,
>>>
>>>I am runnning Jetspeed-2. My intention is to put a link to a web
>>>      
>>>
>application into the user's portal page. If he clicks on it I expect to open
>a new browser window running the web application without explicitely to have
>to login again- it should use the Jetspeed-2's SSO login. I do want to run
>the web application in a separate web-browser window, not as part of the
>portal via any portal bridge (because of window size, speed, no changes to
>javascript and application etc). But I would like to use portal to integrate
>my running web applications.
>  
>
>>>I suppose this could be acomplished by sharing Jetspeed-2's SSO with
>>>      
>>>
>external web application which is to be opened from the portal.
>Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell
>me much about how to do it...
>  
>
>>>Could anybody give me some information (or links, documentation,
>>>      
>>>
>articles) how to use the Jetspeed-2's SSO and how to collaborate with other
>web applications running on the same Tomcat Instance?
>  
>
>>>Did anybody already solve this issue?
>>>
>>>Best Regards, Andrej
>>>
>>>
>>>
>>>      
>>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>>For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>>
>>
>>    
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
>For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>  
>


AW: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by Benjamin Bratkus <br...@oio.de>.
i agree to, so if there would be a documentation project i would help too

Benjamin Bratkus

--
Orientation in Objects GmbH
Weinheimerstr. 68
D-68309 Mannheim
http://www.oio.de
Tel +49(0)621-71839-0
Fax. +49(0)621-71839-50
------

-----Ursprüngliche Nachricht-----
Von: perry law [mailto:prlegal@gmail.com]
Gesendet: Mittwoch, 22. Juni 2005 17:36
An: Jetspeed Users List
Betreff: Re: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2
Newbie: How to share portal's SSO with other WEB applications running on
the same Tomcat instance?


I agree with it. The documentation is very skimmy. We need to work on
the documentation if we want the adoption of this portal in user
community. It should be made simple enough.

-Perry

On 6/22/05, Marky Goldstein <re...@rosa.com> wrote:
> I agree that the page
>
> http://portals.apache.org/jetspeed-2/sso.html
>
> does not tell a lot...
>
> Shall we start an Apache Jetspeed 2 Documentation project?
>
> Best regards,
> Marky Goldstein
>
>
>
>
>
> Ing. Andrej Vanek wrote:
>
> >Hello,
> >
> >I am runnning Jetspeed-2. My intention is to put a link to a web
application into the user's portal page. If he clicks on it I expect to open
a new browser window running the web application without explicitely to have
to login again- it should use the Jetspeed-2's SSO login. I do want to run
the web application in a separate web-browser window, not as part of the
portal via any portal bridge (because of window size, speed, no changes to
javascript and application etc). But I would like to use portal to integrate
my running web applications.
> >
> >I suppose this could be acomplished by sharing Jetspeed-2's SSO with
external web application which is to be opened from the portal.
Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell
me much about how to do it...
> >
> >Could anybody give me some information (or links, documentation,
articles) how to use the Jetspeed-2's SSO and how to collaborate with other
web applications running on the same Tomcat Instance?
> >Did anybody already solve this issue?
> >
> >Best Regards, Andrej
> >
> >
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Re: Apache Jetspeed 2 Documentation Project Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by perry law <pr...@gmail.com>.
I agree with it. The documentation is very skimmy. We need to work on
the documentation if we want the adoption of this portal in user
community. It should be made simple enough.

-Perry

On 6/22/05, Marky Goldstein <re...@rosa.com> wrote:
> I agree that the page
> 
> http://portals.apache.org/jetspeed-2/sso.html
> 
> does not tell a lot...
> 
> Shall we start an Apache Jetspeed 2 Documentation project?
> 
> Best regards,
> Marky Goldstein
> 
> 
> 
> 
> 
> Ing. Andrej Vanek wrote:
> 
> >Hello,
> >
> >I am runnning Jetspeed-2. My intention is to put a link to a web application into the user's portal page. If he clicks on it I expect to open a new browser window running the web application without explicitely to have to login again- it should use the Jetspeed-2's SSO login. I do want to run the web application in a separate web-browser window, not as part of the portal via any portal bridge (because of window size, speed, no changes to javascript and application etc). But I would like to use portal to integrate my running web applications.
> >
> >I suppose this could be acomplished by sharing Jetspeed-2's SSO with external web application which is to be opened from the portal. Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell me much about how to do it...
> >
> >Could anybody give me some information (or links, documentation, articles) how to use the Jetspeed-2's SSO and how to collaborate with other web applications running on the same Tomcat Instance?
> >Did anybody already solve this issue?
> >
> >Best Regards, Andrej
> >
> >
> >
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
> For additional commands, e-mail: jetspeed-user-help@portals.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org


Apache Jetspeed 2 Documentation Project Re: Jetspeed-2 Newbie: How to share portal's SSO with other WEB applications running on the same Tomcat instance?

Posted by Marky Goldstein <re...@rosa.com>.
I agree that the page

http://portals.apache.org/jetspeed-2/sso.html

does not tell a lot...

Shall we start an Apache Jetspeed 2 Documentation project?

Best regards,
Marky Goldstein





Ing. Andrej Vanek wrote:

>Hello,
>
>I am runnning Jetspeed-2. My intention is to put a link to a web application into the user's portal page. If he clicks on it I expect to open a new browser window running the web application without explicitely to have to login again- it should use the Jetspeed-2's SSO login. I do want to run the web application in a separate web-browser window, not as part of the portal via any portal bridge (because of window size, speed, no changes to javascript and application etc). But I would like to use portal to integrate my running web applications.
>
>I suppose this could be acomplished by sharing Jetspeed-2's SSO with external web application which is to be opened from the portal. Unfortunately at http://portals.apache.org/jetspeed-2/sso.html does not tell me much about how to do it... 
>
>Could anybody give me some information (or links, documentation, articles) how to use the Jetspeed-2's SSO and how to collaborate with other web applications running on the same Tomcat Instance?
>Did anybody already solve this issue?
>
>Best Regards, Andrej
>
>  
>



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-user-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-user-help@portals.apache.org