[Zope3-checkins] SVN: Zope3/trunk/ merged branch from 38937:HEAD
tziade_xmlintrospection
Tarek Ziadé
tziade at nuxeo.com
Wed Oct 26 13:17:25 EDT 2005
Log message for revision 39648:
merged branch from 38937:HEAD tziade_xmlintrospection
Changed:
U Zope3/trunk/doc/CHANGES.txt
A Zope3/trunk/src/zope/app/xmlrpcintrospection/
_U Zope3/trunk/src/zope/app/xmlrpcintrospection/README.txt
_U Zope3/trunk/src/zope/app/xmlrpcintrospection/__init__.py
_U Zope3/trunk/src/zope/app/xmlrpcintrospection/ftests.py
_U Zope3/trunk/src/zope/app/xmlrpcintrospection/tests/__init__.py
_U Zope3/trunk/src/zope/app/xmlrpcintrospection/tests/test_xmlrpcintrospection.py
UU Zope3/trunk/src/zope/app/xmlrpcintrospection/xmlrpcintrospection.py
-=-
Modified: Zope3/trunk/doc/CHANGES.txt
===================================================================
--- Zope3/trunk/doc/CHANGES.txt 2005-10-26 17:12:39 UTC (rev 39647)
+++ Zope3/trunk/doc/CHANGES.txt 2005-10-26 17:17:25 UTC (rev 39648)
@@ -93,6 +93,10 @@
- Implemented viewlets, an extension of content providers. Viewlets
allow one to easily develop component-driven UIs.
+ - Implemented XML-RPC Introspection. XML-RPC Views can therefore
+ be used by the client for API discovering, through three
+ methods: listAllMethods, methodHelp and methodSignature
+
Restructuring
- Mutable MessageIDs have been deprecated and will be removed in
Copied: Zope3/trunk/src/zope/app/xmlrpcintrospection (from rev 39642, Zope3/branches/tziade_xmlintrospection/src/zope/app/xmlrpcintrospection)
Modified: Zope3/trunk/src/zope/app/xmlrpcintrospection/xmlrpcintrospection.py
===================================================================
--- Zope3/branches/tziade_xmlintrospection/src/zope/app/xmlrpcintrospection/xmlrpcintrospection.py 2005-10-26 17:02:55 UTC (rev 39642)
+++ Zope3/trunk/src/zope/app/xmlrpcintrospection/xmlrpcintrospection.py 2005-10-26 17:17:25 UTC (rev 39648)
@@ -40,9 +40,6 @@
""" lists all methods available """
return self._getXMLRPCMethods()
- def methodHelp(self, method_name):
- pass
-
def methodSignature(self, method_name):
""" returns the method signature """
return self._getXMLRPCMethodSignature(method_name)
More information about the Zope3-Checkins
mailing list