Addition of missing ui text

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2510 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-03-01 17:42:05 +00:00
parent 42d464cc82
commit f4d5717bd4
3 changed files with 5 additions and 7 deletions

View File

@@ -818,15 +818,13 @@ public class BrowseBean implements IContextListener
};
public NodePropertyResolver resolverWebdavUrl = new NodePropertyResolver() {
public Object get(Node node)
{
public Object get(Node node) {
return Utils.generateURL(FacesContext.getCurrentInstance(), node, URLMode.WEBDAV);
}
};
public NodePropertyResolver resolverCifsPath = new NodePropertyResolver() {
public Object get(Node node)
{
public Object get(Node node) {
return Utils.generateURL(FacesContext.getCurrentInstance(), node, URLMode.CIFS);
}
};
@@ -851,7 +849,7 @@ public class BrowseBean implements IContextListener
public NodePropertyResolver resolverDisplayPath = new NodePropertyResolver() {
public Object get(Node node) {
// TODO: replace this with a method that shows the full display name - not QNames
// TODO: replace this with a method that shows the full display name - not QNames?
return Repository.getDisplayPath( (Path)node.getProperties().get("path") );
}
};

View File

@@ -92,7 +92,7 @@
<h:graphicImage id="wizard-logo" url="/images/icons/export_large.gif" />
</td>
<td>
<div class="mainSubTitle"><h:outputText value="#{msg.export}"/></div>
<div class="mainTitle"><h:outputText value="#{msg.export}"/> '<h:outputText value='#{NavigationBean.nodeProperties.name}' />'</div>
<div class="mainSubText"><h:outputText value="#{msg.export_info}"/></div>
</td>
</tr>

View File

@@ -73,7 +73,7 @@
<h:graphicImage id="wizard-logo" url="/images/icons/import_large.gif" />
</td>
<td>
<div class="mainTitle"><h:outputText value="#{msg.import}" /></div>
<div class="mainTitle"><h:outputText value="#{msg.import}" /> '<h:outputText value='#{NavigationBean.nodeProperties.name}' />'</div>
<div class="mainSubText"><h:outputText value="#{msg.import_info}" /></div>
</td>
</tr>