2

我想更改我的 nuxeo 应用程序徽标。我已经阅读了如何为登录页面更改它并且它正在工作,但现在我想更改我所有页面的徽标,我找不到任何关于如何做到这一点的教程。这是我到目前为止所尝试的:

    <component name="org.nuxeo.sample.loginPage">
  <extension target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService" point="loginScreen">
    <loginScreenConfig>
      <disableBackgroundSizeCover>false</disableBackgroundSizeCover>
      <headerStyle></headerStyle>
      <footerStyle></footerStyle>
     <loginBoxWidth>400px</loginBoxWidth>
      <logoUrl>${org.nuxeo.ecm.contextPath}/img/logo12.png</logoUrl>
      <logoAlt>MyCompany</logoAlt>
      <logoWidth>113</logoWidth>
      <logoHeight>20</logoHeight>
       <newsIframeUrl>https://www.nuxeo.com/embedded/dm-login</newsIframeUrl>
    </loginScreenConfig>
  </extension>
</component>
4

1 回答 1

0

你得到它的登录屏幕。对于其他页面,请查看org.nuxeo.theme.styling.service组件及其风味扩展点。

您将需要这样的 XML 贡献:

<extension target="org.nuxeo.theme.styling.service" point="flavors">
  <flavor name="myCompanyFlavor" extends="default">
    <logo>
      <path>/img/logo12.png</path>
      <previewPath>/img/logo12.png</previewPath>
      <width></width>
      <height></height>
      <title>MyCompany</title>
    </logo>
  </flavor>
</extension>
于 2015-06-08T09:04:57.727 回答