Fix several minor issues.

This commit is contained in:
Paulo Veiga 2018-09-16 12:29:19 -07:00
parent 146e84d790
commit 752aff4e5f
3 changed files with 8 additions and 2 deletions

View File

@ -8,7 +8,7 @@ The goal of this project is to provide a high quality product that can be deploy
The following products must be installed: The following products must be installed:
* Java Development Kit 7 or higher ([http://www.oracle.com/technetwork/java/javase/downloads/index.html]) * Java Development Kit 8 or higher ([http://www.oracle.com/technetwork/java/javase/downloads/index.html])
* Maven 3.x or higher ([http://maven.apache.org/]) * Maven 3.x or higher ([http://maven.apache.org/])
### Compiling ### Compiling
@ -49,6 +49,10 @@ To test the javascript frontend you then do:
Now open a browser using the URL http://localhost:8000/wise-editor/src/main/webapp/ Now open a browser using the URL http://localhost:8000/wise-editor/src/main/webapp/
## Maintenance
## Members ## Members
### Founders ### Founders
@ -70,3 +74,4 @@ Now open a browser using the URL http://localhost:8000/wise-editor/src/main/weba
The source code is Licensed under the WiseMapping Open License, Version 1.0 (the “License”); The source code is Licensed under the WiseMapping Open License, Version 1.0 (the “License”);
You may obtain a copy of the License at: [https://wisemapping.atlassian.net/wiki/display/WS/License] You may obtain a copy of the License at: [https://wisemapping.atlassian.net/wiki/display/WS/License]

View File

@ -576,6 +576,7 @@
<configuration> <configuration>
<baseAppFirst>false</baseAppFirst> <baseAppFirst>false</baseAppFirst>
<stopKey>foo</stopKey> <stopKey>foo</stopKey>
<nonBlocking>true</nonBlocking>
<stopPort>9999</stopPort> <stopPort>9999</stopPort>
<war>${project.build.directory}/wisemapping.war</war> <war>${project.build.directory}/wisemapping.war</war>
<reload>automatic</reload> <reload>automatic</reload>

View File

@ -49,7 +49,7 @@
<div class="col-md-10 col-md-offset-2"> <div class="col-md-10 col-md-offset-2">
<c:if test="${requestScope.recaptchaEnabled}"> <c:if test="${requestScope.recaptchaEnabled}">
<div class="g-recaptcha" data-sitekey="${requestScope.recaptchaSiteKey}"></div> <div class="g-recaptcha" data-sitekey="${requestScope.recaptchaSiteKey}"></div>
<p>${requestScope.captcha}</p> <p cssClass="errorMsg">${requestScope.captcha}</p>
</c:if> </c:if>
</div> </div>
</div> </div>