2

我目前正在尝试找到一种方法来禁用 Alfresco 4.2.b 中的系统范围内的快速共享功能,或者如果不可能,至少从文档库和文档详细信息页面中删除快速共享链接。

我尝试的第一件事是利用可在alfresco-global.properties文件中配置的system.quickshare.enabled属性。它根本不起作用抛出下一个异常:

我发现了一个关于此的问题:https ://issues.alfresco.com/jira/browse/ALF-16233 。

由于这似乎是一个错误,并将在后续版本中修复,因此我专注于尽可能从 UI 中删除快速共享链接。顺便说一句,我发现了一个相关的帖子:https ://forums.alfresco.com/en/viewtopic.php?f=48&t=46659 。我已通过创建下一个扩展名成功删除了文档详细信息页面中的文档链接区域:

<extension>
    <modules>
        <module>
            <id>Removes from document-details page the Share region.</id>
            <auto-deploy>true</auto-deploy>
            <components>
                <component>
                    <scope>template</scope>
                    <region-id>document-links</region-id>
                    <source-id>document-details</source-id>
                    <sub-components>
                        <sub-component id="default">
                            <evaluations>
                                <evaluation id="hideDocumentLinks">
                                    <render>false</render>
                                </evaluation>
                            </evaluations>
                        </sub-component>
                    </sub-components>
                </component>
            </components>
        </module>
    </modules>
</extension>

没关系。我还有来自 document-details 页面的 quickshare 链接,它在share-config.xml文件中执行了一些更改,特别是在 Social 部分中将标签留空:

<config evaluator="string-compare" condition="Social">
      <!-- Alfresco QuickShare social widget - for creating public url that can be shared -->
      <quickshare>
         <!--
            Will be available as Alfresco.constants.QUICKSHARE_URL using javascrip in the browser.
            If changing this, make sure this url matches the quickshare rule in urlrewrite.xml
         -->
         <url>{context}/s/{sharedId}</url>
      </quickshare>

      <!-- Alfresco LinkShare social widget - share a link to social sites -->
      <linkshare>
         <!--
            These actions will be available as Alfresco.constants.LINKSHARE_ACTIONS using javascript in the browser.
            Labels will be retrieved from msg key "linkshare.action.<id>.label" unless explicitly provided as an
            attribute to the action element.
            Each param value accepts the following input: {shareUrl}, {displayName} or a msg key that will be prefixed.
            I.e. {body} for the email action's href param will be retrieved using "linkshare.action.email.body".
         -->
         <action id="email" type="link" index="10">
            <param name="href">mailto:?subject={subject}&amp;body={body}</param>
            <param name="target">new</param>
         </action>
         <action id="facebook" type="link" index="20">
            <param name="href">https://www.facebook.com/sharer/sharer.php?u={shareUrl}&amp;t={message}</param>
            <param name="target">new</param>
         </action>
         <action id="twitter" type="link" index="30">
            <param name="href">https://twitter.com/intent/tweet?text={message}&amp;url={shareUrl}</param>
            <param name="target">new</param>
         </action>
         <action id="google-plus" type="link" index="40">
            <param name="href">https://plus.google.com/share?url={shareUrl}</param>
            <param name="target">new</param>
         </action>
      </linkshare>

   </config>

由于此逻辑在 node-header.get.js 网页脚本中定义:

model.showQuickShare = (!model.isContainer && model.showQuickShare && config.scoped["Social"]["quickshare"].getChildValue("url") != null).toString();

尽管如此,快速共享链接仍保留在文档库页面中,这让我感到惊讶。我相信存在与上述类似的逻辑来显示或不显示文档库页面中的链接,但事实并非如此。所以,现在我想知道我还能做什么......正如我所看到的,该链接是在客户端使用文档库小部件(documentlist.js)生成的:

    if (!record.node.isContainer)
    {
       html += '<span class="item item-social item-separator">' + Alfresco.DocumentList.generateQuickShare(this, record) + '</span>';
    }

我正在考虑创建一个扩展来自定义文档库小部件,类似地在这里描述:[url]http://blogs.alfresco.com/wp/ddraper/2012/05/22/customizing-share-javascript-widget-instantiation-第 1 部分/[/url]。那可能吗?

我想知道在开始自定义小部件之前是否有更简单的方法来做我需要做的事情。如果这种“神奇”方式不存在,我想知道所描述的方法是否正确。

提前致谢。

4

1 回答 1

2

由于文档库小部件 (documentlist.js) 的扩展并不像我预期的那么简单,因此我根据原始问题的评论之一中解释的想法,通过一种更简单、更简单且非侵入性的解决方案来解决它。一般而言,它包括定义一个扩展模块,该模块在每个页面的标题中添加自定义 CSS。该 CSS 以这种方式覆盖快速共享链接的样式:

/* Disables the Quick Share link both in documentlibrary and document-details pages */
.item-social a.quickshare-action {
    visibility: hidden;
}

这里解释了如何定义这种扩展模块:https ://forums.alfresco.com/en/viewtopic.php?f=48&t=47312#p140623 。

希望它可以帮助其他尝试实现相同目标的人。

于 2012-12-17T18:35:13.000 回答