]project-open[ : @This Wiki
Portrait

Welcome, Unregistered Visitor

Contents

User Profiles

4 registered users
 in last 24 hours

Start Page and Home Page Configuration

Error in Page en:configuration_start_page_home_page: can't read "return_url": no such variable

 

Removing The Home Page Help Component

On the "home" page of ]project-open[ "localhost://intranet/" you will find a help component designed for demo use.  This is of course not relevant for use in production systems and should be removed.  

screenshot_configuration_start_page.gif  

(Home Page Help Component)

 

To remove this component go to the Portlet Components Admin Screen.  And edit the details of the "Home Page Help Blurb" Component.  To disable the component from being seen you can either 1) set the page URL to "none" or 2) disable the component by selecting "not enabled".  Only one of these actions need to be performed.

 

screenshot_configuration_start_page_1.gif  

 

System Start Page

The ]project-open[ system start-page with the URL http://localhostname is located at 

 

  • Linux - /web/projop/www/index.adp
  • Windows - C:\ProjectOpen\projop\www\index.adp

This .adp page contains simple HTML code and is intended to be customized by a system administrator using any common HTML editor.  

Additionally you can create .tcl files in the same subdirectory (www) .tcl and .adp files normally work together symbiotically to produce content pages in ]project-open[.  The .tcl will work the business logic and the .adp page is used to render the variables in the .tcl file into HTML format.  Alternatively, you can just use static HTML files as with any typical web server application.

The /web/projop/www subdirectory contains the publicly available web pages of the web server or "root pages".  This would be the correct place for pages dealing with marketing, general info or public disclosures.   

 

Immediate Start Option

One option is to not have any start page, and instead redirect to the system home page or other ]project-open[ core pages.  In this case please create/alter the existing "index.tcl" file at /web/projop/www/  (all together /web/projop/www/index.tcl) to mirror the below code.

ad_page_contract {
    Empty system home page (redirects immediately to ]project-open[)

    @author frank.bergmann@project-open.com
    @creation-date Nov 2003
} { }

ad_returnredirect "/intranet/"

Replace "/intranet/" with any other system url to send users to places other than the home page.

 

Start Page with Login Option

To force users to authenticate themselves before continuing on into ]project-open[ you will to set the index.adp and index.tcl files similarly to the code found below.  The code will produce a content page with a login prompt and several links.

 

/web/projop/www/index.tcl

ad_page_contract {
    project-open Intranet index.tcl
    Provides the index.adp page with default values for
    the different login parameters
} {
    {authority_id ""}
    {username ""}
    {email ""}
    {return_url "/intranet/"}
}


/web/projop/www/index.adp

<!— ]project-open[ Intranet index.adp page -->
<html><head><title>]project-open[ Intranet</title>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<link media=screen href="/intranet/style/style.default.css" type=text/css rel=StyleSheet>
<body text=black bgColor=white>
<table cellSpacing=0 cellPadding=0 width="100%" border=0>
  <tr>
    <td><A href="http://www.project-open.com/">
      <img src=/intranet/images/projop-logo.gif border=0 width=230 height=52>
    </A></td>
    <td vAlign=center align=middle></td>
    <td vAlign=center align=right></td>
  </tr>
</table>
<table cellSpacing=0 cellPadding=0 width="100%" border=0>
  <tr>
    <td align=left>
      <table cellSpacing=0 cellPadding=0 border=0>
        <tr height=19>
          <td><img alt="" src="/intranet/images/navbar_default/left-sel.gif"
                   width=19 border=0 heigth="19"></td>
          <td class=tabsel>
     <A class=whitelink href="/intranet/index">Home</A>
   </td>
          <td>
          <td><img alt="" src="/intranet/images/navbar_default/right-sel.gif"
                   width=19 border=0 heigth="19"></td>
          </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td class=pagedesriptionbar colSpan=2>
      <table cellPadding=1 width="100%">
        <tr><td class=pagedesriptionbar vAlign=center>
          ]project-open[ Intranet
        </td></tr>
      </table>
    </td>
  </tr>
</table><br>
<table cellSpacing=0 cellPadding=0 width="100%" border=0>
  <tr>
    <td vAlign=top>
      <table cellSpacing=0 cellPadding=5 border=0>
        <tr><td class=tableheader>]project-open[ Links</td></tr>
        <tr><td class=tablebody>
            <LI><A href="/intranet/">]project-open[ Intranet</a><br>
            <LI><A href="http://www.project-open.com/">]project-open[ Web Site </a>
            <LI><A href="/">]project-open[ Developer Community</a>
            <LI><A href="/doc/">Documentation Home</a>
        </td></tr>
      </table>
    </td>
    <td>
      <table cellSpacing=0 cellPadding=5 border=0>
        <tr><td class=tableheader>Intranet Login</td></tr>
        <tr><td class=tablebody>
<!-- Include the login widget -->
<include src="/packages/acs-subsite/lib/login" return_url="@return_url;noquote@" no_frame_p="1" authority_id="@authority_id@" username="@username;noquote@" email="@email;noquote@" &="__adp_properties">
         </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellSpacing=0 cellPadding=5 width="100%" border=0>
  <tr><td>
    Comments? Contact:
    <A href="mailto:support@project-open.com">support@project-open.com</A>
  </td></tr>
</table>
</body>
</html>


 

References

Possible values are

  • absolute_links: '0'
  • abstract_p: 'f'
  • auto_save: 'false'
  • creation_date: '2009-07-13 15:21:10.058692+02'
  • creation_user: '272160'
  • creator: 'Richard Thiemann'
  • current_user: '0'
  • description: ''
  • do_substitutions: '1'
  • folder_id: '-100'
  • form: '::xowiki::WikiForm'
  • id_column: 'page_id'
  • last_modified: '2009-11-17 09:29:56.963056+01'
  • mime_type: 'text/html'
  • modifying_user: '448'
  • name: 'en:configuration_start_page_home_page'
  • nls_language: 'en_US'
  • object_id: '333840'
  • object_type: '::xowiki::Page'
  • package_id: '252723'
  • page_id: '333840'
  • page_order: 'Configuration'
  • parent_id: '252746'
  • pretty_name: 'XoWiki Page'
  • pretty_plural: 'XoWiki Pages'
  • publish_date: '2009-11-17 09:29:56.963056+01'
  • publish_status: 'ready'
  • recursion_count: '0'
  • references: ''
  • render_adp: '1'
  • revision_id: '333840'
  • security_inherit_p: 't'
  • sql_package_name: '::xowiki::Page'
  • storage_type: 'text'
  • supertype: 'content_revision'
  • table_name: 'xowiki_page'
  • title: 'Start Page and Home Page Configuration '
  • unresolved_references: '0'
  • with_table: 'true'