view extra/cgi/inst/@cgi/subsref.m @ 11254:d00e6b57bc79 octave-forge

spelling
author abarth93
date Tue, 20 Nov 2012 12:50:44 +0000
parents b9b0592d2c87
children ab9524542cb8
line wrap: on
line source

%% -*- texinfo -*-
%% @deftypefn {Function File} {@var{val} =} subsref(@var{cgi},@var{idx})
%% @deftypefnx {Function File} {@var{val} =} getfirst(@var{cgi},@var{name},@var{default})
%% Dot-syntax for returning CGI parmaters
%%
%% This function allows to return CGI parameters with CGI.form.name or CGI.form.('name').
%% The object @var{cgi} was 
%% created using the cgi() constructor.
%% @end deftypefn
%% @seealso{cgi}



function val = subsref(self,idx)

assert(length(idx) == 2)
assert(strcmp(idx(1).type,'.'))
assert(strcmp(idx(1).subs,'form'))
assert(strcmp(idx(2).type,'.'))

val = getfirst(self,idx(2).subs);


% 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/>.