From John.Fischer@sun.com Tue Feb 19 15:21:49 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1JNLmos006529
	for <psarc-ext@sac.sfbay.Sun.COM>; Tue, 19 Feb 2008 15:21:49 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1JNLkxK002590
	for <@sunmail2sca.sfbay.sun.com:psarc-ext@sun.com>; Wed, 20 Feb 2008 07:21:47 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWI00F01E89J700@nwk-avmta-1.sfbay.Sun.COM> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Tue, 19 Feb 2008 15:21:45 -0800 (PST)
Received: from brmea-mail-1.sun.com ([192.18.98.31])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWI00D46E88I120@nwk-avmta-1.sfbay.Sun.COM> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Tue,
 19 Feb 2008 15:21:44 -0800 (PST)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id m1JNLi9C004293	for
 <psarc-ext@sun.com>; Tue, 19 Feb 2008 23:21:44 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWI00801DXL6000@mail-amer.sun.com>
 (original mail from John.Fischer@Sun.COM)
 for psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Tue,
 19 Feb 2008 16:21:44 -0700 (MST)
Received: from 129.145.154.84 ([129.145.154.84])
 by mail-amer.sun.com (Sun Java System Messaging Server 6.2-8.04 (built Feb 28
 2007)) with ESMTPSA id <0JWI001OWE84IIC0@mail-amer.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Tue,
 19 Feb 2008 16:21:40 -0700 (MST)
Date: Tue, 19 Feb 2008 15:21:40 -0800
From: John Fischer <John.Fischer@sun.com>
Subject: PSARC/2008/122 - Python zope-interfaces
Sender: John.Fischer@sun.com
To: psarc-ext@sun.com
Cc: John Fischer <John.Fischer@sun.com>, Ghee Teo <Ghee.Teo@sun.com>
Reply-to: John.Fischer@sun.com
Message-id: <1203463299.63061.26.camel@sr1-umpk-34>
MIME-version: 1.0
X-Mailer: Ximian Evolution 1.4.6.301c
Content-type: multipart/mixed; boundary="Boundary_(ID_OPPqXE70shb6avFKOyw7eg)"
X-PMX-Version: 5.2.0.264296
Status: RO
Content-Length: 5626


--Boundary_(ID_OPPqXE70shb6avFKOyw7eg)
Content-type: text/plain; charset=ASCII
Content-transfer-encoding: 7BIT

PSARC,

I am sponsoring this case for Ghee Teo of the JDS - Gnome 
group in Dublin, Ireland.  The case directory contains this
proposal.  I have set the timeout for Tuesday, February 26th,
2008.


The project proposes to integrate the Python zope interfaces
into a minor release of Solaris.  The Zope component architecture 
is about how to create reusable components, but not the reusable
components itself.  Other Python modules will depend upon the
Zope interface architecture.

Thanks,

John

--Boundary_(ID_OPPqXE70shb6avFKOyw7eg)
Content-type: text/plain; charset=ASCII; name=proposal.txt
Content-transfer-encoding: 7BIT
Content-disposition: attachment; filename=proposal.txt

1. Introduction
   1.1. Project/Component Working Name:

        Python zope-interfaces

   1.2. Name of Document Author/Supplier:

        Ghee Teo

   1.3. Date of This Document:

        02/18/2008
        
   1.3.1. Date this project was conceived:

        November, 1998

   1.4. Name of Major Document Customer(s)/Consumer(s):

        1.4.1. The PAC or CPT you expect to review your project:

                Solaris PAC

        1.4.2. The ARC(s) you expect to review your project:

                PSARC

        1.4.3. The Director/VP who is "Sponsoring" this project:

                robert.odea@sun.com

        1.4.4. The name of your business unit:

                New Solaris / OpenSource.

   1.5. Email Aliases:
        1.5.1. Responsible Manager:

                leo.binchy@sun.com

        1.5.2. Responsible Engineer:

                Ghee.Teo@sun.com

        1.5.3. Marketing Manager:

                dan.roberts@sun.com

        1.5.4. Interest List:

                desktop-discuss@opensolaris.org

4. Technical Description:
    4.1. Details:

	This package provides the python zope Interface module. This module is 
    part of the Zope 3 project [1] which is to provide Component based 
    development for web services. However, Zope interface is also used by other
    web development framework such as Twisted and it is the primary reason for 
    delivery of zope interface here.

    Interfaces are objects that re-specify the external behavior of objects that 
    provides them in the first place. An interface can redefine the behavior of
    the original objects through:

    - Replacing a string in the the documentation
    - Modifying the object's attributes.
    - Invariants which is to place conditions that the original objects must
      satisfy.

    Interface support is an important Object Oriented techniques that allows:
    - less patching to the original classes
    - Interfaces can be maintained and yet its implementation can be modified
      to new requirements.
    - modification of GUI without de-stabilizing the applications.
    
    Good examples for how use the zope interface can be found here [2].

    4.2. Bug/RFE Number(s):

        None.

    4.3. In Scope:

        See above.

    4.4. Out of Scope:

        See above.

    4.5. Interfaces:

        --------------------------------------------------------------------
        Exported                    	Stability       Comments                
        --------------------------------------------------------------------
        SUNWpython-zope-interface       Uncommitted     Package name
	zope.interface			Uncommitted	Python module
	zope.interface.adapter		Uncommitted	Python module
	zope.interface.advice		Uncommitted	Python module
	zope.interface.declarations	Uncommitted	Python module
	zope.interface.document		Uncommitted	Python module
	zope.interface.exceptions	Uncommitted	Python module
	zope.interface.interface	Uncommitted	Python module
	zope.interface.interfaces	Uncommitted	Python module
	zope.interface.ro		Uncommitted	Python module
	zope.interface.verify		Uncommitted	Python module
	zope.interface.common		Uncommitted	Python module
	zope.interface.common.idatetime	Uncommitted	Python module
	zope.interface.common.interfacesUncommitted	Python module
	zope.interface.common.mapping	Uncommitted	Python module
	zope.interface.common.sequence 	Uncommitted	Python module           
        
                                                                            
                                                                            
        --------------------------------------------------------------------
        Imported                    	Stability       Comments                
        --------------------------------------------------------------------  
        Python 2.4.x                	Contracted      PSARC 2005/532
                                    	External
        

    4.6. Doc Impact:

        Man page will be provided pointing to the on-line API documentation.

    4.7. Admin/Config Impact:

        None.

    4.8. HA Impact:

        None.

    4.9. I18N/L10N Impact:

        The JDS team and the G11N are working together to evaluation and
        provide I18N/L10N support.

    4.10. Packaging & Delivery:
    
        Adds new package, SUNWpython-zope-interface, approx 800K
        Package will go into SUNWCall, SUNWCXall and SUNWCprog clusters.

    4.11. Security Impact:

        None.

    4.12. Dependencies:

        The following versions of the imported interfaces are required:
        Python                  >= 2.4

5. Reference Documents:

    [1] Zope 3 Wiki http://wiki.zope.org/zope3/Zope3Wiki

    [2] README in /usr/lib/python2.4/vendor-packages/zope/interface/README.txt
   





--Boundary_(ID_OPPqXE70shb6avFKOyw7eg)--

From sacadmin Tue Feb 19 15:14:19 2008
Received: from sac.sfbay.sun.com (localhost [127.0.0.1])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1JNEJGJ006180;
	Tue, 19 Feb 2008 15:14:19 -0800 (PST)
Received: (from johnf@localhost)
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8/Submit) id m1JNEJrT006176;
	Tue, 19 Feb 2008 15:14:19 -0800 (PST)
Date: Tue, 19 Feb 2008 15:14:19 -0800 (PST)
From: John Fischer <johnf@sac.sfbay.sun.com>
Message-Id: <200802192314.m1JNEJrT006176@sac.sfbay.sun.com>
To: PSARC-record@sac.sfbay.sun.com
Cc: john.fischer@sun.com
Subject: Python zope-interfaces [PSARC/2008/122 FastTrack timeout 02/26/2008]
Status: RO
Content-Length: 564


Template Version: @(#)sac_nextcase 1.64 07/13/07 SMI
This information is Copyright 2008 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 Python zope-interfaces
    1.2. Name of Document Author/Supplier:
	 Author:  Ghee Teo
    1.3  Date of This Document:
	19 February, 2008
4. Technical Description
    See the case directory for more detail

6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		JDS - Gnome
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open


From jyri@buye.red.iplanet.com Tue Feb 19 17:14:10 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1K1E9uN010840
	for <psarc-ext@sac.sfbay.Sun.COM>; Tue, 19 Feb 2008 17:14:10 -0800 (PST)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1K1DwoS016456;
	Wed, 20 Feb 2008 09:14:03 +0800 (SGT)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWI00F01JFBWV00@brm-avmta-1.central.sun.com>; Tue,
 19 Feb 2008 18:13:59 -0700 (MST)
Received: from buye.red.iplanet.com ([192.18.65.224])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWI008DHJFB4B70@brm-avmta-1.central.sun.com>; Tue,
 19 Feb 2008 18:13:59 -0700 (MST)
Received: from buye.red.iplanet.com (localhost [127.0.0.1])
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7) with ESMTP id m1K1Dwnn012349; Tue,
 19 Feb 2008 17:13:58 -0800 (PST)
Received: (from jyri@localhost)
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7/Submit) id m1K1Dw1f012348; Tue,
 19 Feb 2008 17:13:58 -0800 (PST)
Date: Tue, 19 Feb 2008 17:13:58 -0800
From: Jyri Virkki <Jyri.Virkki@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <1203463299.63061.26.camel@sr1-umpk-34>
To: John Fischer <John.Fischer@sun.com>
Cc: psarc-ext@sun.com, Ghee Teo <Ghee.Teo@sun.com>
Message-id: <20080220011358.GV11415@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
User-Agent: Mutt/1.5.11
Status: RO
Content-Length: 395

John Fischer wrote:
>
>    1.3.1. Date this project was conceived:
> 
>         November, 1998

1998?

>     4.5. Interfaces:
>         --------------------------------------------------------------------
>         Exported                    	Stability       Comments              

Where in the filesystem are all these delivered?


-- 
Jyri J. Virkki - jyri.virkki@sun.com - Sun Microsystems

From Ghee.Teo@sun.com Wed Feb 20 03:55:12 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KBtBOE027469
	for <psarc-ext@sac.sfbay.Sun.COM>; Wed, 20 Feb 2008 03:55:12 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1KBsvnE009605
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Wed, 20 Feb 2008 19:55:10 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ00109D3WDW00@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 20 Feb 2008 03:55:08 -0800 (PST)
Received: from gmp-eb-mail-2.sun.com ([192.18.6.24])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ00KRVD3VLAD0@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 20 Feb 2008 03:55:08 -0800 (PST)
Received: from fe-emea-09.sun.com (gmp-eb-lb-2-fe1.eu.sun.com [192.18.6.10])
	by gmp-eb-mail-2.sun.com (8.13.7+Sun/8.12.9) with ESMTP id m1KBt7nc013512	for
 <PSARC-ext@sun.com>; Wed, 20 Feb 2008 11:55:07 +0000 (GMT)
Received: from conversion-daemon.fe-emea-09.sun.com by fe-emea-09.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWJ00G01CL4BC00@fe-emea-09.sun.com> (original mail from Ghee.Teo@Sun.COM)
 for PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 20 Feb 2008 11:55:07 +0000 (GMT)
Received: from [129.156.220.40] by fe-emea-09.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 with ESMTPSA id <0JWJ0078MD3USME0@fe-emea-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 20 Feb 2008 11:55:07 +0000 (GMT)
Date: Wed, 20 Feb 2008 11:55:06 +0000
From: Ghee Teo <Ghee.Teo@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <20080220011358.GV11415@sun.com>
Sender: Ghee.Teo@sun.com
To: Jyri Virkki <jyri.virkki@sun.com>
Cc: John Fischer <John.Fischer@sun.com>, psarc-ext@sun.com
Reply-to: Ghee.Teo@sun.com
Message-id: <47BC151A.1090701@sun.com>
Organization: Sun Microsystems
MIME-version: 1.0
Content-type: text/plain; format=flowed; charset=ISO-8859-1
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
 <20080220011358.GV11415@sun.com>
User-Agent: Thunderbird 2.0.0.9 (X11/20080116)
Status: RO
Content-Length: 784

Jyri Virkki wrote:
> John Fischer wrote:
>   
>>    1.3.1. Date this project was conceived:
>>
>>         November, 1998
>>     
>
> 1998?
>   
   I put down the original date for the Python Interfaces conception 
date as indicated here,
http://www.zope.org/Members/jim/PythonInterfaces/Summary
 
A bit of history of zope 3 shows that code is first release around 
November 2004, as
shown here http://wiki.zope.org/zope3/FAQGeneral
>   
>>     4.5. Interfaces:
>>         --------------------------------------------------------------------
>>         Exported                    	Stability       Comments              
>>     
>
> Where in the filesystem are all these delivered?
>   
  These will be delivered under
  /usr/lib/python2.4/vendor-packages/zope

Thanks,

-Ghee
>
>   


From John.Plocher@sun.com Wed Feb 20 06:43:18 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KEhHKo002963
	for <psarc-ext@sac.sfbay.Sun.COM>; Wed, 20 Feb 2008 06:43:18 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1KEgtlW025046
	for <@sunmail2sca.sfbay.sun.com:psarc-ext@sun.com>; Wed, 20 Feb 2008 22:43:16 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ00G03KW3VM00@nwk-avmta-1.sfbay.Sun.COM> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Wed, 20 Feb 2008 06:43:15 -0800 (PST)
Received: from sca-es-mail-1.sun.com ([192.18.43.132])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ001YYKW3YF80@nwk-avmta-1.sfbay.Sun.COM> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 06:43:15 -0800 (PST)
Received: from fe-sfbay-10.sun.com ([192.18.43.129])
	by sca-es-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id m1KEhFbI011344	for
 <psarc-ext@sun.com>; Wed, 20 Feb 2008 06:43:15 -0800 (PST)
Received: from conversion-daemon.fe-sfbay-10.sun.com by fe-sfbay-10.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWJ00M01KUARA00@fe-sfbay-10.sun.com>
 (original mail from John.Plocher@Sun.COM)
 for psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 06:43:15 -0800 (PST)
Received: from wp668.local ([208.74.177.212])
 by fe-sfbay-10.sun.com (Sun Java System Messaging Server 6.2-8.04 (built Feb
 28 2007)) with ESMTPSA id <0JWJ002TNKW3J4F0@fe-sfbay-10.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 06:43:15 -0800 (PST)
Date: Wed, 20 Feb 2008 06:43:14 -0800
From: John Plocher <John.Plocher@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <47BC151A.1090701@sun.com>
Sender: John.Plocher@sun.com
To: Ghee.Teo@sun.com
Cc: Jyri Virkki <Jyri.Virkki@sun.com>, John Fischer <John.Fischer@sun.com>,
        psarc-ext@sun.com
Message-id: <47BC3C82.8010501@Sun.Com>
MIME-version: 1.0
Content-type: text/plain; format=flowed; charset=ISO-8859-1
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
 <20080220011358.GV11415@sun.com> <47BC151A.1090701@sun.com>
User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031)
Status: RO
Content-Length: 820

Ghee Teo wrote:
>>>    1.3.1. Date this project was conceived:
>>>
>>>         November, 1998

>    I put down the original date for the Python Interfaces conception 
> date as indicated here,
> http://www.zope.org/Members/jim/PythonInterfaces/Summary
>  
> A bit of history of zope 3 shows that code is first release around 
> November 2004, as
> shown here http://wiki.zope.org/zope3/FAQGeneral

This isn't asking when "your supplier" (i.e., the FOSS Community)
started working on things, but when "you" started the effort to
integrate their work into (open)solaris.

There are two projects going on here:
    1) the creation and evolution of zope, and
    2) the integration of zope into (open)solaris.

This ARC review needs to focus on the second of these; it has
little to no influence on the first....

    -John

From Ghee.Teo@sun.com Wed Feb 20 09:20:14 2008
Received: from sunmail2sca.sfbay.sun.com (sunmail2sca [129.145.155.234])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KHKEh1008388
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 09:20:14 -0800 (PST)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail2sca.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1KHK7sr005527
	for <@sunmail2sca.sfbay.sun.com:psarc-ext@sun.com>; Wed, 20 Feb 2008 09:20:14 -0800 (PST)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ0011HS5PLL00@brm-avmta-1.central.sun.com> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Wed, 20 Feb 2008 10:20:13 -0700 (MST)
Received: from gmp-eb-inf-1.sun.com ([192.18.6.21])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ00GPXS5NP890@brm-avmta-1.central.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 10:20:12 -0700 (MST)
Received: from fe-emea-10.sun.com (gmp-eb-lb-2-fe2.eu.sun.com [192.18.6.11])
	by gmp-eb-inf-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id m1KHKBGA024909	for
 <psarc-ext@sun.com>; Wed, 20 Feb 2008 17:20:11 +0000 (GMT)
Received: from conversion-daemon.fe-emea-10.sun.com by fe-emea-10.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWJ00A01RV86800@fe-emea-10.sun.com> (original mail from Ghee.Teo@Sun.COM)
 for psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 17:20:11 +0000 (GMT)
Received: from [129.156.220.40] by fe-emea-10.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 with ESMTPSA id <0JWJ00MBLS56SV60@fe-emea-10.sun.com> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Wed, 20 Feb 2008 17:19:55 +0000 (GMT)
Date: Wed, 20 Feb 2008 17:19:54 +0000
From: Ghee Teo <Ghee.Teo@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <47BC3C82.8010501@Sun.Com>
Sender: Ghee.Teo@sun.com
To: John Plocher <John.Plocher@sun.com>
Cc: Jyri Virkki <Jyri.Virkki@sun.com>, John Fischer <John.Fischer@sun.com>,
        psarc-ext@sun.com
Reply-to: Ghee.Teo@sun.com
Message-id: <47BC613A.8020004@sun.com>
Organization: Sun Microsystems
MIME-version: 1.0
Content-type: text/plain; format=flowed; charset=ISO-8859-1
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
 <20080220011358.GV11415@sun.com> <47BC151A.1090701@sun.com>
 <47BC3C82.8010501@Sun.Com>
User-Agent: Thunderbird 2.0.0.9 (X11/20080116)
Status: RO
Content-Length: 643

John Plocher wrote:
>
> This isn't asking when "your supplier" (i.e., the FOSS Community)
> started working on things, but when "you" started the effort to
> integrate their work into (open)solaris.
Thanks John for clarifying on this :)
This work started initially on spec-files-extra (SFE) back in Jan 2008.
Other related module Twisted started in SFE back in June 2007.

-Ghee
>
> There are two projects going on here:
>    1) the creation and evolution of zope, and
>    2) the integration of zope into (open)solaris.
>
> This ARC review needs to focus on the second of these; it has
> little to no influence on the first....
>
>    -John


From jyri@buye.red.iplanet.com Wed Feb 20 09:48:38 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KHmb2J010043
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 09:48:38 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1KHmUTU001662;
	Wed, 20 Feb 2008 17:48:34 GMT
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ0020PTGXGQ00@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 09:48:33 -0800 (PST)
Received: from buye.red.iplanet.com ([192.18.65.224])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ0026OTGWC900@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 09:48:32 -0800 (PST)
Received: from buye.red.iplanet.com (localhost [127.0.0.1])
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7) with ESMTP id m1KHmWvQ015076; Wed,
 20 Feb 2008 09:48:32 -0800 (PST)
Received: (from jyri@localhost)
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7/Submit) id m1KHmWxO015075; Wed,
 20 Feb 2008 09:48:32 -0800 (PST)
Date: Wed, 20 Feb 2008 09:48:32 -0800
From: Jyri Virkki <Jyri.Virkki@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <47BC151A.1090701@sun.com>
To: Ghee Teo <Ghee.Teo@sun.com>
Cc: psarc-ext@sun.com
Message-id: <20080220174832.GM13612@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
 <20080220011358.GV11415@sun.com> <47BC151A.1090701@sun.com>
User-Agent: Mutt/1.5.11
Status: RO
Content-Length: 320

Ghee Teo wrote:
>
> >Where in the filesystem are all these delivered?
>  
>  These will be delivered under
>  /usr/lib/python2.4/vendor-packages/zope

Thanks! Please just mention that somewhere in the proposal and [more
importantly] reference PSARC/2005/555.

-- 
Jyri J. Virkki - jyri.virkki@sun.com - Sun Microsystems

From John.Fischer@sun.com Wed Feb 20 16:26:58 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1L0QvXb018262
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 16:26:57 -0800 (PST)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1L0QsbQ018456
	for <@sunmail2sca.sfbay.sun.com:psarc-ext@sun.com>; Thu, 21 Feb 2008 00:26:56 GMT
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00B09BWV3100@brm-avmta-1.central.sun.com> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Wed, 20 Feb 2008 17:26:55 -0700 (MST)
Received: from brmea-mail-2.sun.com ([192.18.98.43])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00M2GBWVFA90@brm-avmta-1.central.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 17:26:55 -0700 (MST)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id m1L0QswV029401	for
 <psarc-ext@sun.com>; Thu, 21 Feb 2008 00:26:54 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWK00101BW4VC00@mail-amer.sun.com>
 (original mail from John.Fischer@Sun.COM)
 for psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 17:26:54 -0700 (MST)
Received: from 129.145.154.84 ([129.145.154.84])
 by mail-amer.sun.com (Sun Java System Messaging Server 6.2-8.04 (built Feb 28
 2007)) with ESMTPSA id <0JWK00MX0BWREZ40@mail-amer.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Wed,
 20 Feb 2008 17:26:51 -0700 (MST)
Date: Wed, 20 Feb 2008 16:26:51 -0800
From: John Fischer <John.Fischer@sun.com>
Subject: Re: PSARC/2008/122 - Python zope-interfaces
In-reply-to: <1203463299.63061.26.camel@sr1-umpk-34>
Sender: John.Fischer@sun.com
To: PSARC-ext@sun.com
Cc: John Fischer <John.Fischer@sun.com>, Ghee Teo <Ghee.Teo@sun.com>
Reply-to: John.Fischer@sun.com
Message-id: <1203553610.63061.307.camel@sr1-umpk-34>
MIME-version: 1.0
X-Mailer: Ximian Evolution 1.4.6.301c
Content-type: text/plain
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
References: <1203463299.63061.26.camel@sr1-umpk-34>
Status: RO
Content-Length: 662

Ghee,

This case was approved during PSARC's open business
today.

Thanks,

John

On Tue, 2008-02-19 at 15:21, John Fischer wrote:
> PSARC,
> 
> I am sponsoring this case for Ghee Teo of the JDS - Gnome 
> group in Dublin, Ireland.  The case directory contains this
> proposal.  I have set the timeout for Tuesday, February 26th,
> 2008.
> 
> 
> The project proposes to integrate the Python zope interfaces
> into a minor release of Solaris.  The Zope component architecture 
> is about how to create reusable components, but not the reusable
> components itself.  Other Python modules will depend upon the
> Zope interface architecture.
> 
> Thanks,
> 
> John


