mirror of
https://github.com/octoleo/plantuml-server.git
synced 2025-01-03 05:00:14 +00:00
Add eps format to proxy
This commit is contained in:
parent
77244844e4
commit
68b819844d
@ -110,6 +110,12 @@ public class OldProxyServlet extends HttpServlet {
|
|||||||
if (format.equals("svg")) {
|
if (format.equals("svg")) {
|
||||||
return FileFormat.SVG;
|
return FileFormat.SVG;
|
||||||
}
|
}
|
||||||
|
if (format.equals("eps")) {
|
||||||
|
return FileFormat.EPS;
|
||||||
|
}
|
||||||
|
if (format.equals("epstext")) {
|
||||||
|
return FileFormat.EPS_TEXT;
|
||||||
|
}
|
||||||
if (format.equals("txt")) {
|
if (format.equals("txt")) {
|
||||||
return FileFormat.ATXT;
|
return FileFormat.ATXT;
|
||||||
}
|
}
|
||||||
|
@ -122,6 +122,12 @@ public class ProxyServlet extends HttpServlet {
|
|||||||
if (format.equals("svg")) {
|
if (format.equals("svg")) {
|
||||||
return FileFormat.SVG;
|
return FileFormat.SVG;
|
||||||
}
|
}
|
||||||
|
if (format.equals("eps")) {
|
||||||
|
return FileFormat.EPS;
|
||||||
|
}
|
||||||
|
if (format.equals("epstext")) {
|
||||||
|
return FileFormat.EPS_TEXT;
|
||||||
|
}
|
||||||
if (format.equals("txt")) {
|
if (format.equals("txt")) {
|
||||||
return FileFormat.UTXT;
|
return FileFormat.UTXT;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user