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

📄 rollerpageprovider.java

📁 这个weblogging 设计得比较精巧
💻 JAVA
字号:
/* * Created on May 29, 2003 */package org.roller.presentation.velocity.plugins.jspwiki;import com.ecyrd.jspwiki.providers.FileSystemProvider;/** * Override page provider so that Wiki links always appear as hyperlinks * to the external Wiki's Wiki.jsp?page=MyPageName page. Without this, they * would appear as links tp Edit.jsp?page=MyPageName, which is not quite as * nice. Eventually, it may be a good idea to use JSPWiki's XML-RPC interface * to figure out if the page exists or not. * @author David M Johnson */public class RollerPageProvider extends FileSystemProvider{    public boolean pageExists(String arg0)    {        return true;    }}

⌨️ 快捷键说明

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