nevow 0.14.2-1ubuntu2 source package in Ubuntu

Changelog

nevow (0.14.2-1ubuntu2) bionic; urgency=medium

  * use pybuild --print build_dir instead of hadrcoding pybuild's internal
    paths, fixes FTBFS.

nevow (0.14.2-1ubuntu1) bionic; urgency=medium

  * Convert trigger to noawait (LP: #1780996)

 -- Brian Murray <email address hidden>  Tue, 17 Jul 2018 09:15:21 -0700

Upload details

Uploaded by:
Brian Murray
Uploaded to:
Bionic
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic updates universe devel

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
nevow_0.14.2.orig.tar.gz 515.9 KiB 7ef8e6147a65a17ef85ef1c017b20126cfb58bdb2ddb730e73fb15a93d205073
nevow_0.14.2-1ubuntu2.debian.tar.xz 21.5 KiB 7aeff95ef81086e33a14b1eaaf77c7eddaa780874f8f6d3f0c9299d42402d1ce
nevow_0.14.2-1ubuntu2.dsc 1.6 KiB 7a287acbf03f7eded2476cbcc905e219c8c20edc307a522603088f5f00b2f96e

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