WebFlash is a library to display "flash" messages in python web
applications. These messages are usually used to provide feedback to the user (eg: you changes have been saved, your credit card number has been stolen, ...). One important characteristic they must provide is the ability to survive a redirect (ie: display the message in a page after being redirected from a form submission). WWW: http://python-rum.org/wiki/WebFlash PR: ports/136404 Submitted by: Wen Heping <wenheping at gmail.com>
This commit is contained in:
parent
e3f9547b29
commit
5cf703277e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=237356
5 changed files with 51 additions and 0 deletions
|
@ -1256,6 +1256,7 @@
|
|||
SUBDIR += py-HTMLgen
|
||||
SUBDIR += py-Lightbox
|
||||
SUBDIR += py-WebError
|
||||
SUBDIR += py-WebFlash
|
||||
SUBDIR += py-WebTest
|
||||
SUBDIR += py-albatross
|
||||
SUBDIR += py-amf
|
||||
|
|
26
www/py-WebFlash/Makefile
Normal file
26
www/py-WebFlash/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: WebFlash
|
||||
# Date created: 6th July, 2009
|
||||
# Whom: Wen Heping <wenheping@gmail.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= WebFlash
|
||||
PORTVERSION= 0.1a9
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= wenheping@gmail.com
|
||||
COMMENT= Library to display flash messages in python web applications
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= easy_install
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PYTHON_REL} < 260
|
||||
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}simplejson>=0:${PORTSDIR}/devel/py-simplejson
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
www/py-WebFlash/distinfo
Normal file
3
www/py-WebFlash/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (WebFlash-0.1a9.tar.gz) = faf2a563097baa7b24cf724565d5b1d0
|
||||
SHA256 (WebFlash-0.1a9.tar.gz) = 061aa6971da68ce9cfc1909f1dc7335d49546e4e7efccf54679b8c2c49062a7c
|
||||
SIZE (WebFlash-0.1a9.tar.gz) = 7374
|
8
www/py-WebFlash/pkg-descr
Normal file
8
www/py-WebFlash/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
WebFlash is a library to display "flash" messages in python web
|
||||
applications. These messages are usually used to provide feedback
|
||||
to the user (eg: you changes have been saved, your credit card
|
||||
number has been stolen, ...). One important characteristic they
|
||||
must provide is the ability to survive a redirect (ie: display the
|
||||
message in a page after being redirected from a form submission).
|
||||
|
||||
WWW: http://python-rum.org/wiki/WebFlash
|
13
www/py-WebFlash/pkg-plist
Normal file
13
www/py-WebFlash/pkg-plist
Normal file
|
@ -0,0 +1,13 @@
|
|||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash/webflash.js
|
||||
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash/webflash.min.js
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/webflash
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
|
Loading…
Reference in a new issue