Changes between Version 15 and Version 16 of DynamicDatasources


Ignore:
Timestamp:
04/12/06 17:43:01 (18 years ago)
Author:
grimnes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DynamicDatasources

    v15 v16  
    99Pack these classes up in a jar, write a sensible manifest and put them in ~/.gnowsis-beta/datasources 
    1010 
    11 An example MANIFEST.MF:  
    12  
    13 {{{ 
    14 Manifest-Version: 1.0 
    15 Created-By: 1.4.2_09 (Apple Computer, Inc.) 
    16 Gnowsis-DS-CrawlerFactory: org.gnowsis.data.datasource.rss.RSSCrawlerFactory 
    17 Gnowsis-DS-DataSourceFactory: org.gnowsis.data.datasource.rss.RSSDataSourceFactory 
    18 Gnowsis-DS-ConfigPanel: org.gnowsis.data.datasource.rss.RSSConfigPanel 
    19 Gnowsis-DS-Icon: /org/gnowsis/data/datasource/rss/rssicon.png 
    20 Gnowsis-DS-Label: RSS Datasource 
    21 Gnowsis-DS-Desc: A datasource for crawling RSS feeds. 
    22 }}} 
    23  
    24 Note that blank lines are not allowed.  
    2511 
    2612 
     
    6349   * Remember to add either Data:Name or RDFS:label to your dataobjects, otherwise Gnowsis will display "NO LABEL (default)" which is ugly! 
    6450 * Finally, create a TestMyDataSource class which implements CrawlerHandler and RDFContainerFactory, you don't have to implement many of the many unimplemented methods. This makes testing easier than using all of gnowsis... Look at my example for details.  
     51 
     52= Making your datasource play with Gnowsis =  
     53 
     54== ConfigPanel ==  
     55 
     56== Manifest == 
     57 
     58An example MANIFEST.MF:  
     59 
     60{{{ 
     61Manifest-Version: 1.0 
     62Created-By: 1.4.2_09 (Apple Computer, Inc.) 
     63Gnowsis-DS-CrawlerFactory: org.gnowsis.data.datasource.rss.RSSCrawlerFactory 
     64Gnowsis-DS-DataSourceFactory: org.gnowsis.data.datasource.rss.RSSDataSourceFactory 
     65Gnowsis-DS-ConfigPanel: org.gnowsis.data.datasource.rss.RSSConfigPanel 
     66Gnowsis-DS-Icon: /org/gnowsis/data/datasource/rss/rssicon.png 
     67Gnowsis-DS-Label: RSS Datasource 
     68Gnowsis-DS-Desc: A datasource for crawling RSS feeds. 
     69}}} 
     70 
     71Note that blank lines are not allowed.  
     72 
     73== Deployment == 
     74