nevow 0.10.0-4ubuntu1 source package in Ubuntu

Changelog

nevow (0.10.0-4ubuntu1) quantal; urgency=low

  * Disable the test_errorhandler/test_keyErroringNotFoundHandler test.
    flushErrors, ignoreErrors, and clearIgnores in twisted.python.log
   (deprecated since Twisted 2.5) are removed in 12.2.
 -- Matthias Klose <email address hidden>   Wed, 26 Sep 2012 10:25:25 +0200

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Quantal
Original maintainer:
Vincent Bernat
Architectures:
all
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
nevow_0.10.0.orig.tar.gz 506.5 KiB 90631f68f626c8934984908d3df15e7c198939d36be7ead1305479dfc67ff6d0
nevow_0.10.0-4ubuntu1.debian.tar.gz 42.0 KiB 64f1e8a6533359dcd33f9f9ac8b52bfe5274df7be9f1b3733608886a53b3a946
nevow_0.10.0-4ubuntu1.dsc 1.5 KiB 84e069958456e93728095b8d9466271a6d7770d3975a0e3a5135983a780b9c32

Available diffs

View changes file

Binary packages built by this source

python-nevow: Web application templating system for Python and Twisted

 Nevow's main focus is on separating the HTML template from both the
 business logic and the display logic, while allowing the programmer
 to write pure Python code as much as possible. It separates your code
 into 'data' and 'render' functions, a simplified implementation of
 traditional MVC. It has various parts which can be used individually
 or as a whole, integrated web solution:
 .
  - XHTML templates: contain no programming logic, only nodes tagged
    with nevow attributes
  - data/render methods: simplified MVC
  - stan: An s-expression-like syntax for expressing xml in pure Python
  - formless: For describing the types of objects which may be passed
    to methods of your classes, validating and coercing string input from
    either web or command-line sources, and calling your methods
    automatically once validation passes
  - freeform: For rendering web forms based on formless type
    descriptions, accepting form posts and passing them to formless
    validators, and rendering error forms in the event validation fails
  - livepage: Cross-browser JavaScript glue for sending client side
    events to the server and server side events to the client after the
    page has loaded, without causing the entire page to refresh