diff src/c/urweb.c @ 2209:0ca11d57c175

Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents cb74460f046a
children ef766ef6e242
line wrap: on
line diff
--- a/src/c/urweb.c	Fri May 30 12:00:44 2014 -0400
+++ b/src/c/urweb.c	Sat May 31 03:08:16 2014 -0400
@@ -1667,16 +1667,11 @@
 }
 
 void uw_recordingStart(uw_context ctx) {
-  // TODO: remove following debug statement.
-  uw_write(ctx, "<!--Recording started here-->");
   ctx->recording = ctx->page.front;
 }
 
 char *uw_recordingRead(uw_context ctx) {
-  char *recording = strdup(ctx->recording);
-  // TODO: remove following debug statement.
-  uw_write(ctx, "<!--Recording read here-->");
-  return recording;
+  return strdup(ctx->recording);
 }
 
 char *uw_Basis_attrifyInt(uw_context ctx, uw_Basis_int n) {