Skip to content

Commit

Permalink
11.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alderg committed Jul 23, 2019
1 parent 7255a62 commit b411180
Show file tree
Hide file tree
Showing 14 changed files with 306 additions and 270 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
23-JUL-2019: 11.0.3

- Fixes handling of repository paths in GitLab
- Ignores hidden cells for selectAll
- Uses mxGraph 3.7.5 beta 5

22-JUL-2019: 11.0.2

- Replaces alt+click with shift+click in ChromeOS
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.2
11.0.3
4 changes: 2 additions & 2 deletions etc/mxgraph/mxClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/java/com/mxgraph/online/AbsAuthServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected void doGet(HttpServletRequest request,
}
}

if (e.getMessage().contains("401"))
if (e.getMessage() != null && e.getMessage().contains("401"))
{
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
}
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/com/mxgraph/online/ConverterServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
Expand All @@ -27,6 +29,9 @@ public class ConverterServlet extends HttpServlet
{
private static final long serialVersionUID = -5084595244442555865L;

private static final Logger log = Logger
.getLogger(HttpServlet.class.getName());

private static final int MAX_DIM = 5000;
private static final double EMF_10thMM2PXL = 26.458;
private static final String API_KEY_FILE_PATH = "/WEB-INF/cloud_convert_api_key";
Expand Down Expand Up @@ -69,6 +74,8 @@ private int fromByteArray(byte[] bytes, int start)
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
log.log(Level.CONFIG, "EMF-CONVERT: Request from " + request.getHeader("referer"));

readApiKey();

String inputformat = null, outputformat = null, fileName = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CACHE MANIFEST

# THIS FILE WAS GENERATED. DO NOT MODIFY!
# 07/22/2019 01:10 PM
# 07/23/2019 03:26 PM

app.html
index.html?offline=1
Expand Down
Loading

0 comments on commit b411180

Please sign in to comment.