libcgi-ajax-perl 0.707-3 source package in Ubuntu

Changelog

libcgi-ajax-perl (0.707-3) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/copyright: replace tabs with spaces / remove trailing
    whitespace.
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Refer to specific version of license GPL-1+.

 -- Jelmer Vernooij <email address hidden>  Thu, 09 Jun 2022 22:55:43 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-ajax-perl_0.707-3.dsc 2.1 KiB 295341e097e2c8a54c0483f7d07d1f4cfda4d91795c8700df851a683061be46c
libcgi-ajax-perl_0.707.orig.tar.gz 36.8 KiB fb18801bf6473231199bb9e81f56ce945c4b93c68b05ed17049a8885b9e211f7
libcgi-ajax-perl_0.707-3.debian.tar.xz 3.3 KiB c7ec4c8e3a36f4debb13d5f630633bb22358af43b530a8804c1a20e98a725522

Available diffs

No changes file available.

Binary packages built by this source

libcgi-ajax-perl: Perl-specific system for writing Asynchronous web applications

 CGI::Ajax is an object-oriented module that provides a unique mechanism
 for using Perl code asynchronously from JavaScript-enhanced HTML pages.
 CGI::Ajax unburdens the user from having to write extensive JavaScript,
 except for associating an exported method with a document-defined event
 (such as onClick, onKeyUp, etc.). CGI::Ajax also mixes well with HTML
 containing more complex JavaScript.
 .
 CGI::Ajax supports methods that return single results or multiple
 results to the web page, and supports returning values to multiple
 DIV elements on the HTML page.
 .
 Using CGI::Ajax, the URL for the HTTP GET/POST request is automatically
 generated based on HTML layout and events, and the page is then
 dynamically updated with the output from the perl function. Additionally,
 CGI::Ajax supports mapping URL's to a CGI::Ajax function name, so you
 can separate your code processing over multiple scripts.
 .
 A primary goal of CGI::Ajax is to keep the module streamlined and
 maximally flexible. We are trying to keep the generated javascript code
 to a minimum, but still provide users with a variety of methods for
 deploying CGI::Ajax. And VERY little user JavaScript.