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

📄 difflinktag.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.tags;import java.io.IOException;import javax.servlet.jsp.JspWriter;import com.ecyrd.jspwiki.*;/** *  Writes a diff link.  Body of the link becomes the link text. *  <P><B>Attributes</B></P> *  <UL> *    <LI>page - Page name to refer to.  Default is the current page.</LI> *    <LI>version - The older of these versions.  May be an integer to *        signify a version number, or the text "latest" to signify the latest version. *        If not specified, will default to "latest".  May also be "previous" to signify *        a version prior to this particular version.</LI> *    <LI>newVersion - The newer of these versions.  Can also be "latest", or "previous".  Defaults to "latest".</LI> *  </UL> * *  If the page does not exist, this tag will fail silently, and not evaluate *  its body contents. * *  @since 2.0 */public class DiffLinkTag    extends WikiLinkTag{    private static final long serialVersionUID = 0L;        public static final String VER_LATEST   = "latest";    public static final String VER_PREVIOUS = "previous";    public static final String VER_CURRENT  = "current";    private String m_version    = VER_LATEST;    private String m_newVersion = VER_LATEST;    public void initTag()    {        super.initTag();        m_version = m_newVersion = VER_LATEST;    }    public final String getVersion()    {        return m_version;    }    public void setVersion( String arg )    {        m_version = arg;    }    public final String getNewVersion()    {        return m_newVersion;    }    public void setNewVersion( String arg )    {        m_newVersion = arg;    }    public final int doWikiStartTag()        throws IOException    {        WikiEngine engine   = m_wikiContext.getEngine();        String     pageName = m_pageName;        if( m_pageName == null )        {            if( m_wikiContext.getPage() != null )            {                pageName = m_wikiContext.getPage().getName();            }            else            {                return SKIP_BODY;            }        }        JspWriter out = pageContext.getOut();        int r1 = 0;        int r2 = 0;        //        //  In case the page does not exist, we fail silently.        //        if(!engine.pageExists(pageName))        {            return SKIP_BODY;        }        if( VER_LATEST.equals(getVersion()) )        {            WikiPage latest = engine.getPage( pageName,                                               WikiProvider.LATEST_VERSION );            if( latest == null )            {                // This may occur if matchEnglishPlurals is on, and we access the wrong page name                return SKIP_BODY;            }            r1 = latest.getVersion();        }        else if( VER_PREVIOUS.equals(getVersion()) )        {            r1 = m_wikiContext.getPage().getVersion() - 1;            r1 = (r1 < 1 ) ? 1 : r1;        }        else if( VER_CURRENT.equals(getVersion()) )        {            r1 = m_wikiContext.getPage().getVersion();        }        else        {            r1 = Integer.parseInt( getVersion() );        }        if( VER_LATEST.equals(getNewVersion()) )        {            WikiPage latest = engine.getPage( pageName,                                              WikiProvider.LATEST_VERSION );            r2 = latest.getVersion();        }        else if( VER_PREVIOUS.equals(getNewVersion()) )        {            r2 = m_wikiContext.getPage().getVersion() - 1;            r2 = (r2 < 1 ) ? 1 : r2;        }        else if( VER_CURRENT.equals(getNewVersion()) )        {            r2 = m_wikiContext.getPage().getVersion();        }        else        {            r2 = Integer.parseInt( getNewVersion() );        }        String url = m_wikiContext.getURL( WikiContext.DIFF,                                           pageName,                                           "r1="+r1+"&amp;r2="+r2 );        switch( m_format )        {          case ANCHOR:            out.print("<a href=\""+url+"\">");            break;          case URL:            out.print( url );            break;        }        return EVAL_BODY_INCLUDE;    }}

⌨️ 快捷键说明

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