debian/cubicweb-ctl.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Mon, 02 Jun 2014 12:29:37 +0200
branchstable
changeset 9870 d30ff49d4a94
parent 6917 e080e7465ac4
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
    purge)
	rm -rf /etc/cubicweb.d/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0