Changeset 1050

Show
Ignore:
Timestamp:
07/26/08 11:35:31 (4 months ago)
Author:
gawel
Message:

add fileupload deps

Location:
www.gawel.org/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • www.gawel.org/trunk/buildout.cfg

    r1026 r1050  
    7 7 versions=versions 
    8 8  
    9   develop = . 
      9 develop = 
      10     . 
    10 11  
    11 12 svn-extend-develop= 
    … …  
    19 20     ${v:svn}/gp.feed/trunk#egg=gp.feed 
    20 21     ${v:svn}/sphinxdocs/trunk#egg=sphinxdocs 
      22     ${v:svn}/gp.fileupload/trunk#egg=gp.fileupload 
    21 23  
    22 24  
    … …  
    33 35     gp.feed 
    34 36     gp.sqlcomments 
      37     gp.fileupload 
    35 38     Sphinx 
    36 39     sphinxdocs 
  • www.gawel.org/trunk/deploy.ini

    r1037 r1050  
    4 4 vhost = www.gawel.org 
    5 5 comments = /opt/www/zope/comments.db 
      6 docs_root = %(here)s/sphinxdocs/ 
    6 7 docs_path = %(here)s/sphinxdocs/src 
    7 8  
  • www.gawel.org/trunk/src/wwwgawelorg/startup.py

    r1036 r1050  
    14 14                         comments='/tmp/comments', 
    15 15                         vhost='www.gawel.org', 
      16                         docs_root='', 
    16 17                         docs_path=''): 
    17 18     engine = create_engine('sqlite:///%s' % comments) 
    … …  
    20 21  
    21 22     zopeapp = zope.app.wsgi.getWSGIApplication(zope_conf) 
    22       vhost = '/++skin++blurb/++vh++http:%s:80/++' % vhost 
      23     vhost = '/++vh++http:%s:80/++' % vhost 
    23 24  
    24 25     def zopewrapper(environ, start_response): 
    … …  
    26 27         return zopeapp(environ, start_response) 
    27 28  
    28       docsapp = sphinxdocs.wsgiapp.make_app(global_conf, docs_path) 
      29     docsapp = sphinxdocs.wsgiapp.make_app(global_conf, 
      30                                           root=docs_root, 
      31                                           path=docs_path) 
    29 32  
    30 33     app = URLMap({})