From a75305bf103568af904028d0bc63e35056f9bc9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjetil=20=C3=98rbekk?= Date: Sat, 4 Sep 2010 11:00:11 -0400 Subject: Fix quote numbers displayed on front page --- html/quotes.jsp | 4 +++- src/lq/Printer.java | 9 ++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/html/quotes.jsp b/html/quotes.jsp index f855044..97e9daf 100644 --- a/html/quotes.jsp +++ b/html/quotes.jsp @@ -65,8 +65,10 @@ if (order == null) { } lq.Printer printer = new lq.Printer(out); +long displayIndex = quotes.size() + 1; for (lq.Quote quote : quotes) { - printer.printQuote(quote); + printer.printQuote(quote, displayIndex); + displayIndex = displayIndex - 1; } %> diff --git a/src/lq/Printer.java b/src/lq/Printer.java index beee449..14d08f9 100644 --- a/src/lq/Printer.java +++ b/src/lq/Printer.java @@ -11,9 +11,16 @@ public class Printer { } public void printQuote(Quote quote) { + printQuote(quote, null); + } + + public void printQuote(Quote quote, Long displayIndex) { + if (displayIndex == null) { + displayIndex = quote.getId(); + } out.println("
"); out.println("" + - "#" + quote.getId() + + "#" + displayIndex + ""+ ", lagt til av " + Strings.escape(quote.getAuthor()) + "
"); -- cgit v1.2.3