X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Flocalizer%2FMirOpenPostingLocalizer.java;h=875309d037caef40153a0f7362b55cf73ca1bf58;hb=14127fccd05fd4dc20411d3c551908103fcd28a9;hp=5c827461a753a6db4d24036c073e6d12f7a6e448;hpb=8563841098b6ab3e6233f61519e58b41dcc30266;p=mir.git diff --git a/source/mircoders/localizer/MirOpenPostingLocalizer.java b/source/mircoders/localizer/MirOpenPostingLocalizer.java index 5c827461..875309d0 100755 --- a/source/mircoders/localizer/MirOpenPostingLocalizer.java +++ b/source/mircoders/localizer/MirOpenPostingLocalizer.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,27 +18,54 @@ * 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.localizer; -import java.util.*; -import javax.servlet.http.*; +import java.util.List; -import mircoders.entity.*; +import mir.session.Request; +import mir.session.Session; +import mir.session.SessionHandler; +import mircoders.entity.EntityComment; +import mircoders.entity.EntityContent; public interface MirOpenPostingLocalizer { - public void afterContentPosting(EntityContent aContent); - public void afterCommentPosting(EntityComment aComment); - public String chooseOpenPostingLanguage(HttpServletRequest req); + /** + * + */ + public SessionHandler getOpenSessionHandler(Request aRequest, Session aSession) throws MirLocalizerExc, MirLocalizerFailure; + + /** + * This method will be called after a comment has been posted + * via the open posting interface. + */ + public void afterCommentPosting(EntityComment aComment) throws MirLocalizerExc, MirLocalizerFailure; + + /** + * This method will be called after an article is posted via the open posting interface. + */ + public void afterArticlePosting(EntityContent anArticle) throws MirLocalizerExc, MirLocalizerFailure; + + /** + * + */ + + public List getAntiAbuseFilterTypes() throws MirLocalizerExc, MirLocalizerFailure; + + /** + * This method should return true if the article should be visible + * to "open posting" users. This method is used to determine whether the request + * for a pdf, or an email for the article should be allowed. It is however + * not used by default by the production subsystem + */ + public boolean allowArticlePublication(EntityContent anArticle); }