Hello!
You can see how title is generated from here:
/nuxeo-platform-webapp/src/main/resources/nuxeo.war/view_documents.xhtml :
<ui:define name="page title">
<h:outputText value="#{nuxeoApplicationName}"/> - <h:outputText
value="#{nxd:titleOrId(currentDocument)}"/>
</ui:define>
As you can see "Nuxeo DM" corresponds to #{nuxeoApplicationName}.
Factory for "nuxeoApplicationName" is defined here:
/nuxeo-platform-webapp-base/src/main/java/org/nuxeo/ecm/webapp/helpers/NuxeoProductNameFactory.java
:
public static String PNAME_KEY = "org.nuxeo.ecm.product.name";
(...)
@Factory(value="nuxeoApplicationName", scope=ScopeType.APPLICATION)
public String getNuxeoProductName() {
return Framework.getProperty(PNAME_KEY);
}
So "Nuxeo DM" is readed from property with key "org.nuxeo.ecm.product.name".
You can change it in
jboss-4.2.3.GA/server/default/deploy/nuxeo.ear/config/nuxeo.properties
Good luck!
Plamen Tanov
On Mon, Aug 17, 2009 at 5:27 PM, schneida <[email protected]> wrote:
>
> Hello,
>
> I would like to change the default nuxeo page title "Nuxeo DM - **Current
> Document**" to something different but I couldn't find any information on
> how to do that.
>
> Is there a way to change the title globally and if so, could you please
> point me to some documentation or tell me how to do so?
>
> Thanks in advance,
>
> schneida
> --
> View this message in context:
> http://www.nabble.com/Change-nuxeo-title-%22Nuxeo-DM%22-tp25006961p25006961.html
> Sent from the Nuxeo ECM main mailing list archive at Nabble.com.
>
> _______________________________________________
> ECM mailing list
> [email protected]
> http://lists.nuxeo.com/mailman/listinfo/ecm
> To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm
>
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm