1

我有以下 xml 自定义来部署我声明的自定义:

<module>
    <id>Global changes</id>
    <auto-deploy>true</auto-deploy>

    <!-- Enhance individual WebScripts when their paths match -->
    <customizations>
        <customization>
            <targetPackageRoot>org.alfresco</targetPackageRoot>
            <sourcePackageRoot>fr.mypackage</sourcePackageRoot>
        </customization>

    </customizations>
</module>

我正在尝试向 header.get.html.ftl 添加一个额外的 CSS,所以我在以下路径下创建了 webscripts/fr/mypackage/components/header/ header.get.html.ftl 并将以下内容添加到它 :

<@markup id="css-additional" target="css" action="after" scope="global">
    <@link href="${url.context}/res/themes/${theme}/css/global-header.css" group="header"/>
</@>

但是css没有添加到标题中。我在这里错过了重要的一步吗?
编辑:如果这有帮助,我应该补充说我正在开发 4.2.e。

4

1 回答 1

1

我认为他们在 4.2 中更改了它,看看http://blogs.alfresco.com/wp/developer/2013/09/04/customizing-the-share-header-menu-part-1/

这里的源包应该是:<targetPackageRoot>org.alfresco.share.header</targetPackageRoot>

于 2013-11-06T16:23:22.867 回答