我目前正在尝试找到一种方法来禁用 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}&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}&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}&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]。那可能吗?
我想知道在开始自定义小部件之前是否有更简单的方法来做我需要做的事情。如果这种“神奇”方式不存在,我想知道所描述的方法是否正确。
提前致谢。