Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Mar 2009 07:55:42 GMT
From:      Wen Heping <wenheping@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/132526: [Update]www/phpsurveyor:update to 1.8.0
Message-ID:  <200903110755.n2B7tg8m001359@www.freebsd.org>
Resent-Message-ID: <200903110800.n2B80B8n022838@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         132526
>Category:       ports
>Synopsis:       [Update]www/phpsurveyor:update to 1.8.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 11 08:00:11 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Wen Heping
>Release:        FreeBSD 8.0-Current
>Organization:
ChangAn Middle School
>Environment:
FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #2: Wed Mar  4 22:41:03 HKT 2009     root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
1 update to 1.8.0 from 1.0
2 use dynatic plist to replace static plist because 
the static plist file is too large.
3 Maintainer: could we change the portname to limesurvey and 
repocopy www/phpsurveyor to www/limesurvey? Because the upstream
coder has change the program's name.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -urN phpsurveyor/Makefile phpsurveyor.new/Makefile
--- phpsurveyor/Makefile	2009-03-11 21:22:09.000000000 +0800
+++ phpsurveyor.new/Makefile	2009-03-11 21:46:33.000000000 +0800
@@ -6,35 +6,23 @@
 #
 
 PORTNAME=	phpsurveyor
-PORTVERSION=	1.0
-PORTREVISION=	1
+PORTVERSION=	1.80
 CATEGORIES=	www
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+MASTER_SITES=	SF
 MASTER_SITE_SUBDIR=	limesurvey
-DISTNAME=	${PORTNAME}-1_00
+DISTNAME=	limesurvey${PORTVERSION:S^.^^}_build6506_20090310
 
 MAINTAINER=	janos.mohacsi@bsd.hu
 COMMENT=	A PHP-based survey building and runing system
 
-USE_PHP=	mysql session
-WRKSRC=		${WRKDIR}
-USE_ZIP=	yes
+USE_PHP=	mysql session mbstring pcre iconv gd ldap
+WRKSRC=		${WRKDIR}/limesurvey
 
-#User-configurable variables
-WWWDOCROOT?=	www/
 PHPSURVEYORURL?=	phpsurveyor
-#
-# End of user-configurable variables.
+PHPSURVEYORDIR=		${WWWDOCROOT}/${PHPSURVEYORURL}
 
-# Set/override/append to variables from bsd.port.mk:
-#
 NO_BUILD=	yes
 PKGMESSAGE=	${WRKDIR}/pkg-message
-PLIST_SUB+=	PHPSURVEYORDIR=${PHPSURVEYORDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
-
-# Set custom variables:
-#
-PHPSURVEYORDIR=	${WWWDOCROOT}/${PHPSURVEYORURL}
 
 post-configure:
 	@ ${SED} \
@@ -44,14 +32,20 @@
 	pkg-message > ${PKGMESSAGE}
 
 do-install:
-	${MKDIR} -m 0755 ${PREFIX}/${PHPSURVEYORDIR}
-	cd ${WRKSRC} && ${FIND} * \( -name tmp -a -prune \) -o -print \
-	  | ${TAR} cTf - - | ${TAR} xUCf ${PREFIX}/${PHPSURVEYORDIR} -
-	${MKDIR} ${PREFIX}/${PHPSURVEYORDIR}/tmp
-	${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${PHPSURVEYORDIR}
-	${CHMOD} 755 ${PREFIX}/${PHPSURVEYORDIR}/tmp
+	${MKDIR} ${WWWDIR}
+	@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR}
+	${MKDIR} ${WWWDIR}/tmp
+	${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
+	${CHMOD} 755 ${WWWDIR}/tmp
+	${CHMOD} 755 ${WWWDIR}/templates
+	${CHMOD} 755 ${WWWDIR}/upload
 
 post-install:
+	@${FIND} -s -d ${WWWDIR} -type f -print | \
+		${SED} -e "s#${PREFIX}/##g" >> ${TMPPLIST}
+	@${FIND} -s -d ${WWWDIR} -type d  -print | \
+		${SED} -E -e "s#${PREFIX}/#@dirrm #g" >> ${TMPPLIST}
+
 .if !defined(BATCH)
 	@ ${CAT} ${PKGMESSAGE}
 .endif
diff -urN phpsurveyor/distinfo phpsurveyor.new/distinfo
--- phpsurveyor/distinfo	2009-03-11 21:22:09.000000000 +0800
+++ phpsurveyor.new/distinfo	2009-03-11 21:46:33.000000000 +0800
@@ -1,3 +1,3 @@
-MD5 (phpsurveyor-1_00.zip) = bc3f429a0047da1fc38de5a4c568af32
-SHA256 (phpsurveyor-1_00.zip) = 6f29e37eec4789a2cfc3c6df9c2f38584f8d43b5a780039fa7feac2ef60a58f9
-SIZE (phpsurveyor-1_00.zip) = 1454161
+MD5 (limesurvey180_build6506_20090310.tar.gz) = 135006f4e176b42edca5cfb3f19259c5
+SHA256 (limesurvey180_build6506_20090310.tar.gz) = 19be2417205e7458a490f35ba70f19ab4734b3e5dc446eac4ce5b9cca7970de8
+SIZE (limesurvey180_build6506_20090310.tar.gz) = 14210294
diff -urN phpsurveyor/pkg-message phpsurveyor.new/pkg-message
--- phpsurveyor/pkg-message	2009-03-11 21:22:09.000000000 +0800
+++ phpsurveyor.new/pkg-message	2009-03-11 21:46:33.000000000 +0800
@@ -5,6 +5,10 @@
 Further information on these installation procedures may 
 be found in:
 
+  http://docs.limesurvey.org/tiki-index.php?page=Installation
+
+and 
+
   %%PREFIX%%/%%PHPSURVEYORDIR%%/admin/manual.html
 
 Once these steps have been taken, you may connect to the following URL to
diff -urN phpsurveyor/pkg-plist phpsurveyor.new/pkg-plist
--- phpsurveyor/pkg-plist	2009-03-11 21:22:09.000000000 +0800
+++ phpsurveyor.new/pkg-plist	1970-01-01 08:00:00.000000000 +0800
@@ -1,578 +0,0 @@
-%%PHPSURVEYORDIR%%/admin/activate.php
-%%PHPSURVEYORDIR%%/admin/admin.php
-%%PHPSURVEYORDIR%%/admin/adminstyle.css
-%%PHPSURVEYORDIR%%/admin/assessments.php
-%%PHPSURVEYORDIR%%/admin/browse.php
-%%PHPSURVEYORDIR%%/admin/checkfields.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/BIFFwriter.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/Format.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/Parser.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/Validator.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/Workbook.php
-%%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer/Worksheet.php
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/activefolder.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/branch.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/branchbottom.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/branchtop.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/document.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/folder.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/line.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/linebottom.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/minus.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/minusbottom.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/minustop.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/plus.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/plusbottom.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages/plustop.gif
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TreeMenu.css
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TreeMenu.js
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TreeMenu.php
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TreeMenuXL.php
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/ccBrowserInfo.php
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/ccSiteStyle.css.php
-%%PHPSURVEYORDIR%%/admin/classes/TreeMenu/xMenu1.js
-%%PHPSURVEYORDIR%%/admin/classes/phpzip/phpzip.inc.php
-%%PHPSURVEYORDIR%%/admin/conditions.php
-%%PHPSURVEYORDIR%%/admin/createdb.php
-%%PHPSURVEYORDIR%%/admin/database.php
-%%PHPSURVEYORDIR%%/admin/dataentry.php
-%%PHPSURVEYORDIR%%/admin/dbchecker.php
-%%PHPSURVEYORDIR%%/admin/dbedit.php
-%%PHPSURVEYORDIR%%/admin/deactivate.php
-%%PHPSURVEYORDIR%%/admin/deletesurvey.php
-%%PHPSURVEYORDIR%%/admin/dumpdb.php
-%%PHPSURVEYORDIR%%/admin/dumpgroup.php
-%%PHPSURVEYORDIR%%/admin/dumplabel.php
-%%PHPSURVEYORDIR%%/admin/dumpquestion.php
-%%PHPSURVEYORDIR%%/admin/dumpsurvey.php
-%%PHPSURVEYORDIR%%/admin/export.php
-%%PHPSURVEYORDIR%%/admin/favicon.ico
-%%PHPSURVEYORDIR%%/admin/html.php
-%%PHPSURVEYORDIR%%/admin/images/DownArrow.gif
-%%PHPSURVEYORDIR%%/admin/images/activate.gif
-%%PHPSURVEYORDIR%%/admin/images/active.gif
-%%PHPSURVEYORDIR%%/admin/images/add.gif
-%%PHPSURVEYORDIR%%/admin/images/admincrnr.png
-%%PHPSURVEYORDIR%%/admin/images/answers.gif
-%%PHPSURVEYORDIR%%/admin/images/assessments.gif
-%%PHPSURVEYORDIR%%/admin/images/badsecurity.gif
-%%PHPSURVEYORDIR%%/admin/images/blank.gif
-%%PHPSURVEYORDIR%%/admin/images/browse.gif
-%%PHPSURVEYORDIR%%/admin/images/checkdb.gif
-%%PHPSURVEYORDIR%%/admin/images/close.gif
-%%PHPSURVEYORDIR%%/admin/images/conditions.gif
-%%PHPSURVEYORDIR%%/admin/images/copy.gif
-%%PHPSURVEYORDIR%%/admin/images/copyright.txt
-%%PHPSURVEYORDIR%%/admin/images/cut.gif
-%%PHPSURVEYORDIR%%/admin/images/databack.gif
-%%PHPSURVEYORDIR%%/admin/images/databegin.gif
-%%PHPSURVEYORDIR%%/admin/images/dataend.gif
-%%PHPSURVEYORDIR%%/admin/images/dataentry.gif
-%%PHPSURVEYORDIR%%/admin/images/dataforward.gif
-%%PHPSURVEYORDIR%%/admin/images/deactivate.gif
-%%PHPSURVEYORDIR%%/admin/images/delete.gif
-%%PHPSURVEYORDIR%%/admin/images/do.gif
-%%PHPSURVEYORDIR%%/admin/images/document.gif
-%%PHPSURVEYORDIR%%/admin/images/donate.gif
-%%PHPSURVEYORDIR%%/admin/images/down.gif
-%%PHPSURVEYORDIR%%/admin/images/edit.gif
-%%PHPSURVEYORDIR%%/admin/images/export.gif
-%%PHPSURVEYORDIR%%/admin/images/export2.gif
-%%PHPSURVEYORDIR%%/admin/images/help.gif
-%%PHPSURVEYORDIR%%/admin/images/home.gif
-%%PHPSURVEYORDIR%%/admin/images/import.gif
-%%PHPSURVEYORDIR%%/admin/images/inactive.gif
-%%PHPSURVEYORDIR%%/admin/images/inactive_old.gif
-%%PHPSURVEYORDIR%%/admin/images/invite.gif
-%%PHPSURVEYORDIR%%/admin/images/labels.gif
-%%PHPSURVEYORDIR%%/admin/images/minus.gif
-%%PHPSURVEYORDIR%%/admin/images/phpslogo.png
-%%PHPSURVEYORDIR%%/admin/images/phpsurveyor_logo.jpg
-%%PHPSURVEYORDIR%%/admin/images/plus.gif
-%%PHPSURVEYORDIR%%/admin/images/print.gif
-%%PHPSURVEYORDIR%%/admin/images/remind.gif
-%%PHPSURVEYORDIR%%/admin/images/save.gif
-%%PHPSURVEYORDIR%%/admin/images/saved.gif
-%%PHPSURVEYORDIR%%/admin/images/security.gif
-%%PHPSURVEYORDIR%%/admin/images/seperator.gif
-%%PHPSURVEYORDIR%%/admin/images/showhelp.gif
-%%PHPSURVEYORDIR%%/admin/images/speaker.jpg
-%%PHPSURVEYORDIR%%/admin/images/statistics.gif
-%%PHPSURVEYORDIR%%/admin/images/summary.gif
-%%PHPSURVEYORDIR%%/admin/images/templates.gif
-%%PHPSURVEYORDIR%%/admin/images/tokenify.gif
-%%PHPSURVEYORDIR%%/admin/images/tokens.gif
-%%PHPSURVEYORDIR%%/admin/images/trafficgreen.gif
-%%PHPSURVEYORDIR%%/admin/images/trafficred.gif
-%%PHPSURVEYORDIR%%/admin/images/viewlast.gif
-%%PHPSURVEYORDIR%%/admin/images/vvexport.gif
-%%PHPSURVEYORDIR%%/admin/images/vvimport.gif
-%%PHPSURVEYORDIR%%/admin/importgroup.php
-%%PHPSURVEYORDIR%%/admin/importlabel.php
-%%PHPSURVEYORDIR%%/admin/importoldresponses.php
-%%PHPSURVEYORDIR%%/admin/importquestion.php
-%%PHPSURVEYORDIR%%/admin/importsurvey.php
-%%PHPSURVEYORDIR%%/admin/index.php
-%%PHPSURVEYORDIR%%/admin/labels.php
-%%PHPSURVEYORDIR%%/admin/lang/chinese/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/group.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/chinese/question.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/chinese/users.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/group.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/dutch/question.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/dutch/users.html
-%%PHPSURVEYORDIR%%/admin/lang/english/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/english/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/english/group.html
-%%PHPSURVEYORDIR%%/admin/lang/english/installation_on_os2warp.html
-%%PHPSURVEYORDIR%%/admin/lang/english/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/english/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/english/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/english/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/english/question.html
-%%PHPSURVEYORDIR%%/admin/lang/english/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/english/templates.html
-%%PHPSURVEYORDIR%%/admin/lang/english/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/english/users.html
-%%PHPSURVEYORDIR%%/admin/lang/french/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/french/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/french/group.html
-%%PHPSURVEYORDIR%%/admin/lang/french/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/french/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/french/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/french/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/french/question.html
-%%PHPSURVEYORDIR%%/admin/lang/french/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/french/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/french/users.html
-%%PHPSURVEYORDIR%%/admin/lang/german/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/german/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/german/group.html
-%%PHPSURVEYORDIR%%/admin/lang/german/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/german/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/german/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/german/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/german/question.html
-%%PHPSURVEYORDIR%%/admin/lang/german/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/german/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/german/users.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/group.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/italian/question.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/italian/users.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/group.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/question.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/portuguese/users.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/group.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/russian/question.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/russian/users.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/group.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/spanish/question.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/spanish/users.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/admin.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/answer.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/group.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/installation_on_os2warp.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/instructions.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/labels.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/labelsets.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/messages.php
-%%PHPSURVEYORDIR%%/admin/lang/swedish/question.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/survey.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/templates.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/tokens.html
-%%PHPSURVEYORDIR%%/admin/lang/swedish/users.html
-%%PHPSURVEYORDIR%%/admin/listcolumn.php
-%%PHPSURVEYORDIR%%/admin/manual.html
-%%PHPSURVEYORDIR%%/admin/navigator.php
-%%PHPSURVEYORDIR%%/admin/phpsurveyor.css
-%%PHPSURVEYORDIR%%/admin/printablesurvey.php
-%%PHPSURVEYORDIR%%/admin/results.php
-%%PHPSURVEYORDIR%%/admin/resultsdump.php
-%%PHPSURVEYORDIR%%/admin/saved.php
-%%PHPSURVEYORDIR%%/admin/sessioncontrol.php
-%%PHPSURVEYORDIR%%/admin/spss.php
-%%PHPSURVEYORDIR%%/admin/statistics.php
-%%PHPSURVEYORDIR%%/admin/templates.php
-%%PHPSURVEYORDIR%%/admin/tokens.php
-%%PHPSURVEYORDIR%%/admin/usercontrol.php
-%%PHPSURVEYORDIR%%/admin/vvexport.php
-%%PHPSURVEYORDIR%%/admin/vvimport.php
-%%PHPSURVEYORDIR%%/chart.jpg
-%%PHPSURVEYORDIR%%/classes/XPertMailer/CHANGELOG
-%%PHPSURVEYORDIR%%/classes/XPertMailer/DOCUMENTATION
-%%PHPSURVEYORDIR%%/classes/XPertMailer/HOWTO
-%%PHPSURVEYORDIR%%/classes/XPertMailer/XPertMailer.php
-%%PHPSURVEYORDIR%%/classes/slider/handle.horizontal.png
-%%PHPSURVEYORDIR%%/classes/slider/handle.vertical.png
-%%PHPSURVEYORDIR%%/classes/slider/range.js
-%%PHPSURVEYORDIR%%/classes/slider/slider.js
-%%PHPSURVEYORDIR%%/classes/slider/slider/handle.horizontal.png
-%%PHPSURVEYORDIR%%/classes/slider/slider/handle.vertical.png
-%%PHPSURVEYORDIR%%/classes/slider/slider/range.js
-%%PHPSURVEYORDIR%%/classes/slider/slider/slider.js
-%%PHPSURVEYORDIR%%/classes/slider/slider/swing.css
-%%PHPSURVEYORDIR%%/classes/slider/slider/timer.js
-%%PHPSURVEYORDIR%%/classes/slider/swing.css
-%%PHPSURVEYORDIR%%/classes/slider/timer.js
-%%PHPSURVEYORDIR%%/common.php
-%%PHPSURVEYORDIR%%/config.php
-%%PHPSURVEYORDIR%%/cut.gif
-%%PHPSURVEYORDIR%%/docs/license.txt
-%%PHPSURVEYORDIR%%/docs/maketables.sql
-%%PHPSURVEYORDIR%%/docs/manual.html
-%%PHPSURVEYORDIR%%/docs/release_notes_and_upgrade_instructions.txt
-%%PHPSURVEYORDIR%%/docs/sample_survey.sql
-%%PHPSURVEYORDIR%%/docs/summary.txt
-%%PHPSURVEYORDIR%%/group.php
-%%PHPSURVEYORDIR%%/help.gif
-%%PHPSURVEYORDIR%%/index.php
-%%PHPSURVEYORDIR%%/lang/bulgarian.lang.php
-%%PHPSURVEYORDIR%%/lang/chinese-simplified.lang.php
-%%PHPSURVEYORDIR%%/lang/chinese-traditional.lang.php
-%%PHPSURVEYORDIR%%/lang/croatian.lang.php
-%%PHPSURVEYORDIR%%/lang/danish.lang.php
-%%PHPSURVEYORDIR%%/lang/dutch.lang.php
-%%PHPSURVEYORDIR%%/lang/english.lang.php
-%%PHPSURVEYORDIR%%/lang/french.lang.php
-%%PHPSURVEYORDIR%%/lang/german-informal.lang.php
-%%PHPSURVEYORDIR%%/lang/german.lang.php
-%%PHPSURVEYORDIR%%/lang/greek.lang.php
-%%PHPSURVEYORDIR%%/lang/hungarian.lang.php
-%%PHPSURVEYORDIR%%/lang/italian.lang.php
-%%PHPSURVEYORDIR%%/lang/japanese.lang.php
-%%PHPSURVEYORDIR%%/lang/lithuanian.lang.php
-%%PHPSURVEYORDIR%%/lang/norwegian.lang.php
-%%PHPSURVEYORDIR%%/lang/portuguese.lang.php
-%%PHPSURVEYORDIR%%/lang/romanian.lang.php
-%%PHPSURVEYORDIR%%/lang/russian.lang.php
-%%PHPSURVEYORDIR%%/lang/slovenian.lang.php
-%%PHPSURVEYORDIR%%/lang/spanish.lang.php
-%%PHPSURVEYORDIR%%/lang/swedish.lang.php
-%%PHPSURVEYORDIR%%/load.php
-%%PHPSURVEYORDIR%%/pkg-message
-%%PHPSURVEYORDIR%%/qanda.php
-%%PHPSURVEYORDIR%%/question.php
-%%PHPSURVEYORDIR%%/register.php
-%%PHPSURVEYORDIR%%/save.php
-%%PHPSURVEYORDIR%%/survey.php
-%%PHPSURVEYORDIR%%/templates/basic/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/chart.jpg
-%%PHPSURVEYORDIR%%/templates/basic/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/load.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/logo.gif
-%%PHPSURVEYORDIR%%/templates/basic/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/question.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/readme.txt
-%%PHPSURVEYORDIR%%/templates/basic/register.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/save.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/basic/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/chart.jpg
-%%PHPSURVEYORDIR%%/templates/blue_heaven/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/load.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/question.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/register.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/save.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/blue_heaven/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/chart.jpg
-%%PHPSURVEYORDIR%%/templates/bluengrey/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/load.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/question.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/register.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/save.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/bluengrey/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/chart.jpg
-%%PHPSURVEYORDIR%%/templates/bubblegum/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/load.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/question.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/register.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/save.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/bubblegum/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/chart.jpg
-%%PHPSURVEYORDIR%%/templates/business_grey/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/load.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/question.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/register.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/save.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/business_grey/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/default/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/default/chart.jpg
-%%PHPSURVEYORDIR%%/templates/default/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/default/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/default/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/default/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/default/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/default/load.pstpl
-%%PHPSURVEYORDIR%%/templates/default/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/default/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/default/question.pstpl
-%%PHPSURVEYORDIR%%/templates/default/register.pstpl
-%%PHPSURVEYORDIR%%/templates/default/save.pstpl
-%%PHPSURVEYORDIR%%/templates/default/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/default/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/default/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/default/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/default/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/bot_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/botleft_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/botright_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/chart.jpg
-%%PHPSURVEYORDIR%%/templates/edgyblue/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_bot.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_botleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_botright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_top.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_topleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/head_topright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/left_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/load.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_bot.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_botleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_botright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_left.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_right.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_top.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_topleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange2_topright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_bot.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_botleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_botright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_left.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_right.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_top.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_topleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/orange_topright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/question.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/register.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/right_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/save.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_bot.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_botleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_botright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_left.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_right.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_top.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_topleft.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/single_topright.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/edgyblue/top_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/topleft_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/topright_bord.gif
-%%PHPSURVEYORDIR%%/templates/edgyblue/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/chart.jpg
-%%PHPSURVEYORDIR%%/templates/eirenicon/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/load.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/question.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/readme.txt
-%%PHPSURVEYORDIR%%/templates/eirenicon/register.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/save.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/eirenicon/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/botcurve.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/botcurve2.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/chart.jpg
-%%PHPSURVEYORDIR%%/templates/softgreencurves/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/contgrid.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/headleft.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/headright.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/load.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/question.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/register.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/save.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/smallgrid.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/smallgrid2.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/softgreencurves/topcurve.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/topcurve2.gif
-%%PHPSURVEYORDIR%%/templates/softgreencurves/welcome.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/assessment.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/chart.jpg
-%%PHPSURVEYORDIR%%/templates/vallendar/clearall.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/completed.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/endgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/endpage.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/groupdescription.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/load.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/logo.jpg
-%%PHPSURVEYORDIR%%/templates/vallendar/navigator.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/privacy.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/question.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/readme.txt
-%%PHPSURVEYORDIR%%/templates/vallendar/register.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/save.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/startgroup.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/startpage.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/submit.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/survey.pstpl
-%%PHPSURVEYORDIR%%/templates/vallendar/welcome.pstpl
-@dirrm %%PHPSURVEYORDIR%%/tmp
-@dirrm %%PHPSURVEYORDIR%%/templates/vallendar
-@dirrm %%PHPSURVEYORDIR%%/templates/softgreencurves
-@dirrm %%PHPSURVEYORDIR%%/templates/eirenicon
-@dirrm %%PHPSURVEYORDIR%%/templates/edgyblue
-@dirrm %%PHPSURVEYORDIR%%/templates/default
-@dirrm %%PHPSURVEYORDIR%%/templates/business_grey
-@dirrm %%PHPSURVEYORDIR%%/templates/bubblegum
-@dirrm %%PHPSURVEYORDIR%%/templates/bluengrey
-@dirrm %%PHPSURVEYORDIR%%/templates/blue_heaven
-@dirrm %%PHPSURVEYORDIR%%/templates/basic
-@dirrm %%PHPSURVEYORDIR%%/templates
-@dirrm %%PHPSURVEYORDIR%%/lang
-@dirrm %%PHPSURVEYORDIR%%/docs
-@dirrm %%PHPSURVEYORDIR%%/classes/slider/slider
-@dirrm %%PHPSURVEYORDIR%%/classes/slider
-@dirrm %%PHPSURVEYORDIR%%/classes/XPertMailer
-@dirrm %%PHPSURVEYORDIR%%/classes
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/swedish
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/spanish
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/russian
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/portuguese
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/italian
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/german
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/french
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/english
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/dutch
-@dirrm %%PHPSURVEYORDIR%%/admin/lang/chinese
-@dirrm %%PHPSURVEYORDIR%%/admin/lang
-@dirrm %%PHPSURVEYORDIR%%/admin/images
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/phpzip
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/TreeMenu/TMimages
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/TreeMenu
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer/Writer
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/PEAR/Spreadsheet_Excel_Writer
-@dirrm %%PHPSURVEYORDIR%%/admin/classes/PEAR
-@dirrm %%PHPSURVEYORDIR%%/admin/classes
-@dirrm %%PHPSURVEYORDIR%%/admin
-@dirrm %%PHPSURVEYORDIR%%
-@exec chown -R %%WWWOWN%%:%%WWWGRP%% %%PREFIX%%/%%PHPSURVEYORDIR%%
-@dirrmtry www/data


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903110755.n2B7tg8m001359>