Skip to content

Instantly share code, notes, and snippets.

View slemarchand's full-sized avatar

Sébastien Le Marchand slemarchand

View GitHub Profile
println(System.getProperty("java.version"))
import com.liferay.portal.service.*;
import com.liferay.portal.util.*;
try {
user = UserLocalServiceUtil.getUserByScreenName(PortalUtil.getCompany(actionRequest).getCompanyId(), "someScreenName");
UserLocalServiceUtil.deleteUser(user);
} catch(e) {
@slemarchand
slemarchand / sync-webapps.gulpfile.js
Last active March 2, 2016 12:53
Synchronize webapps assets from maven projects sources to webapps context directories.
//
// original gist: ttps://gist.github.com/slemarchand/fd4f15868edeb592e64a
//
// Synchronize webapps assets (including jsp and jspf files)
// from maven projects sources to webapps context directories.
//
// usage example:
// gulp --gulpfile sync-webapps.gulpfile.js --sources . --webapps ${CATALINA_HOME}/webapps
//
// install required packages:
var portletId = '15';
var authToken = Liferay.authToken;
var url = '/en_US/group/control_panel/manage?p_auth=' + authToken + '&p_p_id=137&p_p_lifecycle=1&p_p_state=maximized&p_p_mode=view&refererPlid=565250&_137_struts_action=%2Fadmin_server%2Fedit_server';
var data = '_137_formDate=1472741233467&_137_cmd=reindex&_137_tabs1=server&_137_tabs2=&_137_tabs3=&_137_redirect=&_137_portletId=' + portletId + '&_137_tabs2TabsScroll='
var httpRequest = new XMLHttpRequest()
httpRequest.open('POST', url, true);
#
# http://stackoverflow.com/questions/9597410/list-all-developers-on-project-in-git
#
git shortlog -sne --all
/* Make more visible the Liferay SPA loading bar */
.lfr-spa-loading-bar {
height: 6px;
background: #df4230;
}
this.binding.variables.each {k,v -> println "$k = $v"}
(function() {
COMPANY_ID = "39524";
DOMAIN = "hostname";
document.cookie = "COMPANY_ID=" + COMPANY_ID + "; domain=" + DOMAIN + "; path=/";
document.location = "/";
})();
import com.liferay.portal.util.PortalUtil
request = PortalUtil.getOriginalServletRequest(PortalUtil.getHttpServletRequest(actionRequest))
println("""
isSecure: ${request.isSecure()}
""")
import com.liferay.portal.util.*
import com.liferay.portal.service.*
import com.liferay.portal.model.*
PORTLET_ID = '56'
companyId = PortalUtil.getCompanyId(actionRequest)
groups = GroupLocalServiceUtil.getGroups(companyId, GroupConstants.ANY_PARENT_GROUP_ID, true)