RE: why do portlets inherit from servlets?

2002-10-30 Thread David Sean Taylor
> -Original Message- > From: Jason Novotny [mailto:jdnovotny@;lbl.gov] > Sent: Wednesday, October 30, 2002 9:02 PM > To: Jetspeed Developers List > Cc: [EMAIL PROTECTED] > Subject: Re: why do portlets inherit from servlets? > > > > Hi David, > > Thanks for the information. In trying

Re: why do portlets inherit from servlets?

2002-10-30 Thread Jason Novotny
Hi David, Thanks for the information. In trying to implement something similar myself, I'm confused as to how to manage the portlet lifecycle if portlets are servlets. For instance, the only method a "manger" servlet, or portlet container, can access of a portlet is the service method thru t

why do portlets inherit from servlets?

2002-10-30 Thread Jason Novotny
Hi, I've been looking at IBM's Portlet API in which portlets inherit from servlets-- I would like to get some technical reasons for why this is a good or bad idea. For one thing it seems performance might be slower since portlets would be invoked presumably using RequestDispatcher.include() me

cvs commit: jakarta-jetspeed/webapp/WEB-INF/templates/jsp/tld template.tld

2002-10-30 Thread morciuch
morciuch2002/10/30 14:56:13 Modified:src/java/org/apache/jetspeed/services/jsp/tags JetspeedPortletTag.java webapp/WEB-INF/templates/jsp/portlets/html JSP1_1andJetspeedTagLib.jsp webapp/WEB-INF/templates/jsp/tl

RE: Help required: Client Registry in CVS Head

2002-10-30 Thread Luta, Raphael (VUN)
De : David Sean Taylor [mailto:david@;bluesunrise.com] > > From: Luta, Raphael (VUN) [mailto:Raphael.Luta@;groupvu.Com] > > > > So this is an open call for all volunteers to send to this list any > > user-agent string you'd like to see supported along with > its supported > > mime-type(s) and main

RE: why do portlets inherit from servlets?

2002-10-30 Thread David Sean Taylor
> -Original Message- > From: Jason Novotny [mailto:novotny@;aei.mpg.de] > Sent: Tuesday, October 29, 2002 12:11 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: why do portlets inherit from servlets? > > > Hi, > > I've been looking at IBM's Portlet API in which portlets inher

RE: Help required: Client Registry in CVS Head

2002-10-30 Thread David Sean Taylor
> -Original Message- > From: Luta, Raphael (VUN) [mailto:Raphael.Luta@;groupvu.Com] > Sent: Wednesday, October 30, 2002 8:13 AM > To: '[EMAIL PROTECTED]' > Subject: Help required: Client Registry in CVS Head > > > I've just committed in the HEAD CVS a new registry for storing user-agent >

cvs commit: jakarta-jetspeed/lib jakarta-regexp-1.2.jar

2002-10-30 Thread raphael
raphael 2002/10/30 09:26:40 Added: lib jakarta-regexp-1.2.jar Log: Add regexp package for Client regexp match Revision ChangesPath 1.2 +131 -0jakarta-jetspeed/lib/jakarta-regexp-1.2.jar <> -- To unsubscribe, e-mail:

RE: Help required: Client Registry in CVS Head

2002-10-30 Thread Luta, Raphael (VUN)
Yes... I forgot to add it :( Done now. Thanks > -Message d'origine- > De : Mark Orciuch [mailto:mark_orciuch@;ngsltd.com] > Envoyé : mercredi 30 octobre 2002 18:23 > À : Jetspeed Developers List > Objet : RE: Help required: Client Registry in CVS Head > > > I just got some errors compil

RE: Help required: Client Registry in CVS Head

2002-10-30 Thread Mark Orciuch
I just got some errors compiling the latest: compile: [javac] Compiling 1 source file to C:\jakarta-jetspeed\bin\classes [javac] Found 5 semantic errors compiling "C:/jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BaseClien tRegistry. java": [javac] 70. import org

Customizelanguage service + portlet

2002-10-30 Thread Massimiliano Dessi
I'd like to give to the jetspeed comunity the sources of a portlet and the correlated service to change the current language. Jetspeed by default reads the header from the request and to change the language is necessary to modify the browser settings. How it works: this service is similar to the

Help required: Client Registry in CVS Head

2002-10-30 Thread Luta, Raphael (VUN)
I've just committed in the HEAD CVS a new registry for storing user-agent client preferences and capabilities in order to replace the currently hard oded CapabilityMap classes... I've not yet committed the CapabilityMap patch yet because I'd like to improve first the quality of the client.xreg fi

cvs commit: jakarta-jetspeed/xdocs changes.xml

2002-10-30 Thread raphael
raphael 2002/10/30 08:01:54 Modified:xdocschanges.xml Log: Update changes file Revision ChangesPath 1.84 +4 -1 jakarta-jetspeed/xdocs/changes.xml Index: changes.xml === RCS file: /home/

cvs commit: jakarta-jetspeed/webapp/WEB-INF/xsl defaultstyle.xsl

2002-10-30 Thread raphael
raphael 2002/10/30 07:55:51 Modified:webapp/WEB-INF/conf JetspeedResources.properties JetspeedSecurity.properties admin.xreg registry.xml webapp/WEB-INF/psml/user/admin/html default.psml Added: webapp/WEB-INF/conf client.xreg

cvs commit: jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base BaseCapabilityMap.java BaseClientEntry.java BaseClientRegistry.java BaseMediaTypeRegistry.java BaseMimetypeMap.java BasePortletControlRegistry.java BasePortletControllerRegistry.java BaseSecurityRegistry.java BaseSkinRegistry.java BaseMediaTypeEntry.java BasePortletRegistry.java BaseRegistry.java BaseRegistryEntry.java DatabaseRegistry.java

2002-10-30 Thread raphael
raphael 2002/10/30 07:52:06 Modified:src/java/org/apache/jetspeed/om/registry Registry.java src/java/org/apache/jetspeed/om/registry/base BaseMediaTypeEntry.java BasePortletRegistry.java BaseRegistry.java BaseRegistryEntry.ja

cvs commit: jakarta-jetspeed/src/java/org/apache/jetspeed/services/rundata DefaultJetspeedRunData.java JetspeedRunData.java

2002-10-30 Thread raphael
raphael 2002/10/30 07:52:39 Modified:src/java/org/apache/jetspeed/services Registry.java src/java/org/apache/jetspeed/services/registry CastorRegistryService.java DatabaseRegistryService.java RegistryFragment.java

why do portlets inherit from servlets?

2002-10-30 Thread Jason Novotny
Hi, I've been looking at IBM's Portlet API in which portlets inherit from servlets-- I would like to get some technical reasons for why this is a good or bad idea. For one thing it seems performance might be slower since portlets would be invoked presumably using RequestDispatcher.include() me