alfresco

Docker Error response from daemon: manifest for alfresco/alfresco-search-services:latest not foun...

烂漫一生 提交于 2020-08-10 21:01:39
D:\apache-tomcat-8.0.53>docker pull alfresco/alfresco-search-services Using default tag: latest Error response from daemon: manifest for alfresco/alfresco-search-services:latest not found: manifest unknown: manifest unknown D:\apache-tomcat-8.0.53>docker pull alfresco/alfresco-search-services:1.4.2 1.4.2: Pulling from alfresco/alfresco-search-services 5ad559c5ae16: Pull complete a3847211b487: Pull complete 0af14da8955f: Pull complete 83eff5906732: Pull complete b0c9817ed91f: Pull complete aa785bca0d0f: Pull complete fc834c111e51: Pull complete b92af92df14a: Pull complete 13ca005c9406: Pull

How to use FormData for ionic file upload

浪尽此生 提交于 2020-08-05 08:57:09
问题 i want to send formdata to server with fileTransfer(ionic 3 ) or other function var form = new FormData(); form.append("filedata", base64File); form.append("numDeclaration", "01012018"); let options: FileUploadOptions = { fileKey: 'filedata', fileName: imageName, chunkedMode: false, mimeType: "image/jpeg", headers: {} } fileTransfer.upload(base64File, 'http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/f3589d6b-82db-44d2-9b6d-89a3e7e57442/children?alf_ticket=' +

Maven中央仓库地址大全,Maven中央仓库配置示例

故事扮演 提交于 2020-08-04 18:53:22
《 Maven 中央仓库地址大全 》 在上一篇文章中完成了 《 Maven镜像地址大全 》 ,后来又花了时间又去收集并整理了关于 maven 远程仓库地址,并整理于此,关于 Maven 远程仓库地址的配置方式有两种, 第一种:直接在项目的 pom.xml 文件中进行修改(不推荐,尤其是在多人协助的开发过程中非常的费事费力); 第二种:将 Maven 的远程仓库统一的配置到 Maven 的 Settings.xml 的配置文件中; Maven 中央仓库地址大全 1、阿里中央仓库 (首推1) < repository > < id > alimaven </ id > < name > aliyun maven </ name > < url > http://maven.aliyun.com/nexus/content/groups/public/ </ url > </ repository > 2、camunda.com 中央仓库 (首推2) < repository > < id > activiti-repos2 </ id > < name > Activiti Repository 2 </ name > < url > https://app.camunda.com/nexus/content/groups/public </ url > </ repository >

Alfresco login page bypassing

大城市里の小女人 提交于 2020-07-22 21:38:04
问题 I created a valid ticket using a webservice call...code shown below $url="http://serverip:port/alfresco/service/api/login?u=xxx&pw=xxx"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); $response =curl_exec($ch); Now using this ticket i want to authenticate alfresco without again entering username and password.Also i want to create a valid cookie JSESSIONID inside browser with this

Alfresco login page bypassing

好久不见. 提交于 2020-07-22 21:34:18
问题 I created a valid ticket using a webservice call...code shown below $url="http://serverip:port/alfresco/service/api/login?u=xxx&pw=xxx"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); $response =curl_exec($ch); Now using this ticket i want to authenticate alfresco without again entering username and password.Also i want to create a valid cookie JSESSIONID inside browser with this

Alfresco - add recipient's name to workflow notification email template

生来就可爱ヽ(ⅴ<●) 提交于 2020-07-10 10:29:00
问题 I'm using Alfresco 5.2 Community. I'm trying to edit the template wf-email.html.ftl file found in Repository> Data Dictionary> Email Templates> Workflow Notification> wf-email.html.ftl. In the line <p>Hi,</p> I want to add the recipient's name in the message, something like <p>Hi John,</p> Is this possible? If yes, how is it achieved? 回答1: Unfortunately, the assignee is not passed as an argument to the template, so it is not available to the template. You can see this by looking at the source

Alfresco - add recipient's name to workflow notification email template

时光毁灭记忆、已成空白 提交于 2020-07-10 10:28:13
问题 I'm using Alfresco 5.2 Community. I'm trying to edit the template wf-email.html.ftl file found in Repository> Data Dictionary> Email Templates> Workflow Notification> wf-email.html.ftl. In the line <p>Hi,</p> I want to add the recipient's name in the message, something like <p>Hi John,</p> Is this possible? If yes, how is it achieved? 回答1: Unfortunately, the assignee is not passed as an argument to the template, so it is not available to the template. You can see this by looking at the source

Alfresco - Aikau Custom Action

为君一笑 提交于 2020-04-17 21:35:21
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<

Alfresco - Aikau Custom Action

旧街凉风 提交于 2020-04-17 21:35:05
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<

Alfresco - Aikau Custom Action

旧街凉风 提交于 2020-04-17 21:33:32
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<