~ubuntu-branches/debian/squeeze/tomcat6/squeeze

« back to all changes in this revision

Viewing changes to java/org/apache/catalina/manager/StatusTransformer.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-02-12 14:17:29 UTC
  • Revision ID: james.westby@ubuntu.com-20110212141729-wtmnd0bl5dqya2s0
Tags: 6.0.28-9+squeeze1
* Team upload.
* Update Vcs-* fields in debian/control to track security branch.
* Add patches for CVE-2011-0534, CVE-2010-3718, CVE-2011-0013 
  Thanks to Moritz Muehlenhoff (Closes: #612257)

Show diffs side-by-side

added added

removed removed

Lines of Context:
575
575
                }
576
576
 
577
577
                writer.print("<a href=\"#" + (count++) + ".0\">");
578
 
                writer.print(webModuleName);
 
578
                writer.print(filter(webModuleName));
579
579
                writer.print("</a>");
580
580
                if (iterator.hasNext()) {
581
581
                    writer.print("<br>");
650
650
            }
651
651
 
652
652
            writer.print("<h1>");
653
 
            writer.print(name);
 
653
            writer.print(filter(name));
654
654
            writer.print("</h1>");
655
655
            writer.print("</a>");
656
656
 
778
778
                mBeanServer.invoke(objectName, "findMappings", null, null);
779
779
            
780
780
            writer.print("<h2>");
781
 
            writer.print(servletName);
 
781
            writer.print(filter(servletName));
782
782
            if ((mappings != null) && (mappings.length > 0)) {
783
783
                writer.print(" [ ");
784
784
                for (int i = 0; i < mappings.length; i++) {
785
 
                    writer.print(mappings[i]);
 
785
                    writer.print(filter(mappings[i]));
786
786
                    if (i < mappings.length - 1) {
787
787
                        writer.print(" , ");
788
788
                    }