Changeset 9031
- Timestamp:
- 21 Jul 2012, 07:33:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/university/export.py
r8986 r9031 62 62 If `filepath` is ``None``, a raw string with CSV data is returned. 63 63 """ 64 writer, outfile = self.get_csv_writer(filepath)65 64 faculties = site.get('faculties', {}) 66 65 return self.export(faculties.values(), filepath) … … 90 89 91 90 def export_all(self, site, filepath=None): 92 """Export faculties in facultycontainerinto filepath as CSV data.91 """Export departments in faculty into filepath as CSV data. 93 92 94 93 If `filepath` is ``None``, a raw string with CSV data is returned. … … 137 136 138 137 def export_all(self, site, filepath=None): 139 """Export faculties in facultycontainerinto filepath as CSV data.138 """Export courses into filepath as CSV data. 140 139 141 140 If `filepath` is ``None``, a raw string with CSV data is returned. … … 164 163 165 164 def export_all(self, site, filepath=None): 166 """Export faculties in facultycontainerinto filepath as CSV data.165 """Export certificates into filepath as CSV data. 167 166 168 167 If `filepath` is ``None``, a raw string with CSV data is returned. … … 211 210 212 211 def export_all(self, site, filepath=None): 213 """Export faculties in facultycontainerinto filepath as CSV data.212 """Export certificate courses into filepath as CSV data. 214 213 215 214 If `filepath` is ``None``, a raw string with CSV data is returned.
Note: See TracChangeset for help on using the changeset viewer.