File: Changes

package info (click to toggle)
libpdf-table-perl 0.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 180 kB
  • sloc: perl: 654; makefile: 2
file content (137 lines) | stat: -rw-r--r-- 4,768 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
Revision history for Perl extension PDF::Table.

Version 0.9.5 - 18.Oct.2011
----------------------------
MANIFEST was missing sample pdf file.

Accidently left alternative code for infinite loop fix commented out.
Fixed.  Added a test for that.


Version 0.9.4 - 17.Oct.2011
----------------------------
Don't bump row count when row spans a page.  Closes #67401.

Fixed bug: don't call text_block if record width is exactly cell width.

Fixed bug in text_block: bottom is (top - height), not (baseline - height).

Example script typo fixed.  Closes #55133.

Don't set up strokes when border is 0.  Apparently breaks Acrobat.
Closes #40705 and #55137.

Changed print warnings to carp.  Closes #38007.

Added center justification for columns and cells.  Tests, too.
Closes #37924.

Fixed infinite loop caused by uninitialized $2.  Thanks to Petri Kaurinkoski.
Closes #34017.

Fixed perl warning if $col_prop->{min_w} is undef.  Thanks to
Matthias Pitzl (NEPOS).  Closes #30720.

Fixed default header background color bug, closes #28542.

Added mock PDF::API2 packages to test script and added tests.

Improve column width calculations so wider content gets wider columns.
Added column width test.  Thanks to Barrie Slaymaker (RBS).  Closes #26158.


Version 0.9.3 - 27.12.2006
----------------------------
Added backward compatibility and now again params with '-' front are supported.
  Both params with '-'and without are valid and can be even mixed together.
  I excuse for changing the interface before.

Added cell_props parameter wich can define properties for a single cell as specified by user.
Thanks for cell_props patch to Bodo Bauer.

Removed Version requirement of Perl 5.8.7 and only version ot 5.6.0 is required.
Thanks to Jonas Pasche for reporting it.

Updated examples/sample1.pl file to try the capabilities of the module immidiately after download.

Documentation Update.

Fixed bug with interpreting \n as special char but not as newline.
Thanks to Jonas Pasche for reporting it.
	(reminder: text with \n must be enclosed in double quotes i.e. "text\nnewline" )

Fixed documentation inacuracy for text_block(). It is called as $pdftable->text_block() of course.
Thanks to Jonas Pasche for reporting it.

Fixed bug with first_line overlaping with former paragraph last line.
Thanks to Jonas Pasche for reporting it and contributing a patch.


Version 0.9.2 - 02.Oct.2006
----------------------------
Fixed bug with 'col_props->bg_color' overiding 'header_props->bg_color'
Thanks to Giulio Di Giuliomaria

Fixed some documentation inacuracys.
Added some new documentation.

'column_props->width' parameter changed to 'min_w'

Added example script to instantly test the module when downloaded.
See 'examples' into the tar.gz archive.

Version 0.9.1 - 18.Sep.2006
----------------------------
Removed Debug Message "Created New Page"

Fixed bug with not working header row bg_color parameter

Thanks to Bodo Bauer for submiting the patch.


Version 0.9 - 14.Sep.2006
----------------------------
Fixed 'fontsize' bug at line 234 to font_size and parameter is working correctly

Changed all parameters not to start with '-'
So now '-start_h' becomes only 'start_h'

Changed default font encoding form latin1 to UTF8

Added Default Values for next_h next_y parameters

Added Minimum value check for x y start_h start_y

Optimization for min row height calculations

Added 'new_page_func parameter'. This is should be a reference to function which is called every time when a new page needs to be created so the table can span.See online manual for more info how to use it.

Added Check if any text in sub text_block before spliting the parameter.

Fixed bug with infinite loop when spanning to a new page.

Splitting long words to parts because of breaking table cels

Parameter in text_block() 'parspace'  space before block start (paragraph).
So the first line will start and height $ybase $parspace. So is every next paragraph into the block.

Undocumented Parameter in text_block() 'indent'    indent of every line
Undocumented Parameter in text_block() 'flindent'  indent of first line
Undocumented Parameter in text_block() 'fpindent'  indent of first paragraph

The Above parameters are excluding each other in the following order: parspace,flindent,fpindent,indent 
The one that is found first and has valid value is beeing used

Added Header Row support with repeat on every new page and different layout than the other rows

Parameter 'w' for table is not optional any more (could change)

Changed table width calculation and now module tries to use as much space as it is given but not more than it.

Default values for many options

Better source formatting

Fixed incorect y position returned from text_block()

Others that i dont remeber.