diff options
author | James Moger <james.moger@gitblit.com> | 2013-05-19 19:41:32 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-05-19 19:41:32 -0400 |
commit | 6ef8d7cd37dcf8b742f23d461266ea7e94f0312d (patch) | |
tree | 3e1570ec1c98ff50f99a084e53ccb8dcdbe19550 /src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java | |
parent | 4570856f4a114ae93036554d8b4fb315b8bc5989 (diff) | |
download | gitblit-6ef8d7cd37dcf8b742f23d461266ea7e94f0312d.tar.gz gitblit-6ef8d7cd37dcf8b742f23d461266ea7e94f0312d.zip |
Overhauled navigation and flattened look
Diffstat (limited to 'src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java')
-rw-r--r-- | src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java b/src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java index f7042030..97fac73c 100644 --- a/src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java +++ b/src/main/java/com/gitblit/wicket/pages/EmptyRepositoryPage.java @@ -61,4 +61,9 @@ public class EmptyRepositoryPage extends RootPage { add(new Label("cloneSyntax", MessageFormat.format("git clone {0}", primaryUrl)));
add(new Label("remoteSyntax", MessageFormat.format("git remote add gitblit {0}\ngit push gitblit master", primaryUrl)));
}
+
+ @Override
+ protected Class<? extends BasePage> getRootNavPageClass() {
+ return RepositoriesPage.class;
+ }
}
|