summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* makefile: make buildroot configurable.HEADmasterjortel2012-02-131-7/+8
|
* refactor Document to no longer be an Element.jortel2011-12-072-10/+111
|
* Don't add prefix (None) to the prefixes dict.jortel2011-08-121-1/+2
|
* Clear expns when setting a prefix.jortel2011-08-121-0/+1
|
* use the available 'root' variable provided in r707 commit.jortel2011-07-111-1/+1
|
* Handle str() and plain() when document root is (None).jortel2011-07-111-4/+23
|
* add metrics logging; time wait on server reply.jortel2011-02-111-0/+4
|
* Fix directory checking in FileCache.clear().jortel2010-12-072-4/+5
|
* Bump release.jortel2010-11-031-1/+1
|
* Fix sax Date to account for daylight savings time.jortel2010-11-031-1/+1
|
* Update epydocs and change RequestContext.sent -> RequestContext.envelope for ↵jortel2010-10-153-4/+37
| | | | readability.
* Fix release info to correct svn revision and (beta), not GA.jortel2010-10-151-1/+1
|
* Add 'nosend' option that causes the SoapClient to return a RequestContext ↵jortel2010-10-154-3/+48
| | | | instead of sending the soap envelope. It is intended that the caller use another transport such as Twisted to send the envelope. The RequestContext provides re-entry points to process the reply (succeeded() & failed()). Also, fix ticket #361 by UTF-8 encoding the soap action that is added to the http headers.
* Fix regression of ticket #348 introduced in r698.jortel2010-09-133-12/+15
|
* Fix Import doctor as plugin; Add plugins.document.parsed() call for schema ↵jortel2010-09-104-4/+10
| | | | defined in the wsdl.
* Allow for soapenc array type without trailing [].jortel2010-09-082-2/+5
|
* Release 0.4 GA.baserock/release-0.4jortel2010-09-082-7/+16
|
* Fix epydocs.jortel2010-09-082-22/+8
|
* Add DocumentPlugin.loaded() hook per ticket 347.jortel2010-09-013-8/+30
|
* Fix duplicate DocumentPlugin.parsed() called when wsdl imports schema.jortel2010-09-015-15/+18
|
* Add option: 'prettyxml' default=0 to control output XML as pretty printed or ↵jortel2010-08-315-17/+60
| | | | not.
* fix epydocs.jortel2010-08-241-4/+4
|
* plugin API - version 2 with bumped release info.jortel2010-08-241-1/+1
|
* plugin API - version 2.jortel2010-08-248-75/+169
|
* bump to revision: R688-20100817.jortel2010-08-171-1/+1
|
* bump to revision: R686-20100817.jortel2010-08-171-1/+1
|
* Fix building xsd types using the builder with mixed content (string w/ ↵jortel2010-08-173-8/+31
| | | | attributes).
* Modified plugin API to: initialized(), loaded(), sending() & received().jortel2010-05-137-23/+23
|
* Pass Plugin.onSend() the soap envelope root Element instead of the Document.jortel2010-05-123-3/+3
|
* Add plugin.py.jortel2010-05-121-0/+184
|
* Fix ImportDoctor onLoad() plugin API.jortel2010-05-111-1/+1
|
* Rename SendContext attribute to (envelope).jortel2010-05-112-2/+2
|
* Add Plugins facility. Supports hooks for onInit(), onLoad(), onSend() ↵jortel2010-05-116-8/+47
| | | | onReply() events.
* Undo changes to literal marshalling prefix qualification.jortel2010-05-063-25/+2
|
* optimize Schema.children using set().jortel2010-05-061-1/+4
|
* Update epydocs suds/xsd/schema.pyjortel2010-05-065-8/+38
|
* Fix RHQ test to work with latest server.jortel2010-05-061-341/+21
|
* Search successful reply envelopes for <soapenv:Fault/> to detect cases when ↵jortel2010-05-052-1/+19
| | | | servers return http=200 but envelope contians a fault.
* Fixed ticket #313. Fix attribute handling for TextAppender.jortel2010-05-032-5/+11
|
* Fix checkversion() for cases when the cache directory does not exist.jortel2010-04-141-2/+2
|
* FileCache.putf() needs to return valid file pointer although putf() not ↵jortel2010-04-091-2/+3
| | | | being used in suds it should do the right thing.
* Change content-type http header to be: 'text/xml; charset=utf-8' per ticket ↵jortel2010-04-053-5/+6
| | | | 251. Also, add <?xml version='1.0' encoding='UTF-8'>
* Add proper iterator for Element.jortel2010-04-012-1/+36
|
* update build information.jortel2010-03-311-1/+1
|
* Add version checking to ensure that the cache is cleared when suds is upgraded.jortel2010-03-311-0/+17
|
* Enhance caching: Add cachingpolicy (0=xml documents, 1=wsdl object); Add ↵jortel2010-03-313-38/+94
| | | | DocumentCache that can be used to cache XML files in string XML. This may be useful as the speed and reliability of python pickle is questionable. For now, the default cache will remain the ObjectCache.
* Provide for composite reply w/ repeating message parts.jortel2010-03-301-5/+10
|
* Fix Timezone.local references; Change xsd.sxbasic.qualify() to use the ↵jortel2010-03-115-40/+53
| | | | schema tns when the document default namespace is not specified (None, None). This handles poorly written wsdl/schema files that contain unqualified references such as: base='Animal' but don't define a default namespace for the schema document. The expectation here (although incorrect) is that the schema tns be used.
* Fix cache clear() to ignore suffix.jortel2010-03-091-1/+1
|
* Add UTC class and change the wsse timestamps to use sax.date classes for ↵jortel2010-03-034-12/+37
| | | | propert formatting. Also, change wsse classes to have timestamps in UTC.