How to set the login form to always appear in Style 2?

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
tkilshaw
Posts: 170
Joined: Thu Jan 19, 2006 11:33 pm
Location: Western Canada
Contact:

How to set the login form to always appear in Style 2?

Post by tkilshaw »

The initial login form displayed after clicking on the "Log into the operaton mode" button in the configuator, normally displays in Style 1, as defined in the Visual Perspectives.

But all of my VPs are set to use Style 2.

Occasionally, the login form will appear in Style 2. Later it always reverts to Style 1.

How can I set the login form to always appear in Style 2?

thanks,

Terry
aware_support
Posts: 7525
Joined: Sun Apr 24, 2005 12:36 am
Contact:

Post by aware_support »

Terry,

open the logon.jsp file located in the AwareIMRoot/Tomcat/webapps/AwareIM directory with any text editor and add the following lines:

<%@ page import="com.cc.framework.ui.painter.def2.Def2PainterFactory" %>
<%@ page import="com.cc.framework.ui.painter.PainterFactory" %>

<%
PainterFactory.registerSessionPainter(session, Def2PainterFactory.instance());
%>

These lines have to be after the following existing line:

<%@ taglib uri="/WEB-INF/cc-utility.tld" prefix="util" %>

This is the only way to do it at the moment.
Aware IM Support Team
Post Reply