Changes between Version 5 and Version 6 of JoinedResourceController
- Timestamp:
- 09/20/09 18:38:57 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified JoinedResourceController
v5 v6 83 83 def kit(): 84 84 "RESTlike CRUD controller" 85 s3.pdf = URL(r=request, f='kit_export_pdf')86 s3.xls = URL(r=request, f='kit_export_xls')85 response.s3.pdf = URL(r=request, f='kit_export_pdf') 86 response.s3.xls = URL(r=request, f='kit_export_xls') 87 87 if len(request.args) == 2: 88 88 crud.settings.update_next = URL(r=request, f='kit_item', args=request.args[1]) … … 90 90 }}} 91 91 92 The {{{ s3.pdf}}} & {{{s3.xls}}} provide the {{{view/formats.html}}} with an alternate URL to provide a customised version of the PDF/XLS output available when clicking on the icon (s3.rssis also available).92 The {{{response.s3.pdf}}} & {{{response.s3.xls}}} provide the {{{view/formats.html}}} with an alternate URL to provide a customised version of the PDF/XLS output available when clicking on the icon ({{{response.s3.rss}}} is also available). 93 93 94 94 {{{