Author: ianb
Date: 2004-10-05 12:36:31 -0600 (Tue, 05 Oct 2004)
New Revision: 140
Modified:
HomePage/Home/Index.py
Log:
Added a note about WSGI Webware to the front page, as news.
Modified: HomePage/Home/Index.py
===================================================================
--- HomePage/Home/Index.py 2004-10-03 00:19:08 UTC (rev 139)
+++ HomePage/Home/Index.py 2004-10-05 18:36:31 UTC (rev 140)
@@ -9,7 +9,7 @@
return 'Webware for Python'
def writeContent(self):
- self.writeln('''
+ self.writeln("""
<p><b>Webware for Python</b> is a suite of software components for developing
object-oriented, web-based applications. The suite uses well known design
patterns and includes popular features such as a fast application server,
@@ -19,6 +19,21 @@
<h1>News</h1>
+<h2>2004-10-05 - Webware WSGI application</h2>
+
+<p> An effort is in the works to port Webware to the new
+<a href="http://www.python.org/peps/pep-0333.html">Web Server Gateway
+Interface (WSGI)</a>. The WSGI is an effort by
+<a href="http://www.python.org/sigs/web-sig/">the Python Web-SIG</a>
+to create a standard
+interface for Python web applications, frameworks, and servers, and
+should allow Webware to be run in different environments, and alongside
+other Python web frameworks. Work can be found in a Subversion repository
+at <tt>svn://colorstudy.com/trunk/WSGI</tt> or
+<a href="http://colorstudy.com/cgi-bin/viewcvs.cgi/trunk/WSGI/">viewed
+online</a>.
+
+
<h2>2004-06-19 - Website re-organization in progress</h2>
<p>Thanks to Eric Radman for the new site design, and Jacob Hanson for the logo. We're in the process of moving content over from the <a href="http://webware.sf.net/oldsite">old site</a>, re-organizing, and updating it where necessary. Please bear with us.</p>
@@ -65,4 +80,4 @@
<li> Improvements to profilling.</li>
<li> Numerous bug fixes.</li>
</ul>
- ''')
+ """)
|