Has anyone done anything interesting to preserve display values for field names. Ie my users would like to see
Download Speed (MB/sec): 5 As opposed to: ds:5 there are options for doing fancy encoding of field names but those seem less that ideal. What I'd really like to do is at add time: <add> <doc> <field name="foo_dynamic" disp="My Foo">hi</foo> </doc> </add> And then at result time: <str name="foo_dynamic" disp="My Foo">hi</str> I've thought of having custom request handlers save this info away and then add it back in with a customer response writer but this seemed like it might be a more generally useful type of thing to have. Thoughts, ideas? - will