Re: [Dspace-tech] disable-output-escaping collection titles

2015-08-01 Thread euler
Hi Terry, I just want to get rid of the string “nbsp;” in the collection titles and so far I'm not been able to apply d-o-e in all the places that it appeared using xsl:template match. I know it's risky but do you think its better to just update this via sql query (ie remove the string “nbsp;”)?

Re: [Dspace-tech] How to find item with strange metadata value of |||

2015-08-01 Thread Kim Shepherd
Hi Alan, that's close, but not quite what I was suggesting: the ||| will not be stored in the database, that's added in when indexing the values to Solr, so I think a SQL query like: select item_id from metadatavalue where metadata_field_id=86 and (text_value='' OR text_value IS NULL); Will be