comparison OrthancFramework/Sources/Toolbox.cpp @ 4234:a38376b80cd1

WebDAV: by-studies and by-patients
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 08 Oct 2020 13:38:44 +0200
parents 4d42408da117
children 785a2713323e
comparison
equal deleted inserted replaced
4233:ca2a55a62c81 4234:a38376b80cd1
1246 (c >= 'a' && c <= 'z') || 1246 (c >= 'a' && c <= 'z') ||
1247 (c >= '0' && c <= '9') || 1247 (c >= '0' && c <= '9') ||
1248 c == '-' || 1248 c == '-' ||
1249 c == '_' || 1249 c == '_' ||
1250 c == '.' || 1250 c == '.' ||
1251 c == '~'); 1251 c == '~' ||
1252 c == '/');
1252 } 1253 }
1253 1254
1254 void Toolbox::UriEncode(std::string& target, 1255 void Toolbox::UriEncode(std::string& target,
1255 const std::string& source) 1256 const std::string& source)
1256 { 1257 {