Update of /cvsroot/webmacro/wiki/src/org/tcdi/opensource/wiki/servlet
In directory sc8-pr-cvs1:/tmp/cvs-serv6752/src/org/tcdi/opensource/wiki/servlet
Modified Files:
Tag: christian
IndexPageAction.java
Log Message:
Removed wrong comments. Hate cut'n-paste...
Index: IndexPageAction.java
===================================================================
RCS file: /cvsroot/webmacro/wiki/src/org/tcdi/opensource/wiki/servlet/Attic/IndexPageAction.java,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** IndexPageAction.java 18 Feb 2003 12:53:01 -0000 1.1.2.1
--- IndexPageAction.java 18 Feb 2003 13:03:16 -0000 1.1.2.2
***************
*** 33,39 ****
/**
! * Builds the list of recently changed WikiPages
*
! * @author e_ridge
*/
public class IndexPageAction implements PageAction {
--- 33,39 ----
/**
! * Builds a nice index page, sorted and linked.
*
! * @author Christian Aust
*/
public class IndexPageAction implements PageAction {
***************
*** 55,59 ****
/**
! * template is the "RecentChangesAction.Template" configuration option
*
* @param wiki Description of the Parameter
--- 55,59 ----
/**
! * template is the "IndexPageAction.Template" configuration option
*
* @param wiki Description of the Parameter
***************
*** 67,71 ****
/**
! * no page name for this action
*
* @param wiki Description of the Parameter
--- 67,71 ----
/**
! * Returns our page name "IndexPage"
*
* @param wiki Description of the Parameter
***************
*** 79,85 ****
/**
! * If it's a GET request, we simply display the login template. If it's a
! * POST request, do process the login request, set the cookie, and redirect
! * to the start page.
*
* @param wiki Description of the Parameter
--- 79,84 ----
/**
! * Builds the list of pages, sorts it and builds a list of all letters from
! * A-Z
*
* @param wiki Description of the Parameter
***************
*** 105,109 ****
}
! // sort it descending by date last modified
Collections.sort(pages,
new Comparator() {
--- 104,108 ----
}
! // sort it ascending, not case sensitive
Collections.sort(pages,
new Comparator() {
|