File: Deprecated

package info (click to toggle)
libpdf-table-perl 1%3A1.002-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 448 kB
  • sloc: perl: 3,006; makefile: 11
file content (93 lines) | stat: -rw-r--r-- 4,313 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
A list of DEPRECATED names and interfaces in PDF::Table. In most cases, these
are names that have been changed for simplification and consistency. The old
names will not be kept around forever, and will be removed AT LEAST two
(2) years after notice is given here. Where possible, when using the old names,
a warning notice will be given in a release at least six (6) months before the
old name is removed from the code.

It would behoove you to make a quick check of "INFO/Deprecated" at each release,
so that you don't end up getting caught flat-footed by the removal of a name, 
and have to scurry to update your code! Anything added to the deprecated list
should also show up in "Changes", giving you a "heads up".

The POD, examples, and t-tests have been updated to use the new forms. There
should not be any use of deprecated setting names anywhere.

In order of scheduled removal date:

font_color        entry in global args, *_prop properties
   This has been renamed to 'fg_color', as it is the text (foreground) color.
   'font_color' is scheduled to be removed after November 2022.

font_color_odd    entry in global args, *_prop properties
   This has been renamed to 'fg_color_odd', as it is the text (foreground) 
   color (for odd-numbered rows). 
   'font_color_odd' is scheduled to be removed after November 2022.

font_color_even   entry in global args, *_prop properties
   This has been renamed to 'fg_color_even', as it is the text (foreground) 
   color (for even-numbered rows). 
   'font_color_even' is scheduled to be removed after November 2022.

background_color   entry in global args, *_prop properties
   This has been renamed to 'bg_color', as it is the cell (background) color 
   (for all rows). Note that 'bg_color' was already permitted in header_props.
   'background_color' is scheduled to be removed after November 2022.

background_color_odd   entry in global args, *_prop properties
   This has been renamed to 'bg_color_odd', as it is the cell (background) 
   color (for odd-numbered rows). 
   'background_color_odd' is scheduled to be removed after November 2022.

background_color_even   entry in global args, *_prop properties
   This has been renamed to 'bg_color_even', as it is the cell (background) 
   color (for even-numbered rows). 
   'background_color_even' is scheduled to be removed after November 2022.

font_underline  entry in global args, *_prop properties
   This has been renamed to just 'underline', as it really isn't related to
   the font in use. 
   'font_underline' is scheduled to be removed after November 2022.

start_y  entry in global args, *_prop properties
   This has been renamed to just 'y'.  
   'start_y' is scheduled to be removed after November 2022.

start_h  entry in global args, *_prop properties
   This has been renamed to just 'h'.  
   'start_h' is scheduled to be removed after November 2022.

lead   entry in global args, *_prop properties
   This has been renamed to 'leading' (the printer's term), pronounced
   'ledding'. 
   'lead' is scheduled to be removed after November 2022.

row_height   entry in global args, *_prop properties
   This has been renamed to 'min_rh'.
   'row_height' is scheduled to be removed after November 2022.

border   entry in global args
   This has been renamed to 'border_w'.
   'border' is scheduled to be removed after November 2022.

horizontal_borders   entry in global args
   This has been renamed to 'h_border_w'.
   'horizontal_borders' is scheduled to be removed after November 2022.

vertical_borders   entry in global args
   This has been renamed to 'v_border_w'.
   'vertical_borders' is scheduled to be removed after November 2022.

border_color   entry in global args
   This has been renamed to 'border_c'.
   'border_color' is scheduled to be removed after November 2022.

leading '-' on setting names (hash key, e.g., '-next_h') will no longer be 
  allowed after November 2022. Please update your programs to no longer use 
  setting names with a leading dash or hyphen.

*** If I have missed any deprecated interfaces, please let me know! ***

======= Deprecated items that have already been removed =====================
(first entry expected December, 2022 or later)