view extra/cgi/inst/@cgi/getlist.m @ 11248:cc196189bd61 octave-forge

add some doc
author abarth93
date Mon, 19 Nov 2012 21:24:06 +0000
parents f13ca602f603
children b9b0592d2c87
line wrap: on
line source

%% -*- texinfo -*-
%% @deftypefn {Function File} {@var{vals} =} getlist(@var{cgi},@var{name})
%% Returns all CGI parameters with the given @var{name}. The object @var{cgi} was 
%% created using the cgi() constructor.
%% @end deftypefn
%% @seealso{cgi}

function vals = getlist(cgi,name)

i = find(strcmp(cgi.params,name));
vals = cgi.vals(i);


% Copyright (C) 2012 Alexander Barth <barth.alexander@gmail.com>
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; If not, see <http://www.gnu.org/licenses/>.