diff options
author | pab <devnull@localhost> | 2009-05-20 00:23:19 +0000 |
---|---|---|
committer | pab <devnull@localhost> | 2009-05-20 00:23:19 +0000 |
commit | 54b07608d75e950404e11917f55b89cbd0e23bea (patch) | |
tree | bf357cdf8f15da463b5965bc0bc84fb33b577d6a /examples/kml | |
parent | 2951913ea5a395589b6f743f2a7388d823ae34e0 (diff) |
Rename scripts to avoid clobbering user namespace
Diffstat (limited to 'examples/kml')
-rw-r--r-- | examples/kml/genbindings.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/kml/genbindings.sh b/examples/kml/genbindings.sh index 7a155bd..ee4f3d4 100644 --- a/examples/kml/genbindings.sh +++ b/examples/kml/genbindings.sh @@ -8,11 +8,11 @@ mkdir -p raw touch raw/__init__.py # Hack until we get relative URI handling into the import routine -../../scripts/genbind \ +../../scripts/pyxbgen \ -u 'http://schemas.opengis.net/kml/2.2.0/atom-author-link.xsd' \ -p atom \ -r -C -../../scripts/genbind \ +../../scripts/pyxbgen \ -u 'http://docs.oasis-open.org/election/external/xAL.xsd' \ -p xAL \ -r -C @@ -23,14 +23,14 @@ export PYXB_NAMESPACE_PATH # NB: If you add -C to this, Python will blow up from the bug about # pickling heavily recursive structures. Fortunately, we don't need # the content model. -../../scripts/genbind \ +../../scripts/pyxbgen \ -u "${URI}" \ -p "${PREFIX}" \ -r # Except that we do need the content model for Google's extensions. # So this one has to be disabled. -#../../scripts/genbind \ +#../../scripts/pyxbgen \ # -u 'http://code.google.com/apis/kml/schema/kml22gx' \ # -p gx \ # -r |