diff options
author | jmg <jmg@FreeBSD.org> | 1997-03-31 11:40:00 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 1997-03-31 11:40:00 +0000 |
commit | 4c98d3c93a9d825dac5ef16cb957513c7212a6a5 (patch) | |
tree | ac21b48ab6adfd8f3d780bae587602b13e390c5a /www | |
parent | 4fbff5b19586c9b27eaf02d96d91dd14a1b16bed (diff) | |
download | FreeBSD-ports-4c98d3c93a9d825dac5ef16cb957513c7212a6a5.zip FreeBSD-ports-4c98d3c93a9d825dac5ef16cb957513c7212a6a5.tar.gz |
A library that makes parsing web forms easy.
This is something that I wrote and is still under developement, but it
does work.
Diffstat (limited to 'www')
-rw-r--r-- | www/cgiparse/Makefile | 15 | ||||
-rw-r--r-- | www/cgiparse/distinfo | 1 | ||||
-rw-r--r-- | www/cgiparse/pkg-comment | 1 | ||||
-rw-r--r-- | www/cgiparse/pkg-descr | 5 | ||||
-rw-r--r-- | www/cgiparse/pkg-plist | 6 |
5 files changed, 28 insertions, 0 deletions
diff --git a/www/cgiparse/Makefile b/www/cgiparse/Makefile new file mode 100644 index 0000000..4ef5ef5 --- /dev/null +++ b/www/cgiparse/Makefile @@ -0,0 +1,15 @@ +# New ports collection makefile for: cgiparse +# Version required: 0.8a +# Date created: 30 March 1997 +# Whom: jmg +# +# $Id$ +# + +DISTNAME= cgiparse-0.8a +CATEGORIES= devel +MASTER_SITES= http://resnet.uoregon.edu/~gurney_j/ + +MAINTAINER= jmg@FreeBSD.ORG + +.include <bsd.port.mk> diff --git a/www/cgiparse/distinfo b/www/cgiparse/distinfo new file mode 100644 index 0000000..c68f968 --- /dev/null +++ b/www/cgiparse/distinfo @@ -0,0 +1 @@ +MD5 (cgiparse-0.8a.tar.gz) = ac0bd61402b1174876b10a0ec0e1c450 diff --git a/www/cgiparse/pkg-comment b/www/cgiparse/pkg-comment new file mode 100644 index 0000000..5021cf1 --- /dev/null +++ b/www/cgiparse/pkg-comment @@ -0,0 +1 @@ +C library to parse CGI Forms diff --git a/www/cgiparse/pkg-descr b/www/cgiparse/pkg-descr new file mode 100644 index 0000000..b0d7c6b --- /dev/null +++ b/www/cgiparse/pkg-descr @@ -0,0 +1,5 @@ +cgiparse is a C library that is used to build cgi's that can parse +web forms. It provides a few utility functions that allow your +cgi's to be easily debuged. + +To parse a cgi form it is as easy as calling cgigetvalue("name"). diff --git a/www/cgiparse/pkg-plist b/www/cgiparse/pkg-plist new file mode 100644 index 0000000..8aeb126 --- /dev/null +++ b/www/cgiparse/pkg-plist @@ -0,0 +1,6 @@ +include/cgi.h +lib/libcgiparse.a +lib/libcgiparse.so.1.0 +man/man3/cgigetvalue.3.gz +man/man3/cgiclose.3.gz +man/man3/cginewquerystr.3.gz |