nevow 0.11.1-1 source package in Ubuntu

Changelog

nevow (0.11.1-1) unstable; urgency=medium


  * New upstream release.
    - Drop all existing patches as these are included upstream.
    - Disable nevow.test.test_appserver.Logging.test_oldStyle due to Twisted
      version compatibility issues.
  * Add myself to uploaders.
  * Update watch file.
  * Fix GPL license path in debian/copyright.
  * Switch build system from cdbs to dh/pybuild.
  * Enable automated tests via autopkgtest.
  * Add DEP-12 upstream metadata.

 -- Tristan Seligmann <email address hidden>  Sun, 22 Jun 2014 21:24:55 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
nevow_0.11.1-1.dsc 2.0 KiB 946b33ae06e7f9602f348ba833745c47f24be42adbb81fc24d8a072701f54aa9
nevow_0.11.1.orig.tar.gz 549.9 KiB 89d7f6943cf81ccef8dde4016caa1cba977b9366e7aa0660b54239828b421efc
nevow_0.11.1-1.debian.tar.xz 7.1 KiB 2d25cdfa1ba188e3988eef49f7085115eaa88270b4d212cdb6fb96418cc7f55b

Available diffs

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