You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Mike Sokolov (JIRA)" <ji...@apache.org> on 2011/06/16 22:12:48 UTC

[jira] [Issue Comment Edited] (SOLR-2490) PropertiesRequestHandler; encode line.separator

    [ https://issues.apache.org/jira/browse/SOLR-2490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13050698#comment-13050698 ] 

Mike Sokolov edited comment on SOLR-2490 at 6/16/11 8:12 PM:
-------------------------------------------------------------

I would recommend using entities for this: &amp;#13;&amp;#10; for CRLF, just &amp;#10; for LF?

If this is processed by an XML parser, that'll already work for free anyway.

      was (Author: sokolov):
    I would recommend using entities for this: &#13;&#10; for CRLF, just &#10; for LF?

If this is processed by an XML parser, that'll already work for free anyway.
  
> 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.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org