47ffea8958ef660f3c3532c1522c04fcfa141173
[manu/RT-Extension-SearchResults-ODS.git] / README
1 RT-Extension-SearchResults-ODS - Add OpenDocument SpreadSheet format export to RT search results
2
3 This RT Extension allow users to download search results in OpenDocument
4 SpreadSheet format. This typically fix encoding problems for non-ascii chars
5 with the standard TSV export included in RT and also allow to use the export as
6 an external data Link. For this, the export include a table range with all data
7 named "AllRTTickets".
8
9
10 INSTALLATION
11
12 To install this module, run the following commands:
13
14         perl Makefile.PL
15         make
16         make test
17         make install
18
19 Then, to make it active, add it to @Plugins in RT site configuration file
20 (RT_SiteConfig.pm), example:
21
22     Set(@Plugins, qw(RT::Extension::SearchResults::ODS) );
23
24 SUPPORT AND DOCUMENTATION
25
26 After installing, you can find documentation for this module with the
27 perldoc command.
28
29     perldoc RT::Extension::SearchResults::ODS
30
31 You can also look for information at:
32
33     RT, CPAN's request tracker
34         http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-SearchResults-ODS
35
36     AnnoCPAN, Annotated CPAN documentation
37         http://annocpan.org/dist/RT-Extension-SearchResults-ODS
38
39     CPAN Ratings
40         http://cpanratings.perl.org/d/RT-Extension-SearchResults-ODS
41
42     Search CPAN
43         http://search.cpan.org/dist/RT-Extension-SearchResults-ODS
44
45
46 COPYRIGHT AND LICENCE
47
48 Copyright (C) 2011 Emmanuel Lacour
49
50 This program is free software; you can redistribute it and/or modify it
51 under the same terms as Perl itself.
52
53 Request Tracker (RT) is Copyright Best Practical Solutions, LLC.
54