updated to 0.1.5

This commit is contained in:
jortel 2008-02-21 20:56:08 +00:00
parent 2b357f73b3
commit 6d000fb795
4 changed files with 11 additions and 10 deletions

5
README
View File

@ -205,5 +205,8 @@ version-0.1.4 (12-21-07):
* Add proper handling of method params that are lists of property
objects.
version-0.1.5( not-released ):
version-0.1.5( 02-21-08 ):
* Provides better logging in the modules get logger by hierarchal names.
* Refactored as needed to truely support other bindings.
* Add sax module which replaces ElementTree. This is faster, simpler and
handles namespaces (prefixes) properly.

View File

@ -29,5 +29,5 @@ setup(
maintainer_email="jortel@redhat.com",
packages=find_packages(),
url="https://fedorahosted.org/suds",
install_requires=['lxml',]
install_requires=[]
)

View File

@ -1,6 +1,6 @@
import logging
VERSION = "0.1.4"
VERSION = "0.1.5"
class MethodNotFound(Exception):
def __init__(self, name):

View File

@ -297,7 +297,6 @@ class Test:
print service
configuration = service.get_instance('configuration')
print configuration
entry = service.get_instance('configuration.properties.entry')
simple = service.get_instance('propertySimple')
entry.key = 'location'
@ -310,7 +309,6 @@ class Test:
print configuration
name = 'SkipeAdapter'
displayName = 'Skipe Adapter'
description = 'The skipe adapter'
type = 'YumSource'
@ -325,7 +323,7 @@ class Test:
#
try:
print 'createContentSource()'
result = service.createContentSource(subject, name, displayName, description, type, configuration, False)
result = service.createContentSource(subject, name, description, type, configuration, False)
print 'createContentSource: ', str(result)
except Exception, e:
print e
@ -383,8 +381,8 @@ if __name__ == '__main__':
#test5()
#test3()
test = Test()
#test.basic_test()
test.basic_test()
test.auth_test()
#test.resource_test()
#test.perspectives_test()
#test.contentsource_test()
test.resource_test()
test.perspectives_test()
test.contentsource_test()