From a8b97f62bea5da23b636fd5500cdd2064371be44 Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Thu, 16 Dec 2010 19:45:26 +0100 Subject: [PATCH] 5.9.031 --- CHANGELOG.TXT | 3 ++ README.TXT | 2 +- pdf417.php | 17 +++++----- qrcode.php | 86 +++++++++++++++++++++++++-------------------------- tcpdf.php | 8 ++--- 5 files changed, 58 insertions(+), 58 deletions(-) diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index 6565e0f..a4b2963 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +5.9.031 (2010-12-16) + - Source code documentation errors were fixed. + 5.9.030 (2010-12-16) - Several source code documentation errors were fixed. - Source code style was changed for Doxygen. diff --git a/README.TXT b/README.TXT index fef1bf6..fb2f14c 100755 --- a/README.TXT +++ b/README.TXT @@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 5.9.030 +Version: 5.9.031 Release date: 2010-12-16 Author: Nicola Asuni diff --git a/pdf417.php b/pdf417.php index 0dd077a..59df925 100644 --- a/pdf417.php +++ b/pdf417.php @@ -86,32 +86,31 @@ if (!defined('PDF417DEFS')) { * PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991. * @name PDF417 * @package com.tecnick.tcpdf - * @brief Class to create PDF417 barcode arrays for TCPDF class. * @author Nicola Asuni * @version 1.0.003 */ class PDF417 { /** - * @var barcode array to be returned which is readable by TCPDF + * Barcode array to be returned which is readable by TCPDF. * @protected */ protected $barcode_array = array(); /** - * @var start pattern + * Start pattern. * @protected */ protected $start_pattern = '11111111010101000'; /** - * @var start pattern + * Stop pattern. * @protected */ protected $stop_pattern = '111111101000101001'; /** - * @var Text Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers) + * Array of text Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers). * @protected */ protected $textsubmodes = array( @@ -122,7 +121,7 @@ class PDF417 { ); /** - * @var Switching codes for Text Compaction Sub-Modes + * Array of switching codes for Text Compaction Sub-Modes. * @protected */ protected $textlatch = array( @@ -133,7 +132,7 @@ class PDF417 { ); /** - * @var clusters of codewords (0, 3, 6)
+ * Clusters of codewords (0, 3, 6)
* Values are hex equivalents of binary representation of bars (1 = bar, 0 = space).
* The codewords numbered from 900 to 928 have special meaning, some enable to switch between modes in order to optimise the code: