analysis.html has been removed. (More todo entries)

This commit is contained in:
Rsl1122 2017-08-20 13:30:12 +03:00
parent 7161781378
commit 2ace9165cd
2 changed files with 2 additions and 1 deletions

View File

@ -66,6 +66,7 @@ public class DataRequestHandler {
* *
* @return the html * @return the html
*/ */
@Deprecated //analysis.html has been removed //TODO server.html
public String getAnalysisHtml() { public String getAnalysisHtml() {
try { try {
if (!analysisCache.isCached()) { if (!analysisCache.isCached()) {

View File

@ -141,7 +141,7 @@ public class ExportUtility {
return; return;
} }
serverFolder.mkdirs(); serverFolder.mkdirs();
String analysisHtml = HtmlUtils.replacePlaceholders(HtmlUtils.getStringFromResource("analysis.html"), String analysisHtml = HtmlUtils.replacePlaceholders(HtmlUtils.getStringFromResource("analysis.html"), //TODO server.html
PlaceholderUtils.getAnalysisReplaceRules(analysisData)) PlaceholderUtils.getAnalysisReplaceRules(analysisData))
.replace(HtmlUtils.getInspectUrl(""), "../player/"); .replace(HtmlUtils.getInspectUrl(""), "../player/");
File analysisHtmlFile = new File(serverFolder, "index.html"); File analysisHtmlFile = new File(serverFolder, "index.html");