undefinedpagesplugin.java

来自「jspwiki source code,jspwiki source code」· Java 代码 · 共 77 行

JAVA
77
字号
/*     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.plugin;import com.ecyrd.jspwiki.*;import java.util.*;/** *  Plugin that enumerates the pages in the wiki that have not yet been defined. *   *  Parameters  (from AbstractReferralPlugin): *  <ul> *  <li><b>separator</b> - how to separate generated links; default is a wikitext line break,  producing a vertical list</li> * <li><b> maxwidth</b> - maximum width, in chars, of generated links.</li> * </ul> * */public class UndefinedPagesPlugin    extends AbstractReferralPlugin{    /**     *  {@inheritDoc}     */    @SuppressWarnings("unchecked")    public String execute( WikiContext context, Map params )        throws PluginException    {        ReferenceManager refmgr = context.getEngine().getReferenceManager();        Collection links = refmgr.findUncreated();        super.initialize( context, params );        TreeSet<String> sortedSet = new TreeSet<String>();        links = filterCollection( links );        sortedSet.addAll( links );                String wikitext = null;                if (m_lastModified)        {            throw new PluginException("parameter " + PARAM_LASTMODIFIED + " is not valid for the UndefinedPagesPlugin");        }                if (m_show.equals(PARAM_SHOW_VALUE_COUNT))        {            wikitext = "" + links.size();        }        else        {            wikitext = wikitizeCollection(sortedSet, m_separator, ALL_ITEMS);        }                return makeHTML( context, wikitext );    }}

⌨️ 快捷键说明

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