Latest Version: 0.74-0
Download: CGIwithR.tar.gz
This package allows one to use R scripts as CGI programs for generating dynamic Web content. HTML forms and other mechanisms to submit dynamic requests can be used to provide input to R scripts via the Web to create content that is determined within that R script. Recent changes (May 2014) provide support for handling large amounts of data in a POST submission. via a different CGI handler Rbigpost.cgi.
The latest version introduces some slight user-level incompatibilities
from the previous version. Specifically, if multiple values are
submitted for a parameter (e.g. two or more checkbox elements are
selected in an HTML form), the corresponding formData element
is a character vector containing all of these values, not just the
first. This makes it easier to access them all. The original
mechanism is still available
and can be selected when the package is installed
via the flag --enable-old-style-formdata
for the configure script.
One can do this with a command such as
R CMD INSTALL --configure-args='--enable-old-style-formdata' CGIwithR_0.72.tar.gz