


LUKE - Access the on-line LUKE redmine
Access the LUKE redmine.
Input:
- opts: web options, like '-browser' (cell or 1 single chain of characters)
(default: none)
Output: None
by Y.PEYSSON CEA/IRFM <yves.peysson@cea.fr> and Joan Decker CEA/IRFM <joan.decker@cea.fr>

0001 function redmine_LUKE(opts) 0002 % LUKE - Access the on-line LUKE redmine 0003 % 0004 % Access the LUKE redmine. 0005 % 0006 % Input: 0007 % 0008 % - opts: web options, like '-browser' (cell or 1 single chain of characters) 0009 % (default: none) 0010 % 0011 % Output: None 0012 % 0013 % 0014 %by Y.PEYSSON CEA/IRFM <yves.peysson@cea.fr> and Joan Decker CEA/IRFM <joan.decker@cea.fr> 0015 % 0016 if nargin == 0, 0017 web('http://82.227.179.204:8080', '-new'); 0018 else 0019 if ischar(opts) & size(opts,1) == 1 0020 opts = {opts}; 0021 end 0022 % 0023 if ~iscell(opts), 0024 error('Inputs in redmine_LUKE must have a cell type.'); 0025 else 0026 webstr = ['''http://82.227.179.204:8080'', ', '''-new''']; 0027 for iopts = 1:length(opts), 0028 webstr = [webstr,', ''',opts{iopts},'''']; 0029 end 0030 % 0031 webstr = ['web(',webstr,');']; 0032 % 0033 eval(webstr); 0034 end 0035 0036 end 0037