diff options
author | miwi <miwi@FreeBSD.org> | 2007-05-02 03:39:58 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-05-02 03:39:58 +0800 |
commit | 53c22ed34671a917d90254294a77d23a3de4be36 (patch) | |
tree | 1badeb31f090e307f0edfca86c20df27825fdac8 /devel | |
parent | 5e701d6a4d00e725ec7c0c8c771341eb60de52ae (diff) | |
download | freebsd-ports-gnome-53c22ed34671a917d90254294a77d23a3de4be36.tar.gz freebsd-ports-gnome-53c22ed34671a917d90254294a77d23a3de4be36.tar.zst freebsd-ports-gnome-53c22ed34671a917d90254294a77d23a3de4be36.zip |
This package adds an element to the PEAR::HTML_QuickForm package to dynamically
create an HTML input text element that at every keypressed javascript event,
returns a list of options in a dynamic dropdown select box
(live dropdown select). This element use AJAX (Communication from JavaScript
to your browser without reloading the page).
This type of livesearch is useful when you have a form with a dropdown list
with a large number of row.
WWW: http://pear.php.net/package/HTML_QuickForm_Livesearch/
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/pear-HTML_QuickForm_Livesearch/Makefile | 27 | ||||
-rw-r--r-- | devel/pear-HTML_QuickForm_Livesearch/distinfo | 3 | ||||
-rw-r--r-- | devel/pear-HTML_QuickForm_Livesearch/pkg-descr | 9 |
4 files changed, 40 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 02e84c6e8cc0..ee707a74a17c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1658,6 +1658,7 @@ SUBDIR += pear-HTML_Page2 SUBDIR += pear-HTML_QuickForm SUBDIR += pear-HTML_QuickForm_Controller + SUBDIR += pear-HTML_QuickForm_Livesearch SUBDIR += pear-HTML_QuickForm_SelectFilter SUBDIR += pear-HTML_QuickForm_advmultiselect SUBDIR += pear-HTML_Select diff --git a/devel/pear-HTML_QuickForm_Livesearch/Makefile b/devel/pear-HTML_QuickForm_Livesearch/Makefile new file mode 100644 index 000000000000..4f0d23c96ca7 --- /dev/null +++ b/devel/pear-HTML_QuickForm_Livesearch/Makefile @@ -0,0 +1,27 @@ +# Ports collection makefile for: pear-HTML_QuickForm_Livesearch +# Date created: 01 Mai 2007 +# Whom: Martin Wilke <miwi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= HTML_QuickForm_Livesearch +PORTVERSION= 0.3.2 +CATEGORIES= devel www pear + +MAINTAINER= miwi@FreeBSD.org +COMMENT= Element for PEAR::HTML_QuickForm to enable a suggest search. + +BUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm \ + ${PEARDIR}/HTML/AJAX.php:${PORTSDIR}/www/pear-HTML_AJAX +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= HTML/QuickForm +FILES= live.js livesearch_select.php +EXAMPLES= auto_server.php index.php live.js livesearch.class.php \ + myfunction.php shadow.gif shadowAlpha.png style.css +_EXAMPLESDIR= example + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/devel/pear-HTML_QuickForm_Livesearch/distinfo b/devel/pear-HTML_QuickForm_Livesearch/distinfo new file mode 100644 index 000000000000..09e1d2db39b2 --- /dev/null +++ b/devel/pear-HTML_QuickForm_Livesearch/distinfo @@ -0,0 +1,3 @@ +MD5 (PEAR/HTML_QuickForm_Livesearch-0.3.2.tgz) = fae2e8c0e0e8e03ea5197d9c3430cb00 +SHA256 (PEAR/HTML_QuickForm_Livesearch-0.3.2.tgz) = 92169ba9c75c962ade5789badb5aa013695c72f817d4ec8db8d1cff49b4690c0 +SIZE (PEAR/HTML_QuickForm_Livesearch-0.3.2.tgz) = 13539 diff --git a/devel/pear-HTML_QuickForm_Livesearch/pkg-descr b/devel/pear-HTML_QuickForm_Livesearch/pkg-descr new file mode 100644 index 000000000000..ffe6ae260e9e --- /dev/null +++ b/devel/pear-HTML_QuickForm_Livesearch/pkg-descr @@ -0,0 +1,9 @@ +This package adds an element to the PEAR::HTML_QuickForm package to dynamically +create an HTML input text element that at every keypressed javascript event, +returns a list of options in a dynamic dropdown select box +(live dropdown select). This element use AJAX (Communication from JavaScript +to your browser without reloading the page). +This type of livesearch is useful when you have a form with a dropdown list +with a large number of row. + +WWW: http://pear.php.net/package/HTML_QuickForm_Livesearch/ |