CFEclipse and (missing) BOM marks
In Dreamweaver this is really simple to do, and I've set it to automatically use UTF-8 and include BOM mark on every new page I create.
In Eclipse/CFEclipse however there seems to be no choice for adding BOM marks in your pages. After a while of desperate Googling (this would be crucial if I'm to use CFEclipse as my editor) I came upon a workaround that seems to be working. Not surprisingly the solution was proposed by Paul Hastings.
The solution was found here, where Paul says "each of our coldfusion pages starts with: <cfprocessingdirective pageencoding="utf-8">"
So now I added ...
... to one of the pages containing Norwegian letters and it seems to work.
Now I hate the idea of having to add this to all pages we create, but if Paul Hastings is doing it, then it is probably not a bad idea anyway....


Am I being old-fashioned? Anglo-centric?
Interesting food for (my) thought, anyhow.
--
Adam
Does this not do what I think it does? I thought this managed BOMs.
But it does not manage BOM marks (at least I can't find any references to it).
When you stray from the default encoding in a project, Eclipse starts maintaining a text file under a ".settings" directory, which looks something like:
#Mon Jan 14 16:32:05 GMT 2008
eclipse.preferences.version=1
encoding//controller/8859.txt=ISO-8859-1
encoding//controller/utf8.txt=UTF-8
...and this is the *only* place that such settings are saved, so the setting is not persistent outside of eclipse.
This is all old news to you, I'm sure, but I figured I'd post my findings somewhere, so at least I can find them later.