Data Mashups Portal  Visitor Setup


Data Mashups Portal Documentation

Portal Unregistered Visitor Setup

Any user who comes to your portal page for the first time, and any visitor that does not register and login, will be greeted with a page that has specific content and layout of windows.  You can setup this initial page configuration via the database.

The Windows table in the startpage schema has the data for all users o fthe portal page.

For unregistered users, an id of 0 is used to determine the setup of windows to be displayed for these users.

Examples

The following is an example of a statement to insert an entry in the Windows table, to create a specific window for the  unregistered user.

insert into Windows
values (0,1,1,200,50,500,400,'Available Applications', 'myapp/mypage.html');


This inserts a window of size 500x400 pixels, with x,y location 200,50 and with source in the file myapp/mypage.html
The columns and data types are shown below.  The userid must be 0, and the wintype must be 1 for web page content.

userid
winid
wintype
xpos
ypos
width
height
title
src
INTEGER INTEGER_IDENTITY INTEGER INTEGER INTEGER INTEGER INTEGER VARCHAR(255) TEXT




© 2006 Applibase, Inc.