Add eps format to proxy
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user