debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 17 Nov 2011 18:21:04 +0100
changeset 8088 145c0701bac6
parent 0 b97547f5f1fa
permissions -rw-r--r--
[tableview] enhance RelationColRenderer. Closes #2093184 * subvid should only be explicitly specified, or default when main view (vid) is known to support it (eg 'list' / 'csv') * new is_rtype_view boolean flag to ease usage of view based on original entity with a relation name and role, as the 'reledit' view for instance

#! /bin/sh -e
 
case "$1" in
    remove)
	if [ -x "/etc/init.d/cubicweb-ctl" ]; then
	    invoke-rc.d cubicweb-ctl stop || true
	fi
    ;;
esac
 
#DEBHELPER#
 
exit 0