Index: /trunk/webapps/einotebook/spikes/runTimer.py
===================================================================
--- /trunk/webapps/einotebook/spikes/runTimer.py	(revision 375)
+++ /trunk/webapps/einotebook/spikes/runTimer.py	(revision 375)
@@ -0,0 +1,24 @@
+#!/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:
+    # Code executed here
+    time.sleep(1)
+    count += 1
+    # elapsedTime = timedelta(seconds=count)
+    # convert integer into hh:mm:ss format
+    lineout =  "{\"elapsedtime\":\"" + str(count) + "\"}"
+    
+    # write message to file
+    text_file = open("dynamicdata/sim_elapsedtime.json", "w")
+    text_file.write(lineout)
+    text_file.close()
+
+    # print count
+
+
Index: unk/webapps/runTimer.py
===================================================================
--- /trunk/webapps/runTimer.py	(revision 373)
+++ 	(revision )
@@ -1,24 +1,0 @@
-#!/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:
-    # Code executed here
-    time.sleep(1)
-    count += 1
-    # elapsedTime = timedelta(seconds=count)
-    # convert integer into hh:mm:ss format
-    lineout =  "{\"elapsedtime\":\"" + str(count) + "\"}"
-    
-    # write message to file
-    text_file = open("dynamicdata/sim_elapsedtime.json", "w")
-    text_file.write(lineout)
-    text_file.close()
-
-    # print count
-
-
