aboutsummaryrefslogtreecommitdiff
path: root/src/Content.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Content.c')
-rw-r--r--src/Content.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/Content.c b/src/Content.c
index 1e0c647..cbb4279 100644
--- a/src/Content.c
+++ b/src/Content.c
@@ -447,7 +447,7 @@ static int MainPage(const cGH *cctkGH, httpRequest *request, void *data)
"<h2>");
Concat(message, title );
ConcatCString(message,
- "</h2>\n"
+ "</h2>\n"
"<p>This browser is connected to a Cactus simulation which \n"
"contains a web server thorn. This thorn provides information \n"
" and control for the simulation.</p>\n"
@@ -460,7 +460,7 @@ static int MainPage(const cGH *cctkGH, httpRequest *request, void *data)
"</td>\n"
"</tr>\n"
"</table>\n"
- "</div>\n");
+ "</div>\n");
HTTP_SendString(request, message );
@@ -505,15 +505,15 @@ static int MainPage(const cGH *cctkGH, httpRequest *request, void *data)
"<li>Flesh version <span class=\"hilite\"> ");
ConcatCString(message, CCTK_FullVersion() );
ConcatCString(message,
- "</span></li>\n"
+ "</span></li>\n"
"<li>Flesh compiled on <span class=\"hilite\">");
ConcatCString(message, CCTK_CompileDate() );
ConcatCString(message,
- "</span>\n"
+ "</span>\n"
" at <span class=\"hilite\">");
ConcatCString(message, CCTK_CompileTime() );
ConcatCString(message,
- "</span></li>\n");
+ "</span></li>\n");
HTTP_SendString(request, message );
@@ -667,7 +667,7 @@ static int MainPage(const cGH *cctkGH, httpRequest *request, void *data)
SetToCString(message, " <li>Multiprocessor run on " );
ConcatDecimal(message, CCTK_nProcs(cctkGH));
ConcatCString(message, " CPUs</li>\n"
- " <li>Processor 0 running on <span class=\"hilite\">");
+ " <li>Processor 0 running on <span class=\"hilite\">");
ConcatCString(message, host);
ConcatCString(message, "</span></li>\n");
}
@@ -878,7 +878,7 @@ static int ControlPage(const cGH *cctkGH, httpRequest *request, void *data)
HTTP_Send(request,
"<h4> Run Control </h4>\n"
"<p> Select if the run should be paused, running normally, "
- "or terminated.\n"
+ "or terminated.\n"
" You may also single step to the next iteration.</p>\n");
HTTP_Send(request,
@@ -889,36 +889,36 @@ static int ControlPage(const cGH *cctkGH, httpRequest *request, void *data)
"<td><input type=\"radio\" name=\"runstate\" ");
ConcatCString(message, pause ? "checked=\"checked\"" : "");
ConcatCString(message,
- " value=\"PAUSE\" /> PAUSE</td>\n");
+ " value=\"PAUSE\" /> PAUSE</td>\n");
HTTP_SendString(request, message);
SetToCString(message,
"<td><input type=\"radio\" name=\"runstate\" ");
ConcatCString(message, pause ? "checked=\"checked\"" : "");
ConcatCString(message,
- " value=\"RUN\" /> RUN</td>\n");
+ " value=\"RUN\" /> RUN</td>\n");
HTTP_SendString(request, message);
HTTP_Send(request,
"<td><input type=\"radio\" name=\"runstate\" "
- "value=\"TERMINATE\" /> TERMINATE</td>\n");
+ "value=\"TERMINATE\" /> TERMINATE</td>\n");
HTTP_Send(request,
"<td><input type=\"submit\" name=\"step\" "
- "value=\"STEP\" /></td>\n");
+ "value=\"STEP\" /></td>\n");
HTTP_Send(request,
"</tr></table>\n"
"<table>\n"
"<tr><td><input type=\"submit\" value=\"OK\" /></td>\n"
- "<td> <input type=\"reset\" /></td>\n"
+ "<td> <input type=\"reset\" /></td>\n"
"</tr>\n"
"</table>\n");
HTTP_Send(request,
"<h4> Run Until </h4>\n"
"<p> The following parameters allow you to select an iteration\n"
- "number or physical time at which the code will pause.\n"
+ "number or physical time at which the code will pause.\n"
" You may also choose to pause if a particular expression made up\n"
" of grid scalars, simulation time and iteration is true. \n"
" Note that even if 'run' is selected above, the settings here have"
@@ -931,33 +931,33 @@ static int ControlPage(const cGH *cctkGH, httpRequest *request, void *data)
"<td><input type=\"text\" value=\"");
ConcatDecimal(message, until_it );
ConcatCString(message,
- "\" name=\"iteration\" /></td>\n"
+ "\" name=\"iteration\" /></td>\n"
"<td><input type=\"checkbox\" value=\"yes\" ");
ConcatCString(message, until_it_active ? "checked=\"checked\"" : "" );
ConcatCString(message,
- " name=\"until_it_active\" /></td>\n"
+ " name=\"until_it_active\" /></td>\n"
"</tr>\n");
ConcatCString(message,
"<tr><td>Time</td>"
"<td><input type=\"text\" value=\"");
ConcatDouble(message, until_time );
ConcatCString(message,
- "\" name=\"time\" /></td>\n"
+ "\" name=\"time\" /></td>\n"
"<td><input type=\"checkbox\" value=\"yes\" ");
ConcatCString(message, until_time_active ? "checked=\"checked\"" : "" );
ConcatCString(message,
- " name=\"until_time_active\" /></td>\n"
+ " name=\"until_time_active\" /></td>\n"
"</tr>\n");
ConcatCString(message,
"<tr><td>Expression</td>\n"
"<td><input type=\"text\" value=\"");
ConcatCString(message, until_expression );
ConcatCString(message,
- "\" name=\"expression\" /></td>\n"
+ "\" name=\"expression\" /></td>\n"
"<td><input type=\"checkbox\" value=\"yes\" ");
ConcatCString(message, until_expression_active ? " checked=\"checked\"" : "" );
ConcatCString(message,
- " name=\"until_expression_active\" /></td>\n"
+ " name=\"until_expression_active\" /></td>\n"
"</tr>\n");
ConcatCString(message,"</table>\n");
@@ -1228,7 +1228,7 @@ static int ControlTerminationPage(const cGH *cctkGH, httpRequest *request)
ConcatCString(message,
"</span></li>\n"
"<li>Flesh compiled on <span class=\"hilite\"> " __DATE__" </span>\n"
- "at <span class=\"hilite\"> "__TIME__" </span></li>\n");
+ "at <span class=\"hilite\"> "__TIME__" </span></li>\n");
HTTP_SendString(request, message);