debian/cubicweb-ctl.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Fri, 25 Sep 2009 11:01:23 +0200
branchstable
changeset 3470 c9c8b231db7b
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
[forms] fix form_needs_multipart implementation problem ------- The current implementation of form_needs_multipart goes down recursively in all inlined forms to check if one of them needs a multipart enctype. If we have a relation definition as X part_of X, the previous implementation potentially lead to an infinite recursion

#! /bin/sh -e
 
case "$1" in
    purge)
        rm -rf /etc/cubicweb.d/
    	rm -rf /var/run/cubicweb/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0