alfresco

find nodes with a specific child association

僤鯓⒐⒋嵵緔 提交于 2021-02-11 07:47:30
问题 I am looking for a query (lucene, fts-alfresco or ...) to return all the document which have a specific child association (that is not null). Some context: Documents of type abc:document have a child-association abc:linkedDocument . Not all document have an other document linked to them, some have none some have one or multiple. I need a fast and easy way to get an overview of all the documents that do have at least one document linked to them. Currently I have a webscript that does what I

How to limit the Alfresco query result set to Top-N rows only

安稳与你 提交于 2021-02-05 10:01:48
问题 I need how to get 20 records out of 100 from alfresco in java. Query: +@cm\:categories:"*categoryId*"+TYPE:"{http://www.alfresco.org/model/content/1.0}content Here In this categoryId 100 records in alfresco. But I need top 20 records. Please help me. 来源: https://stackoverflow.com/questions/61773069/how-to-limit-the-alfresco-query-result-set-to-top-n-rows-only

companyhome not defined error in bundle service *.post.js file in Alfresco Share

一曲冷凌霜 提交于 2021-01-29 09:04:43
问题 I have a custom service /hayts the processes file uploads and metadata. the same files work when following the MultiPart Forms Tutorial. However, when I bundle the files into My Share application. I can load the form submit it to upload the file. But the POST processing JS fails. The Web Script /share/page/hayts has responded with a status of 500 - Internal Error. 500 Description: An error inside the HTTP server which prevented it from fulfilling the request. Message: 11120001 Failed to

Alfresco Context initialization failed: RenditionServiceException

匆匆过客 提交于 2021-01-29 08:10:11
问题 Alfresco won't start with RenditionServiceException . My alfresco version is 201707 and my OS is CentOS 6. This start happening after a manual reboot. I haven't change nothing in my configuration or data. This is my catalina.out: ERROR [web.context.ContextLoader] [localhost-startStop-1] Context initialization failed org.alfresco.service.cmr.rendition.RenditionServiceException: 10190019 Unable to find rendering action root node. at org.alfresco.repo.rendition.RenditionDefinitionPersisterImpl

Alfresco: Unable to CMIS query by path

别来无恙 提交于 2021-01-28 13:37:11
问题 I am trying to find out the contents of a folder in Alfresco, using the following CMIS query: SELECT * FROM cmis:document WHERE CONTAINS('PATH:"/app:company_home/st:sites/cm:GM/cm:emir/cm:FAQ//*"') In Node Browser , if I navigate to that folder I see the following value for Primary Path (I have added line breaks to make it easier to read): /{http://www.alfresco.org/model/application/1.0}company_home /{http://www.alfresco.org/model/site/1.0}sites /{http://www.alfresco.org/model/content/1.0}GM

Alfresco: Unable to CMIS query by path

南笙酒味 提交于 2021-01-28 13:33:16
问题 I am trying to find out the contents of a folder in Alfresco, using the following CMIS query: SELECT * FROM cmis:document WHERE CONTAINS('PATH:"/app:company_home/st:sites/cm:GM/cm:emir/cm:FAQ//*"') In Node Browser , if I navigate to that folder I see the following value for Primary Path (I have added line breaks to make it easier to read): /{http://www.alfresco.org/model/application/1.0}company_home /{http://www.alfresco.org/model/site/1.0}sites /{http://www.alfresco.org/model/content/1.0}GM

利用 ONLYOFFICE 将在线文档编辑器集成到 Python Web 应用程序中

北城余情 提交于 2021-01-22 10:19:32
ONLYOFFICE 是根据 GNU AGPL v.3 许可证条款分发的开源协作办公套件。它包含三个用于文本文档、电子表格和演示文稿的编辑器,并具有以下功能: 查看,编辑和协同编辑 .docx 、 .xlsx 、 .pptx 文件。OOXML 作为一种核心格式,可确保与 Microsoft Word、Excel 和 PowerPoint 文件的高度兼容性。 通过内部转换为 OOXML,编辑其他流行格式( .odt 、 .rtf 、 .txt 、 .html 、 .ods 、 .csv 、 .odp )。 熟悉的选项卡式界面。 协作工具:两种协同编辑模式(快速和严谨),跟踪更改,评论和集成聊天。 灵活的访问权限管理:完全访问权限、只读、审阅、表单填写和评论。 使用 API 构建附加组件。 250 种可用语言和象形字母表。 通过 API,开发人员可以将 ONLYOFFICE 编辑器集成到网站和利用程序设计语言编写的应用程序中,并能配置和管理编辑器。 要集成 ONLYOFFICE 编辑器,我们需要一个集成应用程序来连接编辑器(ONLYOFFICE 文档服务器)和服务。 要在你的界面中使用编辑器,因该授予 ONLYOFFICE 以下权限: 添加并执行自定义代码。 用于下载和保存文件的匿名访问权限。这意味着编辑器仅与服务器端的服务通信,而不包括客户端的任何用户授权数据(浏览器 cookies

Alfresco 中文乱码处理

拥有回忆 提交于 2020-08-14 02:04:23
Alfresco 中文乱码处理 部署最新的Alfresco6.2版到开发环境,采用的是docker方式部署,部署的过程倒是非常傻瓜。 跑起来后发现上传中文内容的文件预览出现中文乱码,中文字都成口口口。问题原因是libreoffice生成pdf中不支持中文字体。 解决办法是上传中文字体到libreoffice容器。 docker ps -a 找到libreoffice容器id 将中文字体上传到宿主机,例如将Windows的C:\Windows\Fonts目录下所有大写超过1M的字体都上传到宿主机的/opt/fonts目录(实际好像只需要两种字体) 传递地址到容器,docker cp /opt/fonts/. 容器ID:/usr/share/fonts/dejavu 进入容器 docker exec -it --user root 容器ID /bin/bash 刷新字体fc-cache -fv,查看中文字体fc-list :lang=zh,出来结果就是成功了 最后重启你的docker 来源: oschina 链接: https://my.oschina.net/chinaandroid/blog/4450733

Salesforce & Alfresco 数据权限机制

 ̄綄美尐妖づ 提交于 2020-08-13 23:20:42
Salesforce的数据权限机制 - butterfly100 - 博客园 https://www.cnblogs.com/butterfly100/p/8981747.html alfresco中的权限机制_zhwenrong_349975818的博客-CSDN博客_您的身份验证详细信息尚未识别,或alfrescocontentservices此时可能不可用 https://blog.csdn.net/zhwenrong_349975818/article/details/83636851 Alfresco權限機制 - Snowfun - 博客园 https://www.cnblogs.com/Snowfun/archive/2011/06/27/2091310.html Alfresco用户和权限管理 - Snowfun - 博客园 https://www.cnblogs.com/Snowfun/archive/2011/06/27/2091384.html 最好的权限设计,是先区分功能权限和数据权限 | 人人都是产品经理 http://www.woshipm.com/pd/2889402.html 设计模式的项目----权限管理系统_HellKing-CSDN博客_通用用户管理系统中的设计模式 https://blog.csdn.net/lts007007/article

Alfresco Digital Business Platform 案例研究

孤街浪徒 提交于 2020-08-11 04:59:31
案例研究 | Alfresco China https://alfresco.com.cn/cn/case-study BSA Limited | Alfresco China https://alfresco.com.cn/cn/case-study/bsa-limited 华为资料中心 | Alfresco China https://alfresco.com.cn/cn/case-study/huawei-data-center 小型企业 | Alfresco China https://alfresco.com.cn/cn/small-business 中型企业 | Alfresco China https://alfresco.com.cn/cn/medium-business Alfresco Digital Business Platform | Alfresco https://www.alfresco.com/platform 首页 | Alfresco China https://alfresco.com.cn/cn 华为资料中心 | Alfresco China https://alfresco.com.cn/cn/case-study/huawei-data-center 资料中心-资料列表 https://e.huawei.com/cn/material