Changeset 11271 for main/kofacustom.skeleton/trunk
- Timestamp:
- 22 Feb 2014, 19:22:03 (11 years ago)
- Location:
- main/kofacustom.skeleton/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.skeleton/trunk
-
Property
svn:mergeinfo
set to
/main/kofacustom.skeleton/branches/0 merged eligible
-
Property
svn:mergeinfo
set to
-
main/kofacustom.skeleton/trunk/CHANGES.txt
r10765 r11271 2 2 ******* 3 3 4 0.2 (unreleased) 4 0.2dev (unreleseased) 5 ===================== 6 7 * No changes yet 8 9 10 0.1 (2014-02-21) 5 11 ================ 6 12 7 Feature changes 8 --------------- 9 10 * Started switch to groktoolkit (grok 1.1) based 11 application. `waeup.kofa` is not compatible with grok 1.0 anymore. 12 13 * Added first rudimentary support for application plugins. Plugins are 14 looked up by the main app on creation time and created afterwards. 15 16 * Added first rudimentary support for RSS2.0 feeds. 17 18 * Generated filenames now have a filename extension that indicates 19 mode of processing. So fred.csv becomes fred.create.pending.csv when 20 being batch processed and something fails. 21 22 * Coverage reports are now generated in ``coverage-report`` subdir of 23 build-directory. 24 25 Bug fixes 26 --------- 27 28 * Removed all references to stuff in university submodule into the 29 module itself or replaced it with proper code. This way the 30 university submodule could be factored out of the waeup.kofa 31 package. Fixed bug #23. 32 33 * Fixed default obj updater in batchprocessing. Fixed bug #17. 34 35 * Fixed handling of pending file names, fixed bug #16. 36 37 * Removed quick importer and all related components. 38 39 * Removed TestData folder. It was too heavy and test data can be 40 created on-the-fly. 41 42 43 0.1 (2010-01-31) 44 ================ 45 46 Initial version. (Incomplete) rewrite from the former CPS-based 47 application. 13 Initial version. -
main/kofacustom.skeleton/trunk/buildout.cfg
r10765 r11271 41 41 42 42 [sources] 43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/ trunk44 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/ trunk43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/branches/0.2 44 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/branches/0.x 45 45 46 46 [kofa_params] -
main/kofacustom.skeleton/trunk/setup.py
r10765 r11271 2 2 from setuptools import setup, find_packages 3 3 4 version = '0. 1dev'4 version = '0.2dev' 5 5 6 6 install_requires = [ … … 9 9 'grokui.admin', 10 10 'grokcore.startup', 11 'waeup.kofa ',12 'kofacustom.nigeria ',11 'waeup.kofa < 1.0', 12 'kofacustom.nigeria < 1.0', 13 13 ], 14 14 -
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/interswitch/tests.py
r10765 r11271 17 17 ## 18 18 import os 19 from datetime import datetime, date, timedelta 19 20 from zope.component import createObject, getUtility 20 21 from zope.catalog.interfaces import ICatalog … … 172 173 def setUp(self): 173 174 super(InterswitchTestsApplicants, self).setUp() 175 configuration = SessionConfiguration() 176 configuration.academic_session = datetime.now().year - 2 177 self.app['configuration'].addSessionConfiguration(configuration) 178 self.configuration = configuration 174 179 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') 175 180 self.browser.open(self.manage_path)
Note: See TracChangeset for help on using the changeset viewer.