Skip to content

Instantly share code, notes, and snippets.

@planetsizebrain
planetsizebrain / view.jsp
Last active January 17, 2016 21:09
Overridden /html/portlet/dockbar/view.jsp that shows the cluster web server node ID.
<%--
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
@planetsizebrain
planetsizebrain / patching-tool.sh
Last active November 29, 2016 16:01
Liferay patching tool Bash autocomplete script
_patching-tool()
{
local cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W "auto-discovery diff help index-info info install list-collisions list-customizations list-plugins revert server-status setup store support-info update-plugins version" -- $cur) )
}
complete -F _patching-tool patching-tool.sh
@planetsizebrain
planetsizebrain / LiferayPDFBoxConverter.java
Created April 29, 2015 13:21
Custom LiferayPDFBoxConverter for PDFBox 2.0.0-SNAPSHOT
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS