Skip to main content link. Accesskey S
  • Anonymous
  • Log on
  • Help
  • IBM logo
  • IBM Connections wiki
  • All Wikis
  • Home
  • Community Articles
  • Product Documentation
  • Learning Center


Search

Advanced Search

Categories

Tag Cloud

  • 1.0
  • 1.0.x
  • 2.0
  • 2.0.1
  • 2.0.1.1
  • 2.0_media
  • 2.5
  • 2.5_deployment
  • 2.5_media
  • 2.5_performance
  • 3
  • 3.0
  • 3.0.1
  • 3.0.1_media
  • 3.0_media
  • 3_deployment
  • 8.1.1
  • 8.2
  • activities
  • administrators
  • api
  • best_practices
  • blogs
  • bookmarks
  • business_card
  • cluster
  • communities
  • community
  • community_manager
  • connections
  • connections_3
  • connections_301
  • customization
  • customize
  • customizing
  • demos
  • deploying
  • deployment
  • deployments
  • developers
  • dogear
  • Domino
  • Edge server
  • education
  • error messages
  • files
  • forums
  • getting_started
  • Help
  • home
  • home_page
  • homepage
  • how-to
  • HTTP server
  • ibm
  • index
  • installation
  • integration
  • iOS
  • ipad
  • iWidget
  • J2EE
  • javadoc
  • lc3.0
  • learning
  • lotus-connections
  • mml
  • mobile
  • Notes
  • performance
  • person_card
  • Portal
  • portlet
  • portlet_factory
  • profiles
  • proxy server
  • quickr
  • Redbooks
  • rest
  • reverse proxy server
  • Sametime
  • scenarios
  • search
  • security
  • self-paced
  • SSO
  • tags
  • test_infrastructure
  • troubleshooting
  • tuning
  • video
  • VideoFest
  • videos
  • WAI
  • WAS
  • web_seminar
  • WebAppIntegrator
  • WebSphere
  • widgets
  • wikis
InformationInformation
You are currently viewing machine translated content. IBM translation might be available. Click IBM Translated Product Documentation to see what is available.X


Home > IBM Redbooks: Customizing IBM Connections 3.0.1 > 3.1 Customizing the Getting Started tab
Rate this article 1 starRate this article 2 starsRate this article 3 starsRate this article 4 starsRate this article 5 stars

3.1 Customizing the Getting Started tab 

expanded Abstract
collapsed Abstract
No abstract provided.
Previous | Next

The Getting Started tab, which appears on the Home page starting with IBM Connections version 3.0, helps users learn and start using the product more quickly. You can customize the Getting Started tab by changing the information in the existing pages, by removing pages, or by adding pages. To customize the content on the Getting Started tab, you modify the gettingstarted-config.xml file.

By default, the Getting Started tab contains three pages, organized as vertical tabs, with these labels:
  • Welcome
  • Share
  • Explore

Before you begin

Turn on customization debugging capability so that you can view your changes without having to restart the IBM Connections server. For more information about customization debugging, see 1.2 IBM Connections customization variables.

Procedure

In this procedure, you add a page that contains information hosted on an internal website.
Tip
: To remove a page, find the <step> element that represents the page and change the value of its enabled attribute to false.
    1. Access and check out the Home page configuration files using the wsadmin tool:
      a. Access the configuration files for the Home page application using the command
      execfile("homepageAdmin.py")

      b. Check out the home page configuration file using this command: HomepageCellConfig.checkOutGettingstartedConfig("<working_directory>","<cell_name>")
      where:
      • <working_directory> is the directory that Connections uses to store the temporary copies of the configuration files while they are checked out.
      • <cell_name> is the case-sensitive name of the WebSphere Application Server cell hosting the IBM Connections application.
        For example,
        HomepageCellConfig.checkOutGettingstartedConfig("c:/temp","foo01Cell01")

        Attention
        : Do not close the wsadmin session until you check in the configuration files. For more information about checking out configuration files, see 1.4 Publishing customizations with the wsadmin tool.
    2. Navigate to the temporary location where you checked out the gettingstarted-config.xml file.
    3. Open the gettingstarted-config.xml file with a text editor.
    4. Copy one of the <step> elements and paste it after the <step> element that identifies the page that you want to appear above this new page. The order of the vertical pages reflects the order of the steps in the <steps> block.
    5. Change the page label in one of two ways:
    • Replace the title key with your text. For example, the title of the Welcome page is defined by the jsp.start.step1.tab.title key. Replace jsp.start.step1.tab.title with your text:
      <title bundle="com.ibm.lconn.homepage.resources.nls.jsp.jsp_resources">
      jsp.start.step1.tab.title <==Replace this line with your title text
      </title>

      The bundle attribute identifies where the resource bundle is stored and the title element itself contains the key value for the title string
    • Specify a key that you define in a corresponding resource bundle that you also define. Using a key supports translation. For example, the jsp.start.step1.tab.title key is stored in the com.ibm.lconn.homepage.resources.nls.jsp.jsp_resources resource bundle in the Home page WAR file. Replace the existing key in the gettingstarted-config.xml file and specify the value for this new key in a file you save in <customizationDir>\strings directory. For more information about customizing product strings, see 2.2 Customizing product strings.
    6. Specify what you want to display in the page body using the <body-links> element. This element must be available over the http and https protocols using the same domain as the Home page application. For example,
    <step>
    ...
    <body-links
    secure="https://server.example.com/help/welcome.htm"
    unsecure="http:////server.example.com/help/welcome.htm />
    </step>

    7. Save the gettingstarted-config.xml file.
    8. Check in the gettingstarted-config.xml file using the command {{{HomepageCellConfig.checkInGettingstartedConfig("","")}}}
    where <working_directory> and <cell_name> are the same as you specified when you checked out the file.
    For example,
    HomepageCellConfig.checkInGettingstartedConfig("c:/temp","foo01Cell01")

    For more information about checking in configuration files, see 1.4 Publishing customizations with the wsadmin tool
    9. Make your changes available to others by updating the value of the versionStamp configuration property. For more information, see 1.4 Publishing customizations with the wsadmin tool.

Parent topic: 3.0 Customizing the Home page

expanded Article information
collapsed Article information
Category:
IBM Redbooks: Customizing IBM Connections 3.0.1
Tags:
Redbooks

This Version: Version 1 November 21, 2011 11:09:25 AM by Amanda J Bauman  IBMer

expanded Attachments (0)
collapsed Attachments (0)

 


expanded Versions (1)
collapsed Versions (1)
Version Comparison     
Version Date Changed by               Summary of changes
This version (1) Nov 21, 2011 11:09:25 AM Amanda J Bauman  
expanded Comments (0)
collapsed Comments (0)
Copy and paste this wiki markup to link to this article from another article in this wiki.
Go ElsewhereStay ConnectedSubscribe to RSSHelpAbout
  • All Lotus and WebSphere Portal wikis
  • IBM developerWorks
  • IBM Software support
  • IBM Social Business User Experience Blog
  • IBMSocialBizUX on Twitter
  • IBMSocialBizUX on Facebook
  • Lotus product forums
  • IBM Social Business UX blog
  • IBM Collaboration Solutions
  • Recently added feedRecently added
  • Recently edited feedRecently edited
  • Recently added comments feedRecently Added Comments
  • Wiki Help
  • Forgot user name/password
  • Wiki design feedback
  • Content feedback
  • About the wiki
  • About IBM
  • Privacy
  • Contact IBM
  • IBM Terms of use
  • Wiki terms of use