/usr/share/perl5/PDF/FDF/Simple.pod is in libpdf-fdf-simple-perl 0.21-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | =pod
=head1 NAME
PDF::FDF::Simple - Read and write (Acrobat) FDF files.
=head1 SYNOPSIS
my $fdf = new PDF::FDF::Simple ({ filename => '/tmp/test.fdf' });
$fdf->skip_undefined_fields (1);
$fdf->content ({
'name' => 'Fred Madison',
'organisation' => 'Luna Lounge Ltd.',
'dotted.field.name' => 'Hello world.',
'language.radio.value' => 'French',
'my.checkbox.value' => 'On', # 'On' / 'Off'
});
$fdf->save or print $fdf->errmsg;
$fdf->save ('otherfile.fdf');
my $fdfcontent = $fdf->load;
$fdfcontent = $fdf->load ($fdfstring);
print $fdf->{'organisation'};
print $fdf->{'dotted.field.name'};
print $fdf->as_string;
print "Corresponding PDF (attribute /F): ".$fdf->attribute_file."\n";
print "IDs (attribute /ID): ";
print $_ foreach @{$fdf->attribute_id}; print "\n";
=head1 DESCRIPTION
Helps creating and extracting the content of FDF files. It is meant to
be a simple replacement for the Adobe FdfToolkit. Therefore some of
it's behavior, especially handling of diverse whitespace/newline
artefacts is orientated on FdfToolkit's handling.
After the extraction process the content is available within a hash
reference.
For creating FDF files it currently only supports setting text
values. Anyway, this should be enough to create FDF files for text
fields, text areas, checkboxes and radio buttons.
PDF::FDF::Simple uses Parse::RecDescent and understands both, the
"Kids" notation and the "dotted" notation for field names. Saving will
always use the "dotted"- notation.
=head2 Text fields / Text areas
Text fields and text areas are simply filled with the given text.
=head2 Radio button groups
In a radio button group the entry that matches exactly the field value
is selected. The entries and their values are defined in the PDF where
the FDF is loaded into.
=head2 Checkboxes
In the PDF document into which the FDF is loaded a checkbox field is
set to checked/unchecked with field values 'On' or 'Off',
respectively.
=head1 API Methods
=head2 new
Constructor. Takes a hash reference for arguments.
=head2 skip_undefined_fields
Option, default is 0. If set to a true value (e.g., 1), then fields
whose value is undefined are not contained in generated fdf. By
default undefined field values are converted to empty string ('').
=head2 filename
Get/set target filename (string).
=head2 content
Get/set content of fields (hashref).
=head2 attribute_file
Get/set the corresponding PDF filename of the form.
This method corresponds to the /F attribute in FDF content.
=head2 attribute_ufile
Get/set the corresponding PDF filename of the form. This method
corresponds to the /UF attribute in FDF content. It is not perfectly
clear whether the /UF means the same as /F. It was used when Acrobat 8
appeared, but it seems to be not documented. I named it just "ufile"
due to lack of better knowledge.
=head2 attribute_id
Get/set the list (array reference) of form IDs.
This method corresponds to the /ID attribute in FDF content.
=head2 load
Load an existing FDF file named via C<filename> and stores the
information in a hashref (see also C<content>).
An optional parameter can be given that contains FDF content. In that
case it is not read from file C<filename>.
=head2 save (optional_filename)
Save the FDF content into a file, using either the directly given
C<optional_filename> parameter or (if C<optional_filename> is not
given) the filename that was set via C<filename>.
=head2 as_string
Returns the FDF content as scalar string, so you can work with it
without the need to save into file.
=head2 errmsg
Get/set error message. Will be set internally when an error
occured. Just read it, setting it is useless.
=head1 Internal Methods
Those methods are used internally and can be overwritten in derived
classes. You shouldn't use them directly.
=head2 _pre_init
Overwritable method for setting default values for initialization
before overtaking constructor params.
=head2 _post_init
Overwritable method for setting default values for initialization
after overtaking constructor params and building Parse::RecDescent
grammar.
=head2 init
Takes over the values from the given constructor hash.
=head2 _fdf_header
Returns a string which will be written before all field data.
=head2 _fdf_footer
Returns a string which will be written after all field data.
=head2 _quote
Does all quoting for field value strings.
=head2 _fdf_field_formatstr
Returns a format string for use in sprintf that creates key/value
pairs.
=head2 _map_parser_output
Puts the Parse::RecDescent output from a nested hash into a simple
hash and returns its reference.
=head1 PREREQUISITES
=over 4
=item *
Parse::RecDescent (VERSION 1.94)
=item *
Class::Accessor
=back
=head1 A COMMENT ABOUT PARSING
For whose who are interested, the grammar doesn't implement a fully
PDF or FDF specification (FDF is just a subset of PDF). The approach
is rather pragmatic. It only searches for /Fields and tries to ignore
the surrounding rest. This "works for me" (TM) but it doesn't
guarantee that all possible FDFs can be parsed. If you have a strange
FDF that cannot be parsed please send it to me with the expected
content description or extend the parser by yourself and send me a
patch.
=head1 AUTHOR
=over 4
=item *
Steffen Schwigon <ss5@renormalist.net>,
=item *
Tim Schreier
=back
=head1 REPOSITORY
The public repository is hosted on github:
git clone git://github.com/renormalist/pdf-fdf-simple.git
=head1 LICENSE
Copyright (c) 2004 .. 2008 Steffen Schwigon. All rights reserved. This
program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 FEEDBACK
I am interested in comments/enhancements/bugreports. Drop me
<ss5@renormalist.net> a mail if you use this module.
=cut
|