changeset 11247:f13ca602f603 octave-forge

copyright info
author abarth93
date Mon, 19 Nov 2012 21:08:01 +0000
parents 2c957dfa0d81
children cc196189bd61
files extra/cgi/inst/@cgi/cgi.m extra/cgi/inst/@cgi/getfirst.m extra/cgi/inst/@cgi/getlist.m extra/cgi/inst/@cgi/subsref.m
diffstat 4 files changed, 63 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/extra/cgi/inst/@cgi/cgi.m	Mon Nov 19 21:05:28 2012 +0000
+++ b/extra/cgi/inst/@cgi/cgi.m	Mon Nov 19 21:08:01 2012 +0000
@@ -62,3 +62,19 @@
     i = i+1;
   end
 end
+
+
+% 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/>.
\ No newline at end of file
--- a/extra/cgi/inst/@cgi/getfirst.m	Mon Nov 19 21:05:28 2012 +0000
+++ b/extra/cgi/inst/@cgi/getfirst.m	Mon Nov 19 21:08:01 2012 +0000
@@ -16,3 +16,19 @@
     error('CGI parameter %s was not provided',name);
   end
 end
+
+
+% 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/>.
\ No newline at end of file
--- a/extra/cgi/inst/@cgi/getlist.m	Mon Nov 19 21:05:28 2012 +0000
+++ b/extra/cgi/inst/@cgi/getlist.m	Mon Nov 19 21:08:01 2012 +0000
@@ -5,3 +5,19 @@
 
 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/>.
\ No newline at end of file
--- a/extra/cgi/inst/@cgi/subsref.m	Mon Nov 19 21:05:28 2012 +0000
+++ b/extra/cgi/inst/@cgi/subsref.m	Mon Nov 19 21:08:01 2012 +0000
@@ -9,3 +9,18 @@
 
 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/>.
\ No newline at end of file