Changeset 11397


Ignore:
Timestamp:
24 Feb 2014, 08:42:07 (11 years ago)
Author:
Henrik Bettermann
Message:

Fix test problem with year number.

Pin Kofa versions.cfg.

Remove dev marker.

Pin ZEO-related recipe.

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  
        55develop-eggs
        66parts
         7sources
        78var
  • main/waeup.futminna/tags/0.1/CHANGES.txt

    r7825 r11397  
    22*******
    33
    4 0.2 (unreleased)
     40.1 (2014-02-24)
    55================
    66
    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.
     7Initial version.
  • main/waeup.futminna/tags/0.1/buildout.cfg

    r10141 r11397  
    4141
    4242[sources]
    43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk
    44 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/trunk
     43waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/tags/0.2.1
     44kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/tags/0.1
    4545
    4646[kofa_params]
  • main/waeup.futminna/tags/0.1/setup.py

    r9225 r11397  
    22from setuptools import setup, find_packages
    33
    4 version = '0.1dev'
     4version = '0.1'
    55
    66install_requires =[
  • main/waeup.futminna/tags/0.1/src/waeup/futminna/applicants/tests/test_browser.py

    r10275 r11397  
    2828from zope.component import createObject, getUtility
    2929from waeup.kofa.applicants.container import ApplicantsContainer
    30 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
     30from waeup.kofa.applicants.tests.test_browser import (
     31    ApplicantsFullSetup, container_name_1)
    3132from waeup.kofa.interfaces import (
    3233    IExtFileStore, IFileStoreNameChooser)
     
    157158            in logcontent)
    158159        # 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]
    160161        fd = storage.getFile(file_id)
    161162        self.assertTrue(fd is None)
     
    248249            in logcontent)
    249250        # 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]
    251252        fd = storage.getFile(file_id)
    252253        self.assertTrue(fd is None)
  • main/waeup.futminna/tags/0.1/versions.cfg

    r10197 r11397  
    77
    88[versions]
     9waeup.kofa = 0.2.1
     10kofacustom.nigeria = 0.1
    911collective.recipe.sphinxbuilder = 0.7.0
    1012hurry.workflow = 0.11
     
    130132# dolmen.beaker==0.1
    131133pycryptopp = 0.6.0.1206569328141510525648634803928199668821045408958
     134
     135# Added by buildout at 2014-02-24 09:34:06.407671
     136zc.zodbrecipes = 2.0.0
Note: See TracChangeset for help on using the changeset viewer.