Skip to content

Commit

Permalink
Update DirectoryListing.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarg-harness authored Aug 5, 2021
1 parent 9a22a28 commit a88e617
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public boolean process(HttpRequest request, HttpResponse response) {

private void appendLink(String fileName, String uri, PrintWriter writer) {
// writer.append(String.format("<li>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9990;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9999;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
// writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:yellow;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));

}
Expand Down

0 comments on commit a88e617

Please sign in to comment.