Media helper to modularize the invocation and getting of handlers. all the reflection...
[mir.git] / source / mircoders / servlet / ServletModuleContent.java
index a55f6cc..27a5806 100755 (executable)
@@ -46,7 +46,7 @@ public class ServletModuleContent extends ServletModule
 
   private ServletModuleContent() {
     try {
-      theLog = Logfile.getInstance(this.getClass().getName());
+               theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("ServletModule.Content.Logfile"));
       templateListString = MirConfig.getProp("ServletModule.Content.ListTemplate");
       templateOpString = MirConfig.getProp("ServletModule.Content.OpTemplate");
       templateObjektString = MirConfig.getProp("ServletModule.Content.ObjektTemplate");
@@ -146,9 +146,9 @@ public class ServletModuleContent extends ServletModule
     mergeData.put("new", "1");
     mergeData.put("is_published", "1");
     String now = StringUtil.date2webdbDate(new GregorianCalendar());
-      mergeData.put("date", new SimpleScalar(now));
+    mergeData.put("date", new SimpleScalar(now));
     try {
-      mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList());
+    mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList());
     } catch (ModuleException e) {
       theLog.printError("themenPopupData could not be fetched.");
     }
@@ -312,7 +312,7 @@ public class ServletModuleContent extends ServletModule
       theLog.printError("smod content :: newswire :: could not get entityContent");
     }
     catch(StorageObjectException e) {
-      theLog.printError("smod content :: newswire :: could not get entityContent");
+      theLog.printError("smod content :: dettach :: could not get entityContent");
     }
 
     list(req, res);
@@ -488,7 +488,7 @@ public class ServletModuleContent extends ServletModule
                  * can we make getIdasInt() or can we just have
                  * another getId() that returns an Int and the VM
                  * will handle it transparantly? -mh
-                 */
+                */
                 try {
                   mediaHandlerName = mediaType.getValue("classname");
                   mediaHandlerClass = Class.forName("mir.media.MediaHandler"+mediaHandlerName);