* Multilingual website URLs * Global style sheet variables * Improved FAQ module * News archive/Event list/FAQ list/ and each reader on the same page * Disabling the CSS framework * Make style sheets static * Modified request token system * Contao safe mode * Autogenerated local configuration files * Adding system messages * Insert tag changes * Website root pages are required * Make ListView output a table * Embed Google web fonts * Advanced image crop modes * Forced password change * Privacy settings * Updated plugins (not extension) * New hooks * New methods in the File/Folder class * Remove some old function
22 lines
607 B
Text
22 lines
607 B
Text
# $NetBSD: DEINSTALL,v 1.1.1.1 2012/02/19 10:54:07 taca Exp $
|
|
|
|
CT_WEBDIR="@PREFIX@/@CT_WEBDIR@"
|
|
CT_DIRS="system/config system/drivers system/libraries system/logs \
|
|
system/modules system/themes system/config system templates"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
# remove cache files.
|
|
${FIND} ${CT_WEBDIR}/system/html -type f ! -name index.html \
|
|
-exec ${RM} -f {} \;
|
|
${FIND} ${CT_WEBDIR}/plugins/tcpdf/cache -type f ! -name .htaccess \
|
|
-exec ${RM} -f {} \;
|
|
;;
|
|
POST-DEINSTALL)
|
|
(cd ${CT_WEBDIR}
|
|
for d in ${CT_DIRS}; do
|
|
${RMDIR} $d >/dev/null 2>&1
|
|
done)
|
|
${RMDIR} ${CT_WEBDIR} >/dev/null 2>&1
|
|
;;
|
|
esac
|