Changes between Version 11 and Version 12 of S3REST
- Timestamp:
- 03/01/10 01:27:53 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3REST
v11 v12 4 4 == s3rest == 5 5 6 s3rest is a callable global object which implements the RESTful interface for the S3 framework. 6 s3rest is a callable global object which implements the RESTful interface for the S3 framework. This interface can be configured dynamically, and can easily be used to build RESTful controllers throughout the application. 7 8 The default method handlers implement all major representations, including all capabilities of [wiki:S3XRC S3XRC] to use in-line XSLT for export and import of XML and JSON formats. 7 9 8 10 [[Image(s3rest.png)]] … … 11 13 12 14 s3rest uses the XRequest class (described below) to represent the current REST request, instead of the web2py request object. Other than web2py/request, the XRequest of the current call is not a global object, but passed as argument when calling REST method handlers. 13 14 15 === Method Handlers === 15 16