Automate examples SConscript regarding pName
authorEduardo Ramos Testillano <eduardo.ramos.testillano@gmail.com>
Fri, 25 Jul 2014 15:19:08 +0000 (17:19 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@gmail.com>
Fri, 25 Jul 2014 15:19:08 +0000 (17:19 +0200)
54 files changed:
example/comm/blocker/SConscript
example/comm/brkClient/SConscript
example/comm/client/SConscript
example/comm/codec/SConscript
example/comm/datagramKClient/SConscript
example/comm/datagramRServer/SConscript
example/comm/irkClient/SConscript
example/comm/kClient/SConscript
example/comm/kxClient/SConscript
example/comm/largeBinaryCodec/SConscript
example/comm/rServer/SConscript
example/comm/rrClient/SConscript
example/comm/rrkClient/SConscript
example/comm/server/SConscript
example/core/genLogon/SConscript
example/core/ipManaging/SConscript
example/core/recycler/SConscript
example/core/regularExpression/SConscript
example/core/selectiveTracing/SConscript
example/core/showLogon/SConscript
example/core/sort/SConscript
example/core/sortName/SConscript
example/core/thread/SConscript
example/core/threadManager/SConscript
example/core/trace/SConscript
example/core/zBlock/SConscript
example/dbms.mysql/insert/SConscript
example/dbms.mysql/select/SConscript
example/dbms.mysql/xInsert/SConscript
example/dbms.mysql/xSelect/SConscript
example/dbos/workdir/SConscript
example/diameter/launcher/SConscript
example/diameter/stackManagement/SConscript
example/diameter/tme/SConscript
example/http/buffer/SConscript
example/http/client/SConscript
example/http/echo/SConscript
example/http/kClient/SConscript
example/http/rServer/SConscript
example/http/server/SConscript
example/http/wims20Client/SConscript
example/http/wims20RServer/SConscript
example/http/wims20XClient/SConscript
example/http/wims20XRServer/SConscript
example/http/xmlClient/SConscript
example/http/xmlRServer/SConscript
example/http/xmlSender/SConscript
example/io/reader/SConscript
example/ldap/tSearch/SConscript
example/time/conversor/SConscript
example/timex/ArithmeticHTTPServer/SConscript
example/xml/xmlBasic/SConscript
example/xml/xmlBinary/SConscript
example/xml/xpath/SConscript

index 58f69f7..196656b 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_blocker"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 8577c54..74e81f5 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_brkClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
@@ -13,6 +15,7 @@ for module in modules:
   anna_libs.append ("anna_" + module)
   module = module.replace("_", ".")
   anna_libpaths.append (pwd.replace (pPath, ("source/" + module + "/")))
+pName = "example_comm_brkClient"
 
 anna_rlibs = list(anna_libs)
 anna_rlibs.reverse()
index c857898..d601223 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_client"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 1ea8fb6..196656b 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_codec"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index b0c6fb2..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_datagramKClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index cd069ff..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_datagramRServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 66b4b96..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_irkClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index e72d1d4..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_kClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 2ac2033..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_kxClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 68fdb33..196656b 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_largeBinaryCodec"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index cd9474e..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_rServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index a4472d4..9cb697b 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_rrClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index cd8e353..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_rrkClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 176c16e..1002d3a 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_comm_server"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 875c340..c4beebb 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_genLogon"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 98123e0..56ba20d 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_ipManaging"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 7d32311..56ba20d 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_recycler"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 4223192..56ba20d 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_regularExpression"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index e9e7c4e..c83423c 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_selectiveTracing"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index eb54eed..c4beebb 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_showLogon"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 9b5ee8a..158ed7f 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_sort"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index f54f3cc..5dc00ba 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_sortName"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 52a33ab..5e47b30 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_thread"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 49a0f4c..4db8bdf 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_threadManager"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index c56d68e..5dc00ba 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_trace"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 8204440..58237d0 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_core_zBlock"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 090f079..edb47b5 100644 (file)
@@ -1,7 +1,10 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_dbms_mysql_insert"
+#pName = "example_dbms.mysql_insert"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 
 # Libraries ###############################################################
 # To avoid other libraries accumulation (boost testing, i.e.):
index 605d3da..588eba0 100644 (file)
@@ -1,7 +1,10 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_dbms_mysql_select"
+#pName = "example_dbms.mysql_select"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 
 # Libraries ###############################################################
 # To avoid other libraries accumulation (boost testing, i.e.):
index 94fab0b..a6fa1d4 100644 (file)
@@ -1,7 +1,10 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_dbms.mysql_xInsert"
+#pName = "example_dbms.mysql_xInsert"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index d94e6b1..aa40e7d 100644 (file)
@@ -1,7 +1,10 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_dbms.mysql_xSelect"
+#pName = "example_dbms.mysql_xSelect"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 6bfc676..6fc45ff 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_dbos_workdir"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index dc48870..e20575f 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_diameter_launcher"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 3931b22..22f47b8 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_diameter_stackManagement"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 01bee90..22f47b8 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_diameter_tme"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 6df6ef1..0380398 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_buffer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 063b5a1..3630e02 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_client"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 253aadc..0380398 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_echo"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index e2061cd..1d98554 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_kClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index ba089e1..1d98554 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_rServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 6a52f2a..1d98554 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_server"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 8baf993..0380398 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_wims20Client"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 88ddb44..0380398 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_wims20RServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index d8d52d9..3630e02 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_wims20XClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index b6b9b89..1d98554 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_wims20XRServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 2f9ac83..3630e02 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_xmlClient"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 77f7354..1d98554 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_xmlRServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 5279ed0..0380398 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_http_xmlSender"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index d531cdf..53c2281 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_io_reader"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 1d15b47..879c308 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_ldap_tSearch"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index e0f4481..b6e23dc 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_time_conversor"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index f689494..c172b9c 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_timex_ArithmeticHTTPServer"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 42836c8..5dc00ba 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_xml_xmlBasic"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 7266e25..5dc00ba 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_xml_xmlBinary"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################
index 3671938..5dc00ba 100644 (file)
@@ -1,7 +1,9 @@
 Import ('env')
 
 # Process #################################################################
-pName = "example_xml_xpath"
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
 pPath = pName.replace("_", "/") + "/"
 
 # Anna modules ############################################################