forked from pool/python-WSME
- Update to version 0.5b1:
+ Introduce a new kind of adapters that rely on the framework routing.
Adapters are provided for Pecan, TurboGears and cornice.
+ Reorganised the rest protocol implementation to ease the implementation
of adapters that rely only on the host framework routing system.
+ The default rest @expose decorator does not wrap the decorated function
anymore. If needed to expose a same function several times, a parameter
multiple_expose=True has been introduced.
+ Remove the wsme.release module
+ Fix == operator on ArrayType
+ Adapted the wsme.sphinxext module to work with the function exposed
by the wsme.pecan adapter.
+ Allow promotion of int to float on float attributes (Doug Hellman)
+ Add a samples_slot option to the .. autotype directive to choose where
the data samples whould be inserted
+ Add sample() to ArrayType and DictType
+ New syntax for object arrays as GET parameters, without brackets.
Ex: ?o.f1=a&o.f1=b&o.f2=c&o.f2=d is an array of two objects:
[{‘f1’: ‘a’, ‘f2’: ‘c’]}, {‘f1’: ‘b’, ‘f2’: ‘d’]}.
+ @signature (and its @wsexpose frontends) has a new parameter: ignore_extra_args.
+ Fix boolean as input type support in the soap implementation
+ Fix empty/nil strings distinction in soap
+ Improved unittests code coverage.
+ Ported the soap implementation to python 3.
+ Moved non-core features (adapters, sphinx extension) to the wsmeext module.
+ Change the GET parameter name for passing the request body as a parameter
is now from ‘body’ to ‘__body__’
+ The soap, extdirect and sqlalchemy packages have been merged into the
main package.
+ Changed the documentation theme to “Cloud”.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-WSME?expand=0&rev=2
This commit is contained in:
committed by
Git OBS Bridge
parent
86c0ef3a67
commit
aff689fc85
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0526d06e4430e4e60f67fd076ca10434f1f27e4b365c957d7f6fb60a1306ba25
|
||||
size 37363
|
||||
3
WSME-0.5b1.tar.gz
Normal file
3
WSME-0.5b1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f093bcc98e40a1238eb10b83b4e101682670dd1b4f77064ae7fb1d69060a554
|
||||
size 46705
|
||||
@@ -1,3 +1,37 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 22 12:40:02 UTC 2013 - saschpe@suse.de
|
||||
|
||||
- Update to version 0.5b1:
|
||||
+ Introduce a new kind of adapters that rely on the framework routing.
|
||||
Adapters are provided for Pecan, TurboGears and cornice.
|
||||
+ Reorganised the rest protocol implementation to ease the implementation
|
||||
of adapters that rely only on the host framework routing system.
|
||||
+ The default rest @expose decorator does not wrap the decorated function
|
||||
anymore. If needed to expose a same function several times, a parameter
|
||||
multiple_expose=True has been introduced.
|
||||
+ Remove the wsme.release module
|
||||
+ Fix == operator on ArrayType
|
||||
+ Adapted the wsme.sphinxext module to work with the function exposed
|
||||
by the wsme.pecan adapter.
|
||||
+ Allow promotion of int to float on float attributes (Doug Hellman)
|
||||
+ Add a samples_slot option to the .. autotype directive to choose where
|
||||
the data samples whould be inserted
|
||||
+ Add sample() to ArrayType and DictType
|
||||
+ New syntax for object arrays as GET parameters, without brackets.
|
||||
Ex: ?o.f1=a&o.f1=b&o.f2=c&o.f2=d is an array of two objects:
|
||||
[{‘f1’: ‘a’, ‘f2’: ‘c’]}, {‘f1’: ‘b’, ‘f2’: ‘d’]}.
|
||||
+ @signature (and its @wsexpose frontends) has a new parameter: ignore_extra_args.
|
||||
+ Fix boolean as input type support in the soap implementation
|
||||
+ Fix empty/nil strings distinction in soap
|
||||
+ Improved unittests code coverage.
|
||||
+ Ported the soap implementation to python 3.
|
||||
+ Moved non-core features (adapters, sphinx extension) to the wsmeext module.
|
||||
+ Change the GET parameter name for passing the request body as a parameter
|
||||
is now from ‘body’ to ‘__body__’
|
||||
+ The soap, extdirect and sqlalchemy packages have been merged into the
|
||||
main package.
|
||||
+ Changed the documentation theme to “Cloud”.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 16 13:22:39 UTC 2013 - saschpe@suse.de
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
Name: python-WSME
|
||||
Version: 0.4
|
||||
Version: 0.5b1
|
||||
Release: 0
|
||||
License: MIT
|
||||
Summary: Web Services Made Easy
|
||||
|
||||
Reference in New Issue
Block a user