1Palm::ToDo(3) User Contributed Perl Documentation Palm::ToDo(3)
2
3
4
6 Palm::ToDo - Handler for Palm ToDo databases
7
9 This document describes version 1.400 of Palm::ToDo, released March 14,
10 2015 as part of Palm version 1.400.
11
13 use Palm::ToDo;
14
16 The ToDo PDB handler is a helper class for the Palm::PDB package. It
17 parses ToDo databases.
18
19 AppInfo block
20 The AppInfo block begins with standard category support. See
21 Palm::StdAppInfo for details.
22
23 Other fields include:
24
25 $pdb->{appinfo}{dirty_appinfo}
26 $pdb->{appinfo}{sortOrder}
27
28 I don't know what these are.
29
30 Sort block
31 $pdb->{sort}
32
33 This is a scalar, the raw data of the sort block.
34
35 Records
36 $record = $pdb->{records}[N]
37
38 $record->{due_day}
39 $record->{due_month}
40 $record->{due_year}
41
42 The due date of the ToDo item. If the item has no due date, these are
43 undefined.
44
45 $record->{completed}
46
47 This is defined and true iff the item has been completed.
48
49 $record->{priority}
50
51 An integer. The priority of the item.
52
53 $record->{description}
54
55 A text string. The description of the item.
56
57 $record->{note}
58
59 A text string. The note attached to the item. Undefined if the item has
60 no note.
61
62 new
63 $pdb = new Palm::ToDo;
64
65 Create a new PDB, initialized with the various Palm::ToDo fields and an
66 empty record list.
67
68 Use this method if you're creating a ToDo PDB from scratch.
69
70 new_Record
71 $record = $pdb->new_Record;
72
73 Creates a new ToDo record, with blank values for all of the fields.
74
75 "new_Record" does not add the new record to $pdb. For that, you want
76 "$pdb->append_Record".
77
79 Palm::PDB
80
81 Palm::StdAppInfo
82
84 Palm::ToDo requires no configuration files or environment variables.
85
87 None reported.
88
90 No bugs have been reported.
91
93 Andrew Arensburger "<arensb AT ooblick.com>"
94
95 Currently maintained by Christopher J. Madsen "<perl AT cjmweb.net>"
96
97 Please report any bugs or feature requests to
98 "<bug-Palm AT rt.cpan.org>" or through the web interface at
99 <http://rt.cpan.org/Public/Bug/Report.html?Queue=Palm>.
100
101 You can follow or contribute to p5-Palm's development at
102 <https://github.com/madsen/p5-Palm>.
103
105 This software is copyright (c) 2003 by Andrew Arensburger & Alessandro
106 Zummo.
107
108 This is free software; you can redistribute it and/or modify it under
109 the same terms as the Perl 5 programming language system itself.
110
112 BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
113 FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
114 WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
115 PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND,
116 EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
117 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
118 ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
119 YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
120 NECESSARY SERVICING, REPAIR, OR CORRECTION.
121
122 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
123 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
124 REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE
125 TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
126 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
127 SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
128 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
129 FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
130 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
131 DAMAGES.
132
133
134
135perl v5.36.0 2023-01-20 Palm::ToDo(3)