View gist:10000929
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyBehaviourPolicy implements NodeServicePolicies.OnCreateChildAssociationPolicy { | |
private PolicyComponent policyComponent; | |
public PolicyComponent getPolicyComponent() { | |
return policyComponent; | |
} | |
public void setPolicyComponent(PolicyComponent policyComponent) { | |
this.policyComponent = policyComponent; | |
} |
View gist:2292a4ab84119397d619
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mQuery = { | |
query: "select * from cmis:folder where contains " + | |
"('PATH:\"/app:company_home/app:dictionary/app:space_templates/*\"') " + | |
"and cmis:name='Software Engineering Project'", | |
language: "cmis-alfresco" | |
}; | |
var results = search.query(mQuery); | |
//copy the template into our Document Folder |
View logo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
id: "HEADER_LOGO", | |
name: "alfresco/logo/Logo", | |
align: "left", | |
config: | |
{ | |
logoClasses: "alfresco-logo-only", | |
currentTheme: theme, | |
logoSrc: getHeaderLogoUrl() | |
} |
View HttpHeaderViewResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.swazzy.viewresolver; | |
import java.util.Iterator; | |
import java.util.List; | |
import java.util.Locale; | |
import java.util.Map; | |
import org.apache.log4j.Logger; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.mobile.device.Device; |
View cloned-vm-update-network
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ifconfig eth1 up && eth1=`ifconfig | grep eth1 | sed 's/.*HWaddr //g'` && cat /etc/sysconfig/network-scripts/ifcfg-eth0 | sed "s/HWADDR.*/HWADDR=$eth1/" | sed "s/eth0/eth1/g" > /etc/sysconfig/network-scripts/ifcfg-eth1 && rm /etc/sysconfig/network-scripts/ifcfg-eth0 && service network restart |
View cleanup-aws-volumes.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-volumes --filters Name=status,Values=available --query 'Volumes[*].{ID:VolumeId}' |grep "ID" |cut -d: -f2 |xargs -n 1 aws ec2 delete-volume --volume-id |
View gist:fd48a33741da87bccc3f8e61adbcd193
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn archetype:generate -Dfilter=org.alfresco: |
View alfresco-sdk-pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<parent> | |
<groupId>org.alfresco.maven</groupId> | |
<artifactId>alfresco-sdk-parent</artifactId> | |
<version>2.1.1</version> | |
</parent> |
View alfresco-upgrade-pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Alfresco Maven Plugin version to use --> | |
<alfresco.sdk.version>3.0.0</alfresco.sdk.version> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<!-- Alfresco Data directory, which will contain: Content Store (i.e. the files we upload) Database (i.e. the metadata for the uploaded files) Search index (i.e. the indexed content and metadata) Configured in alfresco-global.properties with the | |
'dir.root' property. --> | |
<alfresco.data.location>${session.executionRootDirectory}/alf_data_dev</alfresco.data.location> | |
<!-- Duplicated with alfresco.solrHome in the plugin, we need them out here to do filtering --> |
OlderNewer