From: Florian Zschocke Date: Sat, 9 Apr 2022 16:09:51 +0000 (+0200) Subject: doc: Fix links for dependencies that moved from Google Code X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=371aa1aaf53248e5732f6f71c59d535c4dbb4271;p=gitblit.git doc: Fix links for dependencies that moved from Google Code --- diff --git a/src/site/design.mkd b/src/site/design.mkd index 9ef302c1..619880ea 100644 --- a/src/site/design.mkd +++ b/src/site/design.mkd @@ -15,7 +15,7 @@ The following dependencies are bundled with Gitblit. - [Iconic](http://somerandomdude.com/work/iconic) (Creative Commons Share Alike 3.0) - [AngularJS](http://angularjs.org) (MIT) - [Clippy](https://github.com/mojombo/clippy) (MIT) -- [google-code-prettify](http://code.google.com/p/google-code-prettify) (Apache 2.0) +- [google-code-prettify](https://github.com/googlearchive/code-prettify) (Apache 2.0) - [Commons Daemon](http://commons.apache.org/daemon) (Apache 2.0) - [jQuery](https://jquery.org) (MIT) - [flotr2](http://humblesoftware.com/flotr2) (BSD) @@ -38,7 +38,7 @@ The following dependencies are automatically downloaded by Gitblit GO (or alread - [JSch - Java Secure Channel](http://www.jcraft.com/jsch) (BSD) - [Rome](http://rome.dev.java.net) (Apache 1.1) - [jdom](http://www.jdom.org) (Apache-style JDOM license) -- [google-gson](http://code.google.com/google-gson) (Apache 2.0) +- [google-gson](https://github.com/google/gson) (Apache 2.0) - [javamail](http://kenai.com/projects/javamail) (CDDL-1.0, BSD, GPL-2.0, GNU-Classpath) - [Groovy](http://groovy.codehaus.org) (Apache 2.0) - [Lucene](http://lucene.apache.org) (Apache 2.0) @@ -50,14 +50,14 @@ The following dependencies are automatically downloaded by Gitblit GO (or alread - [FreeMarker](http://www.freemarker.org) (modified BSD) - [Waffle](http://dblock.github.io/waffle) (EPL 1.0) - [JNA](https://github.com/twall/jna) (LGPL 2.1) -- [Guava](https://code.google.com/p/guava-libraries) (Apache 2.0) +- [Guava](https://github.com/google/guava) (Apache 2.0) - [libpam4j](https://github.com/kohsuke/libpam4j) (MIT) - [commons-codec](http://commons.apache.org/proper/commons-codec) (Apache 2.0) - [pegdown](https://github.com/sirthias/pegdown) (Apache 2.0) - [jedis](https://github.com/xetorthio/jedis) (MIT) - [Mina SSHD](https://mina.apache.org) (Apache 2.0) - [pf4j](https://github.com/decebals/pf4j) (Apache 2.0) -- [google-guice](https://code.google.com/p/google-guice) (Apache 2.0) +- [google-guice](https://github.com/google/guice) (Apache 2.0) ### Other Build Dependencies - [Fancybox image viewer](http://fancybox.net) (MIT and GPL dual-licensed) diff --git a/src/site/federation.mkd b/src/site/federation.mkd index b802a087..b271cb38 100644 --- a/src/site/federation.mkd +++ b/src/site/federation.mkd @@ -17,7 +17,7 @@ The *Gitblit 0.8.0* federation protocol adds retrieval of teams and referenced p The *Gitblit 0.7.0* federation protocol is incompatible with the 0.6.0 federation protocol because of a change in the way timestamps are formatted. -Gitblit 0.6.0 uses the default [google-gson](http://google-gson.googlecode.com) timestamp serializer which generates locally formatted timestamps. Unfortunately, this creates problems for distributed repositories and distributed developers. Gitblit 0.7.0 corrects this error by serializing dates to the [iso8601](http://en.wikipedia.org/wiki/ISO_8601) standard. As a result 0.7.0 is not compatible with 0.6.0. A partial backwards-compatibility fallback was considered but it would only work one direction and since the federation mechanism is bidirectional it was not implemented. +Gitblit 0.6.0 uses the default [google-gson](https://github.com/google/gson) timestamp serializer which generates locally formatted timestamps. Unfortunately, this creates problems for distributed repositories and distributed developers. Gitblit 0.7.0 corrects this error by serializing dates to the [iso8601](http://en.wikipedia.org/wiki/ISO_8601) standard. As a result 0.7.0 is not compatible with 0.6.0. A partial backwards-compatibility fallback was considered but it would only work one direction and since the federation mechanism is bidirectional it was not implemented. ### Origin Gitblit Instance Requirements @@ -132,7 +132,7 @@ Origin Gitblit instances can not directly track the success or failure status of ### How does it work? (Origin Gitblit Instances) -A pulling Gitblit instance will periodically contact your Gitblit instance and will provide the token as proof that you have granted it federation access. Your Gitblit instance will decide, based on the supplied token, if the requested data should be returned to the pulling Gitblit instance. Gitblit data (user accounts, repository metadata, and server settings) are serialized as [JSON](http://json.org) using [google-gson](http://google-gson.googlecode.com) and returned to the pulling Gitblit instance. Standard Git clone and pull operations are used to transfer commits. +A pulling Gitblit instance will periodically contact your Gitblit instance and will provide the token as proof that you have granted it federation access. Your Gitblit instance will decide, based on the supplied token, if the requested data should be returned to the pulling Gitblit instance. Gitblit data (user accounts, repository metadata, and server settings) are serialized as [JSON](http://json.org) using [google-gson](https://github.com/google/gson) and returned to the pulling Gitblit instance. Standard Git clone and pull operations are used to transfer commits. The federation process executes using an internal administrator account, *$gitblit*. All the normal authentication and authorization processes are used for federation requests. For example, Git commands are authenticated as *$gitblit / token*.