06-21-2006 06:29 AM
06-22-2006 04:41 AM
06-22-2006 05:31 AM
06-30-2006 06:11 AM
Hi all,
Please anwser these questions if you know the solution:
1. How to customize the Login page such that another locale/language <> English is choosen as the default one?
2. How to add custom links/buttons to the toolbar?
3. How to simplify the UI such that:
- No "Create" link if the current user doesnt have enough permission in the current space.
- No "Browse Spaces" list if there is no sub-space in the current space.
- No "Content items" list if there is no item in the current space.
4. How to redirect user to a specific space after successful logon ? I found a similar question at http://forums.alfresco.com/viewtopic.php?t=2252
5. How to sort content items in a space by "cm:modified" descending?
TIA,
-g
<td style="padding-left:4px" align=right>
<%– Quick upload action –%>
<nobr>
<r:permissionEvaluator value="#{NavigationBean.currentNode}" allow="CreateChildren" id="eval2">
<a:actionLink value="#{msg.add_content}" image="/images/icons/add.gif" padding="2" action="addContent" actionListener="#{AddContentDialog.start}" style="white-space:nowrap" id="link3" />
</r:permissionEvaluator>
</nobr>
</td>
<td style="padding-left:4px" width=52>
<%– Create actions menu –%>
<a:menu id="createMenu" itemSpacing="4" label="#{msg.create_options}" image="/images/icons/menu.gif" menuStyleClass="moreActionsMenu" style="white-space:nowrap">
<r:actions id="acts_create" value="browse_create_menu" context="#{NavigationBean.currentNode}" />
</a:menu>
</td>
<r:permissionEvaluator value="#{NavigationBean.currentNode}" allow="CreateChildren" id="eval2">
<td style="padding-left:4px" align=right>
<%– Quick upload action –%>
<nobr>
<a:actionLink value="#{msg.add_content}" image="/images/icons/add.gif" padding="2" action="addContent" actionListener="#{AddContentDialog.start}" style="white-space:nowrap" id="link3" /> </nobr>
</td>
<td style="padding-left:4px" width=52>
<%– Create actions menu –%>
<a:menu id="createMenu" itemSpacing="4" label="#{msg.create_options}" image="/images/icons/menu.gif" menuStyleClass="moreActionsMenu" style="white-space:nowrap"> <r:actions id="acts_create" value="browse_create_menu" context="#{NavigationBean.currentNode}" />
</a:menu>
</td>
</r:permissionEvaluator>
<a:booleanEvaluator value="#{BrowserBean.nodes != null}">
…..
</a:booleanEvaluator>
<%
response.sendRedirect(request.getContextPath() + "/navigate/browse/workspace/SpacesStore/0b28fa40-0812-11db-bc50-25bfd78cd925");
%>
You must replace the node id of course.07-02-2006 02:09 AM
5. How to sort content items in a space by "cm:modified" descending?
<config evaluator="string-compare" condition="Views">
<views>
<view-defaults>
<browse>
<sort-column>modified</sort-column>
</browse>
</view-defaults>
</views>
</config>
07-03-2006 05:27 AM
1. How to customize the Login page such that another locale/language <> English is choosen as the default one?
3. How to simplify the UI such that:
- No "Browse Spaces" list if there is no sub-space in the current space.
- No "Content items" list if there is no item in the current space.
09-08-2006 05:39 PM
…
4. I follow the instruction from http://forums.alfresco.com/viewtopic.php?t=2252 and my /jsp/extension/home.jsp is something likeYou must replace the node id of course.
<%
response.sendRedirect(request.getContextPath() + "/navigate/browse/workspace/SpacesStore/0b28fa40-0812-11db-bc50-25bfd78cd925");
%>
…
-g
09-09-2006 06:37 PM
response.sendRedirect(request.getContextPath() + faces/jsp/login.jsp
if the user is accessing the application via http://yourserver/alfresco/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.