summaryrefslogtreecommitdiff
path: root/cpp/config/makeprops.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-12-18 17:06:44 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-12-18 17:06:44 +0000
commitd07fdae285690f699a70f97f36232e516dcad2bc (patch)
treec239def689c5e6cc53ac76dbe3e60ec11c306964 /cpp/config/makeprops.py
parentFixed tryLock() comment (diff)
downloadice-d07fdae285690f699a70f97f36232e516dcad2bc.tar.bz2
ice-d07fdae285690f699a70f97f36232e516dcad2bc.tar.xz
ice-d07fdae285690f699a70f97f36232e516dcad2bc.zip
Object adapter properties now prefixed by "Ice.OA."
Diffstat (limited to 'cpp/config/makeprops.py')
-rw-r--r--cpp/config/makeprops.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/config/makeprops.py b/cpp/config/makeprops.py
index cbf1b89ecb1..518be25a330 100644
--- a/cpp/config/makeprops.py
+++ b/cpp/config/makeprops.py
@@ -221,11 +221,11 @@ def writeEntry(lang, label, entry):
file.write(" \"" + label + '.' + string.replace(entry, "<any>", "*") + "\",\n")
elif lang == "java":
pattern = string.replace(entry, ".", "\\\\.")
- pattern = string.replace(pattern, "<any>", "[^\\\\s.]+")
+ pattern = string.replace(pattern, "<any>", "[^\\\\s]+")
file.write(" " + "\"^" + label + "\\\\." + pattern + "$\",\n")
elif lang == "cs":
pattern = string.replace(entry, ".", "\\.")
- pattern = string.replace(pattern, "<any>", "[^\\s.]+")
+ pattern = string.replace(pattern, "<any>", "[^\\s]+")
file.write(" " + "@\"^" + label + "\\." + pattern + "$\",\n")
def processFile(lang):