Changeset 9074 for main/waeup.kofa/trunk/src/waeup/kofa/browser
- Timestamp:
- 28 Jul 2012, 04:47:58 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/browser
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r9038 r9074 920 920 'Content-Type', 'text/csv; charset=UTF-8') 921 921 self.response.setHeader( 922 'Content-Disposition:', 'attachment; filename="%s .csv' %923 self.filename.replace(' .csv',''))922 'Content-Disposition:', 'attachment; filename="%s' % 923 self.filename.replace('finished/','')) 924 924 fullpath = os.path.join(self.context.storage, self.filename) 925 925 return open(fullpath, 'rb').read() -
main/waeup.kofa/trunk/src/waeup/kofa/browser/static/datatable.js
r7811 r9074 1 1 $(document).ready(function(){ 2 $('.dataTable').dataTable(); 2 $('.dataTable').dataTable(); 3 4 $('.dataTableFiles').dataTable( { 5 "aaSorting": [[ 2, "desc" ]], 6 } ); 7 3 8 $('.dataTableManage').dataTable( { 4 9 "aaSorting": [[ 1, "asc" ]], 5 10 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 6 11 } ); 12 13 $('.dataTableManageFiles').dataTable( { 14 "aaSorting": [[ 3, "desc" ]], 15 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 16 } ); 17 18 7 19 }); 8 20 -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterfinishedpage.pt
r9023 r9074 1 <table i18n:domain="waeup.kofa" class="display dataTable ">1 <table i18n:domain="waeup.kofa" class="display dataTableFiles"> 2 2 <thead> 3 3 <tr> -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterpage.pt
r9023 r9074 11 11 <form action="." tal:attributes="action request/URL" method="post" 12 12 i18n:domain="waeup.kofa" enctype="multipart/form-data"> 13 <table i18n:domain="waeup.kofa" class="display dataTableManage ">13 <table i18n:domain="waeup.kofa" class="display dataTableManageFiles"> 14 14 <thead> 15 15 <tr>
Note: See TracChangeset for help on using the changeset viewer.