1Palm(3) User Contributed Perl Documentation Palm(3)
2
3
4
6 Palm - Palm OS utility functions
7
9 This document describes version 1.400 of Palm, released March 14, 2015
10 as part of Palm version 1.400.
11
15 palm2epoch
16 my @parts = localtime( palm2epoch($palmtime) );
17
18 Converts a Palm OS timestamp to a Unix Epoch time. Note, however, that
19 Palm OS time is in the timezone of the Palm itself while Epoch is
20 defined to be in the GMT timezone. Further conversion may be necessary.
21
22 epoch2palm
23 my $palmtime = epoch2palm( time() );
24
25 Converts Unix epoch time to Palm OS time.
26
27 mkpdbname
28 $PDB->Write( mkpdbname($PDB->{name}) );
29
30 Convert a Palm OS database name to a 7-bit ASCII representation. Native
31 Palm database names can be found in ISO-8859-1 encoding. This encoding
32 isn't going to generate the most portable of filenames and, in
33 particular, ColdSync databases use this representation.
34
36 Palm::PDB
37
39 Palm requires no configuration files or environment variables.
40
42 None reported.
43
45 No bugs have been reported.
46
48 Andrew Arensburger "<arensb AT ooblick.com>"
49
50 Currently maintained by Christopher J. Madsen "<perl AT cjmweb.net>"
51
52 Please report any bugs or feature requests to
53 "<bug-Palm AT rt.cpan.org>" or through the web interface at
54 <http://rt.cpan.org/Public/Bug/Report.html?Queue=Palm>.
55
56 You can follow or contribute to p5-Palm's development at
57 <https://github.com/madsen/p5-Palm>.
58
60 This software is copyright (c) 2003 by Andrew Arensburger & Alessandro
61 Zummo.
62
63 This is free software; you can redistribute it and/or modify it under
64 the same terms as the Perl 5 programming language system itself.
65
67 BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
68 FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
69 WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
70 PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND,
71 EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
72 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
73 ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
74 YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
75 NECESSARY SERVICING, REPAIR, OR CORRECTION.
76
77 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
78 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
79 REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE
80 TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
81 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
82 SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
83 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
84 FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
85 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
86 DAMAGES.
87
88
89
90perl v5.36.0 2023-01-20 Palm(3)