Discovered some wonders of grids, charts, etc. using dojo and dojox.grid. Looks to be cool.
On my Windows system, installed easy_install (you run one python program),
added python25/scripts onto my Windows path (control panel, system, advanced, environment variables),
installed pylons (paste one line into DOS command box).
Installed helloworld example: paster create -t pylons helloworld
Started pylons server: paster serve –reload development.ini
and accessed a web page at http://localhost:5000/!
Continuing with the instructions in: http://wiki.pylonshq.com/display/pylonsdocs/Getting+Started
We start an application: paster controller hello
However, this gives an error: Command controller not known. Maybe I’m in the wrong subdirectory?
Ok, look at the web page from localhost:5000 above (index.html), which says to first
remove index.html, edit the routes in helloworld/config/routing.py to “point the root path to a hello controller we’ll create”
map.connect(”, controller=’hello’, action=’index’)
and THEN do paster controller hello
This time, no error. It created hello.py.
http://localhost:5000/hello now gives the output from this hello.py controller.
Tags: helloworld, paster