branch develop-5.x updated (86ae55d -> 5176136)
This is an automated email from the git hooks/post-receive script. New change to branch develop-5.x in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from 86ae55d Redimensionnement de l'assistant connexion (Fixes #8851) new 5176136 Forcer l'utilisation de localhost pour le serveur web H2 (Fixes #8765) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 5176136958bb78faf15f3cdf0dadf8a44fc953e5 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 7 16:31:58 2016 +0100 Forcer l'utilisation de localhost pour le serveur web H2 (Fixes #8765) Summary of changes: .../observe/application/swing/ui/actions/StartH2WebServerAction.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop-5.x in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 5176136958bb78faf15f3cdf0dadf8a44fc953e5 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 7 16:31:58 2016 +0100 Forcer l'utilisation de localhost pour le serveur web H2 (Fixes #8765) --- .../observe/application/swing/ui/actions/StartH2WebServerAction.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/StartH2WebServerAction.java b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/StartH2WebServerAction.java index f69e224..ac1bb12 100644 --- a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/StartH2WebServerAction.java +++ b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/StartH2WebServerAction.java @@ -78,8 +78,7 @@ public class StartH2WebServerAction extends AbstractAction { Server server = Server.createWebServer("-webAllowOthers"); server.start(); - - Server.openBrowser(server.getURL()); + Server.openBrowser("http://localhost:" + server.getPort()); // On mémorise l'instance du server dans le contexte applicatif afin de pouvoir la récupérer plus tard, // par exemple lorsque l'on souhaitera arrêter le server. -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm