wiki:TracDownloaderPlugin

Software releases download functionality

Description

This plugin implements a project release downloader in your Trac installation. This downloader allows your users to download software, such as releases or release candidates. The downloader also maintains statistics of downloads from your Trac installation.

Key features:

  • Presents the user with downloadable files, such as software releases.
  • Optionally presents the user with a questionnaire before the download of file(s).
  • Captcha antirobot check.
  • Maintains statistics on downloads.
  • Easy to use administration in the Trac WebAdmin page.

A typical use case would be the release of upgrades to your released software for your external users to download.

Main list of downloads:

Main list of Downloads

Other screenshots:

Plugin was tested on Python 2.3, Trac 0.9.6 and Trac 0.10.4. The first successful tests were made on Trac 0.11b1, but there may still be some bugs, so please report every problem you find.

Planned features and improvements

  • Rewrite all templates from ClearSilver to Genshi
  • Display and request captcha only first time in session
  • Nicer rendering of forms and fix some rendering problems
  • Support for searching in files and notes
  • Support for tags
  • Some aggregations of data filled in user defined questionnaire

See also DownloadsPlugin.

Bugs/Feature Requests

Existing bugs and feature requests for TracDownloaderPlugin are here.

If you have any issues, create a new ticket.

defect

36 / 48

enhancement

3 / 10

task

1 / 1

Download

You can download the egg or the full source here:

Here are some screenshots too.

Download the zipped source for Trac 0.10, Trac 0.11 or just everything.

Source

You can check out TracDownloaderPlugin from here using Subversion, or browse the source with Trac.

Installation

Using Python egg

The easiest way to start using the Downloader plugin is to get download the Python egg into the plugin directory of your project environment. The egg is most probably Python version independent, just rename it, there is still the source package. After that you must turn both modules of Downloader on in WebAdmin/plugins: the Downloader is dependent on WebAdmin plugin. And finally you need to apply the permissions of Downloader to the users. In this case if you like to use PyCaptcha, you must install it yourself, PyCaptcha is dependent on the Python Imaging Library (PIL) so you must download it too.

Using source - installation with PyCaptcha and PIL which are needed for Captcha to work:

pip install pillow
pip install PyCaptcha
pip install svn+https://trac-hacks.org/svn/tracdownloaderplugin/0.10/

Using setup.py install An alternative way is to download and unpack locally the source zip package and then run "setup.py install" or on Windows maybe better "python setup.py install", or use the pip install commands written above. Setup installs TracDownloaderPlugin only without the other dependencies. If you like to use Captcha tests, then you have to install PIL and PyCaptcha manually also. Note that PIL is in most Linux distributions package named python-imaging so you don't need to install it by easy install, and you can use your package manager.

Then you must enable both Downloader modules in TracAdmin/Plugins (or enable Downloader components in your environment's trac.ini file - source bottom) and assign some permissions of downloader to someone and you can start using Downloader plugin:

[components]
tracdownloader.admin.downloaderadminpage = enabled
tracdownloader.web_ui.downloadermodule = enabled

After the steps above and clicking to any part of Downloader you should be asked about location of directory to store uploaded files. When it is set up, you must Submit that form two times and there can be an exception "DatabaseError: database schema has changed". If this exception is thrown, it is best to restart your http server.

Downloader keeps using ClearSilver as templating system so you have to have it installed. A version of this plugin for the Genshi templating system is under development. Version for Trac 0.11 wasn't too much tested, so if you find errors, please write me a ticket.

If you had problems installing Downloader, please write me a ticket or write the solution of your installation problems here.

Permissions

Downloader plugin defines the following permissions:

DOWNLOADER_DOWNLOAD: allows user to download things from main part of plugin, if you like to let all users download from Downloader, just get this permission to user anonymous. DOWNLOADER_STATS: allows user to browse part of statistics in the main module of Downloader (user will be able to see links to statistics in the right top corner of the page). DOWNLOADER_ADMIN: allows user to upload files, manage files, releases and categories, browse fill up's of questionnaire, delete fill up's of questionnaire and manage settings of Downloader plugin. Note that this permission should never be given to user anonymous!

Wiki syntax

Downloader plugin provides three types of wiki syntax for referencing standalone files, whole releases or categories. Each syntax has two possible forms. If syntax is enclosed by square brackets [], you can easily write your own title for item (file, release, category). If the syntax is separated just by spaces, there will be an automatically created link with the name of referenced item (file, release, category).

Syntaxes:

downloader:5 - Creates link to file with id 5 with its name
[downloader:5 click here] - Creates 'click here' link to file with id 5

downloaderrel:23 - Creates link to release with id 23 with its name
[downloaderrel:23 click here] - Creates 'click here' link to release with id 23

downloadercat:43 - Creates link to category with id 43 with its name
[downloadercat:43 click here] - Creates 'click here' link to category with id 43

If item of that id doesn't exist, a dead link is displayed with title "id not found". If the file was deleted, it still displays its correct name, but does not link to anywhere.

Special features

This features are available only if you have Downloader installed in unzipped form. This doesn't work in egg or zip file.

MIME list In tracdownloader directory there is a file mime_list.txt which contains a list of known MIME types for Downloader, you can easily add new ones or delete unneeded ones, if there is no record found for particular file extension in this list, Downloader uses MIME of application/octet-stream.

EDIT QUESTIONNAIRE The file form_data.py contains the structure used to generate the questionnaire before the download of the file. You can easily edit this to get the data you want from your users. There is a description inside this file.

Reset all statistics

To clear all recorded data about downloads and users who downloaded anything by DownloaderPlugin, you can use on your Trac environment database these two SQL commands:

DELETE FROM downloader_downloaded_attributes;
DELETE FROM downloader_downloaded;

After executing this all statistics are permanently deleted.

Recent Changes

15874 by rjollos on 2016-09-07 21:52:51
Remove obsolete directory
12139 by rjollos on 2012-10-10 01:54:13
Fixed incorrect source code encoding (http://www.python.org/dev/peps/pep-0263/).
11235 by rjollos on 2012-02-02 22:12:33
Refs #4299: Fixed setup.py syntax error for the 0.10 branch. The 0.10 branch won't be supported. This fix is untested.
(more)

Author/Contributors

Author: Petr Škoda
Maintainer: Petr Škoda
Contributors:

Last modified 4 years ago Last modified on Apr 26, 2020, 11:59:31 AM

Attachments (8)

Download all attachments as: .zip