alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
<td> <td> <input type="checkbox" name="remember" id="rememberme" /> </tr> <tr> <td> <td colspan="2">" /> </tr> </table> </wiki:CheckRequestContext> <div style='display:none'> <p> <input name='ok' type='submit' value='Save' />          <input name='preview' type='submit' value='Preview' />          <input name='cancel' type='submit' value='Cancel' /> </p> </div> </div> </form>

Other jforum examples (source code examples)

Here is a short list of links related to this jforum WikiWizard.jsp source code file:

jforum example source code file (WikiWizard.jsp)

This example jforum source code file (WikiWizard.jsp) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - jforum tags/keywords

attachment, iterator, linux, navigator, netscape, netscape, opera, os, os, safari, string, string, wikiwizard, wikiwizard

The jforum WikiWizard.jsp source code

<script type='text/javascript' src='scripts/wikiwizard-jspwiki.js' language='Javascript'>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page import="java.io.Serializable"%>
<%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki"%>
<%@ page import="com.ecyrd.jspwiki.*" %>
<%@ page import="com.ecyrd.jspwiki.ui.*" %>
<%@ page import="com.ecyrd.jspwiki.tags.*" %>
<%@ page import="com.ecyrd.jspwiki.attachment.*" %>
<%@ page import="com.ecyrd.jspwiki.providers.*" %>
<%@ page import="org.apache.commons.lang.*" %>


<%--
    This provides the WikiWizard editor for JSPWiki.
--%>

<noscript>
  <br>
  <div class="error">You need to enable Javascript in your browser to use the WikiWizard editor
</noscript> <% WikiContext context = WikiContext.findContext( pageContext ); String usertext = EditorManager.getEditedText( pageContext ); String changenote = (String)session.getAttribute("changenote"); changenote = changenote != null ? TextUtil.replaceEntities(changenote) : ""; %> <wiki:CheckRequestContext context="edit"><% if( usertext == null ) { usertext = context.getEngine().getPureText( context.getPage() ); }%> </wiki:CheckRequestContext> <% if( usertext == null ) usertext = ""; %> <form accept-charset="" name="editForm" enctype="application/x-www-form-urlencoded"> <wiki:CheckRequestContext context="edit"> <label for="changenote">Change note <input type="text" id="changenote" name="changenote" size="80" maxlength="80" value="<%=changenote%>"/> </wiki:CheckRequestContext> <p> <%-- Edit.jsp relies on these being found. So be careful, if you make changes. --%> <input name="page" type="hidden" value=" <input name="action" type="hidden" value="save" /> <input name="edittime" type="hidden" value="<%=pageContext.getAttribute("lastchange", PageContext.REQUEST_SCOPE )%>" /> </p> <script type="text/javascript"> // Browser detection needed for Netscape (others added for possible future need) var detect = navigator.userAgent.toLowerCase(); var OS,browser,version,total,thestring; if (checkIt('konqueror')) { browser = "Konqueror"; OS = "Linux"; } else if (checkIt('safari')) browser = "Safari" else if (checkIt('omniweb')) browser = "OmniWeb" else if (checkIt('opera')) browser = "Opera" else if (checkIt('webtv')) browser = "WebTV"; else if (checkIt('icab')) browser = "iCab" else if (checkIt('msie')) browser = "Internet Explorer" else if (!checkIt('compatible')) { browser = "Netscape Navigator" version = detect.charAt(8); } else browser = "An unknown browser"; if (!version) version = detect.charAt(place + thestring.length); if (!OS) { if (checkIt('linux')) OS = "Linux"; else if (checkIt('x11')) OS = "Unix"; else if (checkIt('mac')) OS = "Mac" else if (checkIt('win')) OS = "Windows" else OS = "an unknown operating system"; } function checkIt(string) { place = detect.indexOf(string) + 1; thestring = string; return place; } var myWidth = 0, myHeight = 0; if( typeof( window.innerWidth ) == 'number' ) { //Non-IE myWidth = window.innerWidth; myHeight = window.innerHeight; } </script> <textarea id='invisibletxt' inwrap='virtual' style='visibility:hidden;width:100%;height:1px;' class='editor' id='editorarea' name='<%=EditorManager.REQ_EDITEDTEXT%>' rows='10' cols='80'><%=TextUtil.replaceEntities(usertext)%> <script type="text/javascript"> if ( browser == "Netscape Navigator" ) { document.write("<div style='height:" + myHeight * .70 + "px'>"); } else { document.write("<div>"); } </script> <% // Create attachment list WikiEngine engine = context.getEngine(); AttachmentManager mgr = engine.getAttachmentManager(); WikiPage ourPage = context.getPage(); String attString = ""; if (mgr.attachmentsEnabled()) { try { if (ourPage != null && engine.pageExists(ourPage)) { Collection atts = mgr.listAttachments(ourPage); if (atts != null) { Iterator iterator; iterator = atts.iterator(); while (iterator.hasNext()) { Attachment att = (Attachment) iterator.next(); attString = attString + att.getFileName() + ";"; } } } } catch (ProviderException e) { e.printStackTrace(); } } // Create breadcrumb list String bcString = ""; BreadcrumbsTag.FixedQueue trail = (BreadcrumbsTag.FixedQueue) session.getAttribute("breadCrumbTrail"); if( trail != null ) { for( int i = 0; i < trail.size() - 1; i++ ) { String curPage = (String) trail.get(i); bcString += curPage + ";"; } } %> <script type="text/javascript"> var beginApplet = "<applet code='org.wikiwizard.FlashSplash'\n"; beginApplet += " archive='applets/wikiwizard.jar'\n"; beginApplet += " name='WikiWizard'\n"; beginApplet += " width='100%'\n"; beginApplet += " height='"; var endApplet = "%'\n"; endApplet += " MAYSCRIPT>\n"; if ( browser == "Netscape Navigator" ) { document.write(beginApplet + "100" + endApplet); } else { document.write(beginApplet + "70" + endApplet); } </script> <param name="attachments" value="<%=attString%>" /> <param name="user" value=" <param name="breadcrumbs" value="<%=bcString%>" /> <param name="encoding" value="<%=context.getEngine().getContentEncoding()%>" /> <param name="page" value="<%=context.getPage().getName()%>" /> <param name="lang" value="<%=context.getHttpRequest().getHeader("Accept-Language")%>" /> Applets are currently not supported by your browser. Please <a href="http://www.java.com/">download Java, so you can use the WikiWizard editor. </applet> <wiki:CheckRequestContext context="comment"> <table border="0" class="small"> <tr> <td>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

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.