|
|
@ -22,6 +22,7 @@ import com.fr.general.Inter; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
import com.fr.stable.Constants; |
|
|
|
import com.fr.stable.Constants; |
|
|
|
import com.fr.stable.StableUtils; |
|
|
|
import com.fr.stable.StableUtils; |
|
|
|
|
|
|
|
import com.fr.stable.StringUtils; |
|
|
|
import com.fr.stable.project.ProjectConstants; |
|
|
|
import com.fr.stable.project.ProjectConstants; |
|
|
|
import com.fr.workspace.WorkContext; |
|
|
|
import com.fr.workspace.WorkContext; |
|
|
|
|
|
|
|
|
|
|
@ -246,8 +247,9 @@ public class HistoryTemplateListPane extends JPanel implements FileOperations, C |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public int contains(String filename) { |
|
|
|
public int contains(String filename) { |
|
|
|
for (int i = 0; i < historyList.size(); i++) { |
|
|
|
for (int i = 0; i < historyList.size(); i++) { |
|
|
|
String historyPath = historyList.get(i).getPath(); |
|
|
|
String historyPath = historyList.get(i).getPath().replaceAll("/", "\\\\"); |
|
|
|
if (ComparatorUtils.equals(historyPath, filename)) { |
|
|
|
//文件路径是全路径,历史路径是reportlets/模板名
|
|
|
|
|
|
|
|
if (filename.endsWith(historyPath)) { |
|
|
|
return i; |
|
|
|
return i; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|