150
I Use This!
High Activity

News

Analyzed 1 day ago. based on code collected 3 days ago.
Posted over 15 years ago by Ajaxian Front Page
Posted over 15 years ago by Plone News
World Plone Day will showcase Plone to the world through more than 40 events being held around the globe on April 28th.
Posted over 15 years ago by BlueDynamics Alliance - Zope Related
---
Posted over 15 years ago by Palladion Software Blog
We will be presenting a full-day tutorial on WSGI at the Plone Symposium East at Penn State on May 26th. You can register via PayPal at the bottom of the page: hope to see you there!
Posted over 15 years ago by Weekly Zope Development Meeting
Posted over 15 years ago by BlueDynamics Alliance - Zope Related
[buildout] parts = gunicorn gunicornctl extensions = mr.developer sources = sources always-checkout = force auto-checkout = * [sources] [var] recipe = plone.recipe.command dir = ${buildout:directory}/var command = mkdir ${:dir} [gunicorn] recipe = ... [More] zc.recipe.egg:scripts dependent-scripts = true eggs = myapp eventlet gunicorn [gunicornctl] recipe = collective.recipe.template mode = 755 input = ${buildout:directory}/gunicornctl.in output = ${buildout:directory}/bin/gunicornctl pidfile = ${var:dir}/instance.pid logfile = ${var:dir}/instance.log pasteini = ${buildout:directory}/paste.ini workers = 2 #!/bin/sh # Specify path variable PATH=/sbin:/usr/sbin:/bin:/usr/bin # Kill me on all errors set -e case "$1" in start) ${buildout:directory}/bin/gunicorn_paster -D \ -w ${:workers} \ -p ${:pidfile} \ --log-file=${:logfile} \ ${:pasteini} ;; stop) kill `cat ${:pidfile}` ;; *) echo "Usage: $0 {start|stop}" exit 1 ;; esac [Less]
Posted over 15 years ago by Andy McKay
Posted over 15 years ago by Weekly Zope Development Meeting
Posted over 15 years ago by Reinout van Rees' weblog
---
Posted over 15 years ago by my-zope
Brief note. Here's how I got grok running with python 2.6 As many would have known, earlier grok version runs on python 2.4 and 2.5 only. Maartijn noted that grok 1.1 should run on python2.6 :: virtualenv --no-sitepackages grok1.1rc1 source grok1.1rcweofije...