diff options
author | James Moger <james.moger@gitblit.com> | 2014-10-28 09:43:43 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-10-28 09:43:43 -0400 |
commit | ae5f9539272da20f3dd50c1fef05a15a417def93 (patch) | |
tree | 1757ea3fec2b731fd74a34d1d82ea02342dd4e61 /src | |
parent | be5d1452fa95788fcca760b338416a5d29923a32 (diff) | |
parent | 5e0491c607e53cf9c9161df52c895d85c85f6782 (diff) | |
download | gitblit-ae5f9539272da20f3dd50c1fef05a15a417def93.tar.gz gitblit-ae5f9539272da20f3dd50c1fef05a15a417def93.zip |
Merge release 1.6.2
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/gitblit/manager/PluginManager.java | 4 | ||||
-rw-r--r-- | src/site/siteindex.mkd | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/main/java/com/gitblit/manager/PluginManager.java b/src/main/java/com/gitblit/manager/PluginManager.java index 2ee48558..5e25caa1 100644 --- a/src/main/java/com/gitblit/manager/PluginManager.java +++ b/src/main/java/com/gitblit/manager/PluginManager.java @@ -421,6 +421,10 @@ public class PluginManager implements IPluginManager, PluginStateListener { protected File download(String url, boolean verifyChecksum) throws IOException { File file = downloadFile(url); + if (!verifyChecksum) { + return file; + } + File sha1File = null; try { sha1File = downloadFile(url + ".sha1"); diff --git a/src/site/siteindex.mkd b/src/site/siteindex.mkd index aae25c89..ae954bfa 100644 --- a/src/site/siteindex.mkd +++ b/src/site/siteindex.mkd @@ -22,7 +22,7 @@ <table class="table condensed-table">
<tbody>
<tr><th>License</th><td><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</a></td></tr>
- <tr><th>Sources</th><td><a href="${project.scmUrl}">GitHub</a> & <a href="http://code.google.com/p/gitblit/source/list">GoogleCode</a></td></tr>
+ <tr><th>Sources</th><td><a href="${project.scmUrl}">GitHub</a></td></tr>
<tr><th>Issues</th><td><a href="${project.issuesUrl}">GoogleCode</a></td></tr>
<tr><th>Discussion</th><td><a href="${project.forumUrl}">Gitblit Group</a></td></tr>
<tr><th>Google+</th><td><a href="${project.socialNetworkUrl}">Gitblit+</a></td></tr>
@@ -67,7 +67,7 @@ Gitblit blends elements of GitHub, BitBucket, and Gerrit to provide a streamline ### Easy Remote Management
Administrators can create and manage all repositories, user accounts, and teams from the *Web UI*.
-Administrators can create and manage all repositories, user accounts, and teams from the *JSON RPC interface* using the [Gitblit Manager](http://code.google.com/p/gitblit/downloads/detail?name=%MANAGER%) or your own custom tooling.
+Administrators can create and manage all repositories, user accounts, and teams from the *JSON RPC interface* using the [Gitblit Manager](%GCURL%manager-${project.releaseVersion}.zip) or your own custom tooling.
Administrators can create and manage all repositories, user accounts, and teams from the *command-line* using SSH & the [Powertools plugin](https://github.com/gitblit/gitblit-powertools-plugin).
### Integration with Your Infrastructure
@@ -87,7 +87,7 @@ Administrators can create and manage all repositories, user accounts, and teams ### Backup Strategy
-Gitblit includes a backup mechanism (*federation*) which can be used to backup repositories and, optionally, user accounts, team definitions, server settings, & Groovy push hook scripts from your Gitblit instance to another Gitblit instance or to a [Gitblit Federation Client](http://code.google.com/p/gitblit/downloads/detail?name=%FEDCLIENT%). Similarly, you can use the federation mechanism to aggregate individual workspace Gitblit instances to a common, centralized server.
+Gitblit includes a backup mechanism (*federation*) which can be used to backup repositories and, optionally, user accounts, team definitions, server settings, & Groovy push hook scripts from your Gitblit instance to another Gitblit instance or to a [Gitblit Federation Client](%GCURL%fedclient-${project.releaseVersion}.zip). Similarly, you can use the federation mechanism to aggregate individual workspace Gitblit instances to a common, centralized server.
### Java Runtime Requirement
|