At last the EntityBatchingProducerNode is working. This will replace the old
[mir.git] / source / mircoders / localizer / basic / MirBasicProducerToolLocalizer.java
index c1f9db2..86a7d73 100755 (executable)
@@ -56,6 +56,14 @@ public class MirBasicProducerToolLocalizer implements MirProducerToolLocalizer {
     aValueSet.put("topics", topicList);
     aValueSet.put("imclist", entityList);
     aValueSet.put("parentlist", parentList);
+
+    Map articleTypeMap = new HashMap();
+    articleTypeMap.put("openposting", "0");
+    articleTypeMap.put("newswire", "1");
+    articleTypeMap.put("feature", "2");
+    articleTypeMap.put("topicspecial", "3");
+    articleTypeMap.put("startspecial", "4");
+    aValueSet.put("articletype", articleTypeMap);
   };
 
   public PrintWriter openWriter(String anIdentifier) throws MirLocalizerFailure {