Java base dupecheck deinstalled because the dupecheck is now implemented
authormj <mj>
Wed, 26 Sep 2001 02:34:33 +0000 (02:34 +0000)
committermj <mj>
Wed, 26 Sep 2001 02:34:33 +0000 (02:34 +0000)
as a trigger in the database.

source/mircoders/servlet/ServletModuleOpenIndy.java

index 1c765e0..5a63164 100755 (executable)
@@ -98,15 +98,15 @@ public class ServletModuleOpenIndy extends ServletModule
         withValues.put("is_published","1");
 
                // Dupe detection
-               EntityList com = mainModule.getByWhereClause("description='"+req.getParameter("description")+"' AND to_media='"+aid+"' AND creator='"+req.getParameter("creator")+"'", 0);
-               if (com.getCount() > 0) {
-               theLog.printDebugInfo("Comment dupe dropped for article "+aid);
-               deliver(req, res, (TemplateModelRoot) null, commentFormDupeTemplate);
-               } else {
+//             EntityList com = mainModule.getByWhereClause("description='"+req.getParameter("description")+"' AND to_media='"+aid+"' AND creator='"+req.getParameter("creator")+"'", 0);
+//             if (com.getCount() > 0) {
+//             theLog.printDebugInfo("Comment dupe dropped for article "+aid);
+//             deliver(req, res, (TemplateModelRoot) null, commentFormDupeTemplate);
+//             } else {
 
                // inserting into database
                String id = mainModule.add(withValues);
-        
+               
                // producing new page
                new ProducerContent().handle(null, null, true, false, aid);
 
@@ -118,7 +118,7 @@ public class ServletModuleOpenIndy extends ServletModule
                // should implement back to article
                SimpleHash mergeData = new SimpleHash();
                deliver(req, res, mergeData, commentFormDoneTemplate);
-               }
+//             }
       }
       catch (StorageObjectException e) { throw new ServletModuleException(e.toString());}
       catch (ModuleException e) { throw new ServletModuleException(e.toString());}