Release 0.03
[manu/RT-Extension-SearchResults-XLS.git] / lib / RT / Extension / SearchResults / XLS.pm
1 package RT::Extension::SearchResults::XLS;
2
3 use warnings;
4 use strict;
5
6 =head1 NAME
7
8 RT::Extension::SearchResults::XLS - Add Excel format export to RT search results
9
10 =head1 VERSION
11
12 Version 0.03
13
14 =cut
15
16 our $VERSION = '0.03';
17
18
19 =head1 SYNOPSIS
20
21 This RT Extension allow users to download search results in Microsoft Excel
22 binary format. This typically fix encoding problems for non-ascii chars with
23 the standard TSV export included in RT.
24
25 =head1 AUTHOR
26
27 Emmanuel Lacour, C<< <elacour at home-dn.net> >>
28
29 =head1 BUGS
30
31 Please report any bugs or feature requests to C<bug-rt-extension-searchresults-xls at rt.cpan.org>, or through
32 the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=RT-Extension-SearchResults-XLS>.  I will be notified, and then you'll
33 automatically be notified of progress on your bug as I make changes.
34
35
36
37
38 =head1 SUPPORT
39
40 You can find documentation for this module with the perldoc command.
41
42     perldoc RT::Extension::SearchResults::XLS
43
44
45 You can also look for information at:
46
47 =over 4
48
49 =item * RT: CPAN's request tracker
50
51 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-SearchResults-XLS>
52
53 =item * AnnoCPAN: Annotated CPAN documentation
54
55 L<http://annocpan.org/dist/RT-Extension-SearchResults-XLS>
56
57 =item * CPAN Ratings
58
59 L<http://cpanratings.perl.org/d/RT-Extension-SearchResults-XLS>
60
61 =item * Search CPAN
62
63 L<http://search.cpan.org/dist/RT-Extension-SearchResults-XLS>
64
65 =back
66
67
68 =head1 ACKNOWLEDGEMENTS
69
70
71 =head1 COPYRIGHT & LICENSE
72
73 Copyright 2008 Emmanuel Lacour, all rights reserved.
74
75 This program is free software; you can redistribute it and/or modify it
76 under the same terms as Perl itself.
77
78 Request Tracker (RT) is Copyright Best Practical Solutions, LLC.
79
80 =cut
81
82 1; # End of RT::Extension::SearchResults::XLS