⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wysiwygeditingrenderer.java

📁 jspwiki source code,jspwiki source code
💻 JAVA
字号:
/*     JSPWiki - a JSP-based WikiWiki clone.    Licensed to the Apache Software Foundation (ASF) under one    or more contributor license agreements.  See the NOTICE file    distributed with this work for additional information    regarding copyright ownership.  The ASF licenses this file    to you under the Apache License, Version 2.0 (the    "License"); you may not use this file except in compliance    with the License.  You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0    Unless required by applicable law or agreed to in writing,    software distributed under the License is distributed on an    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY    KIND, either express or implied.  See the License for the    specific language governing permissions and limitations    under the License.   */package com.ecyrd.jspwiki.render;import java.io.IOException;import java.io.StringWriter;import java.util.Iterator;import org.jdom.Attribute;import org.jdom.Element;import org.jdom.output.Format;import org.jdom.output.XMLOutputter;import com.ecyrd.jspwiki.WikiContext;import com.ecyrd.jspwiki.htmltowiki.XHtmlToWikiConfig;import com.ecyrd.jspwiki.parser.WikiDocument;/** *  Implements a WikiRendered that outputs XHTML in a format that is suitable *  for use by a WYSIWYG XHTML editor. * *  @author David Au *  @since  2.5 */public class WysiwygEditingRenderer    extends WikiRenderer{    private static final String A_ELEMENT = "a";//    private static final String PRE_ELEMENT = "pre";    private static final String CLASS_ATTRIBUTE = "class";    private static final String HREF_ATTRIBUTE = "href";    private static final String TITLE_ATTRIBUTE = "title";    private static final String EDITPAGE = "createpage";    private static final String WIKIPAGE = "wikipage";    private static final String LINEBREAK = "\n";    private static final String LINKS_TRANSLATION = "$1#$2";    private static final String LINKS_SOURCE = "(.+)#section-.+-(.+)";    /**     *  Creates a WYSIWYG editing renderer.     *       *  @param context {@inheritDoc}     *  @param doc {@inheritDoc}     */    public WysiwygEditingRenderer( WikiContext context, WikiDocument doc )    {        super( context, doc );    }    /*     * Recursively walk the XHTML DOM tree and manipulate specific elements to     * make them better for WYSIWYG editing.     */    private void processChildren(Element baseElement)    {        for( Iterator itr = baseElement.getChildren().iterator(); itr.hasNext(); )        {            Object childElement = itr.next();            if( childElement instanceof Element )            {                Element element = (Element)childElement;                String elementName = element.getName().toLowerCase();                Attribute classAttr = element.getAttribute( CLASS_ATTRIBUTE );                if( elementName.equals( A_ELEMENT ) )                {                    if( classAttr != null )                    {                        String classValue = classAttr.getValue();                        Attribute hrefAttr = element.getAttribute( HREF_ATTRIBUTE );                        XHtmlToWikiConfig wikiConfig = new XHtmlToWikiConfig( m_context );                        // Get the url for wiki page link - it's typically "Wiki.jsp?page=MyPage"                        // or when using the ShortURLConstructor option, it's "wiki/MyPage" .                        String wikiPageLinkUrl = wikiConfig.getWikiJspPage();                        String editPageLinkUrl = wikiConfig.getEditJspPage();                        if( classValue.equals( WIKIPAGE )                            || ( hrefAttr != null && hrefAttr.getValue().startsWith( wikiPageLinkUrl ) ) )                        {                            // Remove the leading url string so that users will only see the                            // wikipage's name when editing an existing wiki link.                            // For example, change "Wiki.jsp?page=MyPage" to just "MyPage".                            String newHref = hrefAttr.getValue().substring( wikiPageLinkUrl.length() );                            // Convert "This%20Pagename%20Has%20Spaces" to "This Pagename Has Spaces"                            newHref = m_context.getEngine().decodeName( newHref );                            // Handle links with section anchors.                            // For example, we need to translate the html string "TargetPage#section-TargetPage-Heading2"                            // to this wiki string: "TargetPage#Heading2".                            hrefAttr.setValue( newHref.replaceFirst( LINKS_SOURCE, LINKS_TRANSLATION ) );                        }                        else if( hrefAttr != null && (classValue.equals( EDITPAGE ) ||                                                      hrefAttr.getValue().startsWith( editPageLinkUrl ) ) )                        {                            Attribute titleAttr = element.getAttribute( TITLE_ATTRIBUTE );                            if( titleAttr != null )                            {                                // remove the title since we don't want to eventually save the default undefined page title.                                titleAttr.detach();                            }                            String newHref = hrefAttr.getValue().substring( editPageLinkUrl.length() );                            newHref = m_context.getEngine().decodeName( newHref );                            hrefAttr.setValue( newHref );                        }                    }                } // end of check for "a" element                                processChildren( element );            }        }    }    /**     *  {@inheritDoc}     */    public String getString()        throws IOException    {        Element rootElement = m_document.getRootElement();        processChildren( rootElement );        m_document.setContext( m_context );        XMLOutputter output = new XMLOutputter();        StringWriter out = new StringWriter();        Format fmt = Format.getRawFormat();        fmt.setExpandEmptyElements( false );        fmt.setLineSeparator( LINEBREAK );        output.setFormat( fmt );        output.outputElementContent( m_document.getRootElement(), out );        return out.toString();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -