====== How to add a component to the component catalog available to the team place manager? ====== Vivek Agarwal has documented what you have to do if you want to add custom components available to the manager of a team place:
Essentially the component picker is defined by a JSP inside the Quickr theme: >/IBM/Quickr/wp_profile/installedApps/xxxx/wps.ear/wps.war/themes/html/QPG/pageHeaderContent.jsp To add a new component, search for the div with an id of customizePage2. and add a list item with information for the new component e.g.: >
  • ”, >“<%=MarkupUtil.htmlAttributeEscape(MarkupUtil.jsEscape(”//New Photo Book//“))%>”, “<%= applicationID %>”, “//wps.p.web.photobook//“, true, >nodesOnLevel,true, ‘//photobook//‘)” class=”picture”>//Photo Book//
  • The information in italics will depend on the component you are trying to add - wps.p.web.photobook is the unique name assigned to the portlet that you are trying to define as a component. [[http://vivekagarwal.wordpress.com/2007/09/12/i-stand-corrected-on-the-ability-to-customize-components-in-quickr|Thanks to Vivek Agarwal’s Blog]]