Skip to content
Snippets Groups Projects

Port silecs cli to Python

Merged m.nabywaniec requested to merge 70-port-cli-client-to-python into master
3 unresolved threads
Compare and Show latest version
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -10,8 +10,6 @@ import lxml.etree
SILECS_VERSION = "2.3.0"
DESIGN_SHEMA_PATH = "../silecs-model/src/xml/DesignSchema.xsd"
DEPLOY_SHEMA_PATH = "../silecs-model/src/xml/DeploySchema.xsd"
SILECSDESIGN = "silecsdesign"
SILECSDEPLOY = "silecsdeploy"
DESIGN = "design"
@@ -31,6 +29,8 @@ try:
except KeyError:
SILECS_BASE=f"/common/usr/cscofe/silecs/{SILECS_VERSION}"
DESIGN_SHEMA_PATH = f"{SILECS_BASE}/silecs-model/src/xml/DesignSchema.xsd"
DEPLOY_SHEMA_PATH = f"{SILECS_BASE}/silecs-model/src/xml/DeploySchema.xsd"
SILECS_CODEGEN_BASE=f"{SILECS_BASE}/silecs-codegen/xml/"
SILECS_CODEGEN_MIGRATION=f"{SILECS_BASE}/silecs-codegen/xml/migration"
Loading