fac91c1a55
Version 2.6.3 (2008-12-13) -------------------------- - Added insert tag "env::page_id" (#276) - Added option to use insert tags in the listing module (#276) - Added option to show hidden pages in the quick navigation module (#280) - Added field names to the back end form preview (#227) - Hardened Input class to recognize even more malicious code - Improved insert tag "image" to support the "rel" attribute (#298) - Improved file manager to rename copied files if they exist in the target directory (#273) - Declared all private methods protected so they can be overwritten (#310) - Fixed issue with safe mode hack messing up the owner of new files - Fixed issue with naming conflict in listing and memberlist module (#297) - Fixed issue with calendar feeds not linking to external pages (#283) - Fixed issue with custom menus with hidden pages not showing class "last" (#259) - Fixed issue with TinyMCE hyperlink popup not loading for regular users (#274) - Fixed issue with style sheet categories not being duplicated (#236) - Fixed issue with regular users not being able to edit multiple content elements (#272) - Fixed issue with regular users not being able to cut/copy news and events (#294) - Fixed a few minor bugs
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
# $NetBSD: Makefile.common,v 1.5 2008/12/14 00:22:46 taca Exp $
|
|
#
|
|
# used by www/typolight-example/Makefile
|
|
# used by www/typolight-translations/Makefile
|
|
|
|
TL_VERSION= 2.6.3
|
|
|
|
FILES_SUBST+= PAX=${PAX} TL_EGDIR=${TL_EGDIR:Q} TL_WEBDIR=${TL_WEBDIR:Q} \
|
|
WWWGRP=${APACHE_GROUP:Q} WWWOWN=${APACHE_USER:Q}
|
|
PLIST_SUBST+= TL_DOCDIR=${TL_DOCDIR:Q} TL_EGDIR=${TL_EGDIR:Q} \
|
|
TL_WEBDIR=${TL_WEBDIR:Q}
|
|
|
|
PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/templates$$/ \
|
|
{ next; }
|
|
PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/system\/(tmp|log)$$/ \
|
|
{ next; }
|
|
PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/system$$/ \
|
|
{ next; }
|
|
PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}$$/ \
|
|
{ next; }
|
|
PRINT_PLIST_AWK+= /^(@dirrm )?${TL_WEBDIR:S|/|\\/|g}/ \
|
|
{ gsub(/${TL_WEBDIR:S|/|\\/|g}/, "$${TL_WEBDIR}"); \
|
|
print; next; }
|
|
PRINT_PLIST_AWK+= /^(@dirrm )?${TL_EGDIR:S|/|\\/|g}/ \
|
|
{ gsub(/${TL_EGDIR:S|/|\\/|g}/, "$${TL_EGDIR}"); \
|
|
print; next; }
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PKG_SYSCONFSUBDIR?= typolight
|
|
|
|
TL_DOCDIR?= share/doc/typolight
|
|
TL_EGDIR?= share/examples/typolight
|
|
TL_WEBDIR?= share/httpd/typolight
|
|
|
|
BUILD_DEFS+= APACHE_GROUP APACHE_USER TL_DOCDIR TL_EGDIR TL_WEBDIR
|