在 Alfresco 中签入当前版本

发布于 2025-01-03 02:22:27 字数 74 浏览 1 评论 0原文

是否可以在不增加 Alfresco 中版本号的情况下签入/上传文档(应用了版本控制方面)?

任何善意的帮助将不胜感激。

Is it possible to checkin/upload the document(with versionable aspect applied) without increasing the version number in Alfresco ?

Any kind help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

¢蛋碎的人ぎ生 2025-01-10 02:22:27

假设您想要禁用自动版本控制,有几个选项可用:

  1. 您可以将属性值 cm:autoVersioncm:autoVersionOnUpdateProps 设置为
    您可以在 contentModel.xml 中将默认值设置为 false,或者在应用方面后将它们显式设置为 false。将这些值设置为 false 后,alfresco 将不再自动增加版本。看看http://wiki.alfresco.com/wiki/Versioning_Behaviour

  2. 你可以使用以下方法之一禁用一个事务中节点的自动版本控制,无论 autoversion* 属性值如何org.alfresco.repo.policy.BehaviourFilter(bean策略BehaviourFilter),例如
    behaviourFilter.disableBehaviour(nodeRef, ContentModel.ASPECT_VERSIONABLE);

  3. 您可以将方面 sys:temporary 应用于节点以禁用自动版本控制。其行为与 1. 相同,但也有一些其他影响,例如在删除 IIRC 时绕过存档存储。

如果有疑问,请先尝试 1.。

Assuming what you want is disabling automatic versioning, there are a few options available:

  1. You can set the property values cm:autoVersion and cm:autoVersionOnUpdateProps to false.
    You can either set the defaults to false in contentModel.xml, or just set them to false explicitely after the aspect is applied. With these values set to false, alfresco will no longer increment the version automatically. Have a look at http://wiki.alfresco.com/wiki/Versioning_Behaviour

  2. You can disable automatic versioning for a node in one transaction regardless of the autoversion* property values using one of the disableBehaviour methods of org.alfresco.repo.policy.BehaviourFilter (bean policyBehaviourFilter), e.g.
    behaviourFilter.disableBehaviour(nodeRef, ContentModel.ASPECT_VERSIONABLE);

  3. You can applying the aspect sys:temporary to a node to disable autoversioning. This behaves just as 1., but has some other effects as well, e.g. bypassing the archive store on removal IIRC.

If in doubt, try 1. first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文