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