Re: Problem with html code inside xml

2008-03-07 Thread Latj
=true stored=true multiValued=true/ - Any help would be appreciate. Thanks in advance. S. Christin -- Jerome Eteve. [EMAIL PROTECTED] http://jerome.eteve.free.fr/ -- View this message in context: http://www.nabble.com/Problem-with-html-code-inside-xml

Re: Problem with html code inside xml

2008-03-07 Thread Reece
this message in context: http://www.nabble.com/Problem-with-html-code-inside-xml-tp12877194p15907551.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Problem with html code inside xml

2008-03-07 Thread Yonik Seeley
On Fri, Mar 7, 2008 at 5:11 PM, Latj [EMAIL PROTECTED] wrote: When I use HTML::Entities to encode my text, I get this error: SEVERE: org.xmlpull.v1.XmlPullParserException: could not resolve entity named 'para' Its complaining about finding: para; in my text. Anyone know why this is

Re: Problem with html code inside xml

2007-10-03 Thread [EMAIL PROTECTED]
well... the xml output has changed and I receive lt;stronggt;hhlt;stronggt; sic! So the problem is not a problem... Thanks Steve Le 3 oct. 07 à 01:09, Chris Hostetter a écrit : : I created a field type: : : fieldType name=htmlTxt class=solr.TextField positionIncrementGap=100

Re: Problem with html code inside xml

2007-10-02 Thread [EMAIL PROTECTED]
Thanks I use this solution: put ![CDATA[ Here my hml code ]] in the xml to be indexed and it works, nothing to change in the xsl. In the schema I use this fieldType fieldType name=html class=solr.TextField positionIncrementGap=100 analyzer tokenizer

Re: Re: Problem with html code inside xml

2007-10-02 Thread ycrux
looking for a simple solution. Thanks in advance cheers Y. Message d'origine De: [EMAIL PROTECTED] Sujet: Re: Problem with html code inside xml Date: Tue, 2 Oct 2007 16:15:26 +0200 A: solr-user@lucene.apache.org Thanks I use this solution: put ![CDATA[ Here my hml code ]] in the xml

Re: Problem with html code inside xml

2007-10-02 Thread Chris Hostetter
: I created a field type: : : fieldType name=htmlTxt class=solr.TextField positionIncrementGap=100 ... : Everything works (the div tags, p tags are removed) but some : strongnnn/strong or br/ tags are style in the text after indexing. i cut/paste that fieldtype into the example

Re: Re: Problem with html code inside xml

2007-10-02 Thread Chris Hostetter
: SimplePostTool: FATAL: Connection error (is Solr running at http://localhost:8983/solr/update ?): java.io.IOException: Server returned HTTP response code: 500 for URL: http://localhost:8983/solr/update : : Is there any way to let Solr to be more verbose than that ? Solr outputs all errors

Problem with html code inside xml

2007-09-25 Thread [EMAIL PROTECTED]
Hello, I've got some problem with html code who is embedded in xml file: Sample source . content stories div class=storyTitle Les débats /div div class=storyIntroductionText Le premier tour des élections

Re: Problem with html code inside xml

2007-09-25 Thread Jérôme Etévé
If I understand, you want to keep the raw html code in solr like that (in your posting xml file): field name=storyFullText html/html /field I think you should encode your content to protect these xml entities: - lt; - gt; - quot; - amp; If you use perl, have a look at HTML::Entities.

Re: Problem with html code inside xml

2007-09-25 Thread Thorsten Scherler
On Tue, 2007-09-25 at 12:06 +0100, Jérôme Etévé wrote: If I understand, you want to keep the raw html code in solr like that (in your posting xml file): field name=storyFullText html/html /field I think you should encode your content to protect these xml entities: - lt; - gt; -