View | Details | Raw Unified | Return to bug 177425 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 1933-1938 Link Here
1933
    SUBDIR += trac-tickettemplate
1933
    SUBDIR += trac-tickettemplate
1934
    SUBDIR += trac-timingandestimation
1934
    SUBDIR += trac-timingandestimation
1935
    SUBDIR += trac-tocmacro
1935
    SUBDIR += trac-tocmacro
1936
    SUBDIR += trac-tracdragdrop
1936
    SUBDIR += trac-tweakui
1937
    SUBDIR += trac-tweakui
1937
    SUBDIR += trac-vote
1938
    SUBDIR += trac-vote
1938
    SUBDIR += trac-wantedpages
1939
    SUBDIR += trac-wantedpages
(-)trac-tracdragdrop/Makefile (+31 lines)
Line 0 Link Here
1
# Created by: Hung-Yi Chen <gaod@hychen.org>
2
# $FreeBSD$
3
4
PORTNAME=	tracdragdrop
5
PORTVERSION=	0.12.0.10.${SVN_REV}
6
CATEGORIES=	www devel python
7
MASTER_SITES=	http://distfiles.cse.tw/ \
8
		http://trac-hacks.org/changeset/${SVN_REV}/tracdragdropplugin?old_path=/&format=zip&filename=/
9
PKGNAMEPREFIX=	trac-
10
DISTNAME=	${PORTNAME}plugin-r${SVN_REV}
11
12
MAINTAINER=	gaod@hychen.org
13
COMMENT=	Provides extends attachments list of Trac
14
15
LICENSE=	BSD
16
17
SVN_REV=	12822
18
19
RUN_DEPENDS+=	tracd:${PORTSDIR}/www/trac
20
21
WRKSRC=		${WRKDIR}/${PORTNAME}plugin/0.12
22
USE_ZIP=	yes
23
USE_PYTHON=	-2.7
24
USE_PYDISTUTILS=	easy_install
25
26
FETCH_BEFORE_ARGS=	-o ${DISTFILES}
27
PYDISTUTILS_PKGNAME=	TracDragDrop
28
PYDISTUTILS_PKGVERSION=	${PORTVERSION:C/.${SVN_REV}//g}
29
PLIST_FILES=		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
30
31
.include <bsd.port.mk>
(-)trac-tracdragdrop/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (tracdragdropplugin-r12822.zip) = 8bc454b52e5b4035142e84e51c69656deeb42b54033fd8f395d9a0786caa869d
2
SIZE (tracdragdropplugin-r12822.zip) = 39920
(-)trac-tracdragdrop/pkg-descr (+11 lines)
Line 0 Link Here
1
This plugin extends attachments list in Trac.
2
3
Drag-and-drop to attach files using HTML5 drag-and-drop, 
4
XMLHttpRequest Level 2 and File API.
5
Progress bar while uploading the files using XMLHttpRequest
6
Level 2.
7
More than one file for selecting attachment files.
8
Attach an image from clipboard.
9
Auto-submit on select a file to attach.
10
11
WWW: http://trac-hacks.org/wiki/TracDragDropPlugin

Return to bug 177425