summaryrefslogtreecommitdiff
path: root/net/py-soappy
AgeCommit message (Collapse)AuthorFilesLines
2003-09-14hange extension.mk to also install optimized files for distutils packages.recht1-7/+3
Inspired by FreeBSD "ports". Fix the PLISTs accordingly. Also, while at it, remove now obsolete compileall.py calls in post-install targets and insure that extension.mk is in included before builinlinks of other Python modules. Discussed with/ok'ed by drochner@.
2003-08-24py-soappy needs a threaded Python.recht2-2/+5
Noticed by hubertf's bulk build.
2003-08-16Update to 0.10.2.recht3-6/+12
changes: - Modifed WSDL.Proxy to pass along all arguments to SOAPProxy. This should ensure that all features of SOAPProxy are accessible to users of WSDL.Proxy - Created URLopener.py, which contains a class extending urllib.FancyURLopener. This class allows reading from URLs that are protected by basic authenticatoin, have been relocated, etc. - Modified WSDL.Proxy to use URLopener. It should now permit access to WSDL files protected by basic authentication. - Modified XMLSchema to extend UserTuple instead of tuple for python < 2.2. - Added UserTuple class, taken from from Stefan Schwarzer's ftputil library.
2003-08-11Update to 0.10.1.recht4-11/+63
This version contains many changes/fixes. among them: - Major Change: The huge file SOAPpy/SOAP.py (4,122 lines, 131K) has been split into 10 separate files: Client.py NS.py SOAPBuilder.py Utilities.py Config.py Parser.py Server.py Errors.py SOAP.py Types.py This should ease navigation and maintenance. - Added client support for WSDL, ported from ZSI by Mark Bucciarelli <mark@hubcapconsulting.com>
2003-03-19update to 0.9.8, provided by Marc Recht (PR pkg/20787)drochner5-87/+35
Notes: This is SOAPpy 0.9.8. It contains substantial improvements over the last release. 1) SOAPpy now uses the standard python package installation tools. Executing the commands $ python setup.py build $ python setup.py install (the second as root) should install SOAPpy into the appropriate Python library directory. 2) There has been inconsistency in how SOAPpy library components have been imported. This new release standardizes on: from SOAPpy import SOAP 3) See the changelog for further enhancements.
2002-10-24use buildlink2drochner1-2/+3
2002-10-24call the builink file "buildlink2.mk" (it doesn't do anything differentdrochner2-9/+3
for simple Python packages however)
2002-10-01import SOAP.py from the "Web Services for Python" project, with some fixesdrochner7-0/+112
to make it work with Python-2.2 (extracted from py-google). This is the third SOAP implementation in Python I've tried, and the first which actually works.