Uses of Class
com.arsdigita.cms.ContentSection

Packages that use ContentSection
com.arsdigita.cms Contains the core classes for the Red Hat Content Management System (CMS), classes that persist the fundamental objects for CMS such as content items, templates, content sections, and content types
com.arsdigita.cms.contenttypes   
com.arsdigita.cms.dispatcher Provides a set of classes that serves requests to the Content Management System. 
com.arsdigita.cms.installer Provides a set of classes to install and initialize the Content Management System. 
com.arsdigita.cms.installer.xml   
com.arsdigita.cms.publishToFile The Publish-To-Filesystem(P2FS) service writes published content to the file system so that another webserver (e.g. 
com.arsdigita.cms.ui Provides a set of UI components and tools for the Content Management System. 
com.arsdigita.cms.ui.authoring Provides a set of UI components and tools for the Authoring Kit user interface. 
com.arsdigita.cms.ui.item Contains the set of classes that implements the user interface for managing a single ContentItem
com.arsdigita.cms.ui.role   
com.arsdigita.cms.ui.search   
com.arsdigita.cms.ui.type Provides the set of classes that implements the user interface for managing pre-defined content types. 
com.arsdigita.cms.ui.workflow Contains the set of classes that implement the user interface for creating workflow templates, assigning parties to tasks, applying workflows to items, and managing task state. 
com.arsdigita.cms.workflow Provides a set of classes that model a CMS-specific workflow engine. 
 

Uses of ContentSection in com.arsdigita.cms
 

Methods in com.arsdigita.cms that return ContentSection
 ContentSection UserHomeFolderMap.getHomeSection()
           
 ContentSection SectionTemplateMapping.getContentSection()
           
 ContentSection ItemTemplateMapping.getContentSection()
           
abstract  ContentSection TemplateMapping.getContentSection()
          Return the context section where the template is associated.
 ContentSection CategoryTemplateMapping.getContentSection()
          Returns the ContentSection for this CategoryTemplateMapping
 ContentSection CMSContext.getContentSection()
          Gets the current content section
 ContentSection ContentSectionCollection.getContentSection()
          Returns a MimeType for the current position in the collection.
static ContentSection ContentSection.getSectionFromNode(com.arsdigita.kernel.SiteNode node)
          Looks up the section given the SiteNode.
static ContentSection ContentSection.getContentSection(ContentItem item)
          Deprecated. use ContentItem.getContentSection() instead
static ContentSection ContentSection.getContentSection(Folder folder)
          Deprecated. use ContentItem.getContentSection() instead
static ContentSection ContentSection.create(String name, Folder folder, com.arsdigita.categorization.Category category, com.arsdigita.kernel.Group staff, String prc, String irc, String xgc)
          Create a new content section.
static ContentSection ContentSection.create(String name, Folder folder, com.arsdigita.categorization.Category category, com.arsdigita.kernel.Group staff, String prc, String irc, String xgc, String trc)
          Create a new content section.
static ContentSection ContentSection.create(String name)
          Method create.
 ContentSection ContentSection.initialize(String name, Folder folder, com.arsdigita.categorization.Category category, com.arsdigita.kernel.Group staff, String prc, String irc, String xgc, String trc, Folder templates, com.arsdigita.kernel.Group viewers)
          Initialize a newly created content section.
 ContentSection ContentItem.getContentSection()
          Returns the content section to which this item belongs.
 

Methods in com.arsdigita.cms with parameters of type ContentSection
 void UserHomeFolderMap.setHomeSection(ContentSection section)
           
static UserHomeFolderMap UserHomeFolderMap.findUserHomeFolderMap(com.arsdigita.kernel.User user, ContentSection section)
           
static UserHomeFolderMap UserHomeFolderMap.findOrCreateUserHomeFolderMap(com.arsdigita.kernel.User user, ContentSection section)
           
 void SectionTemplateMapping.setContentSection(ContentSection sec)
           
protected static SectionTemplateMapping SectionTemplateMapping.getMapping(ContentSection section, ContentType type, Template template, String useContext)
          Deprecated. use getMapping(ContentSection section, ContentType type, Template template, String useContext, MimeType mimeType)
protected static SectionTemplateMapping SectionTemplateMapping.getMapping(ContentSection section, ContentType type, Template template, String useContext, com.arsdigita.mimetypes.MimeType mimeType)
          Load the specified mapping; return null if no such mapping exists
protected static Template SectionTemplateMapping.getDefaultTemplate(ContentSection section, ContentType type, String useContext, com.arsdigita.mimetypes.MimeType mimeType)
          Get the default template for the given use context and mime type
protected static Template SectionTemplateMapping.getDefaultTemplate(ContentSection section, ContentType type, String useContext)
          Deprecated. use getDefaultTemplates with the MimeType or use the collection since there can be one default per mime type per context
protected static com.arsdigita.cms.SectionTemplateCollection SectionTemplateMapping.getDefaultTemplates(ContentSection section, ContentType type, String useContext)
          Get the default template for the given use context
protected static com.arsdigita.cms.SectionTemplateCollection SectionTemplateMapping.getTemplates(ContentSection section, ContentType type, String useContext)
          Retrieve all templates for the given content, type, and use context
protected static com.arsdigita.cms.SectionTemplateCollection SectionTemplateMapping.getTemplates(ContentSection section, ContentType type)
          Retrieve all templates for the given content section and type, along with their use context
protected static com.arsdigita.cms.SectionTemplateCollection SectionTemplateMapping.getTemplates(ContentSection section)
          Retrieve all templates for the given content section, and all types within it, along with their use context
 void TemplateManager.addTemplate(ContentSection section, ContentType type, Template template, String context)
          Add a template to the given content type for the given content section.
 void TemplateManager.removeTemplate(ContentSection section, ContentType type, Template template, String context)
          Remove the specified template from the content type in the given context.
 void TemplateManager.addTemplate(ContentSection section, ContentType type, Template template, String context, boolean isDefault)
          Add a template to the given content type for the given content section.
 void TemplateManager.setDefaultTemplate(ContentSection section, ContentType type, Template template, String context)
          Designate the given template as the default template within its use context.
 Template TemplateManager.getDefaultTemplate(ContentSection section, ContentType type, String context)
          Deprecated. Use getDefaultTemplate(ContentSection, ContentType, String, MimeType)
 Template TemplateManager.getDefaultTemplate(ContentSection section, ContentType type, String context, com.arsdigita.mimetypes.MimeType mimeType)
          Get the default template for the given section, type and use context
 TemplateCollection TemplateManager.getTemplates(ContentSection section, ContentType type)
          Get all the templates within the given section and type
 TemplateCollection TemplateManager.getTemplates(ContentSection section, ContentType type, String context)
          Get all the templates within the given section, type and context
 void DefaultTemplateManager.addTemplate(ContentSection section, ContentType type, Template template, String context, boolean isDefault)
          Add a template to the given content type for the given content section.
 void DefaultTemplateManager.setDefaultTemplate(ContentSection section, ContentType type, Template template, String useContext)
          Designate the given template as the default template within its use context.
 void DefaultTemplateManager.addTemplate(ContentSection section, ContentType type, Template template, String context)
          Add a template to the given content type for the given content section.
 void DefaultTemplateManager.removeTemplate(ContentSection section, ContentType type, Template template, String context)
          Remove the specified template from the content type in the given context.
 Template DefaultTemplateManager.getDefaultTemplate(ContentSection section, ContentType type, String context)
          Get the default template for the given section, type and use context
 Template DefaultTemplateManager.getDefaultTemplate(ContentSection section, ContentType type, String context, com.arsdigita.mimetypes.MimeType mimeType)
          Get the default template for the given section, type and use context
 TemplateCollection DefaultTemplateManager.getTemplates(ContentSection section, ContentType type)
          Get all the templates within the given section and type
 TemplateCollection DefaultTemplateManager.getTemplates(ContentSection section, ContentType type, String context)
          Get all the templates within the given section, type and context
protected  void ContentTypeWorkflowTemplate.setContentSection(ContentSection section)
           
static com.arsdigita.workflow.simple.WorkflowTemplate ContentTypeWorkflowTemplate.getWorkflowTemplate(ContentSection section, ContentType type)
          Get the default associated workflow template for a content type in a particular content section.
static boolean ContentTypeWorkflowTemplate.updateWorkflowTemplate(ContentSection section, ContentType type, com.arsdigita.workflow.simple.WorkflowTemplate template)
          Associate a default workflow template for a content type in a particular content section.
static boolean ContentTypeWorkflowTemplate.removeWorkflowTemplate(ContentSection section, ContentType type)
          Remove the default workflow template association for a content type in a particular content section.
protected  void ContentTypeLifecycleDefinition.setContentSection(ContentSection section)
           
static LifecycleDefinition ContentTypeLifecycleDefinition.getLifecycleDefinition(ContentSection section, ContentType type)
          Get the default associated lifecycle definition for a content type in a particular content section
static boolean ContentTypeLifecycleDefinition.updateLifecycleDefinition(ContentSection section, ContentType type, LifecycleDefinition lifecycle)
          Associated a default lifecycle definition for a content type in a particular content section.
static boolean ContentTypeLifecycleDefinition.removeLifecycleDefinition(ContentSection section, ContentType type)
          Remove the default lifecycle definition association for a content type in a particular content section.
 ItemResolver ContentSectionServlet.getItemResolver(ContentSection section)
          Fetches the ItemResolver for a content section.
 ContentItem ContentSectionServlet.getItem(ContentSection section, String url, ItemResolver itemResolver)
           
 ContentItem ContentSectionServlet.getItem(ContentSection section, String url)
           
static void ContentSectionServlet.itemURLCachePut(ContentSection section, String sURL, ContentItem item)
          Maps the content item to the URL in a cache
static void ContentSectionServlet.itemURLCacheRemove(ContentSection section, String sURL)
          Removes the cache entry for the URL, sURL
static ContentItem ContentSectionServlet.itemURLCacheGet(ContentSection section, String sURL)
          Fetches the ContentItem published at that URL from the cache
 void CategoryTemplateMapping.setContentSection(ContentSection sec)
          Sets the ContentSection for this CategoryTemplateMapping
protected  void CMSExcursion.setContentSection(ContentSection section)
          Sets the current content section.
protected static com.arsdigita.persistence.DataQuery ContentPage.setPagesQueryParameters(String name, ContentSection s, String context)
          Deprecated. This doesn't filter its results based on the permissions of the current user. Use setPagesQueryParameters( String name, ContentSection s, String context, OID userOID ) instead.
protected static com.arsdigita.persistence.DataQuery ContentPage.setPagesQueryParameters(String name, ContentSection s, String context, com.arsdigita.persistence.OID userOID)
           
static com.arsdigita.persistence.DataQuery ContentPage.getPagesInSectionQuery(ContentSection s, String context, com.arsdigita.categorization.Category cat)
          Deprecated. This doesn't filter its results based on the permissions of the current user. Use getPagesInSectionQuery( ContentSection s, String context, Category cat, OID userOID ) instead.
static com.arsdigita.persistence.DataQuery ContentPage.getPagesInSectionQuery(ContentSection s, String context, com.arsdigita.categorization.Category cat, com.arsdigita.persistence.OID userOID)
          Retrieve all pages within the given content section that belong to the given category
static com.arsdigita.persistence.DataQuery ContentPage.getPagesInSectionQuery(ContentSection s, String context)
          Deprecated. This doesn't filter its results based on the permissions of the current user. Use getPagesInSectionQuery( ContentSection s, String context, OID userOID ) instead.
static com.arsdigita.persistence.DataQuery ContentPage.getPagesInSectionQuery(ContentSection s, String context, com.arsdigita.persistence.OID userOID)
          Retrieve all pages within the given content section.
static Folder Folder.getUserHomeFolder(com.arsdigita.kernel.User user, ContentSection section)
           
protected static void ContentSection.createDefaultResources(ContentSection section)
          Creates and maps default resources to the content section.
 void ContentItem.setContentSection(ContentSection section)
          Set the content section of an item.
 

Constructors in com.arsdigita.cms with parameters of type ContentSection
SecurityManager(ContentSection section)
           
 

Uses of ContentSection in com.arsdigita.cms.contenttypes
 

Methods in com.arsdigita.cms.contenttypes with parameters of type ContentSection
protected  void AbstractContentTypeLoader.prepareSection(ContentSection section, ContentType type, LifecycleDefinition ld, com.arsdigita.workflow.simple.WorkflowTemplate wf)
           
protected  Template AbstractContentTypeLoader.setDefaultTemplate(String name, String label, URL templateURL, ContentSection section, ContentType type, LifecycleDefinition ld, com.arsdigita.workflow.simple.WorkflowTemplate wf)
          This provides an easy way to subtypes to register default templates during the loading.
 

Uses of ContentSection in com.arsdigita.cms.dispatcher
 

Methods in com.arsdigita.cms.dispatcher that return ContentSection
static ContentSection ContentSectionDispatcher.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetches the content section from the request attributes.
 ContentSection MasterPage.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetch the request-local content section.
static ContentSection CMSDispatcher.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetches the content section from the request attributes.
protected  ContentSection CMSDispatcher.findContentSection(String url)
          Looks up the current content section using the remaining URL stored in the request context object and the SiteNode class.
 ContentSection ResourceHandlerImpl.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetch the request-local content section.
 ContentSection CMSPage.getContentSection(javax.servlet.http.HttpServletRequest request)
          Deprecated. use com.arsdigita.cms.CMS.getContext().getContentSection() instead
 ContentSection CMSPage.getContentSection(com.arsdigita.bebop.PageState state)
          Deprecated. use com.arsdigita.cms.CMS.getContext().getContentSection() instead
 ContentSection ResourceHandler.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetches the content section context for this resource.
 

Methods in com.arsdigita.cms.dispatcher with parameters of type ContentSection
static Date Utilities.getLastSectionRefresh(ContentSection section)
          Check for the last refresh on authoring kits or content types in a section.
 ContentItem SimpleItemResolver.getItem(ContentSection section, String url, String context)
          Return a content item based on page state (and content section).
 String SimpleItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context)
          Generates a URL for a content item.
 String SimpleItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 String SimpleItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context)
          Generates a URL for a content item.
 String SimpleItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 ResourceMapping Resource.createInstance(ContentSection section, String url)
          Creates a new resource object.
static Resource Resource.findResource(ContentSection section, String url)
           
 ContentItem ItemDispatcher.getItem(ContentSection section, String url)
           
 ItemResolver ItemDispatcher.getItemResolver(ContentSection section)
          Fetches the ItemResolver for a content section.
 TemplateResolver ItemDispatcher.getTemplateResolver(ContentSection section)
          Fetches the ItemResolver for a content section.
 String ItemDispatcher.getTemplateURL(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request, com.arsdigita.dispatcher.RequestContext actx)
          Fetches the URL of a template for an item.
static boolean ContentSectionDispatcher.checkAdminAccess(javax.servlet.http.HttpServletRequest request, ContentSection section)
          Checks that the current user has permission to access the admin pages.
 String DefaultTemplateResolver.getTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the JSP template filename relative to the webapp root.
protected  String DefaultTemplateResolver.getItemTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the template associated with the item (if any)
protected  String DefaultTemplateResolver.getTypeTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Deprecated. Use the version that specifies a mime type
protected  String DefaultTemplateResolver.getTypeTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request, com.arsdigita.mimetypes.MimeType mimeType)
          Returns the template associated with the type (if any)
protected  String DefaultTemplateResolver.getDefaultTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the default template
protected  String DefaultTemplateResolver.getTemplateFilename(Template template, ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the filename for a Template object
protected  String DefaultTemplateResolver.getTemplateXSLFilename(Template template, ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the filename for a Template object
protected  String DefaultTemplateResolver.getTemplateFilename(Template template, ContentSection section)
          Returns the filename for a Template object
protected  String DefaultTemplateResolver.getTemplateXSLFilename(Template template, ContentSection section)
          Returns the filename for a Template object
 ContentItem MultilingualItemResolver.getItem(ContentSection section, String url, String context)
          Returns a content item based on section, url, and use context.
 String MultilingualItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context)
          Generates a URL for a content item.
 String MultilingualItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 String MultilingualItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context)
          Generates a URL for a content item.
 String MultilingualItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
protected  String MultilingualItemResolver.generateDraftURL(ContentSection section, BigDecimal itemId)
          Returns content item's draft version URL
protected  String MultilingualItemResolver.generateLiveURL(ContentSection section, ContentItem item, String templateContext)
          Generate a language-independent URL to the item in the given section.
protected  String MultilingualItemResolver.generatePreviewURL(ContentSection section, ContentItem item, String templateContext)
          Generate a URL which can be used to preview the item, using the given templateContext.
 ContentItem CategoryItemResolverImpl.getItem(ContentSection section, String url, String context)
          Returns a content item based on section, url, and use context.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context)
          Generates a URL for a content item.
 String CategoryItemResolverImpl.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
protected  String CategoryItemResolverImpl.generateLiveURL(ContentSection section, ContentItem item, String templateContext, com.arsdigita.categorization.Category category)
          Generate a language-independent URL to the item in the given section.
protected  String CategoryItemResolverImpl.generatePreviewURL(ContentSection section, ContentItem item, String templateContext, com.arsdigita.categorization.Category category)
          Generate a URL which can be used to preview the item, using the given templateContext.
 String CategoryItemResolverImpl.getTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
           
protected  String CategoryItemResolverImpl.CategoryTemplateResolver.getItemTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the template associated with the item (if any)
 String CategoryItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
 String CategoryItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext, com.arsdigita.categorization.Category category)
          Generates a URL for a content item.
protected  SecurityManager CMSDispatcher.getSecurityManager(ContentSection section)
          Returns the Security Manager to use for the specified section.
protected  ResourceHandler CMSDispatcher.getResource(ContentSection section, String url)
          Fetch a resource based on the URL stub.
protected  ContentItem CMSDispatcher.getContentItem(ContentSection section, String url, String context)
          Lookup a content item by section and URL.
static void CMSDispatcher.releaseResource(ContentSection section, String url)
          Flushes the page resolver cache.
static PageResolver CMSDispatcher.getPageResolver(ContentSection section)
          Fetches the PageResolver for a content section.
static ItemResolver CMSDispatcher.getItemResolver(ContentSection section)
          Fetches the ItemResolver for a content section.
static XMLGenerator CMSDispatcher.getXMLGenerator(ContentSection section)
          Fetches the XMLGenerator for a content section.
abstract  String AbstractTemplateResolver.getTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
           
abstract  ContentItem AbstractItemResolver.getItem(ContentSection section, String url, String context)
           
abstract  String AbstractItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context)
           
abstract  String AbstractItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext)
           
abstract  String AbstractItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context)
           
abstract  String AbstractItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext)
           
static void ContentItemDispatcher.cachePut(ContentSection section, ContentType type, Template t)
          Method cachePut.
 TemplateResolver ContentItemDispatcher.getTemplateResolver(ContentSection section)
          Fetches the TemplateResolver for a content section.
 String TemplateResolver.getTemplate(ContentSection section, ContentItem item, javax.servlet.http.HttpServletRequest request)
          Returns the JSP template filename relative to the webapp root.
 ContentItem ItemResolver.getItem(ContentSection section, String url, String context)
          Return a content item based on section, url, and use context.
 String ItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context)
          Generates a URL for a content item.
 String ItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, BigDecimal itemId, String name, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 String ItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context)
          Generates a URL for a content item.
 String ItemResolver.generateItemURL(com.arsdigita.bebop.PageState state, ContentItem item, ContentSection section, String context, String templateContext)
          Generates a URL for a content item.
 

Uses of ContentSection in com.arsdigita.cms.installer
 

Methods in com.arsdigita.cms.installer with parameters of type ContentSection
protected static void Installer.createDefaultResources(ContentSection section)
          Creates and maps default resources to the content section.
 

Constructors in com.arsdigita.cms.installer with parameters of type ContentSection
ContentSectionSetup(ContentSection section)
           
 

Uses of ContentSection in com.arsdigita.cms.installer.xml
 

Methods in com.arsdigita.cms.installer.xml that return ContentSection
 ContentSection ContentItemLoader.getContentSection()
           
 ContentSection ContentItemHelper.getContentSection()
           
 

Methods in com.arsdigita.cms.installer.xml with parameters of type ContentSection
 void ContentItemLoader.loadContentItems(String path, ContentSection section)
           
 void ContentItemHelper.setContentSection(ContentSection section)
           
 

Constructors in com.arsdigita.cms.installer.xml with parameters of type ContentSection
XMLContentItemHandler(ContentSection section)
           
TextPageHelper(ContentSection section)
           
ContentPageHelper(ContentSection section)
           
ContentItemHelper(ContentSection section)
           
ContentBundleHelper(ContentSection section)
           
 

Uses of ContentSection in com.arsdigita.cms.publishToFile
 

Methods in com.arsdigita.cms.publishToFile with parameters of type ContentSection
static void Utilities.updateContentSection(ContentItem item, ContentSection newSection)
          Applies Content Section to an ContentPage, ContentBundle and Folder, if their ContentSections are different.
 

Uses of ContentSection in com.arsdigita.cms.ui
 

Methods in com.arsdigita.cms.ui that return ContentSection
protected  ContentSection UniqueItemNameValidationListener.getContentSection(com.arsdigita.bebop.PageState state)
          Fetch the current content section.
protected  ContentSection SectionConfigurationPage.SectionInfo.getContentSection(com.arsdigita.bebop.PageState state)
           
protected  ContentSection SectionConfigurationPage.EditSection.getContentSection(com.arsdigita.bebop.PageState state)
           
protected  ContentSection SectionConfigurationPage.AddLocale.getContentSection(com.arsdigita.bebop.PageState state)
           
 ContentSection ContentSectionRequestLocal.getContentSection(com.arsdigita.bebop.PageState state)
           
 ContentSection ContentSectionPage.getContentSection(javax.servlet.http.HttpServletRequest request)
          Fetch the request-local content section.
 ContentSection ContentItemPage.getContentSection(javax.servlet.http.HttpServletRequest request)
          Deprecated. use com.arsdigita.cms.CMS.getContext().getContentSection() instead
 

Uses of ContentSection in com.arsdigita.cms.ui.authoring
 

Methods in com.arsdigita.cms.ui.authoring that return ContentSection
 ContentSection CreationSelector.getContentSection(com.arsdigita.bebop.PageState s)
          Return the currently selected content section.
abstract  ContentSection NewItemForm.getContentSection(com.arsdigita.bebop.PageState state)
           
 

Uses of ContentSection in com.arsdigita.cms.ui.item
 

Methods in com.arsdigita.cms.ui.item that return ContentSection
protected  ContentSection Summary.getContentSection(com.arsdigita.bebop.PageState state)
          Fetch the current content section.
 

Uses of ContentSection in com.arsdigita.cms.ui.role
 

Methods in com.arsdigita.cms.ui.role with parameters of type ContentSection
static String[] RoleFactory.getRolePrivileges(ContentSection section, com.arsdigita.kernel.Role role)
          Fetch the CMS privileges associated with a role and content section.
 

Uses of ContentSection in com.arsdigita.cms.ui.search
 

Constructors in com.arsdigita.cms.ui.search with parameters of type ContentSection
ContentTypeFilterWidget(ContentSection section)
           
 

Uses of ContentSection in com.arsdigita.cms.ui.type
 

Methods in com.arsdigita.cms.ui.type with parameters of type ContentSection
protected  void CreateType.updateContentTypeAssociation(ContentSection section, ContentType type)
          registers the new type to this content section and creates authoring kit for the content type.
protected  void CreateType.updateContentTypeAssociation(ContentSection section, ContentType type, ContentType parentType)
          registers the new type to this content section and creates authoring kit for the content type
protected  void AddType.updateContentTypeAssociation(ContentSection section, ContentType type)
           
 

Uses of ContentSection in com.arsdigita.cms.ui.workflow
 

Methods in com.arsdigita.cms.ui.workflow that return ContentSection
protected  ContentSection WorkflowsOptionPrintListener.getContentSection(com.arsdigita.bebop.PageState state)
           
 

Uses of ContentSection in com.arsdigita.cms.workflow
 

Methods in com.arsdigita.cms.workflow that return ContentSection
 ContentSection CMSTask.getContentSection()
          Get the ContentSection of the ContentItem that this Task is associated with.
 

Methods in com.arsdigita.cms.workflow with parameters of type ContentSection
static void CMSTask.addAlert(ContentSection section, String typeLabel, String operation)
           
protected static boolean CMSTask.shouldSendAlert(ContentSection section, String typeLabel, String operation)
           
 

Constructors in com.arsdigita.cms.workflow with parameters of type ContentSection
UnfinishedTaskNotifier(ContentSection section, int unfinishedInterval, int notificationInterval, int maxNotifications)
          Create a new UnfinishedTaskNotifier
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 21 2004:2352 UTC