X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleOtherMedia.java;h=d447c098f2126a0fb4bb92438040c14c3ef3bf84;hb=a103d2df804c193bcf2d84dfe8bda8ce7cc2b049;hp=95ce6f2953977a54e194604cf9aeb82dc08e4f67;hpb=97a33333e6920e0b2578e506475f04c6d1d45a38;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleOtherMedia.java b/source/mircoders/servlet/ServletModuleOtherMedia.java index 95ce6f29..d447c098 100755 --- a/source/mircoders/servlet/ServletModuleOtherMedia.java +++ b/source/mircoders/servlet/ServletModuleOtherMedia.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2001, 2002 The Mir-coders group + * Copyright (C) 2001, 2002 The Mir-coders group * * This file is part of Mir. * @@ -18,35 +18,34 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * In addition, as a special exception, The Mir-coders gives permission to link - * the code of this program with the com.oreilly.servlet library, any library - * licensed under the Apache Software License, The Sun (tm) Java Advanced - * Imaging library (JAI), The Sun JIMI library (or with modified versions of - * the above that use the same license as the above), and distribute linked - * combinations including the two. You must obey the GNU General Public - * License in all respects for all of the code used other than the above - * mentioned libraries. If you modify this file, you may extend this exception - * to your version of the file, but you are not obligated to do so. If you do - * not wish to do so, delete this exception statement from your version. + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. + * If you do not wish to do so, delete this exception statement from your version. */ package mircoders.servlet; -import mir.misc.MirConfig; +import mir.log.LoggerWrapper; import mir.servlet.ServletModule; -import mir.storage.StorageObjectException; -import mir.log.*; - import mircoders.module.ModuleUploadedMedia; import mircoders.storage.DatabaseOther; -/* - * +/** * - * @author br1 + *

Title:

+ *

Description:

+ *

Copyright: Copyright (c) 2003

+ *

Company:

+ * @author the mir coders + * @version 1.0 */ public class ServletModuleOtherMedia extends ServletModuleUploadedMedia { - // Singelton / Contructor private static ServletModuleOtherMedia instance = new ServletModuleOtherMedia(); public static ServletModule getInstance() { @@ -54,16 +53,15 @@ public class ServletModuleOtherMedia extends ServletModuleUploadedMedia { } private ServletModuleOtherMedia() { + super(); logger = new LoggerWrapper("ServletModule.OtherMedia"); + moduleName = "OtherMedia"; - templateListString = MirConfig.getProp("ServletModule.OtherMedia.ListTemplate"); - templateObjektString = MirConfig.getProp("ServletModule.OtherMedia.ObjektTemplate"); - templateConfirmString = MirConfig.getProp("ServletModule.OtherMedia.ConfirmTemplate"); try { + definition = "otherMedia"; mainModule = new ModuleUploadedMedia(DatabaseOther.getInstance()); - //dbRights = DatabaseRights.getInstance(); } - catch (StorageObjectException e) { + catch (Throwable e) { logger.error("servletmodule otherMedia could not be initialized: " + e.getMessage()); } }