Package | Description |
---|---|
org.apache.wiki |
The chief package of JSPWiki.
|
org.apache.wiki.api.engine |
JSPWiki's WikiEngine Managers package.
|
org.apache.wiki.api.filters |
Filter's API package of JSPWiki.
|
org.apache.wiki.api.plugin |
Plugin's API package of JSPWiki.
|
org.apache.wiki.attachment |
Attachment management, uploading and downloading.
|
org.apache.wiki.auth |
Authentication, Authorization and the third A thing.
|
org.apache.wiki.auth.authorize |
Authorizer implementation.
|
org.apache.wiki.content |
Provides content management functionality for JSPWiki.
|
org.apache.wiki.diff | |
org.apache.wiki.event | |
org.apache.wiki.filters |
Provides page and content filtering functionality for JSPWiki.
|
org.apache.wiki.forms |
Contains classes for doing form handling within JSPWiki.
|
org.apache.wiki.htmltowiki | |
org.apache.wiki.markdown |
Entry point for JSPWiki Flexmark's custom extensions.
|
org.apache.wiki.markdown.extensions.jspwikilinks.attributeprovider |
Wikilinks' attributes custom decoration.
|
org.apache.wiki.markdown.extensions.jspwikilinks.postprocessor |
Wikilinks' nodes custom post processing.
|
org.apache.wiki.markdown.renderer | |
org.apache.wiki.parser | |
org.apache.wiki.parser.markdown |
Markdown parsing.
|
org.apache.wiki.plugin |
Provides plugins to the JSPWiki.
|
org.apache.wiki.preferences |
Preferences storage.
|
org.apache.wiki.render | |
org.apache.wiki.render.markdown |
Markdown rendering.
|
org.apache.wiki.rss | |
org.apache.wiki.search |
Provides the JSPWiki search functionality.
|
org.apache.wiki.tags |
Provides standard JSP tags for JSPWiki.
|
org.apache.wiki.tasks |
Provides specific tasks for JSPWiki, meant to be executed by the workflow framework.
|
org.apache.wiki.tasks.pages |
Provides WikiPages' saving related Tasks, meant to be executed by the workflow framework.
|
org.apache.wiki.ui |
Java classes for management of the JSP user interface.
|
org.apache.wiki.ui.admin |
Contains classes for the JSPWiki administrative interface.
|
org.apache.wiki.ui.admin.beans | |
org.apache.wiki.xmlrpc |
Modifier and Type | Method and Description |
---|---|
WikiContext |
WikiEngine.createContext(javax.servlet.http.HttpServletRequest request,
String requestContext)
Shortcut to create a WikiContext from a supplied HTTP request,
using a default wiki context.
|
WikiContext |
WikiContext.deepClone()
Creates a deep clone of the WikiContext.
|
static WikiContext |
WikiContext.findContext(javax.servlet.jsp.PageContext pageContext)
This method can be used to find the WikiContext programmatically
from a JSP PageContext.
|
Modifier and Type | Method and Description |
---|---|
String |
VariableManager.expandVariables(WikiContext context,
String source)
This method does in-place expansion of any variables.
|
String |
WikiEngine.getDiff(WikiContext context,
int version1,
int version2)
Returns a diff of two versions of a page.
|
String |
WikiEngine.getHTML(WikiContext context,
WikiPage page)
Returns the converted HTML of the page using a different
context than the default context.
|
String |
WikiEngine.getRedirectURL(WikiContext context)
Figure out to which page we are really going to.
|
String |
WikiEngine.getText(WikiContext context,
WikiPage page)
Returns the un-HTMLized text of the given version of a page in
the given context.
|
String |
VariableManager.getValue(WikiContext context,
String varName)
Returns a value of the named variable.
|
String |
VariableManager.getValue(WikiContext context,
String varName,
String defValue)
Returns the value of a named variable.
|
String |
WikiEngine.getVariable(WikiContext context,
String name)
Shortcut to getVariableManager().getValue().
|
String |
LinkCollector.mutate(WikiContext context,
String in)
Returns a changed String, suitable for Wiki context.
|
String |
StringTransmutator.mutate(WikiContext context,
String source)
Returns a changed String, suitable for Wiki context.
|
String |
VariableManager.parseAndGetValue(WikiContext context,
String link)
Parses the link and finds a value.
|
void |
ReferenceManager.postSave(WikiContext context,
String content)
After the page has been saved, updates the reference lists.
|
String |
WikiEngine.renamePage(WikiContext context,
String renameFrom,
String renameTo,
boolean changeReferrers)
Renames, or moves, a wiki page.
|
void |
WikiEngine.saveText(WikiContext context,
String text)
Writes the WikiText of a page into the page repository.
|
String |
WikiEngine.textToHTML(WikiContext context,
String pagedata)
Converts raw page data to HTML.
|
String |
WikiEngine.textToHTML(WikiContext context,
String pagedata,
StringTransmutator localLinkHook,
StringTransmutator extLinkHook)
Just convert WikiText to HTML.
|
String |
WikiEngine.textToHTML(WikiContext context,
String pagedata,
StringTransmutator localLinkHook,
StringTransmutator extLinkHook,
StringTransmutator attLinkHook)
Just convert WikiText to HTML.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterManager.doPostSaveFiltering(WikiContext context,
String pageData)
Does the page filtering after the page has been saved.
|
String |
FilterManager.doPostTranslateFiltering(WikiContext context,
String htmlData)
Does the filtering after HTML translation.
|
String |
FilterManager.doPreSaveFiltering(WikiContext context,
String pageData)
Does the filtering before a save to the page repository.
|
String |
FilterManager.doPreTranslateFiltering(WikiContext context,
String pageData)
Does the filtering before a translation.
|
String |
PluginManager.execute(WikiContext context,
String commandline)
Parses a plugin.
|
String |
PluginManager.execute(WikiContext context,
String classname,
Map<String,String> params)
Executes a plugin class in the given context.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicPageFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved.
|
void |
PageFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved.
|
String |
BasicPageFilter.postTranslate(WikiContext wikiContext,
String htmlContent)
This method is called after a page has been fed through the translation process,
so anything you are seeing here is translated content.
|
String |
PageFilter.postTranslate(WikiContext wikiContext,
String htmlContent)
This method is called after a page has been fed through the translation process,
so anything you are seeing here is translated content.
|
String |
BasicPageFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider.
|
String |
PageFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider.
|
String |
BasicPageFilter.preTranslate(WikiContext wikiContext,
String content)
This method is called whenever a page has been loaded from the provider,
but not yet been sent through the markup-translation process.
|
String |
PageFilter.preTranslate(WikiContext wikiContext,
String content)
This method is called whenever a page has been loaded from the provider,
but not yet been sent through the markup-translation process.
|
Modifier and Type | Method and Description |
---|---|
String |
WikiPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
void |
ParserStagePlugin.executeParser(PluginContent element,
WikiContext context,
Map<String,String> params)
Method which is executed during parsing.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
AttachmentServlet.executeUpload(WikiContext context,
InputStream data,
String filename,
String errorPage,
String parentPage,
String changenote,
long contentLength) |
InputStream |
DynamicAttachmentProvider.getAttachmentData(WikiContext context,
Attachment att)
Returns a stream of data for this attachment.
|
Attachment |
AttachmentManager.getAttachmentInfo(WikiContext context,
String attachmentname)
Figures out the full attachment name from the context and
attachment name.
|
Attachment |
AttachmentManager.getAttachmentInfo(WikiContext context,
String attachmentname,
int version)
Figures out the full attachment name from the context and
attachment name.
|
String |
AttachmentManager.getAttachmentInfoName(WikiContext context,
String attachmentname)
Figures out the full attachment name from the context and attachment name.
|
InputStream |
AttachmentManager.getAttachmentStream(WikiContext ctx,
Attachment att)
Returns an attachment stream using the particular WikiContext.
|
void |
AttachmentManager.storeDynamicAttachment(WikiContext ctx,
DynamicAttachment att)
Stores a dynamic attachment.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AuthorizationManager.hasAccess(WikiContext context,
javax.servlet.http.HttpServletResponse response)
Checks whether the current user has access to the wiki context,
by obtaining the required Permission (
requiredPermission() )
and delegating the access check to AuthorizationManager.checkPermission(WikiSession, Permission) . |
boolean |
AuthorizationManager.hasAccess(WikiContext context,
javax.servlet.http.HttpServletResponse response,
boolean redirect)
Checks whether the current user has access to the wiki context (and
optionally redirects if not), by obtaining the required Permission (
requiredPermission() )
and delegating the access check to AuthorizationManager.checkPermission(WikiSession, Permission) . |
UserProfile |
UserManager.parseProfile(WikiContext context)
Extracts user profile parameters from the HTTP request and populates
a UserProfile with them.
|
void |
UserManager.validateProfile(WikiContext context,
UserProfile profile)
Validates a user profile, and appends any errors to the session errors
list.
|
Modifier and Type | Method and Description |
---|---|
protected void |
GroupManager.checkGroupName(WikiContext context,
String name)
Checks if a String is blank or a restricted Group name, and if it is,
appends an error to the WikiSession's message list.
|
Group |
GroupManager.parseGroup(WikiContext context,
boolean create)
Extracts group name and members from the HTTP request and populates an
existing Group with them.
|
void |
GroupManager.validateGroup(WikiContext context,
Group group)
Validates a Group, and appends any errors to the session errors list.
|
Modifier and Type | Method and Description |
---|---|
String |
PageRenamer.renamePage(WikiContext context,
String renameFrom,
String renameTo,
boolean changeReferrers)
Renames a page.
|
Modifier and Type | Method and Description |
---|---|
String |
DifferenceManager.makeDiff(WikiContext context,
String firstWikiText,
String secondWikiText)
Returns valid XHTML string to be used in any way you please.
|
String |
ContextualDiffProvider.makeDiffHtml(WikiContext ctx,
String wikiOld,
String wikiNew)
Do a colored diff of the two regions.
|
String |
DiffProvider.makeDiffHtml(WikiContext context,
String oldWikiText,
String newWikiText)
The return string is to be XHTML compliant ready to display html.
|
String |
DiffProvider.NullDiffProvider.makeDiffHtml(WikiContext ctx,
String oldWikiText,
String newWikiText)
The return string is to be XHTML compliant ready to display html.
|
String |
ExternalDiffProvider.makeDiffHtml(WikiContext ctx,
String p1,
String p2)
Makes the diff by calling "diff" program.
|
String |
TraditionalDiffProvider.makeDiffHtml(WikiContext ctx,
String p1,
String p2)
Makes a diff using the BMSI utility package.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PageEventFilter.fireEvent(int type,
WikiContext context)
Fires a WikiPageEvent of the provided type and page name
to all registered listeners.
|
void |
PageEventFilter.postSave(WikiContext wikiContext,
String content)
This method is called after the page has been successfully saved.
|
String |
PageEventFilter.postTranslate(WikiContext wikiContext,
String htmlContent)
This method is called after a page has been fed through the TranslatorReader,
so anything you are seeing here is translated content.
|
String |
PageEventFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider.
|
String |
PageEventFilter.preTranslate(WikiContext wikiContext,
String content)
This method is called whenever a page has been loaded from the provider,
but not yet been sent through the TranslatorReader.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
SpamFilter.checkHash(WikiContext context,
javax.servlet.jsp.PageContext pageContext)
This method checks if the hash value is still valid, i.e. if it exists at all.
|
void |
DefaultFilterManager.doPostSaveFiltering(WikiContext context,
String pageData)
Does the page filtering after the page has been saved.
|
String |
DefaultFilterManager.doPostTranslateFiltering(WikiContext context,
String htmlData)
Does the filtering after HTML translation.
|
String |
DefaultFilterManager.doPreSaveFiltering(WikiContext context,
String pageData)
Does the filtering before a save to the page repository.
|
String |
DefaultFilterManager.doPreTranslateFiltering(WikiContext context,
String pageData)
Does the filtering before a translation.
|
void |
DefaultFilterManager.fireEvent(int type,
WikiContext context)
Fires a WikiPageEvent of the provided type and WikiContext.
|
boolean |
SpamFilter.isValidUserProfile(WikiContext context,
UserProfile profile)
Checks whether the UserProfile matches certain checks.
|
void |
PingWeblogsComFilter.postSave(WikiContext context,
String pagecontent)
This method is called after the page has been successfully saved.
|
String |
CreoleFilter.preSave(WikiContext wikiContext,
String content)
This method is called before the page has been saved to the PageProvider.
|
String |
SpamFilter.preSave(WikiContext context,
String content)
This method is called before the page has been saved to the PageProvider.
|
String |
CreoleFilter.preTranslate(WikiContext wikiContext,
String content)
This method is called whenever a page has been loaded from the provider,
but not yet been sent through the markup-translation process.
|
String |
ProfanityFilter.preTranslate(WikiContext context,
String content)
This method is called whenever a page has been loaded from the provider,
but not yet been sent through the markup-translation process.
|
Modifier and Type | Method and Description |
---|---|
String |
FormClose.execute(WikiContext ctx,
Map<String,String> params)
Builds a Form close tag.
|
String |
FormInput.execute(WikiContext ctx,
Map<String,String> params)
Generates a dynamic form element on the WikiPage.
|
String |
FormOpen.execute(WikiContext ctx,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
FormOutput.execute(WikiContext ctx,
Map<String,String> params)
Executes the FormHandler specified in a Form 'output' plugin,
using entries provided in the HttpRequest as FormHandler
parameters.
|
String |
FormSelect.execute(WikiContext ctx,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
FormSet.execute(WikiContext ctx,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
FormTextarea.execute(WikiContext ctx,
Map<String,String> params)
This is the main entry point for any plugin.
|
protected FormInfo |
FormElement.getFormInfo(WikiContext ctx)
Attempts to retrieve information on the currently handled
form from the WikiContext.
|
protected void |
FormElement.storeFormInfo(WikiContext ctx,
FormInfo info)
Utility method stores a FormInfo object into the WikiContext.
|
Modifier and Type | Method and Description |
---|---|
String |
HtmlStringToWikiTranslator.translate(String html,
WikiContext wikiContext)
Translates text from HTML into WikiMarkup with a WikiContext.
|
Constructor and Description |
---|
XHtmlToWikiConfig(WikiContext wikiContext)
The constructor initializes the different internal fields
according to the current URLConstructor.
|
Constructor and Description |
---|
MarkdownForJSPWikiExtension(WikiContext context) |
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
JSPWikiLinkAttributeProvider.wikiContext |
Constructor and Description |
---|
ExternalLinkAttributeProviderState(WikiContext wikiContext,
boolean hasRef) |
ImageLinkAttributeProviderState(WikiContext wikiContext,
String urlRef,
boolean isLinkFromText) |
InterWikiLinkAttributeProviderState(WikiContext wikiContext,
boolean hasRef) |
JSPWikiLinkAttributeProvider(WikiContext wikiContext) |
JSPWikiLinkAttributeProviderFactory(WikiContext wikiContext) |
LocalEditLinkAttributeProviderState(WikiContext wikiContext,
String url) |
LocalFootnoteLinkAttributeProviderState(WikiContext wikiContext) |
LocalFootnoteRefLinkAttributeProviderState(WikiContext wikiContext) |
LocalLinkAttributeProviderState(WikiContext wikiContext,
boolean hasRef) |
LocalReadLinkAttributeProviderState(WikiContext wikiContext) |
WysiwygEditingAttributeProviderState(WikiContext wikiContext) |
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
JSPWikiLinkNodePostProcessor.m_context |
Constructor and Description |
---|
JSPWikiNodeRendererFactory(WikiContext wikiContext) |
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
MarkupParser.m_context |
Modifier and Type | Method and Description |
---|---|
WikiContext |
WikiDocument.getContext()
Returns the wiki context for this document.
|
Modifier and Type | Method and Description |
---|---|
void |
PluginContent.executeParse(WikiContext context)
Executes the executeParse() method.
|
void |
HeadingListener.headingAdded(WikiContext context,
Heading hd)
Is called whenever a heading is encountered in the stream.
|
String |
PluginContent.invoke(WikiContext context)
Performs plugin invocation and return its contents.
|
static PluginContent |
PluginContent.parsePluginLine(WikiContext context,
String commandline,
int pos)
Parses a plugin invocation and returns a DOM element.
|
void |
WikiDocument.setContext(WikiContext ctx)
Set the WikiContext in which the WikiDocument is rendered.
|
Constructor and Description |
---|
JSPWikiMarkupParser(WikiContext context,
Reader in)
Creates a markup parser.
|
LinkParsingOperations(WikiContext wikiContext) |
MarkupParser(WikiContext context,
Reader in)
Constructs a MarkupParser.
|
Modifier and Type | Method and Description |
---|---|
static com.vladsch.flexmark.util.data.MutableDataSet |
MarkdownDocument.options(WikiContext context)
configuration options for MarkdownRenderers.
|
Constructor and Description |
---|
MarkdownParser(WikiContext context,
Reader in) |
Modifier and Type | Method and Description |
---|---|
String |
BugReportHandler.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
Counter.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
CurrentTimePlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
Denounce.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
Groups.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
IfPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
Image.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
IndexPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
InsertPage.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
ListLocksPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
Note.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
PageViewPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
PageViewPlugin.PageViewManager.execute(WikiContext context,
Map<String,String> params)
Count a page hit, present a pages' counter or output a list of page counts.
|
String |
RecentChangesPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
ReferredPagesPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
ReferringPagesPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
ReferringUndefinedPagesPlugin.execute(WikiContext context,
Map<String,String> params) |
String |
SampleAjaxPlugin.execute(WikiContext context,
Map<String,String> params) |
String |
Search.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
SessionsPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
TableOfContents.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
UndefinedPagesPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
UnusedPagesPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
WeblogArchivePlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
WeblogEntryPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
WeblogPlugin.execute(WikiContext context,
Map<String,String> params)
This is the main entry point for any plugin.
|
String |
DefaultPluginManager.execute(WikiContext context,
String commandline)
Parses a plugin.
|
String |
DefaultPluginManager.execute(WikiContext context,
String classname,
Map<String,String> params)
Executes a plugin class in the given context.
|
void |
WeblogPlugin.executeParser(PluginContent element,
WikiContext context,
Map<String,String> params)
Mark us as being a real weblog.
|
void |
TableOfContents.headingAdded(WikiContext context,
Heading hd)
Is called whenever a heading is encountered in the stream.
|
static boolean |
IfPlugin.ifInclude(WikiContext context,
Map<String,String> params)
Returns a boolean result based on processing the WikiContext and
parameter Map as according to the rules stated in the IfPlugin
documentation.
|
void |
AbstractReferralPlugin.initialize(WikiContext context,
Map<String,String> params) |
protected String |
AbstractReferralPlugin.makeHTML(WikiContext context,
String wikitext)
Makes HTML with common parameters.
|
Modifier and Type | Method and Description |
---|---|
static ResourceBundle |
Preferences.getBundle(WikiContext context,
String bundle)
Locates the i18n ResourceBundle given.
|
static SimpleDateFormat |
Preferences.getDateFormat(WikiContext context,
Preferences.TimeFormat tf)
Get SimpleTimeFormat according to user browser locale and preferred time
formats.
|
static Locale |
Preferences.getLocale(WikiContext context)
Get Locale according to user-preference settings or the user browser locale
|
static String |
Preferences.getPreference(WikiContext wikiContext,
String name)
Returns a preference value programmatically.
|
static String |
Preferences.renderDate(WikiContext context,
Date date,
Preferences.TimeFormat tf)
A simple helper function to render a date based on the user preferences.
|
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
WikiRenderer.m_context |
Modifier and Type | Method and Description |
---|---|
String |
RenderingManager.getHTML(WikiContext context,
String pagedata)
Convenience method for rendering, using the default parser and renderer.
|
String |
RenderingManager.getHTML(WikiContext context,
WikiDocument doc)
Simply renders a WikiDocument to a String.
|
MarkupParser |
RenderingManager.getParser(WikiContext context,
String pagedata)
Returns the wiki Parser
|
protected WikiDocument |
RenderingManager.getRenderedDocument(WikiContext context,
String pagedata)
Returns a cached document, if one is found.
|
WikiRenderer |
RenderingManager.getRenderer(WikiContext context,
WikiDocument doc)
Returns a WikiRenderer instance, initialized with the given
context and doc.
|
WikiRenderer |
RenderingManager.getWysiwygRenderer(WikiContext context,
WikiDocument doc)
Returns a WikiRenderer instance meant for WYSIWYG editing, initialized with the given
context and doc.
|
Constructor and Description |
---|
CleanTextRenderer(WikiContext context,
WikiDocument doc)
Create a renderer.
|
CreoleRenderer(WikiContext ctx,
WikiDocument doc)
Creates a new Creole Renderer.
|
WikiRenderer(WikiContext context,
WikiDocument doc)
Create a WikiRenderer.
|
WysiwygEditingRenderer(WikiContext context,
WikiDocument doc)
Creates a WYSIWYG editing renderer.
|
XHTMLRenderer(WikiContext context,
WikiDocument doc)
Creates an XHTML 1.0 renderer.
|
Constructor and Description |
---|
MarkdownRenderer(WikiContext context,
WikiDocument doc) |
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
Feed.m_wikiContext |
Modifier and Type | Method and Description |
---|---|
protected String |
RSSGenerator.generateBlogRSS(WikiContext wikiContext,
List<WikiPage> changed,
Feed feed)
Creates RSS from modifications as if this page was a blog (using the WeblogPlugin).
|
String |
RSSGenerator.generateFeed(WikiContext wikiContext,
List<WikiPage> changed,
String mode,
String type)
Generates a feed based on a context and list of changes.
|
protected String |
RSSGenerator.generateFullWikiRSS(WikiContext wikiContext,
Feed feed)
Generates an RSS feed for the entire wiki.
|
protected String |
RSSGenerator.generateWikiPageRSS(WikiContext wikiContext,
List<WikiPage> changed,
Feed feed)
Create RSS/Atom as if this page was a wikipage (in contrast to Blog mode).
|
static String |
Feed.getSiteName(WikiContext context)
Figure out a site name for a feed.
|
Constructor and Description |
---|
AtomFeed(WikiContext c)
Create a new AtomFeed for a given WikiContext.
|
Feed(WikiContext context)
Create a new Feed for a particular WikiContext.
|
RSS10Feed(WikiContext context)
Create an RSS 1.0 feed for a given context.
|
RSS20Feed(WikiContext context)
Creates an RSS 2.0 feed for the specified Context.
|
Modifier and Type | Method and Description |
---|---|
Collection<SearchResult> |
LuceneSearchProvider.findPages(String query,
int flags,
WikiContext wikiContext)
Searches pages using a particular combination of flags.
|
List<Map<String,Object>> |
SearchManager.JSONSearch.findPages(String searchString,
int maxLength,
WikiContext wikiContext)
Performs a full search of pages.
|
Collection<SearchResult> |
BasicSearchProvider.findPages(String query,
WikiContext wikiContext)
Search for pages matching a search query
|
Collection<SearchResult> |
LuceneSearchProvider.findPages(String query,
WikiContext wikiContext)
Search for pages matching a search query
|
Collection<SearchResult> |
SearchManager.findPages(String query,
WikiContext wikiContext)
Sends a search to the current search provider.
|
Collection<SearchResult> |
SearchProvider.findPages(String query,
WikiContext wikiContext)
Search for pages matching a search query
|
void |
SearchManager.postSave(WikiContext wikiContext,
String content)
Reindexes the page.
|
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
IteratorTag.m_wikiContext |
protected WikiContext |
WikiBodyTag.m_wikiContext |
protected WikiContext |
WikiTagBase.m_wikiContext |
Modifier and Type | Method and Description |
---|---|
static String |
UserProfileTag.printGroups(WikiContext context)
Returns a sorted list of the
Group objects a user possesses
in his or her WikiSession. |
static String |
UserProfileTag.printRoles(WikiContext context)
Returns a sorted list of the
Role objects a user possesses
in his or her WikiSession. |
Modifier and Type | Method and Description |
---|---|
Step |
DefaultTasksManager.buildPreSaveWikiPageTask(WikiContext context,
String proposedText)
Builds a pre-save WikiPage task.
|
Step |
TasksManager.buildPreSaveWikiPageTask(WikiContext context,
String proposedText)
Builds a pre-save WikiPage task.
|
Constructor and Description |
---|
PreSaveWikiPageTask(WikiContext context,
String proposedText)
Creates the task.
|
Modifier and Type | Method and Description |
---|---|
protected WikiContext |
WikiServletFilter.getWikiContext(javax.servlet.ServletRequest request)
Figures out the wiki context from the request.
|
Modifier and Type | Method and Description |
---|---|
static void |
TemplateManager.addResourceRequest(WikiContext ctx,
String type,
String resource)
Adds a resource request to the current request context.
|
String |
GenericHTTPHandler.doGet(WikiContext context)
Return basic HTML.
|
String |
GenericHTTPHandler.doPost(WikiContext context)
Handles a POST response.
|
String |
TemplateManager.findResource(WikiContext ctx,
String template,
String name)
Attempts to locate a resource under the given template.
|
String |
EditorManager.getEditorName(WikiContext context)
Returns an editor for the current context.
|
String |
EditorManager.getEditorPath(WikiContext context)
Convenience method for getting the path to the editor JSP file.
|
static String |
TemplateManager.getMarker(WikiContext context,
String type)
Returns the include resources marker for a given type.
|
static String[] |
TemplateManager.getResourceRequests(WikiContext ctx,
String type)
Returns resource requests for a particular type.
|
static String[] |
TemplateManager.getResourceTypes(WikiContext ctx)
Returns all those types that have been requested so far.
|
Constructor and Description |
---|
Editor(WikiContext wikiContext,
String editorName) |
InputValidator(String form,
WikiContext context)
Constructs a new input validator for a specific form and wiki session.
|
Modifier and Type | Method and Description |
---|---|
String |
SimpleAdminBean.doGet(WikiContext context)
By default, this method creates a blob of HTML, listing
all the attributes which can be read or written to.
|
String |
WikiFormAdminBean.doGet(WikiContext context) |
String |
SimpleAdminBean.doPost(WikiContext context)
Not implemented yet.
|
abstract String |
WikiFormAdminBean.getForm(WikiContext context) |
String |
WikiFormAdminBean.handlePost(WikiContext context,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp) |
abstract void |
WikiFormAdminBean.handleResponse(WikiContext context,
Map<?,?> params) |
Modifier and Type | Method and Description |
---|---|
String |
ModuleBean.doGet(WikiContext context)
By default, this method creates a blob of HTML, listing
all the attributes which can be read or written to.
|
String |
PlainEditorAdminBean.doGet(WikiContext context) |
String |
SearchManagerBean.doGet(WikiContext context) |
String |
PlainEditorAdminBean.doPost(WikiContext context) |
String |
SearchManagerBean.doPost(WikiContext context) |
String |
UserBean.doPost(WikiContext context) |
Modifier and Type | Field and Description |
---|---|
protected WikiContext |
AbstractRPCHandler.m_context |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRPCHandler.initialize(WikiContext context) |
void |
MetaWeblogHandler.initialize(WikiContext context) |
void |
RPCHandler.initialize(WikiContext ctx) |
void |
WikiRPCHandler.initialize(WikiContext context) |
Copyright © 2001-2019 The Apache Software Foundation. All rights reserved.