diff options
-rw-r--r-- | www/quixote/Makefile | 4 | ||||
-rw-r--r-- | www/quixote/distinfo | 2 | ||||
-rw-r--r-- | www/quixote/pkg-descr | 16 |
3 files changed, 11 insertions, 11 deletions
diff --git a/www/quixote/Makefile b/www/quixote/Makefile index 8f87477a9126..0ee5d0181340 100644 --- a/www/quixote/Makefile +++ b/www/quixote/Makefile @@ -6,7 +6,7 @@ # PORTNAME= quixote -PORTVERSION= 0.4 +PORTVERSION= 0.4.1 CATEGORIES= www python MASTER_SITES= http://www.mems-exchange.org/software/files/quixote/ DISTNAME= Quixote-${PORTVERSION} @@ -32,7 +32,7 @@ do-install: post-install: .if !defined(NOPORTDOCS) @ ${MKDIR} ${DOCSDIR} -.for docfile in CHANGES LICENSE README TODO doc/ACKS doc/*.txt +.for docfile in ACKS CHANGES LICENSE README TODO doc/*.txt @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} .endfor .endif diff --git a/www/quixote/distinfo b/www/quixote/distinfo index 9542da4e118c..29016c6cb24f 100644 --- a/www/quixote/distinfo +++ b/www/quixote/distinfo @@ -1 +1 @@ -MD5 (Quixote-0.4.tar.gz) = 1280dc69bd1651b61727c5d73c4cf098 +MD5 (Quixote-0.4.1.tar.gz) = 1ca13eca80db4b8d26a754e19868f859 diff --git a/www/quixote/pkg-descr b/www/quixote/pkg-descr index af7b7c2d2cf2..f0932595e165 100644 --- a/www/quixote/pkg-descr +++ b/www/quixote/pkg-descr @@ -1,15 +1,14 @@ Quixote is yet another framework for developing Web applications in Python. The design goals were: -- To make the templating language as similar to Python in semantics as - possible. The aim is to make as many of the skills and structural - techniques used in writing regular Python code applicable to Web - applications built using Quixote. - To allow easy development of Web applications where the accent is more on complicated programming logic than complicated templating. -- The entire system should be implementable in a week or two. -- No magical behaviour. When it's not obvious what to do in a certain case, - Quixote refuses to guess. +- To make the templating language as similar to Python as possible, in both + syntax and semantics. The aim is to make as many of the skills and + structural techniques used in writing regular Python code applicable to Web + applications built using Quixote. +- No magic. When it's not obvious what to do in a certain case, Quixote + refuses to guess. Quixote works by using a Python package to store all the code and HTML for a Web-based application. There's a simple framework for publishing code and @@ -17,7 +16,8 @@ objects on the Web, and the publishing loop can be customized by subclassing the Publisher class. You can think of it as a toolkit to build your own smaller, simpler version of Zope, specialized for your application. -Author: A.M. Kuchling <akuchlin@mems-exchange.org> +Authors: A.M. Kuchling, Neil Schemenauer, Greg Ward + <{akuchlin,nascheme,gward}@mems-exchange.org> WWW: http://www.mems-exchange.org/software/quixote/ See also: http://www.amk.ca/python/writing/mx-architecture/ |