Uses of Class
org.liquidsite.core.content.Content

Packages that use Content
org.liquidsite.app.admin.view   
org.liquidsite.app.servlet   
org.liquidsite.app.template   
org.liquidsite.core.content   
 

Uses of Content in org.liquidsite.app.admin.view
 

Methods in org.liquidsite.app.admin.view with parameters of type Content
 void SiteView.viewEditTranslator(Request request, Content reference)
          Shows the add or edit translator page.
 void SiteView.viewEditPage(Request request, Content reference)
          Shows the add or edit page page.
 void SiteView.viewEditFile(Request request, Content reference)
          Shows the add or edit file page.
 java.lang.String ScriptView.getTreeViewSelect(Content content)
          Returns the JavaScript for selecting an item in a tree view.
 java.lang.String ScriptView.getTreeView(Domain domain, Content[] children, boolean open)
          Returns the JavaScript for presenting a tree view.
 java.lang.String ScriptView.getTreeView(Content parent, Content[] children, boolean open)
          Returns the JavaScript for presenting a tree view.
 java.lang.String ScriptView.getObjectView(User user, Content content, java.lang.String view)
          Returns the JavaScript for presenting an object view.
 boolean ScriptView.isContainer(Content content)
          Checks if the specified content object is a container.
 void DialogView.viewPublish(Request request, Content content)
          Shows the content publish dialog.
 void DialogView.viewUnpublish(Request request, Content content)
          Shows the content unpublish dialog.
 void DialogView.viewRevert(Request request, Content content)
          Shows the content revert dialog.
 void DialogView.viewUnlock(Request request, Content content)
          Shows the content unlock dialog.
 void ContentView.viewEditDocument(Request request, Content reference)
          Shows the add or edit document page.
 void ContentView.viewEditForum(Request request, Content reference)
          Shows the add or edit forum page.
 void ContentView.viewEditTopic(Request request, Content reference)
          Shows the add or edit topic page.
 void ContentView.viewEditPost(Request request, Content reference)
          Shows the add or edit post page.
 

Uses of Content in org.liquidsite.app.servlet
 

Methods in org.liquidsite.app.servlet with parameters of type Content
protected  void RequestProcessor.sendContent(Request request, Content content)
          Processes a request to a content object.
 

Uses of Content in org.liquidsite.app.template
 

Methods in org.liquidsite.app.template that return Content
protected  Content ContentBean.getContent()
          Returns the encapsulated content object.
 Content BeanContext.findContent(int id)
          Finds a content object from a specified content id.
 Content BeanContext.findContent(java.lang.String path)
          Finds a content object from an absolute path.
 Content BeanContext.findContent(java.lang.Object parent, java.lang.String path)
          Finds a content object from a relative path.
 Content[] BeanContext.findContent(ContentSelector selector)
          Finds a set of content objects with a content selector.
 

Methods in org.liquidsite.app.template with parameters of type Content
 java.lang.String BeanContext.getContentPath(Content content)
          Returns the absolute path to a content object.
 

Uses of Content in org.liquidsite.core.content
 

Subclasses of Content in org.liquidsite.core.content
 class ContentDocument
          A content document.
 class ContentFile
          A web site file.
 class ContentFolder
          A web site folder.
 class ContentForum
          A discussion forum.
 class ContentPage
          A web page.
 class ContentPost
          A discussion forum post.
 class ContentSection
          A content section.
 class ContentSite
          A web site.
 class ContentTemplate
          A web page template.
 class ContentTopic
          A discussion forum topic.
 class ContentTranslator
          A web site URL translator.
 

Methods in org.liquidsite.core.content that return Content
 Content PermissionList.getContent()
          Returns the permission reference content object.
 Content Lock.getContent()
          Returns the content object.
 Content ContentTranslator.getAlias(User user)
          Returns the translator alias content.
 Content ContentManager.getContent(User user, int id)
          Returns the content object with the specified identifier and highest revision readable by the user.
 Content ContentManager.getContentChild(User user, Domain domain, java.lang.String name)
          Returns the domain root content object with the specified name and highest revision readable by the user.
 Content ContentManager.getContentChild(User user, Content parent, java.lang.String name)
          Returns the child content object with the specified name and highest revision readable by the user.
 Content[] ContentManager.getContentChildren(User user, Domain domain)
          Returns the user readable domain root content objects.
 Content[] ContentManager.getContentChildren(User user, Domain domain, int category)
          Returns the user readable domain root content objects in the specified category.
 Content[] ContentManager.getContentChildren(User user, Content parent)
          Returns the user readable child content objects.
 Content[] ContentManager.getContentChildren(User user, Content parent, int category)
          Returns the user readable child content objects in the specified category.
 Content[] ContentManager.getContentObjects(User user, ContentSelector selector)
          Returns the user readable content objects matching the selector.
 Content Content.getParent()
          Returns the content parent.
 Content Content.getParent(ContentManager manager)
          Returns the content parent.
 Content Content.getRevision(int revision)
          Returns the specified content object revision.
 Content[] Content.getAllRevisions()
          Returns an array of all content object revisions.
 

Methods in org.liquidsite.core.content with parameters of type Content
 void ContentTranslator.setAlias(Content alias)
          Sets the translator alias content.
 void ContentSelector.requireParent(Content parent)
          Adds a content parent requirement.
 Content ContentManager.getContentChild(User user, Content parent, java.lang.String name)
          Returns the child content object with the specified name and highest revision readable by the user.
 Content[] ContentManager.getContentChildren(User user, Content parent)
          Returns the user readable child content objects.
 Content[] ContentManager.getContentChildren(User user, Content parent, int category)
          Returns the user readable child content objects in the specified category.
 PermissionList ContentManager.getPermissions(Content content, boolean inherit)
          Returns the permission list applicable to a content object.
 boolean Content.equals(Content obj)
          Checks if this content object equals another object.
 void Content.setParent(Content parent)
          Sets the content parent.
 

Constructors in org.liquidsite.core.content with parameters of type Content
PermissionList(ContentManager manager, Content content)
          Creates a new empty permission list for a content object.
Lock(ContentManager manager, Content content)
          Creates a new lock with default values.
ContentTranslator(ContentManager manager, Content parent)
          Creates a new translator with default values.
ContentSecurityException(User user, java.lang.String op, Content obj)
          Creates a new content security exception.
ContentPage(ContentManager manager, Content parent)
          Creates a new page with default values.
ContentFolder(ContentManager manager, Content parent)
          Creates a new folder with default values.
ContentFile(ContentManager manager, Content parent, java.lang.String name)
          Creates a new file with default values.