This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Missing spaces in HTML output of monitor.c


Hi,

This little patch adds missing spaces in the multi-line HTML strings.

Index: net/httpd/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/httpd/current/ChangeLog,v
retrieving revision 1.12
diff -u -r1.12 ChangeLog
--- net/httpd/current/ChangeLog	9 Mar 2004 10:45:44 -0000	1.12
+++ net/httpd/current/ChangeLog	16 Aug 2004 20:28:33 -0000
@@ -1,3 +1,7 @@
+2004-08-16  Peter Korsgaard <jacmet@sunsite.dk>
+
+	* src/monitor.c: Added missing spaces in multi-line HTML strings.
+
 2004-03-09  Nick Garnett  <nickg@calivar.com>
 
 	* include/httpd.h: 
Index: net/httpd/current/src/monitor.c
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/httpd/current/src/monitor.c,v
retrieving revision 1.5
diff -u -r1.5 monitor.c
--- net/httpd/current/src/monitor.c	21 Oct 2003 18:53:27 -0000	1.5
+++ net/httpd/current/src/monitor.c	16 Aug 2004 20:28:37 -0000
@@ -170,7 +170,7 @@
  */
 
 static char monitor_index_blurb[] =
-"<p>This is the eCos System Monitor. It presents a simple web monitor"
+"<p>This is the eCos System Monitor. It presents a simple web monitor "
 "and control interface for eCos systems.\n"
 "<p>Use the navigation bar at the bottom of each page to explore."
 ;
@@ -321,14 +321,14 @@
  */
 
 static char thread_edit_blurb[] =
-"<p>This table contains an entry for each property of the thread"
+"<p>This table contains an entry for each property of the thread "
 "that you can edit. The properties are:\n"
-"<p><b>State:</b> Change thread's state. The <em>Suspend</em> button"
-"will suspend the thread. The <em>Run</em> button will undo any previous"
-"suspends. The <em>Release</em> button will release the thread out of"
+"<p><b>State:</b> Change thread's state. The <em>Suspend</em> button "
+"will suspend the thread. The <em>Run</em> button will undo any previous "
+"suspends. The <em>Release</em> button will release the thread out of "
 "any sleep it is currently in.\n"
 "<p><b>Priority:</b> Change the thread's priority.\n"
-"<p>Once the new state has been selected, press the <em>Submit</em>"
+"<p>Once the new state has been selected, press the <em>Submit</em> "
 "button to make the change, or <em>Reset</em> to clear it."
 ;
 
@@ -1192,8 +1192,8 @@
 #endif
 
 static char cyg_monitor_instrument_blurb1[] =
-"<p>Use the checkboxes to enable the events to be recorded. Click"
-"the <em>Submit</em> button to start recording. Click the <em>Clear</em>"
+"<p>Use the checkboxes to enable the events to be recorded. Click "
+"the <em>Submit</em> button to start recording. Click the <em>Clear</em> "
 "button to clear all instrumentation and to stop recording."
 ;
 
 
-- 
Bye, Peter Korsgaard

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]