Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jul 2013 05:43:06 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323089 - in head/www: . trac-tracdragdrop
Message-ID:  <201307160543.r6G5h65t004876@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Tue Jul 16 05:43:05 2013
New Revision: 323089
URL: http://svnweb.freebsd.org/changeset/ports/323089

Log:
  This plugin extends attachments list in Trac.
  
  Drag-and-drop to attach files using HTML5 drag-and-drop,
  XMLHttpRequest Level 2 and File API.
  Progress bar while uploading the files using XMLHttpRequest
  Level 2.
  More than one file for selecting attachment files.
  Attach an image from clipboard.
  Auto-submit on select a file to attach.
  
  WWW: http://trac-hacks.org/wiki/TracDragDropPlugin
  
  PR:		ports/177425
  Submitted by:	Hung-Yi Chen <gaod@hychen.org>

Added:
  head/www/trac-tracdragdrop/
  head/www/trac-tracdragdrop/Makefile   (contents, props changed)
  head/www/trac-tracdragdrop/distinfo   (contents, props changed)
  head/www/trac-tracdragdrop/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Jul 16 05:42:36 2013	(r323088)
+++ head/www/Makefile	Tue Jul 16 05:43:05 2013	(r323089)
@@ -1963,6 +1963,7 @@
     SUBDIR += trac-tickettemplate
     SUBDIR += trac-timingandestimation
     SUBDIR += trac-tocmacro
+    SUBDIR += trac-tracdragdrop
     SUBDIR += trac-tweakui
     SUBDIR += trac-vote
     SUBDIR += trac-wantedpages

Added: head/www/trac-tracdragdrop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/trac-tracdragdrop/Makefile	Tue Jul 16 05:43:05 2013	(r323089)
@@ -0,0 +1,31 @@
+# Created by: Hung-Yi Chen <gaod@hychen.org>
+# $FreeBSD$
+
+PORTNAME=	tracdragdrop
+PORTVERSION=	0.12.0.10.${SVN_REV}
+CATEGORIES=	www devel python
+MASTER_SITES=	http://distfiles.cse.tw/ \
+		http://trac-hacks.org/changeset/${SVN_REV}/tracdragdropplugin?old_path=/&format=zip&filename=/
+PKGNAMEPREFIX=	trac-
+DISTNAME=	${PORTNAME}plugin-r${SVN_REV}
+
+MAINTAINER=	gaod@hychen.org
+COMMENT=	Provides extends attachments list of Trac
+
+LICENSE=	BSD
+
+SVN_REV=	12822
+
+RUN_DEPENDS+=	tracd:${PORTSDIR}/www/trac
+
+WRKSRC=		${WRKDIR}/${PORTNAME}plugin/0.12
+USE_ZIP=	yes
+USE_PYTHON=	-2.7
+USE_PYDISTUTILS=	easy_install
+
+FETCH_BEFORE_ARGS=	-o ${DISTFILES}
+PYDISTUTILS_PKGNAME=	TracDragDrop
+PYDISTUTILS_PKGVERSION=	${PORTVERSION:C/.${SVN_REV}//g}
+PLIST_FILES=		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
+
+.include <bsd.port.mk>

Added: head/www/trac-tracdragdrop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/trac-tracdragdrop/distinfo	Tue Jul 16 05:43:05 2013	(r323089)
@@ -0,0 +1,2 @@
+SHA256 (tracdragdropplugin-r12822.zip) = 8bc454b52e5b4035142e84e51c69656deeb42b54033fd8f395d9a0786caa869d
+SIZE (tracdragdropplugin-r12822.zip) = 39920

Added: head/www/trac-tracdragdrop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/trac-tracdragdrop/pkg-descr	Tue Jul 16 05:43:05 2013	(r323089)
@@ -0,0 +1,11 @@
+This plugin extends attachments list in Trac.
+
+Drag-and-drop to attach files using HTML5 drag-and-drop, 
+XMLHttpRequest Level 2 and File API.
+Progress bar while uploading the files using XMLHttpRequest
+Level 2.
+More than one file for selecting attachment files.
+Attach an image from clipboard.
+Auto-submit on select a file to attach.
+
+WWW: http://trac-hacks.org/wiki/TracDragDropPlugin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307160543.r6G5h65t004876>