794a85422a
Here is some of new features and changes. * Improved publishing * Improved page and article handling * Automatic article * Improved file handling * Improved "edit multiple" options * Handling MooTools scripts * Adding videos and external content * Enhanced image options * Overriding image dimensions * Improved user management * Improved news lists * Event list pagination * Improved newsletter handling * Improved comments handling * Relocated extensions For more detail, please refer these pages. Release announce: http://www.typolight.org/news/items/typolight-2_8_RC1.html Changelog: http://www.typolight.org/changelog.html Ticket System: http://dev.typolight.org/versions/show/9
22 lines
607 B
Text
22 lines
607 B
Text
# $NetBSD: DEINSTALL,v 1.1.1.1 2009/12/02 16:06:31 taca Exp $
|
|
|
|
TL_WEBDIR="@PREFIX@/@TL_WEBDIR@"
|
|
TL_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} ${TL_WEBDIR}/system/html -type f ! -name index.html \
|
|
-exec ${RM} -f {} \;
|
|
${FIND} ${TL_WEBDIR}/plugins/tcpdf/cache -type f ! -name .htaccess \
|
|
-exec ${RM} -f {} \;
|
|
;;
|
|
POST-DEINSTALL)
|
|
(cd ${TL_WEBDIR}
|
|
for d in ${TL_DIRS}; do
|
|
${RMDIR} $d >/dev/null 2>&1
|
|
done)
|
|
${RMDIR} ${TL_WEBDIR} >/dev/null 2>&1
|
|
;;
|
|
esac
|