Ignore:
Timestamp:
12 Feb 2014, 17:12:11 (11 years ago)
Author:
uli
Message:

Plain transform of w.k. changes. Not the final one.

Location:
main/waeup.skeleton/branches/uli-diazo-themed
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.skeleton/branches/uli-diazo-themed/CHANGES.txt

    r10761 r11075  
    11Changes
    22*******
     31.0 (unreleased)
     4================
     5
     6* Diazofied whole package.
     7
    38
    490.2 (unreleased)
  • main/waeup.skeleton/branches/uli-diazo-themed/buildout-zeo.cfg

    r10761 r11075  
    1313    site_zcml
    1414    zdaemon_conf
    15     deploy_ini
    16     debug_ini
     15    raw_deploy_ini
     16    raw_debug_ini
     17    themed_deploy_ini
     18    themed_debug_ini
    1719    profile_ini
    1820    zeo1_ini
     
    2325# kofactl creation must be _after_ app!
    2426    kofactl
     27    lxml
     28    diazo
    2529# For backward compatibility, telling buildout not to throw away
    2630# the data and log subdirectories from the parts directory.
     
    115119# See http://pypi.python.org/pypi/zc.recipe.egg for details...
    116120recipe = zc.recipe.egg
    117 eggs = waeup.skeleton [beaker]
     121eggs = waeup.skeleton [beaker, diazo]
    118122arguments = "${buildout:parts-directory}/etc/zeo1.conf"
    119123scripts = kofactl=zeo_client1
     
    122126# See http://pypi.python.org/pypi/zc.recipe.egg for details...
    123127recipe = zc.recipe.egg
    124 eggs = waeup.skeleton [beaker]
     128eggs = waeup.skeleton [beaker, diazo]
    125129arguments = "${buildout:parts-directory}/etc/zeo2.conf"
    126130scripts = kofactl=zeo_client2
  • main/waeup.skeleton/branches/uli-diazo-themed/buildout.cfg

    r10761 r11075  
    1818    site_zcml
    1919    zdaemon_conf
    20     deploy_ini
    21     debug_ini
     20    raw_deploy_ini
     21    raw_debug_ini
     22    themed_deploy_ini
     23    themed_debug_ini
    2224    profile_ini
    2325    waeupdocs
     
    2628# kofactl creation must be _after_ app!
    2729    kofactl
     30    lxml
     31    diazo
    2832# For backward compatibility, telling buildout not to throw away
    2933# the data and log subdirectories from the parts directory.
     
    3236# newest = false
    3337
    34 extends = versions.cfg
     38extends =
     39    http://good-py.appspot.com/release/diazo/1.0
     40    versions.cfg
    3541show-picked-versions = true
    3642update-versions-file = versions.cfg
     
    6369# number of preopened paster threads, default 10
    6470threadpool_workers = 10
     71devel_pkg = waeup.skeleton
    6572
    6673[app]
    6774# This creates all scripts in bin/. The kofactl created here is 'faulty'.
    6875recipe = zc.recipe.egg
    69 eggs = waeup.skeleton [beaker]
     76eggs = waeup.skeleton [beaker, diazo]
    7077       z3c.evalexception>=2.0
    7178       Paste
     
    8188# fixed path to zdaemon.conf as argument.
    8289recipe = zc.recipe.egg
    83 eggs = waeup.skeleton [beaker]
     90eggs = waeup.skeleton [beaker, diazo]
    8491arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
    8592scripts = kofactl=kofactl
     
    147154output = ${buildout:parts-directory}/etc/zdaemon.conf
    148155
    149 [deploy_ini]
    150 recipe = collective.recipe.template
    151 input = etc/deploy.ini.in
    152 output = ${buildout:parts-directory}/etc/deploy.ini
    153 
    154 [debug_ini]
    155 recipe = collective.recipe.template
    156 input = etc/debug.ini.in
    157 output = ${buildout:parts-directory}/etc/debug.ini
     156[raw_debug_ini]
     157recipe = collective.recipe.template
     158input = etc/raw/debug.ini.in
     159output = ${buildout:parts-directory}/etc/raw-debug.ini
     160
     161[raw_deploy_ini]
     162recipe = collective.recipe.template
     163input = etc/raw/deploy.ini.in
     164output = ${buildout:parts-directory}/etc/raw-deploy.ini
     165
     166[themed_debug_ini]
     167recipe = collective.recipe.template
     168input = etc/themed/debug.ini.in
     169output = ${buildout:parts-directory}/etc/themed-debug.ini
     170
     171[themed_deploy_ini]
     172recipe = collective.recipe.template
     173input = etc/themed/deploy.ini.in
     174output = ${buildout:parts-directory}/etc/themed-deploy.ini
    158175
    159176[profile_ini]
     
    187204scripts = coveragereport
    188205arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
     206
     207[lxml]
     208recipe = z3c.recipe.staticlxml
     209egg = lxml
     210
     211[diazo]
     212recipe = zc.recipe.egg
     213eggs =
     214    diazo [wsgi]
     215    PasteScript
     216    waeup.skeleton [beaker, diazo]
  • main/waeup.skeleton/branches/uli-diazo-themed/etc/zdaemon.conf.in

    r10761 r11075  
    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
  • main/waeup.skeleton/branches/uli-diazo-themed/setup.py

    r10761 r11075  
    22from setuptools import setup, find_packages
    33
    4 version = '0.1dev'
     4version = '0.2dev'
    55
    66install_requires = [
     
    2121    'dolmen.beaker',
    2222    ]
     23
     24diazo_require = [
     25    'diazo',
     26    'webob',
     27]
    2328
    2429tests_require = [
     
    8691        docs = docs_require,
    8792        beaker = beaker_require,
     93        diazo = diazo_require,
    8894        ),
    8995      entry_points="""
  • main/waeup.skeleton/branches/uli-diazo-themed/versions.cfg

    r10761 r11075  
    128128# zc.recipe.testrunner==2.0.0
    129129zope.testrunner = 4.3.3
     130
     131# Added by buildout at 2014-02-12 16:15:49.898520
     132z3c.recipe.staticlxml = 0.10
     133
     134# Required by:
     135# z3c.recipe.staticlxml==0.10
     136zc.recipe.cmmi = 1.3.5
Note: See TracChangeset for help on using the changeset viewer.