Bug#435806: manpage example does not work

2007-12-13 Thread Gunnar Wolf
Hi, So... If you as the submitter cannot reproduce this bug anymore, can we close it? Thanks, -- Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244 PGP key 1024D/8BB527AF 2001-10-23 Fingerprint: 0C79 D2D1 2C4E 9CE4 5973 F800 D80E F35A 8BB5 27AF -- To UNSUBSCRIBE, email to [EMA

Bug#435806: manpage example does not work

2007-08-04 Thread martin f krafft
tags 435806 unreproducible thanks also sprach gregor herrmann <[EMAIL PROTECTED]> [2007.08.03.1854 +0200]: > The only difference I see is that the sample script uses > my $oPps = $oOl->getPpsTree(); > whereas your test (from the manpage example) uses > my $oPps = $oOl->getPpsTree(1); Now, sud

Bug#435806: manpage example does not work

2007-08-03 Thread gregor herrmann
On Fri, 03 Aug 2007 17:50:36 +0200, martin f krafft wrote: > > perl /usr/share/doc/libole-storage-lite-perl/examples/smplls.pl test.msg > this works fine and prints a lot of information without error. Uh, interesting. The only difference I see is that the sample script uses my $oPps = $oOl

Bug#435806: manpage example does not work

2007-08-03 Thread martin f krafft
also sprach gregor herrmann <[EMAIL PROTECTED]> [2007.08.03.1558 +0200]: > * or run > perl /usr/share/doc/libole-storage-lite-perl/examples/smplls.pl test.msg this works fine and prints a lot of information without error. -- .''`. martin f. krafft <[EMAIL PROTECTED]> : :' : proud Debian

Bug#435806: manpage example does not work

2007-08-03 Thread gregor herrmann
On Fri, 03 Aug 2007 16:21:51 +0200, Jeremiah Foster wrote: > I actually got the code to work from the CPAN synopsis file (not sure where > the man page for libole-storage-lite-perl lives). The man page is created from the embedded perl documentation; i.e. it's the same as `perldoc Storage_Lite.p

Bug#435806: manpage example does not work

2007-08-03 Thread Jeremiah Foster
I actually got the code to work from the CPAN synopsis file (not sure where the man page for libole-storage-lite-perl lives). Here is my working code: #!/usr/bin/perl # testing ole::storage_lite use strict; use OLE::Storage_Lite; my $oOl = OLE::Storage_Lite->new("/usr/share/example-content/

Bug#435806: manpage example does not work

2007-08-03 Thread gregor herrmann
On Fri, 03 Aug 2007 12:22:26 +0200, martin f krafft wrote: > use OLE::Storage_Lite; > use strict; > my $oOl = OLE::Storage_Lite->new('test.msg'); > my $oPps = $oOl->getPpsTree(1); > $oPps->save('-'); > > However, if I run it, I get > > Can't call method "save" on an undefined value at ole.pl lin

Bug#435806: manpage example does not work

2007-08-03 Thread Jeremiah Foster
From reading the Synopsis on CPAN, it looks as if you may have initialized the object in a manner that OLE::Storage_Lite may not understand. My understanding is that you need to present it with an XLS file of some kind; my $oOl = OLE::Storage_Lite->new("some.xls"); whereas ->new('test.ms

Bug#435806: manpage example does not work

2007-08-03 Thread martin f krafft
Package: libole-storage-lite-perl Version: 0.14-3 Severity: normal I tried the following code, copying more or less directly from the manpage: use OLE::Storage_Lite; use strict; my $oOl = OLE::Storage_Lite->new('test.msg'); my $oPps = $oOl->getPpsTree(1); $oPps->save('-'); However, if I run it,