summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/pages/EmptyRepositoryPage.html
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2011-12-09 08:50:18 -0500
committerJames Moger <james.moger@gitblit.com>2011-12-09 08:50:18 -0500
commit82df524570e7bf27953b14f4797ff04daf89cc3a (patch)
tree43382ef0c584ff0ca9cc3b9383a16d54e3964139 /src/com/gitblit/wicket/pages/EmptyRepositoryPage.html
parentfe24a0be919653d9e502f7729d9a804f2e28435d (diff)
downloadgitblit-82df524570e7bf27953b14f4797ff04daf89cc3a.tar.gz
gitblit-82df524570e7bf27953b14f4797ff04daf89cc3a.zip
Implemented empty repository page (issue 31)
Diffstat (limited to 'src/com/gitblit/wicket/pages/EmptyRepositoryPage.html')
-rw-r--r--src/com/gitblit/wicket/pages/EmptyRepositoryPage.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/com/gitblit/wicket/pages/EmptyRepositoryPage.html b/src/com/gitblit/wicket/pages/EmptyRepositoryPage.html
new file mode 100644
index 00000000..4f0b9bdb
--- /dev/null
+++ b/src/com/gitblit/wicket/pages/EmptyRepositoryPage.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
+ xml:lang="en"
+ lang="en">
+
+<wicket:head>
+ <link href="markdown.css" type="text/css" rel="stylesheet" />
+</wicket:head>
+
+<body>
+<wicket:extend>
+
+ <!-- markdown message -->
+ <div class="markdown" style="margin-top:-15px;padding-bottom:10px;">
+ <h2>Empty Repository</h2>
+ <p></p>
+ <span wicket:id="repository" style="font-weight: bold;">[repository]</span> is an empty repository and can not be viewed by Gitblit.
+ <p></p>
+ Please push some commits to <span wicket:id="pushurl"></span>
+ <p></p>
+ <h3>Git Command-Line Syntax</h3>
+ <pre wicket:id="syntax"></pre>
+ <p></p>
+ <h3>Learn Git</h3>
+ If you are lost or don't know what to do with this information, consider reviewing the excellent <a href="http://progit.org/book" target="_blank">Pro Git</a> book for a better understanding on how to use Git.
+ <p></p>
+ <h4>Open Source Git Clients</h4>
+ <ul>
+ <li><a href="http://git-scm.com">Git</a> - the official, command-line Git</li>
+ <li><a href="http://tortoisegit.googlecode.com">TortoiseGit</a> - Windows file explorer integration (requires official, command-line Git)</li>
+ <li><a href="http://eclipse.org/egit">Eclipse/EGit</a> - Git for the Eclipse IDE (based on JGit, like Gitblit)</li>
+ </ul>
+ <p></p>
+ <h4>Commercial Git Clients</h4>
+ <ul>
+ <li><a href="http://www.syntevo.com/smartgit">SmartGit</a> - Java application (requires official, command-line Git)</li>
+ </ul>
+ </div>
+</wicket:extend>
+</body>
+</html> \ No newline at end of file