1.0/CRUDTemplate - TurboGears Documentation | http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=wzJ&q=turbogears2+catwalk&btnG=Search | turbogears2 catwalk - Google Search | http://docs.turbogears.org/1.0/Catwalk | 1.0/Catwalk - TurboGears Documentation | http://turbogears.org/ | TurboGears: Front-to-Back Web Development | http://www.turbogears.org/2.0/docs/ | TurboGears Documentation: â TG2 v2.0b6 documentation | http://www.turbogears.org/2.0/docs/toc.html#validation-form-handling-and-form-widgets | Getting Started with TurboGears â TG2 v2.0b6 documentation | http://docs.turbogears.org/1.0/Toolbox | 1.0/Toolbox - TurboGears Documentation | http://www.turbogears.org/2.0/docs/index.html | TurboGears Documentation: â TG2 v2.0b6 documentation | http://www.turbogears.org/2.0/docs/main/DownloadInstall.html#installing-the-development-version-of-turbogears-2-from-source | How to install TurboGears 2 â TG2 v2.0b6 documentation | http://www.google.com/search?q=turbogears+2+tg-admin+toolbox&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a | turbogears 2 tg-admin toolbox - Google Search | http://turbogears.org/2.0/docs/main/WhatsNew.html | WhatâÂÂs new in TurboGears 2 â TG2 v2.0b6 documentation | http://turbogears.org/cogbin/ | TurboGears CogBin | http://www.turbogears.org/2.0/docs/main/QuickStart.html | Quickstarting a TurboGears 2 project â TG2 v2.0b6 documentation | http://www.turbogears.org/2.0/docs/main/Wiki20/wiki20.html | The TurboGears 2 Wiki Tutorial â TG2 v2.0b6 documentation | http://docs.turbogears.org/1.0 | 1.0 - TurboGears Documentation | http://www.turbogears.org/2.0/docs/toc.html#session-tracking | Getting Started with TurboGears â TG2 v2.0b6 documentation | http://www.turbogears.org/2.0/docs/toc.html#development-tools | Getting Started with TurboGears â TG2 v2.0b6 documentation | http://www.turbogears.org/2.0/docs/main/Profile.html#installing-repoze-profile | Profiling your app â TG2 v2.0b6 documentation
spent a while today looking into tosca widgets, dbmechanics and db sprockets doesn't quite seem to be in the same place that form alchemy is
hg clone http://toscawidgets.org/hg/tw.forms/
#2009.02.20 13:29:59 admin@one:/c/downloads/python hg clone http://toscawidgets.org/hg/ToscaWidgets/
downloading and trying out: sudo easy_install -zmaxd . ToscaWidgets sudo easy_install -zmaxd . tw.forms
was reading about pyjamas web UI framework for python based on WebKit still reading up on that
paster setup-app development.ini
- The MetaData object Pylons uses is defined in model/meta.py so is accessed here as meta.metadata whereas in the previous chapter it was defined in the same file so the examples just used metadata.
- Pylons generated the init_model() function when the project was created. It gets called after the engine has been created each time your application starts from config/environment.py to connect the model to the database.
Caution!
Pylons generates a project to use SQLAlchemy 0.4 but many users will want to use the newer SQLAlchemy 0.5 described in Chapter 7. They are very similar but the transactional=True argument to orm.sessionmaker() in init_model() is deprecated. Instead you should specify autocommit=False. This has exaclty the same behaviour but will not generate a deprecation warning.
change: model/meta.py # SQLAlchemy session manager. Updated by model.init_model() Session = scoped_session(sessionmaker(autoflush=True, autocommit=False))
#then offline in /c/downloads/python sudo easy_install -f . SQLAlchemy
cd /c/downloads/python/pylons-eggs sudo easy_install -zmaxd . easy_install -zmaxd . "SQLAlchemy >= 0.5, <=0.5.99"
These are guidelines to use when getting a project ready to release for general distribution and use:
install pylons: sudo easy_install pylons
or from local paths: code/python/pylons/install.txt cd $USBPATH/downloads/python/simplejson-2.0.9 sudo python setup.py install
#install pylons environment from eggs here. cd $USBPATH/downloads/python/pylons-eggs-2.6 sudo easy_install -f . Pylons #sudo easy_install -f . wsgiref
cd $USBPATH/downloads/python/formalchemy-eggs-2.6 sudo easy_install -f . formalchemy
install pose: #install pose cd $LOCALPATH/code/python/pose sudo python setup.py develop #could start a local pose instance, then firefox, but this is system specific
nosetests | http://somethingaboutorange.com/mrl/projects/nose/ | sudo easy_install nose
change settings in Terminal change Basic profile itself, (rather than changing what settings are used when starting a new window... those are not applied to new tabs.)
if not using iDisk, remove it from DEVICES list in Finder (drag it off of list)
move any downloaded files to your new Context cd mkdir -p /c/downloads/macosx ls Desktop mv ~/Desktop/* /c/downloads/macosx/
and backup to USB for future use: rsync -av /c/downloads $USBPATH/downloads/