extensions/net.sf.basedb.torrent/trunk/META-INF/extensions.xml

Code
Comments
Other
Rev Date Author Line
1246 21 Oct 10 nicklas 1 <?xml version="1.0" encoding="UTF-8" ?>
1246 21 Oct 10 nicklas 2 <!-- 
1246 21 Oct 10 nicklas 3   $Id$
1246 21 Oct 10 nicklas 4
1246 21 Oct 10 nicklas 5   Copyright (C) 2010 Nicklas Nordborg
1246 21 Oct 10 nicklas 6
1246 21 Oct 10 nicklas 7   This file is part of Bittorent download service for BASE.
1246 21 Oct 10 nicklas 8   Available at http://baseplugins.thep.lu.se/
1246 21 Oct 10 nicklas 9
1246 21 Oct 10 nicklas 10   BASE is free software; you can redistribute it and/or
1246 21 Oct 10 nicklas 11   modify it under the terms of the GNU General Public License
1246 21 Oct 10 nicklas 12   as published by the Free Software Foundation; either version 2
1246 21 Oct 10 nicklas 13   of the License, or (at your option) any later version.
1246 21 Oct 10 nicklas 14
1246 21 Oct 10 nicklas 15   BASE is distributed in the hope that it will be useful,
1246 21 Oct 10 nicklas 16   but WITHOUT ANY WARRANTY; without even the implied warranty of
1246 21 Oct 10 nicklas 17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1246 21 Oct 10 nicklas 18   GNU General Public License for more details.
1246 21 Oct 10 nicklas 19
1246 21 Oct 10 nicklas 20   You should have received a copy of the GNU General Public License
1246 21 Oct 10 nicklas 21   along with this program; if not, write to the Free Software
1246 21 Oct 10 nicklas 22   Foundation, Inc., 59 Temple Place - Suite 330,
1246 21 Oct 10 nicklas 23   Boston, MA  02111-1307, USA.
1246 21 Oct 10 nicklas 24 -->
1246 21 Oct 10 nicklas 25 <extensions xmlns="http://base.thep.lu.se/extensions.xsd">
1246 21 Oct 10 nicklas 26   <about>
1246 21 Oct 10 nicklas 27     <name>Bittorrent download service</name>
1246 21 Oct 10 nicklas 28     <description>
1246 21 Oct 10 nicklas 29       This extension adds a bittorrent service to the BASE installation.
1246 21 Oct 10 nicklas 30       User can upload a torrent file to the service which will then 
1246 21 Oct 10 nicklas 31       automatically download the files to the BASE server and store
1246 21 Oct 10 nicklas 32       them in directory on the BASE file system choosen by the user.
1246 21 Oct 10 nicklas 33       Note! The service doesn't include a tracker and can't be used
1246 21 Oct 10 nicklas 34       for downloading files from BASE.
1246 21 Oct 10 nicklas 35     </description>
1636 03 May 12 nicklas 36     <version>0.2-dev</version>
1636 03 May 12 nicklas 37     <min-base-version>3.1.0</min-base-version>
1636 03 May 12 nicklas 38     <copyright>BASE development team</copyright>
1636 03 May 12 nicklas 39     <email>basedb-users@lists.sourceforge.net</email>
1246 21 Oct 10 nicklas 40     <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.torrent</url>
1246 21 Oct 10 nicklas 41   </about>
1246 21 Oct 10 nicklas 42   <extension
1255 22 Oct 10 nicklas 43     id="net.sf.basedb.clients.torrent.service"
1246 21 Oct 10 nicklas 44     extends="net.sf.basedb.clients.web.services"
1246 21 Oct 10 nicklas 45     >
1246 21 Oct 10 nicklas 46     <index>20</index>
1246 21 Oct 10 nicklas 47     <action-factory>
1246 21 Oct 10 nicklas 48       <factory-class>
1246 21 Oct 10 nicklas 49         net.sf.basedb.clients.torrent.service.TorrentServiceControllerFactory
1246 21 Oct 10 nicklas 50       </factory-class>
1246 21 Oct 10 nicklas 51     </action-factory>
1246 21 Oct 10 nicklas 52   </extension>
1255 22 Oct 10 nicklas 53   <extension
1255 22 Oct 10 nicklas 54     id="net.sf.basedb.clients.bittorrent.upload"
1255 22 Oct 10 nicklas 55     extends="net.sf.basedb.clients.web.toolbar.list.file"
1255 22 Oct 10 nicklas 56     >
1255 22 Oct 10 nicklas 57     <about>
1255 22 Oct 10 nicklas 58       <name>Upload torrent</name>
1255 22 Oct 10 nicklas 59       <description>Adds a 'Upload torrent' button to the File manager</description>
1255 22 Oct 10 nicklas 60     </about>
1255 22 Oct 10 nicklas 61     <index>10</index>
1255 22 Oct 10 nicklas 62     <action-factory>
1255 22 Oct 10 nicklas 63       <factory-class>net.sf.basedb.clients.web.extensions.toolbar.FixedButtonFactory</factory-class>
1255 22 Oct 10 nicklas 64       <parameters>
1304 03 Mar 11 nicklas 65         <title>Upload torrent&amp;hellip;</title>
1304 03 Mar 11 nicklas 66         <onClick>Main.openPopup('$HOME$/upload_torrent.jsp?ID=' + getSessionId(), 'UploadTorrent', 640, 480)</onClick>
1304 03 Mar 11 nicklas 67         <icon>~/bittorrent.png</icon>
1255 22 Oct 10 nicklas 68       </parameters>
1255 22 Oct 10 nicklas 69     </action-factory>
1255 22 Oct 10 nicklas 70   </extension>
1246 21 Oct 10 nicklas 71 </extensions>