[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Introspector/Views/Browser - Introspector.pt:1.2 IntrospectorView.py:1.2 __init__.py:1.2

Jim Fulton jim@zope.com
Mon, 10 Jun 2002 19:28:39 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Introspector/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv17445/lib/python/Zope/App/OFS/Introspector/Views/Browser

Added Files:
	Introspector.pt IntrospectorView.py __init__.py 
Log Message:
Merged Zope-3x-branch into newly forked Zope3 CVS Tree.


=== Zope3/lib/python/Zope/App/OFS/Introspector/Views/Browser/Introspector.pt 1.1 => 1.2 ===
+<head>
+</head>
+
+<body>
+<div metal:fill-slot="body">
+
+<h1>Component Browser: <span tal:replace="context/getName">My Name</span></h1>
+
+<dl>
+<dt>Type</dt>
+<dd>Content</dd>
+<dt>Description</dt>
+<dd tal:content="context/getDocString">My Doc String</dd>
+<dt>Interfaces</dt>
+<dd tal:repeat="interface context/getInterfaceNames"><a href="yeah"
+tal:attributes="href string:/@@Reference/Interfaces/${interface}"
+tal:content="interface">Interface Name</a></dd>
+</dl>
+
+</div>
+</body>
+</html>


=== Zope3/lib/python/Zope/App/OFS/Introspector/Views/Browser/IntrospectorView.py 1.1 => 1.2 ===
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+# 
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+# 
+##############################################################################
+from Zope.App.PageTemplate import SimpleViewClass
+from Zope.App.OFS.Introspector.IIntrospector import IIntrospector
+
+IntrospectorView  = SimpleViewClass('Introspector.pt', used_for=IIntrospector)


=== Zope3/lib/python/Zope/App/OFS/Introspector/Views/Browser/__init__.py 1.1 => 1.2 ===
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+# 
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+# 
+##############################################################################
+