nevow 0.10.0-5 source package in Ubuntu

Changelog

nevow (0.10.0-5) unstable; urgency=low


  [ Jakub Wilk ]
  * Use canonical URIs for Vcs-* fields.
  * Drop obsolete Breaks/Replaces with python2.3-nevow and python2.4-nevow.

  [ Vincent Bernat ]
  * Add patches from trunk to make Nevow work with more recent versions of
    Twisted. Closes: #713079.
  * Bump Standards-Version to 3.9.5.

 -- Vincent Bernat <email address hidden>  Sat, 02 Nov 2013 01:21:01 +0100

Upload details

Uploaded by:
Vincent Bernat
Uploaded to:
Sid
Original maintainer:
Vincent Bernat
Architectures:
all
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe devel

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
nevow_0.10.0-5.dsc 2.1 KiB 4ecea195a67305d30bcbf77e712ef3038d4a3757c467c4ebfff6e3bb5fabb7ba
nevow_0.10.0.orig.tar.gz 506.5 KiB 90631f68f626c8934984908d3df15e7c198939d36be7ead1305479dfc67ff6d0
nevow_0.10.0-5.debian.tar.gz 45.3 KiB 60949e7fed6684db453d50794cc0ecbe2ae9480800cc80bd4b0989bd7e883275

No changes file available.

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