Changeset 9224


Ignore:
Timestamp:
21 Sep 2012, 21:08:02 (12 years ago)
Author:
Henrik Bettermann
Message:

Adjust configuration to trunk merged with uli-zc-async.

Location:
main/waeup.fceokene/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.fceokene/trunk/etc/debug.ini.in

    r8772 r9224  
    6666# set the name of the zope.conf file
    6767zope_conf = %(here)s/zope.conf
     68env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
  • main/waeup.fceokene/trunk/etc/deploy.ini.in

    r8772 r9224  
    5959# set the name of the zope.conf file
    6060zope_conf = %(here)s/zope.conf
     61env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
  • main/waeup.fceokene/trunk/etc/profile.ini.in

    r8772 r9224  
    6565# set the name of the zope.conf file
    6666zope_conf = %(here)s/zope.conf
     67env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
  • main/waeup.fceokene/trunk/etc/site.zcml.in

    r8461 r9224  
    55  <include package="waeup.fceokene" />
    66  <include package="waeup.fceokene" file="mail.zcml" />
     7  <!-- install job container
     8
     9       install a job container for asynchronous jobs. Pick one of the
     10       two possibilites: 'single' for installation in the one big ZODB
     11       or 'multidb' for setup with a dedicated ZODB for job handling.
     12  -->
     13  <!-- include package="waeup.kofa" file="async_single.zcml" / -->
     14  <include package="waeup.kofa" file="async_multidb.zcml" />
     15
     16  <!-- install dispatcher and other needed async components
     17
     18       install other needed components for asynchronous jobs. Pick one
     19       of the two possibilities: 'basic_dispatcher' for single ZODB
     20       setup, 'multidb_dispatcher' for setup with a dedicated ZODB for
     21       job handling. Make sure the setting matches the setting picked
     22       above. -->
     23  <!-- include package="zc.async" file="basic_dispatcher_policy.zcml" / -->
     24  <include package="zc.async" file="multidb_dispatcher_policy.zcml" />
    725
    826  <!-- Where should the datacenter reside by default? -->
     
    1129
    1230    <configure i18n_domain="waeup.fceokene">
     31
    1332
    1433      <unauthenticatedPrincipal id="zope.anybody"
  • main/waeup.fceokene/trunk/etc/zeo1.ini.in

    r8772 r9224  
    6161# set the name of the zope.conf file
    6262zope_conf = %(here)s/zope_zeo1.conf
     63env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
  • main/waeup.fceokene/trunk/etc/zeo2.ini.in

    r8772 r9224  
    6161# set the name of the zope.conf file
    6262zope_conf = %(here)s/zope_zeo2.conf
     63env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt
  • main/waeup.fceokene/trunk/etc/zope.conf.in

    r5495 r9224  
    2828</zodb>
    2929
     30<zodb async>
     31  <filestorage>
     32    # create true
     33    path ${zope_conf:filestorage}/Data.async.fs
     34  </filestorage>
     35</zodb>
     36
    3037<eventlog>
    3138  # This sets up logging to a file.
  • main/waeup.fceokene/trunk/etc/zope_zeo1.conf.in

    r8460 r9224  
    6161</zodb>
    6262
     63<zodb async>
     64  <zeoclient>
     65    server localhost:7030
     66    storage async
     67    name async
     68    # ZEO client cache, in bytes
     69    cache-size 20MB
     70    # Uncomment to have a persistent disk cache
     71    client ${zope_conf_zeo_1:filestorage}/zeo1_async
     72  </zeoclient>
     73</zodb>
     74
    6375<eventlog>
    6476  # This sets up logging to a file.
  • main/waeup.fceokene/trunk/etc/zope_zeo2.conf.in

    r8460 r9224  
    6161</zodb>
    6262
     63<zodb async>
     64  <zeoclient>
     65    server localhost:7030
     66    storage async
     67    name async
     68    # ZEO client cache, in bytes
     69    cache-size 20MB
     70    # Uncomment to have a persistent disk cache
     71    client ${zope_conf_zeo_2:filestorage}/zeo2_async
     72  </zeoclient>
     73</zodb>
     74
    6375<eventlog>
    6476  # This sets up logging to a file.
  • main/waeup.fceokene/trunk/setup.py

    r8827 r9224  
    9595      kofactl = grokcore.startup:zdaemon_controller
    9696      [paste.app_factory]
    97       main = grokcore.startup:application_factory
    98       debug = grokcore.startup:debug_application_factory
     97      main = waeup.kofa.startup:env_app_factory
     98      debug = waeup.kofa.startup:env_debug_app_factory
    9999      """,
    100100      )
Note: See TracChangeset for help on using the changeset viewer.