# HG changeset patch # User Jeff Hammel # Date 1293142188 28800 # Node ID 1f5233951a437ea383a545d6104c9a463e06b9cb # Parent 9ec0eca2a10e222c84cf1accbfc088d5517d825d move some documentation around diff -r 9ec0eca2a10e -r 1f5233951a43 README.txt --- a/README.txt Mon Dec 20 09:32:35 2010 -0800 +++ b/README.txt Thu Dec 23 14:09:48 2010 -0800 @@ -5,4 +5,25 @@ -- -http://k0s.org/ \ No newline at end of file +http://k0s.org/#!/usr/bin/env paster + +[DEFAULT] +debug = true +email_to = jhammel@mozilla.com +smtp_server = localhost +error_email_from = paste@localhost + +[server:main] +use = egg:Paste#http +host = 0.0.0.0 +port = 17676 + +[composite:main] +use = egg:Paste#urlmap +/ = flowerbed + +set debug = false + +[app:flowerbed] +paste.app_factory = flowerbed.factory:factory +flowerbed.name = world \ No newline at end of file diff -r 9ec0eca2a10e -r 1f5233951a43 flowerbed.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flowerbed.txt Thu Dec 23 14:09:48 2010 -0800 @@ -0,0 +1,13 @@ +Flowerbed is a web application that allows one to grow a flower from a +preselected group of WSGI apps. Flowerbed presents a nested ordered +list of web applications. You drag one of the preselected webapps to a +place on the list. This will add the webapp to configuration and the +website and give a default path descriminator (e.g. /blog for +bitsyblog). You should be able to download the configuration in either +JSON or ini format. In addition, you can download a complete flower +python package created from a template that will allow the whole site +to be installed and managed locally. + +See also: + +http://k0s.org/blog/20091227221009 diff -r 9ec0eca2a10e -r 1f5233951a43 setup.py --- a/setup.py Mon Dec 20 09:32:35 2010 -0800 +++ b/setup.py Thu Dec 23 14:09:48 2010 -0800 @@ -21,15 +21,12 @@ zip_safe=False, install_requires=[ # -*- Extra requirements: -*- - 'WebOb', - 'Paste', - 'PasteScript', + 'WebOb', 'genshi', + 'wsgiblob' ], entry_points=""" # -*- Entry points: -*- - [paste.app_factory] - flowerbed = flowerbed.factory:factory """, )