[Aimmath-commit] AIM/WEB-INF/java Alice.java,1.6,1.7 MaplePool.java,1.2,1.3
Brought to you by:
gustav_delius,
npstrick
From: <gus...@us...> - 2003-09-01 20:22:31
|
Update of /cvsroot/aimmath/AIM/WEB-INF/java In directory sc8-pr-cvs1:/tmp/cvs-serv25371/WEB-INF/java Modified Files: Alice.java MaplePool.java Log Message: put in some /> to make more xml compliant Index: Alice.java =================================================================== RCS file: /cvsroot/aimmath/AIM/WEB-INF/java/Alice.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Alice.java 1 Sep 2003 14:58:47 -0000 1.6 --- Alice.java 1 Sep 2003 20:22:23 -0000 1.7 *************** *** 267,271 **** err.println("<p>"); err.println("AliceMapleDir was set to '" + AliceMapleDir + "'"); ! err.println("<br>"); err.println(s); err.println("</p>"); --- 267,271 ---- err.println("<p>"); err.println("AliceMapleDir was set to '" + AliceMapleDir + "'"); ! err.println("<br />"); err.println(s); err.println("</p>"); *************** *** 278,282 **** err.println("<p>"); err.println("AliceMapleDir was set to '" + AliceMapleDir + "'"); ! err.println("<br>"); err.println(f.getPath() + " does not exist. This means that the Maple " + --- 278,282 ---- err.println("<p>"); err.println("AliceMapleDir was set to '" + AliceMapleDir + "'"); ! err.println("<br />"); err.println(f.getPath() + " does not exist. This means that the Maple " + *************** *** 315,319 **** err.println("<p>"); err.println("TempDir was set to '" + TempDir + "'"); ! err.println("<br>"); err.println(s); err.println("</p>"); --- 315,319 ---- err.println("<p>"); err.println("TempDir was set to '" + TempDir + "'"); ! err.println("<br />"); err.println(s); err.println("</p>"); *************** *** 343,347 **** err.println("<p>"); err.println("TtHProgram was set to '" + TtHProgram + "'"); ! err.println("<br>"); err.println(s); err.println("</p>"); --- 343,347 ---- err.println("<p>"); err.println("TtHProgram was set to '" + TtHProgram + "'"); ! err.println("<br />"); err.println(s); err.println("</p>"); *************** *** 376,380 **** err.println("<p>"); err.println("MapleProgram was set to '" + MapleProgram + "'"); ! err.println("<br>"); err.println(s); err.println("</p>"); --- 376,380 ---- err.println("<p>"); err.println("MapleProgram was set to '" + MapleProgram + "'"); ! err.println("<br />"); err.println(s); err.println("</p>"); *************** *** 390,394 **** err.println("<p>"); err.println("MaxMapleProcesses was set to " + MaxMapleProcesses); ! err.println("<br>"); err.println("Values less than one are not sensible."); err.println("</p>"); --- 390,394 ---- err.println("<p>"); err.println("MaxMapleProcesses was set to " + MaxMapleProcesses); ! err.println("<br />"); err.println("Values less than one are not sensible."); err.println("</p>"); *************** *** 409,413 **** err.println("<p>"); err.println("The following required parameters are missing:"); ! err.println("<br>"); Enumeration e = missing.elements(); while (e.hasMoreElements()) { --- 409,413 ---- err.println("<p>"); err.println("The following required parameters are missing:"); ! err.println("<br />"); Enumeration e = missing.elements(); while (e.hasMoreElements()) { *************** *** 433,443 **** configError + "<hr noshade>\n<p>\n" + ! "<b>Note:</b><br>\n" + "These messages refer to initialization parameters set in \n" + ! "the file \n<br>\n" + "<font color='green'>" + "<tt><top AIM directory>/WEB-INF/web.xml</tt>" + "</font>" + ! ". \n<br>\n" + "If you need to change these parameters, the approved \n" + "procedure is to create or edit " + --- 433,443 ---- configError + "<hr noshade>\n<p>\n" + ! "<b>Note:</b><br />\n" + "These messages refer to initialization parameters set in \n" + ! "the file \n<br />\n" + "<font color='green'>" + "<tt><top AIM directory>/WEB-INF/web.xml</tt>" + "</font>" + ! ". \n<br />\n" + "If you need to change these parameters, the approved \n" + "procedure is to create or edit " + *************** *** 491,495 **** if (s.length() > 0) { p.println(n + " was set to '" + LogFile + "'"); ! p.print("<br>\n" + s + "\n<br>\n"); } } --- 491,495 ---- if (s.length() > 0) { p.println(n + " was set to '" + LogFile + "'"); ! p.print("<br />\n" + s + "\n<br />\n"); } } *************** *** 745,749 **** out.println("<hr noshade>"); out.println("<form name='aimform' action='Alice' method='POST'>"); ! out.println("<input type='hidden' name='Command' value='ServletMonitor'>"); out.println(maplePool.statusReport()); out.println("<hr noshade>"); --- 745,749 ---- out.println("<hr noshade>"); out.println("<form name='aimform' action='Alice' method='POST'>"); ! out.println("<input type='hidden' name='Command' value='ServletMonitor' />"); out.println(maplePool.statusReport()); out.println("<hr noshade>"); Index: MaplePool.java =================================================================== RCS file: /cvsroot/aimmath/AIM/WEB-INF/java/MaplePool.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MaplePool.java 5 May 2003 05:15:42 -0000 1.2 --- MaplePool.java 1 Sep 2003 20:22:23 -0000 1.3 *************** *** 427,431 **** report.append("</table>\n"); } else { ! report.append("There are no active Maple processes.<br>\n"); } --- 427,431 ---- report.append("</table>\n"); } else { ! report.append("There are no active Maple processes.<br />\n"); } |