Jetspeed Proposal: 0001
LAST MODIFIED: $Date: 2000/12/22 13:26:08 $
AUTHOR:  burton@apache.org
STATUS: OBSOLOETE 
        ( Implementation was modified to put this into the new jetspeed-config
          within proposal 0003 )

********************************************************************************
* WARNING:  THIS DOCUMENT WAS INITIALLY A PROPOSAL.  PLEASE CHECK THE DATE AS  *
* THIS MAY HAVE BECOME OLD.                                                    * 
********************************************************************************

I want to change PortletRegistry to just a Registry.  Then we can have
Portlets PortletControls and PortletControllers within it.

The following changes to PSML are required.  Please vote if you have any
issues:

This is the diff of registry.xds and shows how it will change: 
Basically it will become:

<registry>

        <portlet>
                ...
        </portlet>

        <portlet-control>
                ...
        </portlet-control>

        <portlet-controller>
                ...
        </portlet-controller>
</registry>


retrieving revision 1.5
diff -r1.5 registry.xsd
65,66c65,68
<     <type>
<         <element ref="portlets" minOccurs="0" maxOccurs="1"/>
---
>     <type content="elemOnly>
>         <element ref="portlet"  minOccurs="0"/>
>         <element ref="portlet-control"  minOccurs="0"/>
>         <element ref="portlet-controller"  minOccurs="0"/>
70,76c72
< <element name="portlets">
<     <type content="elemOnly">
<         <element ref="entry"  minOccurs="0"/>
<     </type>
< </element>
< 
< <element name="entry">
---
> <element name="portlet">
129a126,156
> 
> 
> <element name="portlet-control">
>     <type>
>         <element ref="classname" minOccurs="1" maxOccurs="1"/>
>         <element ref="url" minOccurs="0" maxOccurs="1"/>
>         <element ref="parameter" minOccurs="0"/>
>         <element ref="metainfo" minOccurs="0" maxOccurs="1"/>
> 
>         <!--
>         Describes the capabilities of this client.
>         -->
>         <element ref="capability-map" minOccurs="0" maxOccurs="1"/>
>     </type>
> </element>
> 
> 
> <element name="portlet-controller">
>     <type>
>         <element ref="classname" minOccurs="1" maxOccurs="1"/>
>         <element ref="url" minOccurs="0" maxOccurs="1"/>
>         <element ref="parameter" minOccurs="0"/>
>         <element ref="metainfo" minOccurs="0" maxOccurs="1"/>
> 
>         <!--
>         Describes the capabilities of this client.
>         -->
>         <element ref="capability-map" minOccurs="0" maxOccurs="1"/>
>     </type>
> </element>
> 
