[ https://issues.apache.org/jira/browse/SOLR-2490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13227634#comment-13227634 ]
Stefan Matheis (steffkes) commented on SOLR-2490: ------------------------------------------------- Just FYI -- I've created an hacky workaround for the admin-ui - using an regex to extract the {{line.seperator}}-value from the raw response (which still contains the {{\n}}): https://github.com/steffkes/solr-admin/commit/c68427da9791b1f758c4185853ca8735dc47ec84#diff-0 > PropertiesRequestHandler; encode line.separator > ----------------------------------------------- > > Key: SOLR-2490 > URL: https://issues.apache.org/jira/browse/SOLR-2490 > Project: Solr > Issue Type: Improvement > Components: web gui > Reporter: Stefan Matheis (steffkes) > Priority: Trivial > > Currently, the XML looks like this: > {code}<!-- .. --> > <str name="java.io.tmpdir">/tmp</str> > <str name="line.separator"> > </str> > <str name="java.vm.specification.vendor">Sun Microsystems Inc.</str> > <!-- .. -->{code} > would be good to have this instead: > {code}<!-- .. --> > <str name="java.io.tmpdir">/tmp</str> > <str name="line.separator">\n</str> > <str name="java.vm.specification.vendor">Sun Microsystems Inc.</str> > <!-- .. -->{code} > afterwords we will be able to display to used line seperator -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org