debian/cubicweb-twisted.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Mon, 02 Jun 2014 12:29:37 +0200
branchstable
changeset 9870 d30ff49d4a94
parent 0 b97547f5f1fa
permissions -rw-r--r--
[views] Replace poorly named "invisible" class with "list-unstyled" "li.invisible" actually means "hide bullet". Use a reasonable name instead, such as bootstrap's "list-unstyled" class. This patch also changes the DOM element the class is applied to. "li.invisible" had to be enabled on every "li" tag, whereas the "list-unstyled" class only needs to be applied to the parent "ul" element.

#! /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