Initial release
[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 format. This typically fix encoding problems for non-ascii chars
23 with the standard TSV export included in RT and also allow to use the export as
24 an external data Link. For this, the export include a table range with all data
25 named "AllRTTickets".
26
27 =head1 AUTHOR
28
29 Emmanuel Lacour, C<< <elacour at home-dn.net> >>
30
31 =head1 BUGS
32
33 Please report any bugs or feature requests to C<bug-rt-extension-searchresults-ods at rt.cpan.org>, or through
34 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
35 automatically be notified of progress on your bug as I make changes.
36
37
38
39
40 =head1 SUPPORT
41
42 You can find documentation for this module with the perldoc command.
43
44     perldoc RT::Extension::SearchResults::ODS
45
46
47 You can also look for information at:
48
49 =over 4
50
51 =item * RT: CPAN's request tracker
52
53 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-SearchResults-ODS>
54
55 =item * AnnoCPAN: Annotated CPAN documentation
56
57 L<http://annocpan.org/dist/RT-Extension-SearchResults-ODS>
58
59 =item * CPAN Ratings
60
61 L<http://cpanratings.perl.org/d/RT-Extension-SearchResults-ODS>
62
63 =item * Search CPAN
64
65 L<http://search.cpan.org/dist/RT-Extension-SearchResults-ODS>
66
67 =back
68
69
70 =head1 ACKNOWLEDGEMENTS
71
72
73 =head1 COPYRIGHT & LICENSE
74
75 Copyright 2011 Emmanuel Lacour, all rights reserved.
76
77 This program is free software; you can redistribute it and/or modify it
78 under the same terms as Perl itself.
79
80 Request Tracker (RT) is Copyright Best Practical Solutions, LLC.
81
82 =cut
83
84 1; # End of RT::Extension::SearchResults::ODS