Changeset 3927
- Timestamp:
- 01/14/08 14:54:16 (11 months ago)
- Files:
-
- website/newdocs/base.html (modified) (1 diff)
- website/newdocs/download/tgsetup-betaversion.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
website/newdocs/base.html
r3907 r3927 125 125 126 126 <div id="download-beta"> 127 <h2>TurboGears <strong>1.0.4b 4</strong></h2>128 129 <strong>Jan 1 3, 2008</strong>127 <h2>TurboGears <strong>1.0.4b5</strong></h2> 128 129 <strong>Jan 14, 2008</strong> 130 130 131 131 <p><strong>New:</strong> 132 Fixed the visit cookie not being replaced during its lifetime, VisitFilter bug that caused crashes with arguements like lists, files and dictionnaries, Paginate fixes (division by zero), missing loggers in the default templates. 132 This release use CherryPy 2.3.0 to avoid an important security bug. If you are using file based 133 sessions (this is not the default settings for TurboGears) please upgrade immediately. 133 134 (See full <a href="http://trac.turbogears.org/wiki/ChangeLog">change 134 135 log</a>) website/newdocs/download/tgsetup-betaversion.py
r3907 r3927 4 4 from distutils import log 5 5 6 TGVERSION = "1.0.4b 4"6 TGVERSION = "1.0.4b5" 7 7 TGDOWNLOAD = "http://www.turbogears.org/download/" 8 8 … … 23 23 """ 24 24 import sys 25 DEFAULT_VERSION = "0.6c 6"25 DEFAULT_VERSION = "0.6c7" 26 26 DEFAULT_URL = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3] 27 27 … … 51 51 'setuptools-0.6c6-py2.4.egg': '3c56af57be3225019260a644430065ab', 52 52 'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53', 53 'setuptools-0.6c7-py2.3.egg': '209fdf9adc3a615e5115b725658e13e2', 54 'setuptools-0.6c7-py2.4.egg': '5a8f954807d46a0fb67cf1f26c55a82e', 55 'setuptools-0.6c7-py2.5.egg': '45d2ad28f9750e7434111fde831e8372', 53 56 } 54 57