Changes between Version 13 and Version 14 of ExcelDownloadPlugin


Ignore:
Timestamp:
Jan 25, 2017, 10:54:27 AM (7 years ago)
Author:
Jun Omae
Comment:

add support of *.xlsx format using openpyxl

Legend:

Unmodified
Added
Removed
Modified
  • ExcelDownloadPlugin

    v13 v14  
    55== Description
    66
    7 This plugin allows you to download Trac query output, reports and ticket pages as an Excel spreadsheet file. The plugin is dependent on xlwt, which is a Python library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform with Python 2.6, 2.6, 3.3+.
     7This plugin allows you to download Trac query output, reports and ticket pages as an Excel spreadsheet file. The plugin creates spreadsheet using [PyPI:openpyxl] or [PyPI:xlwt] library.
    88
    99Key features:
     
    3232== Installation
    3333
    34  1. Install the pypi:xlwt library:
     34 1. Install the pypi:openpyxl or pypi:xlwt library:
     35    a. If you want Excel 2007 format (*.xlsx), install pypi:openpyxl and pypi:lxml:
    3536 {{{#!sh
    36 easy_install xlwt
     37$ easy_install openpyxl lxml
     38# or
     39$ pip install openpyxl lxml
    3740}}}
    38     Or:
     41    b. If you want Excel 2003 format (*.xls), install pypi:xlwt:
    3942 {{{#!sh
    40 pip install xlwt
     43$ easy_install xlwt
     44# or
     45$ pip install xlwt
    4146}}}
    42     - You could install pypi:xlwt/0.7.5 if you are using Python 2.4 or 2.5.
     47       - You could install pypi:xlwt/0.7.5 for Python 2.4 or 2.5.
     48 {{{#!sh
     49$ easy_install xlwt==0.7.5
     50# or
     51$ pip install xlwt==0.7.5
     52}}}
    4353 1. Install the plugin:
    4454 {{{#!sh
    45 easy_install https://trac-hacks.org/svn/exceldownloadplugin/0.12
     55$ easy_install https://trac-hacks.org/svn/exceldownloadplugin/0.12
    4656}}}
    4757 1. Enable the plugin in your `trac.ini` file: