diff --git a/contrib/onelab/OnelabClients.cpp b/contrib/onelab/OnelabClients.cpp index 9ef46c4d267f15ae92698e5a21e01bbe61e3b444..d11c79cc40ae86e2a430bf1dfa2d2e34114a648c 100644 --- a/contrib/onelab/OnelabClients.cpp +++ b/contrib/onelab/OnelabClients.cpp @@ -1406,8 +1406,8 @@ std::string QuoteExecPath(const std::string &in) std::string removeBlanks(const std::string &in) { - size_t pos0=in.find_first_not_of(" "); - size_t pos=in.find_last_not_of(" "); + size_t pos0=in.find_first_not_of(" \t"); + size_t pos=in.find_last_not_of(" \t"); if( (pos0 != std::string::npos) && (pos != std::string::npos)) return in.substr(pos0, pos-pos0+1); else diff --git a/contrib/onelab/OnelabMessage.cpp b/contrib/onelab/OnelabMessage.cpp index be750799dd4fdb0738f48dee9d7e7b0a9e318e8a..ee827c048fb9ea8b104a97f67d4d573efb785100 100644 --- a/contrib/onelab/OnelabMessage.cpp +++ b/contrib/onelab/OnelabMessage.cpp @@ -315,6 +315,7 @@ void OLMsg::SetOnelabString(std::string name, std::string val, bool visible) } strings[0].setValue(val); strings[0].setVisible(visible); + strings[0].setAttribute("notInDb","True"); _onelabClient->set(strings[0]); } } diff --git a/contrib/onelab/OnelabParser.cpp b/contrib/onelab/OnelabParser.cpp index e6b23a99cae22898cffda9df986f6731c20abcf4..c72997b374283b82b16deffd157b2db3202e2a7a 100644 --- a/contrib/onelab/OnelabParser.cpp +++ b/contrib/onelab/OnelabParser.cpp @@ -560,8 +560,8 @@ void localSolverClient::parse_sentence(std::string line) { val=atof(resolveGetVal(arguments[0]).c_str()); numbers[0].setValue(val); } - else if(arguments[0].empty()) // resets read only parameters - numbers[0].setValue(val); + // else if(arguments[0].empty()) // resets read only parameters + // numbers[0].setValue(val); if(arguments.size()>2) numbers[0].setLabel(unquote(arguments[2])); @@ -577,6 +577,7 @@ void localSolverClient::parse_sentence(std::string line) { } else if(!action.compare("string")) { // syntax: paramName.string(val,path,help) + std::string val = ""; if(arguments.size()>1) name.assign(FixOLPath(arguments[1]) + name); // append path _parameters.insert(name); @@ -585,7 +586,12 @@ void localSolverClient::parse_sentence(std::string line) { if(strings.empty()){ strings.resize(1); strings[0].setName(name); - std::string val=resolveGetVal(arguments[0]); + if(arguments[0].empty()){ + strings[0].setReadOnly(true); + strings[0].setNeverChanged(true); + } + else + std::string val=resolveGetVal(arguments[0]); strings[0].setValue(val); } // choices list is reset