Changeset 11397 for main/waeup.futminna
- Timestamp:
- 24 Feb 2014, 08:42:07 (11 years ago)
- Location:
- main/waeup.futminna/tags/0.1
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/tags/0.1
- Property svn:ignore
-
old new 5 5 develop-eggs 6 6 parts 7 sources 7 8 var
-
- Property svn:ignore
-
main/waeup.futminna/tags/0.1/CHANGES.txt
r7825 r11397 2 2 ******* 3 3 4 0. 2 (unreleased)4 0.1 (2014-02-24) 5 5 ================ 6 6 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. 7 Initial version. -
main/waeup.futminna/tags/0.1/buildout.cfg
r10141 r11397 41 41 42 42 [sources] 43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/t runk44 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/t runk43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/tags/0.2.1 44 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/tags/0.1 45 45 46 46 [kofa_params] -
main/waeup.futminna/tags/0.1/setup.py
r9225 r11397 2 2 from setuptools import setup, find_packages 3 3 4 version = '0.1 dev'4 version = '0.1' 5 5 6 6 install_requires =[ -
main/waeup.futminna/tags/0.1/src/waeup/futminna/applicants/tests/test_browser.py
r10275 r11397 28 28 from zope.component import createObject, getUtility 29 29 from waeup.kofa.applicants.container import ApplicantsContainer 30 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 30 from waeup.kofa.applicants.tests.test_browser import ( 31 ApplicantsFullSetup, container_name_1) 31 32 from waeup.kofa.interfaces import ( 32 33 IExtFileStore, IFileStoreNameChooser) … … 157 158 in logcontent) 158 159 # When an applicant is removed, also the pdf files are gone. 159 del self.app['applicants'][ 'app2011'][self.applicant.application_number]160 del self.app['applicants'][container_name_1][self.applicant.application_number] 160 161 fd = storage.getFile(file_id) 161 162 self.assertTrue(fd is None) … … 248 249 in logcontent) 249 250 # When an applicant is removed, also the pdf files are gone. 250 del self.app['applicants'][ 'app2011'][self.applicant.application_number]251 del self.app['applicants'][container_name_1][self.applicant.application_number] 251 252 fd = storage.getFile(file_id) 252 253 self.assertTrue(fd is None) -
main/waeup.futminna/tags/0.1/versions.cfg
r10197 r11397 7 7 8 8 [versions] 9 waeup.kofa = 0.2.1 10 kofacustom.nigeria = 0.1 9 11 collective.recipe.sphinxbuilder = 0.7.0 10 12 hurry.workflow = 0.11 … … 130 132 # dolmen.beaker==0.1 131 133 pycryptopp = 0.6.0.1206569328141510525648634803928199668821045408958 134 135 # Added by buildout at 2014-02-24 09:34:06.407671 136 zc.zodbrecipes = 2.0.0
Note: See TracChangeset for help on using the changeset viewer.