producer timing finish to producer.java
authorrk <rk>
Mon, 18 Feb 2002 11:43:30 +0000 (11:43 +0000)
committerrk <rk>
Mon, 18 Feb 2002 11:43:30 +0000 (11:43 +0000)
source/mircoders/producer/ProducerList.java
source/mircoders/producer/ProducerTopics.java

index 9caf80b..e4abda9 100755 (executable)
@@ -35,6 +35,7 @@ abstract public class ProducerList extends Producer {
     handleIt(htmlout,user,force);
   }
 
+  /** @todo this should return the number of pages produced! */
   public void handleIt(PrintWriter htmlout, EntityUsers user, boolean force)
     throws StorageObjectException, ModuleException {
 
index 847ac08..3480dc5 100755 (executable)
@@ -35,6 +35,8 @@ public class ProducerTopics extends ProducerList {
   String              tinyIcon;
   String              iconAlt;
 
+  /** @todo couldn't this be in Producer.java and should be named addAdditional,
+   *  and should be thrown away afterwards */
   public void setAdditional(String key, TemplateModel value) {
     additional.put(key,value);
   }
@@ -50,7 +52,7 @@ public class ProducerTopics extends ProducerList {
   {
     long startTime = System.currentTimeMillis();
     int pageCount =0;
-    logHTML(htmlout, "Producer.List: started");
+    logHTML(htmlout, "Producer.Topics: started");
 
     /** @todo should be done in static */
     listTemplate = MirConfig.getProp("Producer.TopicList.Template");