libmsoffice-word-html-writer-perl 1.03-2 source package in Ubuntu

Changelog

libmsoffice-word-html-writer-perl (1.03-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * debian/control: update {versioned,alternative} (build) dependencies.
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 3.9.6.
  * Mark package as autopkgtest-able.

 -- gregor herrmann <email address hidden>  Sat, 30 May 2015 22:01:34 +0200

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
Bionic release universe perl
Xenial release universe perl

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmsoffice-word-html-writer-perl_1.03-2.dsc 2.4 KiB 519c97a1f6c54e75371257a6adf7cc3eddb8240e8b80fa95cbfd994b9be42de9
libmsoffice-word-html-writer-perl_1.03.orig.tar.gz 15.8 KiB 6801d0e392015a069efed5c5235d52f9d59b07b5e1bb223ee6fa2973f7646cc4
libmsoffice-word-html-writer-perl_1.03-2.debian.tar.xz 2.4 KiB 830ec1c3fd4602738a14bf22212dfbc2d55ba47d853943fb4b7b524493c4e8fd

Available diffs

No changes file available.

Binary packages built by this source

libmsoffice-word-html-writer-perl: module for writing MsWord documents in HTML format

 MsOffice::Word::HTML-Writer is one way to programmatically generate documents
 targeted for Microsoft Word (MsWord).
 .
 MsWord can read documents encoded in native binary format, in Rich Text
 Format (RTF), in WordML (an XML dialect), or -- maybe this is less known --
 in HTML, with some special markup for pagination and other MsWord-specific
 features. Such HTML documents are often in several parts, because attachments
 like images or headers/footers need to be in separate files; however, since
 it is more convenient to carry all data in a single file, MsWord also
 supports the "MHTML" format (or "MHT" for short), i.e. an encapsulation of a
 whole HTML tree into a single file encoded in MIME multipart format. This
 format can be generated interactively from MsWord by calling the "SaveAs"
 menu and choosing the .mht extension.
 .
 MsOffice::Word::HTML::Writer helps you to programmatically generate MsWord
 documents in MHT format. The advantage of this technique is that one can rely
 on standard HTML mechanisms for layout control, such as styles, tables, divs,
 etc -- of course this markup can be produced using your favorite HTML module.
 The added value of MsOffice::Word::HTML::Writer is to help building the MIME
 multipart file, and provide some abstractions for representing
 MsWord-specific features (headers, footers, fields, etc.). This is probably
 the most convenient way for programmatic document generation.