Index: openacs-4/packages/proctoring-support/tcl/test/proctoring-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/tcl/test/Attic/proctoring-test-procs.tcl,v diff -u -N -r1.1.2.17 -r1.1.2.18 --- openacs-4/packages/proctoring-support/tcl/test/proctoring-test-procs.tcl 9 Sep 2022 11:32:59 -0000 1.1.2.17 +++ openacs-4/packages/proctoring-support/tcl/test/proctoring-test-procs.tcl 13 Dec 2022 15:29:20 -0000 1.1.2.18 @@ -150,8 +150,7 @@ set key a3e85dcad0cd6a6e2f55e77399e4c9caf47807d760402d6b740017a9f0b2a197 set hash 6f3edc0ef5a56879eba206a7debb3fb0585ebb1f2423ebc10a1afce991edfbcd set url https://learn-a.wu.ac.at:8081/dotlrn/classes/tlf/testkurs.17s/ - set conf_file [ad_tmpnam] - set wfd [open $conf_file w] + set wfd [ad_opentmpfile conf_file] puts $wfd abcd close $wfd set conf_file_hash [ns_md file $conf_file] @@ -211,15 +210,13 @@ } { set user1 1 set object1 1 - set file1 [ad_tmpnam] - set wfd [open $file1 w] + set wfd [ad_opentmpfile file1] puts $wfd abcd close $wfd set user2 2 set object2 2 - set file2 [ad_tmpnam] - set wfd [open $file2 w] + set wfd [ad_opentmpfile file2] puts $wfd efgh close $wfd @@ -273,8 +270,7 @@ proctoring_artifact_store { Test ::proctoring::artifact::store } { - set file [ad_tmpnam].test - set wfd [open $file w] + set wfd [ad_opentmpfile file *.test] puts $wfd 1234 close $wfd Index: openacs-4/packages/proctoring-support/lib/examination-statement-export.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/lib/Attic/examination-statement-export.tcl,v diff -u -N -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/proctoring-support/lib/examination-statement-export.tcl 21 Aug 2020 11:34:54 -0000 1.1.2.2 +++ openacs-4/packages/proctoring-support/lib/examination-statement-export.tcl 13 Dec 2022 15:30:51 -0000 1.1.2.3 @@ -23,8 +23,7 @@ }] # Write the data to a file -set tmpfile [ad_tmpnam] -set f [open $tmpfile w] +set f [ad_opentmpfile tmpfile] puts $f [csv::joinlist $acceptances ";"] close $f