Changeset 11090


Ignore:
Timestamp:
13 Feb 2014, 07:54:48 (11 years ago)
Author:
Henrik Bettermann
Message:

Diazofy kofacustom.nigeria.

Location:
main
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/branches/henrik-diazo-themed/buildout.cfg

    r10136 r11090  
    1616    site_zcml
    1717    zdaemon_conf
    18     deploy_ini
    19     debug_ini
     18    raw_deploy_ini
     19    raw_debug_ini
     20    themed_deploy_ini
     21    themed_debug_ini
    2022    profile_ini
    2123# waeupdocs
     
    2426# kofactl creation must be _after_ app!
    2527    kofactl
     28    lxml
     29    diazo
    2630# For backward compatibility, telling buildout not to throw away
    2731# the data and log subdirectories from the parts directory.
     
    3438update-versions-file = versions.cfg
    3539
     40
    3641# eggs will be installed in the default buildout location
    3742# (see .buildout/default.cfg in your home directory)
     
    3944
    4045[sources]
    41 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk
    42 
     46waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/branches/uli-diazo-themed
    4347[kofa_params]
    4448## Basic parameters for deployment.
     
    6468# This creates all scripts in bin/. The kofactl created here is 'faulty'.
    6569recipe = zc.recipe.egg
    66 eggs = kofacustom.nigeria [beaker]
     70eggs = kofacustom.nigeria [beaker, diazo]
    6771       z3c.evalexception>=2.0
    6872       Paste
     
    7882# fixed path to zdaemon.conf as argument.
    7983recipe = zc.recipe.egg
    80 eggs = kofacustom.nigeria [beaker]
     84eggs = kofacustom.nigeria [beaker, diazo]
    8185       waeup.kofa
    8286arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
     
    151155output = ${buildout:parts-directory}/etc/zdaemon.conf
    152156
    153 [deploy_ini]
    154 recipe = collective.recipe.template
    155 input = etc/deploy.ini.in
    156 output = ${buildout:parts-directory}/etc/deploy.ini
    157 
    158 [debug_ini]
    159 recipe = collective.recipe.template
    160 input = etc/debug.ini.in
    161 output = ${buildout:parts-directory}/etc/debug.ini
     157[raw_debug_ini]
     158recipe = collective.recipe.template
     159input = etc/raw/debug.ini.in
     160output = ${buildout:parts-directory}/etc/raw-debug.ini
     161
     162[raw_deploy_ini]
     163recipe = collective.recipe.template
     164input = etc/raw/deploy.ini.in
     165output = ${buildout:parts-directory}/etc/raw-deploy.ini
     166
     167[themed_debug_ini]
     168recipe = collective.recipe.template
     169input = etc/themed/debug.ini.in
     170output = ${buildout:parts-directory}/etc/themed-debug.ini
     171
     172[themed_deploy_ini]
     173recipe = collective.recipe.template
     174input = etc/themed/deploy.ini.in
     175output = ${buildout:parts-directory}/etc/themed-deploy.ini
    162176
    163177[profile_ini]
     
    191205scripts = coveragereport
    192206arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
     207
     208[lxml]
     209recipe = z3c.recipe.staticlxml
     210egg = lxml
     211
     212[diazo]
     213recipe = zc.recipe.egg
     214eggs =
     215    diazo [wsgi]
     216    PasteScript
     217    kofacustom.nigeria [beaker,diazo]
  • main/kofacustom.nigeria/branches/henrik-diazo-themed/setup.py

    r9226 r11090  
    3333    'roman',
    3434    'repoze.sphinx.autointerface',
     35    ]
     36
     37diazo_require = [
     38    'diazo',
     39    'webob',
    3540    ]
    3641
     
    8186        docs = docs_require,
    8287        beaker = beaker_require,
     88        diazo = diazo_require,
    8389        ),
    8490      entry_points="""
  • main/kofacustom.nigeria/branches/henrik-diazo-themed/src/kofacustom/nigeria/students/tests/test_browser.py

    r11054 r11090  
    287287            name='upload_acceptanceletterupload').click()
    288288        self.assertTrue(
    289             '<a target="image" href="acc_let">'
     289            'http://localhost/app/students/K1000000/acc_let'
    290290            in self.browser.contents)
    291291        self.browser.getControl(
  • main/kofacustom.nigeria/branches/henrik-diazo-themed/versions.cfg

    r10195 r11090  
    128128# zc.recipe.testrunner==2.0.0
    129129zope.testrunner = 4.3.3
     130
     131# Added by buildout at 2014-02-13 08:26:53.898100
     132WebOb = 1.3.1
     133diazo = 1.0.5
     134repoze.xmliter = 0.5
     135z3c.recipe.staticlxml = 0.10
     136
     137# Required by:
     138# diazo==1.0.5
     139experimental.cssselect = 0.3
     140
     141# Required by:
     142# diazo==1.0.5
     143# experimental.cssselect==0.3
     144lxml = 3.3.1
     145
     146# Required by:
     147# z3c.recipe.staticlxml==0.10
     148zc.recipe.cmmi = 1.3.5
  • main/waeup.kofa/trunk/etc/zdaemon.conf.in

    r5502 r11090  
    11<runner>
    2   program ${buildout:directory}/bin/paster serve ${buildout:directory}/parts/etc/deploy.ini
     2  program ${buildout:directory}/bin/paster serve ${buildout:directory}/parts/etc/themed-deploy.ini
    33  daemon on
    44  transcript ${zope_conf:logfiles}/zdaemon.log
Note: See TracChangeset for help on using the changeset viewer.