Hi, I think there was a typo in the index url. It points to 1.9.7b2 . It installs perfectly on Ubuntu Hardy and Windows XP SP3 with Python-2.5 using the following commands:
$ virtualenv --no-site-packages tg2.0b1 $ source tg2.0b1/bin/activate $ easy_install -i http://www.turbogears.org/2.0/downloads/2.0b1/index/ tg.devtools and C:\> virtualenv --no-site-packages tg2.0b1 C:\> tg2.0b1\Scripts\activate.bat C:\> easy_install -i http://www.turbogears.org/2.0/downloads/2.0b1/index/ tg.devtools There are two minor issues though 1. The link for Home page on the about page doesn't work due to missing $ (typo) 2. Unsuccessfull login doesn't show any error message This should fix the first issue --- devtools/templates/turbogears/+package+/templates/sidebars.html (revision 5984) +++ devtools/templates/turbogears/+package+/templates/sidebars.html (working copy) @@ -8,7 +8,7 @@ <ul class="links"> <li py:choose=""> <span py:when="page=='index'"><a href="${tg.url('/about')}">About this page</a> A quick guide to this TG2 site </span> - <span py:otherwise=""><a href="{tg.url('/')}">Home</a> Back to your Quickstart Home page </span> + <span py:otherwise=""><a href="${tg.url('/')}">Home</a> Back to your Quickstart Home page </span> </li> <li><a href="http://www.turbogears.org/2.0/docs/">TG2 Documents</a> - Read everything in the Getting Started section</li> <li><a href="http://docs.turbogears.org/1.0">TG1 docs</a> (still useful, although a lot has changed for TG2) </li> Regards Sanjiv On Fri, Dec 26, 2008 at 12:27 AM, Mark Ramm <[email protected]> wrote: > We are rappidly approaching the first 2.0 beta release. > Thanks to the hard work of Florent, Chris, Jon, Christopher, Lee, Gustavo, > and many others we have been able to jump directly from 1.9.7 to 2.0. > New in this release: > * Catwalk is now revived and integrated into the quickstart project for > admin > * Quickstart now has login/logout links by default > * Quickstart has been completly overhauled for a fresh new look. > * tg.url and tg.redirect now know about whatever routes you have defined. > So, in an attempt to get all this out in front of a few more people and > hopefully get a release out this weekend, I've just created a new index at: > http://www.turbogears.org/2.0/downloads/2.0b1/index/ > > So, if you create a new virtualenv with the --no-site-packages option > you should be able to get a fully functional TG2 install with all the > latest goodness by activating your virtualenv and doing: > > easy_install http://www.turbogears.org/2.0/downloads/1.9.7b2/index/ > tg.devtools > > If there are any last min troubles, let me know and I'll update the packages > in the index. And if you're interested in the details of what's changed > in this release, take a look at the changelog: > http://trac.turbogears.org/wiki/2.0/changelog > > > -- > Mark Ramm-Christensen > email: mark at compoundthinking dot com > blog: www.compoundthinking.com/blog > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/turbogears-trunk?hl=en -~----------~----~----~----~------~----~------~--~---
