在存储库中会有不同的文档列表。当我将视图更改为“详细视图”时,会有数据字典,用户家园,宾客家等。它会显示收藏夹,如评论链接。如果我不想显示它们,我将在哪里修改。你能告诉我在哪个文件中注释代码没有显示这些链接。先谢谢你。
答案 0 :(得分:3)
您正在寻找的内容很可能是由客户端JavaScript生成的。您应该使用share-config-custom.xml将Share设置为开发模式,如下所示:
<alfresco-config>
<!-- Put Share Client in debug mode -->
<config replace="true">
<flags>
<client-debug>true</client-debug>
<client-debug-autologging>false</client-debug-autologging>
</flags>
</config>
</alfresco-config>
然后,使用firebug或浏览器的开发者控制台逐步完成客户端JavaScript。您应该能够找到文档库元素的呈现点。
您可以使用自己的组件覆盖Alfresco的客户端JavaScript组件。请将它们放在您自己的命名空间中,以避免与Alfresco的冲突。
答案 1 :(得分:3)
我想要一个&#34;模块化&#34;回答这个问题,这个答案是为了说明我是如何处理这个问题的。
上下文: Alfresco 4.2.f,从org.alfresco.maven.archetype:alfresco-amp-archetype:1.1.1
原型项目Maven,我尽可能将所有内容都放在嵌入式JAR中。
为共享创建模块扩展(有关详细信息,请参阅this blog)。这是我的扩展文件:
的src /主/资源/户外/现场数据/扩展/我的,定制的extension.xml 的
<extension>
<modules>
<module>
<id>Main module of my custom extension</id>
<version>${project.version}</version>
<auto-deploy>true</auto-deploy>
<customizations>
<customization>
<!-- Order matters here! target before source, always! -->
<targetPackageRoot>org.alfresco</targetPackageRoot>
<sourcePackageRoot>my-custom.main</sourcePackageRoot>
</customization>
</customizations>
</module>
</modules>
</extension>
在模块包的documentlibrary
组件中,创建此FTL以声明javascript:
的src /主/资源/户外/站点webscripts /我的定制/主/组件/ documentlibrary / documentlist-v2.get.html.ftl 的
<#-- Add a Javascript declaration -->
<@markup id="my-custom-js" target="js" action="after">
<@script type="text/javascript" group="documentlibrary"
src="${url.context}/res/my-custom/main/components/documentlibrary/documentlist.js"/>
</@>
在资源(META-INF)中,在documentlibrary
组件下,创建Javascript:
的src /主/资源/ META-INF /我的定制/主/组件/ documentlibrary / documentlist.js
YAHOO.lang.augmentObject(Alfresco.DocumentList.prototype, {
// Possible values: i18nLabel, lockBanner, syncFailed, syncTransientError
// date, size, name, version, description, tags, categories
myCustomDisabledRenderers: ["description", "version", "tags"],
// Possible values: favourites, likes, comments, quickShare
myCustomDisabledSocials: ["favourites", "comments", "likes", "quickShare"],
myCustomIsSocialDisabled: function(propertyName) {
return Alfresco.util.arrayContains(
this.myCustomDisabledSocials, propertyName);
},
myCustomIsRendererDisabled: function(propertyName) {
if (Alfresco.util.arrayContains(
this.myCustomDisabledRenderers, propertyName)) {
return true;
}
// Disable the social renderer when all the social features are
// disabled
if (propertyName === "social" && this.myCustomDisabledSocials.length == 4) {
return true;
}
return false;
},
/** Helper function to disable socials
* propertyName must be one of "favourites", "comments", "likes", "quickShare"
*/
myCustomDisableSocial: function(propertyName) {
if (!Alfresco.util.arrayContains(
this.myCustomDisabledSocials, propertyName)) {
this.myCustomDisabledSocials.push(propertyName);
}
},
// Custom registerRenderer for social features, originally defined in:
// webapps/share/components/documentlibrary/documentlist.js:2134
myCustomSocialRegisterRenderer: function(record) {
var jsNode = record.jsNode;
var html = "";
// Current usage of the separator variable allow to change the order
// of the different social features (the 'if' blocks below) without
// changing their content
var separator = "";
/* Favourite / Likes / Comments */
if (!this.myCustomIsSocialDisabled("favourites")) {
html += '<span class="item item-social' + separator + '">' +
Alfresco.DocumentList.generateFavourite(this, record) +
'</span>';
separator = " item-separator";
}
if (!this.myCustomIsSocialDisabled("likes")) {
html += '<span class="item item-social' + separator + '">' +
Alfresco.DocumentList.generateLikes(this, record) +
'</span>';
separator = " item-separator";
}
if (!this.myCustomIsSocialDisabled("comments") &&
jsNode.permissions.user.CreateChildren) {
html += '<span class="item item-social' + separator + '">' +
Alfresco.DocumentList.generateComments(this, record) +
'</span>';
separator = " item-separator";
}
if (!this.myCustomIsSocialDisabled("quickShare") && !record.node.isContainer &&
Alfresco.constants.QUICKSHARE_URL) {
html += '<span class="item' + separator + '">' +
Alfresco.DocumentList.generateQuickShare(this, record) +
'</span>';
separator = " item-separator";
}
return html;
},
// Overwrite registerRenderer which was originally defined in:
// webapps/share/components/documentlibrary/documentlist.js:1789
registerRenderer: function DL_registerRenderer(propertyName, renderer) {
if (Alfresco.util.isValueSet(propertyName) &&
Alfresco.util.isValueSet(renderer) &&
!this.myCustomIsRendererDisabled(propertyName)) {
if (propertyName === "social") {
this.renderers[propertyName] = this.myCustomSocialRegisterRenderer;
} else {
this.renderers[propertyName] = renderer;
}
return true;
}
return false;
}
}, true);
然后,您可以通过更新myCustomDisabledRenderers
和/或mySocialDisabledRenderers
来停用链接。
这种方式还允许您创建一个模块,禁用(例如)对文档的评论&#34;或&#34;喜欢文件&#34;只需6个简单的步骤即可独立完成!
示例,如何制作仅在6个步骤中禁用文档注释的模块
重要提示:首先删除&#34;评论停用&#34;来自主模块的documentlist.js
。
myCustomDisabledSocials: ["favourites", "likes", "quickShare"],
创建一个新模块&#34; my-custom.nocomment&#34;具有相同的结构。
<extension>
<modules>
<module>
<id>Main module of my custom extension</id>
[...]
</module>
<module>
<id>No comment module of my custom extension</id>
<version>${project.version}</version>
<customizations>
<customization>
<targetPackageRoot>org.alfresco</targetPackageRoot>
<sourcePackageRoot>my-custom.nocomment</sourcePackageRoot>
</customization>
</customizations>
</module>
</modules>
</extension>
添加FTL ...
的src /主/资源/户外/站点webscripts /我的定制/ NOCOMMENT /组件/ documentlibrary / documentlist-v2.get.html.ftl 的
<#-- Add a Javascript declaration -->
<@markup id="my-custom-js" target="js" action="after">
<@script type="text/javascript" group="documentlibrary"
src="${url.context}/res/my-custom/nocomment/components/documentlibrary/documentlist.js"/>
</@>
然后Javascript ...
的src /主/资源/ META-INF /我的定制/ NOCOMMENT /组件/ documentlibrary / documentlist.js
Alfresco.DocumentList.prototype.myCustomDisableSocial("comment");
然后我很开心,如果你觉得所有事情都顺利的话就拍手吧!
注意:
nocomment
模块取决于main
模块。nocomment
模块在<{strong> main
模块之后加载非常重要(在http://localhost:8080/share/page/modules/deploy
中)。nocomment
模块,您还需要从文档详细信息页面禁用注释,请参阅下文。禁用文档详细信息页面中的评论
即使这个记录在其他地方,我花了很多时间在这几天搜索,我觉得我需要尽可能全面。
的src /主/资源/户外/现场数据/扩展/我的,定制的extension.xml 的
将此添加到您的my-custom.nocomment
模块声明中,您将从文档详细信息页面中删除注释表单和列表。
[...]
<module>
<id>No comment module of my custom extension</id>
[...]
<components>
<component>
<region-id>comments</region-id>
<source-id>document-details</source-id>
<scope>template</scope>
<sub-components>
<sub-component id="default">
<evaluations>
<evaluation id="guaranteedToHide">
<render>false</render>
</evaluation>
</evaluations>
</sub-component>
</sub-components>
</component>
</components>
</module>
[...]
的src /主/资源/露天/站点webscripts /我的定制/ NOCOMMENT /组件/节点的信息/节点header.get.js
这是用于禁用文档详细信息页面标题上的按钮。
// Disable comments
for (var i = 0; i < model.widgets.length; i++) {
if (model.widgets[i].id == "NodeHeader") {
model.widgets[i].options.showComments = false;
}
}
// And since it does not work, disable comments this way too
model.showComments = "false";
注意:我没有对这些片段进行测试,这些片段是在#34; anonymization&#34;之后被从我的项目中删除的。 (基本上重命名模块)。如果你发现错误,请告诉我。
答案 2 :(得分:1)
我是通过在share / src / alfresco / share-document-config
中的文件share-documentlibrary-config.xml中评论{social}行来做到的。...
<metadata-templates>
<!-- Default (fallback) -->
<template id="default">
<line index="10" id="date">{date}{size}</line>
<line index="20" id="description" view="detailed">{description}</line>
<line index="30" id="tags" view="detailed">{tags}</line>
<line index="40" id="categories" view="detailed" evaluator="evaluator.doclib.metadata.hasCategories">{categories}</line> -->
<!-- <line index="50" id="social" view="detailed">{social}</line> -->
</template>
...
有效!
答案 3 :(得分:0)
我不确定我是否理解你的问题 - 你试图在露天探险家中隐藏某些特定视图中的列?如果是这样,你需要编辑/jsp/browse/browse.jsp文件,但我认为这不是一个好主意。也许实现自己的NodePropertyResolver应该是更好的方法,请查看关于此主题的旧博文:http://www.shmoula.cz/adding-columns-to-custom-browse-jsp/
答案 4 :(得分:0)
看起来所有内容都在:\ opt \ alfresco-4.0.d \ tomcat \ webapps \ share \ components \ documentlibrary \ documentlist.js 我认为诀窍在于this.registerRenderer(“社交”......)在1981年之前返回html(在喜欢之前喜欢之后)假设你想保持至少绚丽