diff options
author | James Moger <james.moger@gitblit.com> | 2011-04-27 21:22:12 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-04-27 21:22:12 -0400 |
commit | f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df (patch) | |
tree | b36da52ab523f1b6af9f00409703edfbfe77ccfe /src/com/gitblit/wicket/pages/SummaryPage.java | |
parent | 3e087ada55f8b0e83b146578b695552db9dc8d97 (diff) | |
download | gitblit-f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df.tar.gz gitblit-f97bf09263fe8ef7ba4dcf231dfe7b8265b1e0df.zip |
Centralized markdown transforms. Moved config ops to GitBlit.
Diffstat (limited to 'src/com/gitblit/wicket/pages/SummaryPage.java')
-rw-r--r-- | src/com/gitblit/wicket/pages/SummaryPage.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/gitblit/wicket/pages/SummaryPage.java b/src/com/gitblit/wicket/pages/SummaryPage.java index 0c4c5953..78a58f77 100644 --- a/src/com/gitblit/wicket/pages/SummaryPage.java +++ b/src/com/gitblit/wicket/pages/SummaryPage.java @@ -57,8 +57,8 @@ public class SummaryPage extends RepositoryPage { }
// repository description
- add(new Label("repositoryDescription", description));
- add(new Label("repositoryOwner", JGitUtils.getRepositoryOwner(r)));
+ add(new Label("repositoryDescription", getRepositoryModel().description));
+ add(new Label("repositoryOwner", getRepositoryModel().owner));
add(WicketUtils.createTimestampLabel("repositoryLastChange", JGitUtils.getLastChange(r), getTimeZone()));
if (metricsTotal == null) {
|