You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by og...@apache.org on 2011/06/01 15:43:47 UTC

svn commit: r1130152 - in /incubator/stanbol/trunk/entityhub/indexing: core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ core/src/test/resources/indexerTests/dataIterating/indexing/config/ core/src/test/resources/indexerTests/idIterating/i...

Author: ogrisel
Date: Wed Jun  1 13:43:47 2011
New Revision: 1130152

URL: http://svn.apache.org/viewvc?rev=1130152&view=rev
Log:
more typo fix in config filename + switch to lowercase

Added:
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/dataIterating/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/dataIterating/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/idIterating/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/idIterating/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/simple/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/simple/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/withSolrConf/indexing/config/minincoming.properties
      - copied unchanged from r1130142, incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/withSolrConf/indexing/config/minIncomming.properties
Removed:
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/dataIterating/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/indexerTests/idIterating/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/simple/indexing/config/minIncomming.properties
    incubator/stanbol/trunk/entityhub/indexing/destination/solryard/src/test/resources/testConfigs/withSolrConf/indexing/config/minIncomming.properties
Modified:
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ConfigTest.java
    incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/indexing.properties
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/indexing.properties

Modified: incubator/stanbol/trunk/entityhub/indexing/core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ConfigTest.java
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ConfigTest.java?rev=1130152&r1=1130151&r2=1130152&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ConfigTest.java (original)
+++ incubator/stanbol/trunk/entityhub/indexing/core/src/test/java/org/apache/stanbol/entityhub/indexing/core/ConfigTest.java Wed Jun  1 13:43:47 2011
@@ -114,7 +114,7 @@ public class ConfigTest {
         assertTrue("Config File for the RangeNormaliser not copied",
             new File(config.getConfigFolder(),"range.properties").isFile());
         assertTrue("Config File for the MinScoreNormalizer not copied",
-            new File(config.getConfigFolder(),"minIncomming.properties").isFile());
+            new File(config.getConfigFolder(),"minincoming.properties").isFile());
         //now test if the configuration was parsed correctly
         ScoreNormaliser testNormaliser = normaliser;
         assertNotNull(testNormaliser);

Modified: incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/indexing.properties
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/indexing.properties?rev=1130152&r1=1130151&r2=1130152&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/indexing.properties (original)
+++ incubator/stanbol/trunk/entityhub/indexing/core/src/test/resources/testConfigs/simple/indexing/config/indexing.properties Wed Jun  1 13:43:47 2011
@@ -1,7 +1,7 @@
 name=simple
 description=Simple Configuration
 
-scoreNormalizer=org.apache.stanbol.entityhub.indexing.core.normaliser.RangeNormaliser,config:range;org.apache.stanbol.entityhub.indexing.core.normaliser.NaturalLogNormaliser;org.apache.stanbol.entityhub.indexing.core.normaliser.MinScoreNormalizer,config:minIncomming
+scoreNormalizer=org.apache.stanbol.entityhub.indexing.core.normaliser.RangeNormaliser,config:range;org.apache.stanbol.entityhub.indexing.core.normaliser.NaturalLogNormaliser;org.apache.stanbol.entityhub.indexing.core.normaliser.MinScoreNormalizer,config:minincoming
 
 entityIdIterator=org.apache.stanbol.entityhub.indexing.core.source.LineBasedEntityIterator,source:testEntityScore.txt,charset:UTF-8,encodeIds:false
 

Modified: incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md?rev=1130152&r1=1130151&r2=1130152&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md Wed Jun  1 13:43:47 2011
@@ -142,7 +142,7 @@ The resulting file MUST BE copied to
 
 There is also the possibility do download a precomputed file from:
 
-TODO: add download loaction
+TODO: add download location
 
 ### (4) Configuration of the Index
 
@@ -158,7 +158,7 @@ data are available.
 This can be used to configure e.g. if values are stored (available for
 retrieval) or only indexed. See the comments within the file for details
 * fieldBoosts.properties: Can be used to set boost factors for fields.
-* minIncoming.properties: Can be used to define the minimum number of
+* minincoming.properties: Can be used to define the minimum number of
 incoming links (to an Wiki page from other Wiki pages) so that an entity
 is indexed. Higher values will cause less entities to be indexed. A
 value of 0 will result in all entities to be indexed.

Modified: incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/indexing.properties
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/indexing.properties?rev=1130152&r1=1130151&r2=1130152&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/indexing.properties (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dbpedia/src/main/resources/indexing/config/indexing.properties Wed Jun  1 13:43:47 2011
@@ -19,10 +19,10 @@ entityIdIterator=org.apache.stanbol.enti
 #  - taking the natural logarithm and
 #  - normalising the result to the range [0..1]
 # For this we need three Score
-#  - MinScoreNormalizer: for configuration see "minIncomming.properties"
+#  - MinScoreNormalizer: for configuration see "minincoming.properties.properties"
 #  - NaturalLogNormaliser: no configuration required
 #  - RangeNormaliser: for configuration see "scoreRange.properties"
-scoreNormalizer=org.apache.stanbol.entityhub.indexing.core.normaliser.RangeNormaliser,config:scoreRange;org.apache.stanbol.entityhub.indexing.core.normaliser.NaturalLogNormaliser;org.apache.stanbol.entityhub.indexing.core.normaliser.MinScoreNormalizer,config:minIncomming
+scoreNormalizer=org.apache.stanbol.entityhub.indexing.core.normaliser.RangeNormaliser,config:scoreRange;org.apache.stanbol.entityhub.indexing.core.normaliser.NaturalLogNormaliser;org.apache.stanbol.entityhub.indexing.core.normaliser.MinScoreNormalizer,config:minincoming
 
 # Use the specified field mappings (in the mappings.txt file) to process entities
 # It automatically uses the value configured for "fieldConfiguration"