05-02-2006 08:47 AM
05-08-2006 10:18 AM
05-08-2006 03:35 PM
05-09-2006 04:44 AM
<navigation-rule>
<from-view-id>/jsp/*</from-view-id>
<navigation-case>
<from-outcome>advSearch</from-outcome>
<to-view-id>/jsp/dialog/advanced-search.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>/jsp/*</from-view-id>
<navigation-case>
<from-outcome>advSearch</from-outcome>
<to-view-id>/jsp/custom/your-advanced-search.jsp</to-view-id>
</navigation-case>
</navigation-rule>
05-09-2006 05:11 AM
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
"http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
<!– ==================== MANAGED BEANS ==================== –>
<managed-bean>
<description>
The bean that backs up the Login screen
</description>
<managed-bean-name>LoginBean</managed-bean-name>
<managed-bean-class>be.company.access.LoginBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>nodeService</property-name>
<value>#{NodeService}</value>
</managed-property>
<managed-property>
<property-name>authenticationService</property-name>
<value>#{AuthenticationService}</value>
</managed-property>
<managed-property>
<property-name>personService</property-name>
<value>#{PersonService}</value>
</managed-property>
<managed-property>
<property-name>navigator</property-name>
<value>#{NavigationBean}</value>
</managed-property>
<managed-property>
<property-name>browseBean</property-name>
<value>#{BrowseBean}</value>
</managed-property>
</managed-bean>
</faces-config>
company.jar
– META-INF
—- Manifest.mf
—- faces-config.xml
– be
—- company
—— access
——– LoginBean.class
05-10-2006 06:30 AM
05-10-2006 10:41 AM
<!– the login page the client will use –>
<login-page>/jsp/login.jsp</login-page>
in the <tomcat>/webapps/alfresco/WEB-INF/classes/alfresco/web-client-config.xml file. How should I override this line? Can I add this in the faces-config.xml file in my JAR?
05-10-2006 11:28 AM
<config>
<client>
<login-page>/jsp/custom/your-login.jsp</login-page>
</client>
</config>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.