Changes between Version 5 and Version 6 of S3/S3XML/Transformation
- Timestamp:
- 10/27/10 09:41:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3XML/Transformation
v5 v6 30 30 == XSLT Stylesheets on the Server == 31 31 32 You can use the URL variable ?transform=to specify a transformation stylesheet at a file location on the server, e.g.:32 You can use the URL variable {{{?transform=}}} to specify a transformation stylesheet at a file location on the server, e.g.: 33 33 34 34 {{{ 35 http://127.0.0.1:8000/vita/pr/person.pfif?transform=/ home/me/stylesheets/export.pfif35 http://127.0.0.1:8000/vita/pr/person.pfif?transform=/use/share/stylesheets/export.pfif 36 36 }}} 37 37 38 ...to use the stylesheet {{{/home/me/stylesheets/export.pfif}}} (on the server!)for this export.38 ...to use the stylesheet from {{{/use/share/stylesheets/export.pfif}}} for this export. 39 39 40 Note that you must not specify "xml" or "json" as data format of the resource, because that will suppress any transformation attempt. Also note that this currently assumes that the data format is an XML format and not JSON (subject to change in the near future). 41 40 Note: 41 - the web server must be permitted to access this location 42 - you must not specify "xml" or "json" as data format of the resource, otherwise this will suppress any transformation attempt 43 - this currently assumes that the data format is an XML format and not JSON (subject to change in the near future) 42 44 == XSLT Stylesheets on the Web == 43 45