Index: trunk/webapps/runTimer.py
===================================================================
--- trunk/webapps/cptms/runTimer.py	(revision 348)
+++ trunk/webapps/runTimer.py	(revision 373)
@@ -1,6 +1,9 @@
 #!/usr/bin/python
 # Run a timer and save it to a file
+# This allows for isolation testing of einotebook without
+# Sim Mgr having to run.
 import time
 from datetime import timedelta
+print "Starting elapsed timer ..."
 count = 0
 while True:
@@ -8,14 +11,14 @@
     time.sleep(1)
     count += 1
-    elapsedTime = timedelta(seconds=count)
+    # elapsedTime = timedelta(seconds=count)
     # convert integer into hh:mm:ss format
-    lineout =  "{\"clock\":\"" + str(elapsedTime) + "\"}"
+    lineout =  "{\"elapsedtime\":\"" + str(count) + "\"}"
     
     # write message to file
-    text_file = open("sim_clock.json", "w")
+    text_file = open("dynamicdata/sim_elapsedtime.json", "w")
     text_file.write(lineout)
     text_file.close()
 
-    print count
+    # print count
 
 
