X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleContent.java;h=a438ad8ac23d4283cd787f428a63f2ad21494f71;hb=7f8c84deada65f3aad3ef3931b3153d504969f6e;hp=9a24af2ef3d9225903e98cd5a7826c785f42686d;hpb=86b6f499b413c722acc895346ac5186405b0c44c;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleContent.java b/source/mircoders/servlet/ServletModuleContent.java index 9a24af2e..a438ad8a 100755 --- a/source/mircoders/servlet/ServletModuleContent.java +++ b/source/mircoders/servlet/ServletModuleContent.java @@ -34,7 +34,6 @@ public class ServletModuleContent extends ServletModule static ModuleTopics themenModule; static ModuleSchwerpunkt schwerpunktModule; - static ModuleGruppen gruppenModule; static ModuleImages imageModule; static String templateOpString; @@ -54,7 +53,6 @@ public class ServletModuleContent extends ServletModule mainModule = new ModuleContent(DatabaseContent.getInstance()); themenModule = new ModuleTopics(DatabaseTopics.getInstance()); schwerpunktModule = new ModuleSchwerpunkt(DatabaseFeature.getInstance()); - gruppenModule = new ModuleGruppen(DatabaseGroups.getInstance()); imageModule = new ModuleImages(DatabaseImages.getInstance()); } catch (StorageObjectException e) { theLog.printDebugInfo("servletmodulecontent konnte nicht initialisiert werden"); @@ -148,19 +146,27 @@ public class ServletModuleContent extends ServletModule mergeData.put("is_published", "1"); String now = StringUtil.date2webdbDate(new GregorianCalendar()); mergeData.put("date", new SimpleScalar(now)); - mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList()); - mergeData.put("gruppenPopupData", gruppenModule.getGruppenAsSimpleList()); + try { + mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList()); + } catch (ModuleException e) { + theLog.printError("cannot get topics as simple list."); + throw new ServletModuleException(e.toString()); + } try { mergeData.put("articletypePopupData", DatabaseArticleType.getInstance().getPopupData()); } catch (Exception e) { theLog.printError("articletype could not be fetched."); + throw new ServletModuleException("articletype could not be fetched: " + +e.toString()); } try { mergeData.put("languagePopupData", DatabaseLanguage.getInstance().getPopupData()); + mergeData.put("schwerpunktPopupData", schwerpunktModule.getSchwerpunktAsSimpleList()); } catch (Exception e) { - theLog.printError("language-popup could not be fetched."); + theLog.printError("language-popup or scwerpunk list could not be fetched."); + throw new ServletModuleException("language/schwerpunkt list could not be fetched.: " + +e.toString()); } - mergeData.put("schwerpunktPopupData", schwerpunktModule.getSchwerpunktAsSimpleList()); mergeData.put("login_user", HTMLTemplateProcessor.makeSimpleHash(user)); deliver(req, res, mergeData, templateObjektString); } @@ -254,12 +260,12 @@ public class ServletModuleContent extends ServletModule String mediaIdParam = req.getParameter("mid"); String idParam = req.getParameter("cid"); if (idParam == null||mediaIdParam==null) throw new ServletModuleException("smod content :: attach :: cid/mid missing"); - + try { EntityContent entContent = (EntityContent)mainModule.getById(idParam); entContent.attach(mediaIdParam); } - catch(ModuleException e) { + catch(Exception e) { theLog.printError("smod content :: attach :: could not get entityContent"); } _showObject(idParam, req, res); @@ -271,12 +277,12 @@ public class ServletModuleContent extends ServletModule String midParam = req.getParameter("mid"); if (cidParam == null) throw new ServletModuleException("smod content :: dettach :: cid missing"); if (midParam == null) throw new ServletModuleException("smod content :: dettach :: mid missing"); - + try { EntityContent entContent = (EntityContent)mainModule.getById(cidParam); entContent.dettach(cidParam,midParam); } - catch(ModuleException e) { + catch(Exception e) { theLog.printError("smod content :: dettach :: could not get entityContent"); } _showObject(cidParam, req, res); @@ -290,8 +296,9 @@ public class ServletModuleContent extends ServletModule EntityContent entContent = (EntityContent)mainModule.getById(idParam); entContent.newswire(); } - catch(ModuleException e) { + catch(Exception e) { theLog.printError("smod content :: newswire :: could not get entityContent"); + throw new ServletModuleException("smod content :: newswire :: could not get entityContent"+e.toString()); } list(req, res); } @@ -364,7 +371,6 @@ public class ServletModuleContent extends ServletModule //obsolete, because of psqgl 7.1.x //mergeData.put("content_data", entContent.getContentData()); mergeData.put("themenPopupData", themenModule.getTopicsAsSimpleList()); - mergeData.put("gruppenPopupData", gruppenModule.getGruppenAsSimpleList()); try { mergeData.put("articletypePopupData", DatabaseArticleType.getInstance().getPopupData()); } catch (Exception e) { @@ -383,7 +389,6 @@ public class ServletModuleContent extends ServletModule } - //mergeData.put("gruppenHashData", gruppenModule.getHashData()); mergeData.put("schwerpunktPopupData", schwerpunktModule.getSchwerpunktAsSimpleList()); // hier code um zur liste zurueckzukommen String offsetParam, whereParam, orderParam; @@ -407,7 +412,6 @@ public class ServletModuleContent extends ServletModule SimpleHash modelRoot = HTMLTemplateProcessor.makeSimpleHashWithEntitylistInfos(theList); modelRoot.put("themenHashData", themenModule.getHashData()); modelRoot.put("schwerpunktHashData", schwerpunktModule.getHashData()); - modelRoot.put("gruppenHashData", gruppenModule.getHashData()); modelRoot.put("articletypeHash", DatabaseArticleType.getInstance().getHashData()); deliver(req, res, modelRoot, templateListString); } else { // count = 1 @@ -422,11 +426,10 @@ public class ServletModuleContent extends ServletModule throws ServletModuleException { try { - // hier dann htmlcode rausschreiben + // delivering html if (theList == null || theList.getCount() == 0 || theList.getCount()>1) { SimpleHash modelRoot = HTMLTemplateProcessor.makeSimpleHashWithEntitylistInfos(theList); modelRoot.put("articletypeHash", DatabaseArticleType.getInstance().getHashData()); - modelRoot.put("gruppenHashData", gruppenModule.getHashData()); deliver(req, res, modelRoot, templateListString); } else { // count = 1 _showObject(theList.elementAt(0).getId(), req, res);