e2ba0ca780
The Zope External Editor is a new way to integrate Zope more seamlessly with client-side tools. It has the following features: - Edit objects locally, directly from the ZMI. - Works with any graphical editor application that can open a file from the command line, including: emacs, gvim, xemacs, nedit, gimp, etc. - Automatically saves changes back to Zope without ending the editing session. - Associate any client-side editor application with any Zope object by meta-type or content-type. Both text and binary object content can be edited. - Locks objects while they are being edited. Automatically unlocks them when the editing session ends. - Can add file extensions automatically to improve syntax highlighting or file type detection. - Works with basic auth, cookie auth and Zope versions. Credentials are automatically passed down to the helper application. No need to reauthenticate. - HTTPS support (Openssl required) Submitted and maintained by Marc Winiger <winiger at msys.ch>
31 lines
701 B
Makefile
31 lines
701 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/11/21 10:32:15 xsa Exp $
|
|
|
|
COMMENT= "Zope product for using an external editor to modify Zope objects"
|
|
|
|
VERSION= 0.8
|
|
DISTNAME= ExternalEditor-${VERSION}-src
|
|
PKGNAME= zope-externaleditor-${VERSION}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.zope.org/Members/Caseman/ExternalEditor
|
|
|
|
MAINTAINER= Marc Winiger <winiger@msys.ch>
|
|
|
|
# ZPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/${VERSION}/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MODULES= zope
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${MODZOPE_PRODUCTSDIR}
|
|
cd ${WRKDIR}; \
|
|
tar cf - ExternalEditor | tar xf - -C ${MODZOPE_PRODUCTSDIR}
|
|
|
|
.include <bsd.port.mk>
|