Uses of Class
com.ecyrd.jspwiki.WikiContext

Packages that use WikiContext
com.ecyrd.jspwiki   
com.ecyrd.jspwiki.attachment   
com.ecyrd.jspwiki.auth   
com.ecyrd.jspwiki.auth.authorize   
com.ecyrd.jspwiki.dav   
com.ecyrd.jspwiki.filters   
com.ecyrd.jspwiki.forms Contains classes for doing form handling within JSPWiki. 
com.ecyrd.jspwiki.htmltowiki   
com.ecyrd.jspwiki.parser   
com.ecyrd.jspwiki.plugin Provides plugins to the JSPWiki. 
com.ecyrd.jspwiki.render   
com.ecyrd.jspwiki.rss   
com.ecyrd.jspwiki.search   
com.ecyrd.jspwiki.tags   
com.ecyrd.jspwiki.ui   
com.ecyrd.jspwiki.util Provides a number of utility libraries that are of general use. 
 

Uses of WikiContext in com.ecyrd.jspwiki
 

Methods in com.ecyrd.jspwiki that return WikiContext
 WikiContext WikiEngine.createContext(javax.servlet.http.HttpServletRequest request, String requestContext)
          Shortcut to create a WikiContext from the Wiki page.
static WikiContext WikiContext.findContext(javax.servlet.jsp.PageContext pageContext)
          This method can be used to find the WikiContext programmatically from a JSP PageContext.
 

Methods in com.ecyrd.jspwiki with parameters of type WikiContext
 String VariableManager.expandVariables(WikiContext context, String source)
          This method does in-place expansion of any variables.
 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)
           
 String WikiEngine.getVariable(WikiContext context, String name)
          Shortcut to getVariableManager().getValue().
 String StringTransmutator.mutate(WikiContext context, String source)
          Returns a changed String, suitable for Wiki context.
 String LinkCollector.mutate(WikiContext context, String in)
           
 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.
 String PageRenamer.renamePage(WikiContext context, String oldName, String newName, 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.
 

Constructors in com.ecyrd.jspwiki with parameters of type WikiContext
TranslatorReader(WikiContext context, Reader in)
          Deprecated. Creates a TranslatorReader using the default HTML renderer.
TranslatorReader(WikiContext context, Reader in, TranslatorReader.TextRenderer renderer)
          Deprecated.  
 

Uses of WikiContext in com.ecyrd.jspwiki.attachment
 

Methods in com.ecyrd.jspwiki.attachment with parameters of type WikiContext
protected  boolean AttachmentServlet.executeUpload(WikiContext context, InputStream data, String filename, String errorPage, String parentPage, long contentLength)
           
 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.
 

Uses of WikiContext in com.ecyrd.jspwiki.auth
 

Methods in com.ecyrd.jspwiki.auth with parameters of type WikiContext
 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.
 

Uses of WikiContext in com.ecyrd.jspwiki.auth.authorize
 

Methods in com.ecyrd.jspwiki.auth.authorize with parameters of type WikiContext
 void DefaultGroupManager.SaveFilter.postSave(WikiContext context, String content)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.dav
 

Methods in com.ecyrd.jspwiki.dav with parameters of type WikiContext
static String DavUtil.getCollectionInHTML(WikiContext context, Collection coll)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.filters
 

Methods in com.ecyrd.jspwiki.filters with parameters of type WikiContext
 void FilterManager.doPostSaveFiltering(WikiContext context, String pageData)
          Does the page filtering after the page has been saved.
 String FilterManager.doPostTranslateFiltering(WikiContext context, String pageData)
          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.
 void PingWeblogsComFilter.postSave(WikiContext context, String pagecontent)
           
 void PageFilter.postSave(WikiContext wikiContext, String content)
          This method is called after the page has been successfully saved.
 void BasicPageFilter.postSave(WikiContext wikiContext, String content)
           
 String PageFilter.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 BasicPageFilter.postTranslate(WikiContext wikiContext, String htmlContent)
           
 String SpamFilter.preSave(WikiContext context, String content)
           
 String PageFilter.preSave(WikiContext wikiContext, String content)
          This method is called before the page has been saved to the PageProvider.
 String BasicPageFilter.preSave(WikiContext wikiContext, String content)
           
 String ProfanityFilter.preTranslate(WikiContext context, String content)
           
 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 TranslatorReader.
 String BasicPageFilter.preTranslate(WikiContext wikiContext, String content)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.forms
 

Methods in com.ecyrd.jspwiki.forms with parameters of type WikiContext
 String FormTextarea.execute(WikiContext ctx, Map params)
           
 String FormSet.execute(WikiContext ctx, Map params)
           
 String FormSelect.execute(WikiContext ctx, Map params)
           
 String FormOutput.execute(WikiContext ctx, Map params)
          Executes the FormHandler specified in a Form 'output' plugin, using entries provided in the HttpRequest as FormHandler parameters.
 String FormOpen.execute(WikiContext ctx, Map params)
           
 String FormInput.execute(WikiContext ctx, Map params)
          Generates a dynamic form element on the WikiPage.
 String FormClose.execute(WikiContext ctx, Map params)
          Builds a Form close tag.
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.
 

Uses of WikiContext in com.ecyrd.jspwiki.htmltowiki
 

Methods in com.ecyrd.jspwiki.htmltowiki with parameters of type WikiContext
 String HtmlStringToWikiTranslator.translate(String html, WikiContext wikiContext)
           
 

Constructors in com.ecyrd.jspwiki.htmltowiki with parameters of type WikiContext
XHtmlToWikiConfig(WikiContext wikiContext)
          The constructor initializes the different internal fields according to the current URLConstructor.
 

Uses of WikiContext in com.ecyrd.jspwiki.parser
 

Fields in com.ecyrd.jspwiki.parser declared as WikiContext
protected  WikiContext MarkupParser.m_context
           
 

Methods in com.ecyrd.jspwiki.parser that return WikiContext
 WikiContext WikiDocument.getContext()
          Returns the wiki context for this document.
 

Methods in com.ecyrd.jspwiki.parser with parameters of type WikiContext
 void HeadingListener.headingAdded(WikiContext context, Heading hd)
          Is called whenever a heading is encountered in the stream.
 void WikiDocument.setContext(WikiContext ctx)
           
 

Constructors in com.ecyrd.jspwiki.parser with parameters of type WikiContext
JSPWikiMarkupParser(WikiContext context, Reader in)
          Creates a markup parser.
MarkupParser(WikiContext context, Reader in)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.plugin
 

Methods in com.ecyrd.jspwiki.plugin with parameters of type WikiContext
protected  void IndexPlugin.addPageToIndex(WikiContext context, WikiPage i_curPage, TranslatorReader i_linkProcessor)
           
 String WikiPlugin.execute(WikiContext context, Map params)
          This is the main entry point for any plugin.
 String WeblogPlugin.execute(WikiContext context, Map params)
           
 String WeblogEntryPlugin.execute(WikiContext context, Map params)
           
 String WeblogArchivePlugin.execute(WikiContext context, Map params)
           
 String VotePlugin.execute(WikiContext context, Map params)
           
 String UnusedPagesPlugin.execute(WikiContext context, Map params)
           
 String UndefinedPagesPlugin.execute(WikiContext context, Map params)
           
 String TableOfContents.execute(WikiContext context, Map params)
           
 String SessionsPlugin.execute(WikiContext context, Map params)
           
 String Search.execute(WikiContext context, Map params)
           
 String ReferringPagesPlugin.execute(WikiContext context, Map params)
           
 String ReferredPagesPlugin.execute(WikiContext context, Map params)
           
 String RecentChangesPlugin.execute(WikiContext context, Map params)
           
 String ListLocksPlugin.execute(WikiContext context, Map params)
           
 String InsertPage.execute(WikiContext context, Map params)
           
 String IndexPlugin.execute(WikiContext i_context, Map i_params)
           
 String Image.execute(WikiContext context, Map params)
           
 String Denounce.execute(WikiContext context, Map params)
           
 String CurrentTimePlugin.execute(WikiContext context, Map params)
           
 String Counter.execute(WikiContext context, Map params)
           
 String BugReportHandler.execute(WikiContext context, Map params)
           
 String PluginManager.execute(WikiContext context, String commandline)
          Parses a plugin.
 String PluginManager.execute(WikiContext context, String classname, Map params)
          Executes a plugin class in the given context.
protected  void ReferredPagesPlugin.getReferredPages(WikiContext context, String pagename, int depth)
          Retrieves a list of all referred pages.
protected  void ReferredPagesPlugin.handleLinks(WikiContext context, Collection links, int depth, String pagename)
           
 void TableOfContents.headingAdded(WikiContext context, Heading hd)
           
 void WeblogPlugin.initialize(WikiContext context, Map params)
          Just sets the "I am a weblog" mark.
 void InitializablePlugin.initialize(WikiContext context, Map params)
          The initialization routine.
 void AbstractReferralPlugin.initialize(WikiContext context, Map params)
          Used to initialize some things.
protected  String AbstractReferralPlugin.makeHTML(WikiContext context, String wikitext)
          Makes HTML with common parameters.
 Content PluginManager.parsePluginLine(WikiContext context, String commandline)
           
 int VotePlugin.vote(WikiContext context, int vote)
          +1 for yes, -1 for no.
 

Uses of WikiContext in com.ecyrd.jspwiki.render
 

Fields in com.ecyrd.jspwiki.render declared as WikiContext
protected  WikiContext WikiRenderer.m_context
           
 

Methods in com.ecyrd.jspwiki.render with parameters of type WikiContext
 String RenderingManager.getHTML(WikiContext context, String pagedata)
          Convinience 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 default Parser for this context.
protected  WikiDocument RenderingManager.getRenderedDocument(WikiContext context, String pagedata)
          Returns a cached document, if one is found.
 void RenderingManager.postSave(WikiContext wikiContext, String content)
          Flushes the cache objects that refer to this page.
 String RenderingManager.postTranslate(WikiContext wikiContext, String htmlContent)
           
 String RenderingManager.preSave(WikiContext wikiContext, String content)
           
 String RenderingManager.preTranslate(WikiContext wikiContext, String content)
           
 

Constructors in com.ecyrd.jspwiki.render with parameters of type WikiContext
CleanTextRenderer(WikiContext context, WikiDocument doc)
           
WikiRenderer(WikiContext context, WikiDocument doc)
           
XHTMLRenderer(WikiContext context, WikiDocument doc)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.rss
 

Fields in com.ecyrd.jspwiki.rss declared as WikiContext
protected  WikiContext Feed.m_wikiContext
           
 

Methods in com.ecyrd.jspwiki.rss with parameters of type WikiContext
protected  String RSSGenerator.generateBlogRSS(WikiContext wikiContext, List changed, Feed feed)
           
 String RSSGenerator.generateFeed(WikiContext wikiContext, List 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 changed, Feed feed)
           
 

Constructors in com.ecyrd.jspwiki.rss with parameters of type WikiContext
AtomFeed(WikiContext c)
           
Feed(WikiContext context)
           
RSS10Feed(WikiContext context)
           
RSS20Feed(WikiContext context)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.search
 

Methods in com.ecyrd.jspwiki.search with parameters of type WikiContext
 void SearchManager.postSave(WikiContext wikiContext, String content)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.tags
 

Fields in com.ecyrd.jspwiki.tags declared as WikiContext
protected  WikiContext WikiTagBase.m_wikiContext
           
protected  WikiContext WikiBodyTag.m_wikiContext
           
protected  WikiContext IteratorTag.m_wikiContext
           
 

Uses of WikiContext in com.ecyrd.jspwiki.ui
 

Methods in com.ecyrd.jspwiki.ui with parameters of type WikiContext
static void TemplateManager.addResourceRequest(WikiContext ctx, String type, String resource)
          Adds a resource request to the current request context.
 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.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.
 String TemplateManager.getTemplateProperty(WikiContext context, String key)
          Returns a property, as defined in the template.
 

Constructors in com.ecyrd.jspwiki.ui with parameters of type WikiContext
Editor(WikiContext wikiContext, String editorName)
           
 

Uses of WikiContext in com.ecyrd.jspwiki.util
 

Methods in com.ecyrd.jspwiki.util with parameters of type WikiContext
static String BlogUtil.getSiteName(WikiContext context)
          Figure out a site name for a feed.