diff options
author | cvs2git <cvs2git> | 1998-09-25 08:52:49 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 1998-09-25 08:52:49 +0000 |
commit | b678ed1362b6a8496d5c1cc28130105713834428 (patch) | |
tree | 12cadac5ed336b42861b7df1907fd74c0bda5944 /htdocs/docs/man/CGI.txt | |
parent | 3b43b647bd4709754ead872e7b49cfb1596fdabf (diff) | |
parent | 08f52e31c5f777963d565085d077c9d8d9734e17 (diff) |
This commit was manufactured by cvs2svn to create branch 'freeside_import'.
Diffstat (limited to 'htdocs/docs/man/CGI.txt')
-rw-r--r-- | htdocs/docs/man/CGI.txt | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/htdocs/docs/man/CGI.txt b/htdocs/docs/man/CGI.txt new file mode 100644 index 000000000..54f9b8a6a --- /dev/null +++ b/htdocs/docs/man/CGI.txt @@ -0,0 +1,47 @@ +NAME + FS::CGI - Subroutines for the web interface + +SYNOPSIS + use FS::CGI qw(header menubar idiot eidiot); + + print header( 'Title', '' ); + print header( 'Title', menubar('item', 'URL', ... ) ); + + idiot "error message"; + eidiot "error message"; + +DESCRIPTION + Provides a few common subroutines for the web interface. + +SUBROUTINES + header TITLE, MENUBAR + Returns an HTML header. + + menubar ITEM, URL, ... + Returns an HTML menubar. + + idiot ERROR + Sends headers and an HTML error message. + + eidiot ERROR + Sends headers and an HTML error message, then exits. + +BUGS + Not OO. + + Not complete. + + Uses CGI-modules instead of CGI.pm + +SEE ALSO + the CGI::Base manpage + +HISTORY + subroutines for the HTML/CGI GUI, not properly OO. :( + + ivan@sisd.com 98-apr-16 ivan@sisd.com 98-jun-22 + + lose the background, eidiot ivan@sisd.com 98-sep-2 + + pod ivan@sisd.com 98-sep-12 + |