James Moger
2011-05-26 17c417dad5c7be28df4b6e1fd25ec56b484faaff
src/com/gitblit/wicket/pages/TagPage.java
@@ -1,3 +1,18 @@
/*
 * Copyright 2011 gitblit.com.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.gitblit.wicket.pages;
import java.util.List;
@@ -19,8 +34,8 @@
      super(params);
      Repository r = getRepository();
      RevCommit c = getCommit();
      List<RefModel> tags = JGitUtils.getTags(r, -1);
      RevCommit c = JGitUtils.getCommit(r, objectId);
      RefModel tagRef = null;
      // determine tag
@@ -33,16 +48,21 @@
      if (tagRef == null) {
         // point to commit
         add(new LinkPanel("commit", "title", c.getShortMessage(), CommitPage.class, newCommitParameter()));
         add(new LinkPanel("tagId", "list", c.getName(), CommitPage.class, newCommitParameter(c.getName())));
         add(new LinkPanel("commit", "title", c.getShortMessage(), CommitPage.class,
               newCommitParameter()));
         add(new LinkPanel("tagId", "list", c.getName(), CommitPage.class,
               newCommitParameter(c.getName())));
      } else {
         // TODO commit or tree or blob?
         add(new LinkPanel("commit", "title", tagRef.getDisplayName(), CommitPage.class, newCommitParameter()));
         add(new LinkPanel("tagId", "list", c.getName(), CommitPage.class, newCommitParameter(c.getName())));
         add(new LinkPanel("commit", "title", tagRef.displayName, CommitPage.class,
               newCommitParameter()));
         add(new LinkPanel("tagId", "list", c.getName(), CommitPage.class,
               newCommitParameter(c.getName())));
      }
      add(createPersonPanel("tagAuthor", c.getAuthorIdent(), SearchType.AUTHOR));
      add(WicketUtils.createTimestampLabel("tagDate", c.getAuthorIdent().getWhen(), getTimeZone()));
      add(WicketUtils
            .createTimestampLabel("tagDate", c.getAuthorIdent().getWhen(), getTimeZone()));
      addFullText("fullMessage", c.getFullMessage(), true);
   }