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 (+30 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://trac-hacks.org/changeset/${SVN_REV}/tracdragdropplugin?old_path=/&format=zip&filename=
8
PKGNAMEPREFIX=	trac-
9
DISTNAME=	${PORTNAME}plugin-r${SVN_REV}
10
11
MAINTAINER=	gaod@hychen.org
12
COMMENT=	Provides extends attachments list of Trac
13
14
LICENSE=	BSD
15
16
SVN_REV=	12822
17
18
RUN_DEPENDS+=	tracd:${PORTSDIR}/www/trac
19
20
WRKSRC=		${WRKDIR}/${PORTNAME}plugin/0.12
21
USE_ZIP=	yes
22
USE_PYTHON=	-2.7
23
USE_PYDISTUTILS=	easy_install
24
25
FETCH_BEFORE_ARGS=	-o ${DISTFILES}
26
PYDISTUTILS_PKGNAME=	TracDragDrop
27
PYDISTUTILS_PKGVERSION=	${PORTVERSION:C/.${SVN_REV}//g}
28
PLIST_FILES=		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
29
30
.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