Hey list. I am wondering why Abdera isn't escaping all xml entities in text values.
example:
Entry entry = factory.newEntry();
entry.setTitle("something was < & > but this was cool.");
if i then call:
String title = entry.getTitle();
This yields: "something was < & > but this was cool.");
Why isn't the > escaped to > ?
-- Erlend
