Skip Menu |

This queue is for tickets about the Spreadsheet-WriteExcel CPAN distribution.

Maintainer(s)' notes

If you are reporting a bug in Spreadsheet::WriteExcel here are some pointers

1) State the issues as clearly and as concisely as possible. A simple program or Excel test file (see below) will often explain the issue better than a lot of text.

2) Provide information on your system, version of perl and module versions. The following program will generate everything that is required. Put this information in your bug report.

    #!/usr/bin/perl -w

    print "\n    Perl version   : $]";
    print "\n    OS name        : $^O";
    print "\n    Module versions: (not all are required)\n";

    my @modules = qw(
                      Spreadsheet::WriteExcel
                      Parse::RecDescent
                      File::Temp
                      OLE::Storage_Lite
                      IO::Stringy
                      Spreadsheet::ParseExcel
                      Scalar::Util
                      Unicode::Map
                    );

    for my $module (@modules) {
        my $version;
        eval "require $module";

        if (not $@) {
            $version = $module->VERSION;
            $version = '(unknown)' if not defined $version;
        }
        else {
            $version = '(not installed)';
        }

        printf "%21s%-24s\t%s\n", "", $module, $version;
    }

    __END__

3) Upgrade to the latest version of Spreadsheet::WriteExcel (or at least test on a system with an upgraded version). The issue you are reporting may already have been fixed.

4) Create a small but complete example program that demonstrates your problem. The program should be as small as possible. At the same time it should be a complete program that generates an Excel file. If the Spreadsheet::WriteExcel section is part of a much larger program then simplify it down to the essentials. Simulate any DB reads with an array.

5) Say if you tested with Excel, OpenOffice, Gnumeric or something else. Say which version of that application you used.

6) If you are submitting a patch you should check with the author whether the issue has already been patched or if a fix is in the works. Patches should be accompanied by test cases.

Asking a question

If you would like to ask a more general question there is the Spreadsheet::WriteExcel Google Group.

Report information
The Basics
Id: 85897
Status: resolved
Priority: 0/
Queue: Spreadsheet-WriteExcel

People
Owner: Nobody in particular
Requestors: gregoa [...] debian.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] Fix POD encoding
Date: Wed, 5 Jun 2013 20:10:11 +0200
To: bug-spreadsheet-writeexcel [...] rt.cpan.org
From: gregor herrmann <gregoa [...] debian.org>
In Debian we are currently applying the attached patch to Spreadsheet-WriteExcel. We thought you might be interested in it, too. Description: add encoding to POD, required by newer perls Origin: vendor Bug-Debian: http://bugs.debian.org/710995 Author: gregor herrmann <gregoa@debian.org> Last-Update: 2013-06-05 Thanks in advance, gregor herrmann, Debian Perl Group

Message body is not shown because sender requested not to inline it.

Thanks. Patch applied and on its way to CPAN in version 2.39. John
Seems you forgot lib/Spreadsheet/WriteExcel/Examples.pm :) Cheers, gregor
On Fri Oct 11 16:59:18 2013, GREGOA wrote: Show quoted text
> Seems you forgot lib/Spreadsheet/WriteExcel/Examples.pm :)
Examples.pm is generated programmatically from the examples file. I think there was some issue with adding encoding directives to that file, although I can't remember what it is now. :-| I'll have a look at it again. John
Subject: Re: [rt.cpan.org #85897] [PATCH] Fix POD encoding
Date: Tue, 15 Oct 2013 00:11:07 +0200
To: John McNamara via RT <bug-Spreadsheet-WriteExcel [...] rt.cpan.org>
From: gregor herrmann <gregoa [...] debian.org>
On Mon, 14 Oct 2013 05:22:57 -0400, John McNamara via RT wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=85897 > > > On Fri Oct 11 16:59:18 2013, GREGOA wrote:
> > Seems you forgot lib/Spreadsheet/WriteExcel/Examples.pm :)
> Examples.pm is generated programmatically from the examples file.
Ah, that makes sense, sorry for missing this detail. Show quoted text
> I think there was some issue with adding encoding directives to > that file, although I can't remember what it is now. :-| > I'll have a look at it again.
Thanks! Cheers, gregor -- .''`. Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06 : :' : Debian GNU/Linux user, admin, and developer - http://www.debian.org/ `. `' Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe `-
Download signature.asc
application/pgp-signature 836b

Message body not shown because it is not plain text.

On Mon Oct 14 18:11:33 2013, gregoa@debian.org wrote: Show quoted text
> On Mon, 14 Oct 2013 05:22:57 -0400, John McNamara via RT wrote: >
> > <URL: https://rt.cpan.org/Ticket/Display.html?id=85897 > > > > > On Fri Oct 11 16:59:18 2013, GREGOA wrote:
> > > Seems you forgot lib/Spreadsheet/WriteExcel/Examples.pm :)
Hi Gregor, There is a new version, 2.40, on its way to CPAN with some minor fixes. Hopefully there won't be any encoding issues in this one. If this are let me know and re-open the issue. Regards, John