summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 43f848b)
raw | patch | inline | side by side (parent: 43f848b)
author | theadib <theadib@users.sourceforge.net> | |
Fri, 28 Mar 2008 00:01:10 +0000 (00:01 +0000) | ||
committer | theadib <theadib@users.sourceforge.net> | |
Fri, 28 Mar 2008 00:01:10 +0000 (00:01 +0000) |
src/extension/implementation/script.cpp | patch | blob | history |
index 69f8cec533db017e52bddfbdb011c4888dfdf29b..b395f6f1d648c97f8099dca97b51e5ecbe555c03 100644 (file)
resolveInterpreterExecutable(interpretstr);
command.insert(command.end(), interpretstr);
}
+ Glib::ustring tmp = "\"";
+ tmp += solve_reldir(child_repr);
+ tmp += "\"";
- command.insert(command.end(), solve_reldir(child_repr));
+ command.insert(command.end(), tmp);
}
if (!strcmp(child_repr->name(), "helper_extension")) {
helper_extension = sp_repr_children(child_repr)->content();
//std::cout << "first quote " << first_quote << std::endl;
if((first_quote != std::string::npos) && (first_quote == 0)) {
- size_t next_quote = param_str.find_first_of('"', first_quote);
+ size_t next_quote = param_str.find_first_of('"', first_quote + 1);
//std::cout << "next quote " << next_quote << std::endl;
if(next_quote != std::string::npos) {
//std::cout << "now split " << next_quote << std::endl;
- //std::cout << "now split " << param_str.substr(1, next_quote) << std::endl;
+ //std::cout << "now split " << param_str.substr(1, next_quote - 1) << std::endl;
//std::cout << "now split " << param_str.substr(next_quote + 1) << std::endl;
- std::string part_str = param_str.substr(1, next_quote);
+ std::string part_str = param_str.substr(1, next_quote - 1);
if(part_str.size() > 0)
argv.push_back(part_str);
param_str = param_str.substr(next_quote + 1);
}
+ else {
+ if(param_str.size() > 0)
+ argv.push_back(param_str);
+ param_str = "";
+ }
+
}
else if(first_space != std::string::npos) {
//std::cout << "now split " << first_space << std::endl;