This commit is contained in:
Manfred Karrer 2014-10-15 20:51:00 +02:00
parent 8d95de3de9
commit 9af8a3b8df
2 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<img src="http://bitsquare.io/images/logo.png" width="240"/>
<img src="https://bitsquare.io/images/logo.png" width="240"/>
[![Build Status](https://travis-ci.org/bitsquare/bitsquare.svg?branch=master)](https://travis-ci.org/bitsquare/bitsquare)
@ -14,7 +14,7 @@ There are no central points of control or failure in the Bitsquare network. Ther
Because the fiat money portion of any trade must be transferred via traditional means such as a wire transfer, Bitsquare incorporates first-class support for human arbitration to resolve any errors or disputes.
You can read about all of this and more in the [overview](http://bitsquare.io/images/overview.png), [whitepaper](https://docs.google.com/document/d/1d3EiWZdaM89-P6MVhS53unXv2-pDpSFsN3W4kCGXKgY/edit#), [arbitration](https://docs.google.com/document/d/1LJCRFdtM2Jn2Oiv49qRXwBDG8HZD0Hiedy8tNjErHps/edit) and [risk analysis](https://docs.google.com/document/d/1sHwU7K7C8Nl-fS4Z6X88L-NVJ_WBiKnsSpYpYfyqUXA/edit) documents. Several [screencasts](https://www.youtube.com/playlist?list=PLXvC3iNe_di9bL1A5xyAKI2PzNg8jU092) are available as well.
You can read about all of this and more in the [overview](https://bitsquare.io/images/overview.png), [whitepaper](https://docs.google.com/document/d/1d3EiWZdaM89-P6MVhS53unXv2-pDpSFsN3W4kCGXKgY/edit#), [arbitration](https://docs.google.com/document/d/1LJCRFdtM2Jn2Oiv49qRXwBDG8HZD0Hiedy8tNjErHps/edit) and [risk analysis](https://docs.google.com/document/d/1sHwU7K7C8Nl-fS4Z6X88L-NVJ_WBiKnsSpYpYfyqUXA/edit) documents. Several [screencasts](https://www.youtube.com/playlist?list=PLXvC3iNe_di9bL1A5xyAKI2PzNg8jU092) are available as well.
Status

View File

@ -17,7 +17,6 @@
package io.bitsquare.gui.main.help;
import io.bitsquare.BitSquare;
import io.bitsquare.BitSquareUI;
import java.net.MalformedURLException;
@ -44,8 +43,8 @@ public class Help {
public static void openWindow(HelpId id) {
try {
URL url = new URL("http://bitsquare.io/help.html?" + id);
// URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
URL url = new URL("https://docs.bitsquare.io/0.1.0-SNAPSHOT/userguide/index.html");
// URL url = new URL("https://docs.bitsquare.io/0.1.0-SNAPSHOT/userguide/index.html#" + id);
WebView webView;
if (helpWindow == null) {
helpWindow = new Stage();