You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by om...@apache.org on 2011/03/04 04:58:04 UTC

svn commit: r1077267 - in /hadoop/common/branches/branch-0.20-security-patches/src/webapps/job: jobqueue_details.jsp jobtracker.jsp

Author: omalley
Date: Fri Mar  4 03:58:04 2011
New Revision: 1077267

URL: http://svn.apache.org/viewvc?rev=1077267&view=rev
Log:
commit e1f41dd333eddeb951de4d168890f4ac2fd8e7d4
Author: Chris Douglas <cd...@apache.org>
Date:   Tue Mar 2 01:48:07 2010 -0800

    MAPREDUCE-1454 from https://issues.apache.org/jira/secure/attachment/12437591/M1454-1y20.patch

Modified:
    hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobqueue_details.jsp
    hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobtracker.jsp

Modified: hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobqueue_details.jsp
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobqueue_details.jsp?rev=1077267&r1=1077266&r2=1077267&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobqueue_details.jsp (original)
+++ hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobqueue_details.jsp Fri Mar  4 03:58:04 2011
@@ -39,7 +39,7 @@ private static final long serialVersionU
 </h1>
 <div>
 Scheduling Information :
-<%= HtmlQuoting.quoteHtmlChars(schedulingInfoString.replaceAll("\n","<br/>")) %>
+<%= HtmlQuoting.quoteHtmlChars(schedulingInfoString).replaceAll("\n","<br/>") %>
 </div>
 <hr/>
 <%

Modified: hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobtracker.jsp
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobtracker.jsp?rev=1077267&r1=1077266&r2=1077267&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobtracker.jsp (original)
+++ hadoop/common/branches/branch-0.20-security-patches/src/webapps/job/jobtracker.jsp Fri Mar  4 03:58:04 2011
@@ -127,7 +127,7 @@ for(JobQueueInfo queue: queues) {
 %>
 <tr>
 <td><a href="jobqueue_details.jsp?queueName=<%=queueName%>"><%=queueName%></a></td>
-<td><%=HtmlQuoting.quoteHtmlChars(schedulingInformation.replaceAll("\n","<br/>")) %>
+<td><%=HtmlQuoting.quoteHtmlChars(schedulingInformation).replaceAll("\n","<br/>") %>
 </td>
 </tr>
 <%