Changeset 528

Show
Ignore:
Timestamp:
01/29/07 23:26:26 (2 years ago)
Author:
sgillies
Message:

add marshall and libxml2 to the buildout

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pleiades.buildout/trunk/build.py

    r498 r528  
    2222 
    2323from utils import create_directory 
    24 from tasks import python, simplejson, geopy, lxml, pil, i18ndude 
    25 from tasks import zope, plone, five, atvm, agx, lingua 
     24from tasks import python, simplejson, geopy, lxml, pil, libxml2, i18ndude 
     25from tasks import zope, plone, five, atvm, agx, lingua, marshall 
    2626from tasks import geocoder, openlayers, entity 
    2727         
     
    3737Software(geopy.install, context).install() 
    3838Software(pil.install, context).install() 
     39Software(libxml2.install, context).install() 
    3940Software(i18ndude.install, context).install() 
    4041 
     
    4445Software(agx.install, context).install() 
    4546Software(lingua.install, context).install() 
     47Software(marshall.install, context).install() 
    4648 
    4749Software(atvm.install, context).install() 
  • pleiades.buildout/trunk/root.ini

    r498 r528  
    1313lxml = ${buildoutdir}/tasks/lxml.ini [lxml] 
    1414pil = ${buildoutdir}/tasks/pil.ini [pil] 
     15libxml2 = ${buildoutdir}/tasks/libxml2.ini [libxml2] 
    1516 
    1617# Zope / Plone 
     
    2021agx = ${buildoutdir}/tasks/agx.ini [agx] 
    2122lingua = ${buildoutdir}/tasks/lingua.ini [linguaplone-0.9] 
     23marshall = ${buildoutdir}/tasks/marshall.ini [marshall-0.6.1] 
    2224 
    2325atvm = ${buildoutdir}/tasks/atvm.ini [atvm] 
  • pleiades.buildout/trunk/tasks/zope.py

    r443 r528  
    8383                   search_re='<http-server>(?:\n|.)+?address\s8080', 
    8484                   replacement_string='<http-server>\n  address ${./zope_port}'), 
     85        # Configure the Zope WebDav server port 
     86        Substitute(filename='${prefix}/instance/etc/zope.conf', 
     87                   search_re='#  <webdav-source-server>.+</webdav-source-server>', 
     88                   replacement_string='  <webdav-source-server>\n    address 1980\n    force-connection-close off\n  </webdav-source-server>'), 
    8589        ], 
    8690    dependencies=(install_lib,),