You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/05/20 20:00:31 UTC

[Solr Wiki] Trivial Update of "DataImportHandler" by FergusMcMenemie

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "DataImportHandler" page has been changed by FergusMcMenemie.
The comment on this change is: removal of more obsolete ! chars.
http://wiki.apache.org/solr/DataImportHandler?action=diff&rev1=242&rev2=243

--------------------------------------------------

  ...
  </entity>
  }}}
- It uses the org.apache.solr.analysis.HTML!StripReader class to strip HTML tags out of the field on which it is applied
+ It uses the org.apache.solr.analysis.HTMLStripReader class to strip HTML tags out of the field on which it is applied
  
  '''Attributes'''
  
-  * '''`stripHTML`''' : Boolean value to signal if HTML!StripTransformer should process this field or not.
+  * '''`stripHTML`''' : Boolean value to signal if HTMLStripTransformer should process this field or not.
  
  === ClobTransformer ===
  <!> [[Solr1.4]]
@@ -755, +755 @@

  This is the defaut. The !DataSource must be of type `DataSource<Iterator<Map<String, Object>>>` . !JdbcDataSource can be used with this.
  
  === XPathEntityProcessor ===
- Used when indexing XML type data. The !DataSource must be of type `DataSource<Reader>` . URL!DataSource <!> [[Solr1.4]] or !FileDataSource is commonly used with XPathEntityProcessor.
+ Used when indexing XML type data. The !DataSource must be of type `DataSource<Reader>` . URLDataSource <!> [[Solr1.4]] or !FileDataSource is commonly used with XPathEntityProcessor.
  
  === FileListEntityProcessor ===
  A simple entity processor which can be used to enumerate the list of files from a File System based on some criteria. It does not use a !DataSource. The entity attributes are:
@@ -824, +824 @@

  </entity>
  }}}
  
- Ensure that the dataSource is of type !DataSource<Reader> (!FileDataSource, URL!DataSource)
+ Ensure that the dataSource is of type !DataSource<Reader> (!FileDataSource, URLDataSource)
  
  === LineEntityProcessor ===
  <<Anchor(LineEntityProcessor)>>