I loaded the current trunk into my eclipse juno installation. Everything works fine, except when I want to search an expression by a file search (Ctrl-H) using a filter which includes htm files. At the end of the search always an error box appears with following message:
Problems encountered during text search.
File 'jforum/src/main/resources/templates/default/bookmark_insert.htm' has been skipped, problem while reading: ('${encoding}').
${encoding}
File 'jforum/src/main/resources/templates/default/admin/header.htm' has been skipped, problem while reading: ('${encoding}').
${encoding}
I examined these files, the culprit seems to be the meta tag:
<meta http-equiv="Content-Type" content="text/html; charset=${encoding}" />
in it. I even cannot open the file in eclipse itself (complaining the same). But I also found many other htm files which contain the same or a similar meta tag and which I can open without problems in eclipse and which do not seem to have the problem while searching.
Any ideas how to solve this are welcome!