|
jforum example source code file (NewBlogEntry.jsp)
The jforum NewBlogEntry.jsp source code<%@ page import="org.apache.log4j.*" %> <%@ page import="com.ecyrd.jspwiki.*" %> <%@ page import="com.ecyrd.jspwiki.plugin.*" %> <%@ page errorPage="/Error.jsp" %> <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> <%! public void jspInit() { wiki = WikiEngine.getInstance( getServletConfig() ); } Logger log = Logger.getLogger("JSPWiki"); WikiEngine wiki; %> <% // Create wiki context; no need to check for authorization since the // redirect will take care of that WikiContext wikiContext = wiki.createContext( request, WikiContext.EDIT ); String pagereq = wikiContext.getName(); // Redirect if the request was for a 'special page' String specialpage = wiki.getSpecialPageReference( pagereq ); if( specialpage != null ) { // FIXME: Do Something Else response.sendRedirect( specialpage ); return; } WeblogEntryPlugin p = new WeblogEntryPlugin(); String newEntry = p.getNewEntryPage( wiki, pagereq ); // Redirect to a new page for user to edit response.sendRedirect( wiki.getEditURL(newEntry) ); %> Other jforum examples (source code examples)Here is a short list of links related to this jforum NewBlogEntry.jsp source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.