ports/151718: [NEW PORT] www/dwoo: Dwoo is a PHP5 template engine

Joe Horn joehorn at gmail.com
Mon Oct 25 15:50:10 UTC 2010


>Number:         151718
>Category:       ports
>Synopsis:       [NEW PORT] www/dwoo: Dwoo is a PHP5 template engine
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Oct 25 15:50:10 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Joe Horn
>Release:        FreeBSD 8.1-RELEASE amd64
>Organization:
Taiwanese User
>Environment:
System: FreeBSD joehorn.idv.tw 8.1-RELEASE FreeBSD 8.1-RELEASE #2: Tue Jul 20 22:36:33 CST 2010
>Description:
Dwoo is a PHP5 Template Engine that was started in early 2008. The idea 
came from the fact that Smarty, a well known template engine, is getting
older and older. It carries the weight of it's age, having old features 
that are inconsistent compared to newer ones, being written for PHP4 its
Object Oriented aspect doesn't take advantage of PHP5's more advanced 
features in the area, etc. Hence Dwoo was born, hoping to provide a more
up to date and stronger engine. So far it has proven to be faster than 
Smarty in many areas, and it provides a compatibility layer to allow 
developers that have been using Smarty for years to switch their 
application over to Dwoo progressively.

WWW: http://dwoo.org/

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- dwoo-1.1.1.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	dwoo
#	dwoo/files
#	dwoo/files/pkg-message.in
#	dwoo/Makefile
#	dwoo/distinfo
#	dwoo/pkg-descr
#	dwoo/pkg-plist
#
echo c - dwoo
mkdir -p dwoo > /dev/null 2>&1
echo c - dwoo/files
mkdir -p dwoo/files > /dev/null 2>&1
echo x - dwoo/files/pkg-message.in
sed 's/^X//' >dwoo/files/pkg-message.in << '54ab110e950cadb63a623d30e64879e0'
X
XDwoo supports only PHP version 5 and higher.
X
XYou can add the Dwoo path (%%DATADIR%%)
Xinto the "include_path=" directive in your php.ini .
X
54ab110e950cadb63a623d30e64879e0
echo x - dwoo/Makefile
sed 's/^X//' >dwoo/Makefile << 'ae840ea93fbee62d5bd40140bd6fbda6'
X# New ports collection makefile for:	dwoo
X# Date created:		2010-10-26
X# Whom:			Joe Horn <joehorn at gmail.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	dwoo
XPORTVERSION=	1.1.1
XCATEGORIES=	www
XMASTER_SITES=	http://dwoo.org/upload/code/
XDISTFILES=	${PORTNAME}-${PORTVERSION}.tar.gz
X.if !defined(NOPORTDOCS)
XDISTFILES+=	${PORTNAME}-${PORTVERSION}-docs.tar.gz
X.endif
X
XMAINTAINER=	joehorn at gmail.com
XCOMMENT=	Dwoo is a PHP5 template engine
X
XWRKSRC=		${WRKDIR}/${PORTNAME}
X
XNO_BUILD=	yes
XUSE_PHP=	pcre
XWANT_PHP_WEB=	yes
X
XDEFAULT_PHP_VER=5
XIGNORE_WITH_PHP=4
X
XPKGMESSAGE=	${WRKDIR}/pkg-message
XSUB_FILES=	pkg-message
X
Xdo-install:
X	@${MKDIR} ${DATADIR}
X	@cd ${WRKSRC}; ${FIND} . -type d \
X		-exec ${MKDIR} ${DATADIR}/{} \;
X	@cd ${WRKSRC}; ${FIND} . -type f \
X		-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \;
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X	@cd ${WRKDIR}/docs; ${FIND} . -type d \
X		-exec ${MKDIR} ${DOCSDIR}/{} \;
X	@cd ${WRKDIR}/docs; ${FIND} . -type f \
X		-exec ${INSTALL_DATA} ${WRKDIR}/docs/{} ${DOCSDIR}/{} \;
X.endif
X
Xpost-install:
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.mk>
ae840ea93fbee62d5bd40140bd6fbda6
echo x - dwoo/distinfo
sed 's/^X//' >dwoo/distinfo << '6d92b01f7fe2b070e605d1ed6d8db5cf'
XMD5 (dwoo-1.1.1.tar.gz) = 2d8a6eb722a9c8e43db955abdf5d7f41
XSHA256 (dwoo-1.1.1.tar.gz) = 619cb83f0bc3bbf5a5bfea30f37944b5a86b659cfbafed07b7a7d0228e890e3c
XSIZE (dwoo-1.1.1.tar.gz) = 109594
XMD5 (dwoo-1.1.1-docs.tar.gz) = 97697284df85ef7bfbf7ce8ae0b1bb8c
XSHA256 (dwoo-1.1.1-docs.tar.gz) = 67cea75fbaf9a2a3e8ad25486049b63cdece809f66f3cf26a15e14570eff3514
XSIZE (dwoo-1.1.1-docs.tar.gz) = 373637
6d92b01f7fe2b070e605d1ed6d8db5cf
echo x - dwoo/pkg-descr
sed 's/^X//' >dwoo/pkg-descr << '7c052a83c593e6b0378806facaa84dce'
XDwoo is a PHP5 Template Engine that was started in early 2008. The idea 
Xcame from the fact that Smarty, a well known template engine, is getting
Xolder and older. It carries the weight of it's age, having old features 
Xthat are inconsistent compared to newer ones, being written for PHP4 its
XObject Oriented aspect doesn't take advantage of PHP5's more advanced 
Xfeatures in the area, etc. Hence Dwoo was born, hoping to provide a more
Xup to date and stronger engine. So far it has proven to be faster than 
XSmarty in many areas, and it provides a compatibility layer to allow 
Xdevelopers that have been using Smarty for years to switch their 
Xapplication over to Dwoo progressively.
X
XWWW: http://dwoo.org/
7c052a83c593e6b0378806facaa84dce
echo x - dwoo/pkg-plist
sed 's/^X//' >dwoo/pkg-plist << '3b71c4a33ade6166abe0feda6cd00573'
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Block_Plugin.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Compilation_Exception.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Compiler.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Data.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Exception.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Filter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Filter_html_format.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompilable.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompilable_Block.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ICompiler.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IDataProvider.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IElseable.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ILoader.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_IPluginProxy.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_ITemplate.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Loader.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_a.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_auto_escape.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_block.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_capture.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_counter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_cycle.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_dump.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_dynamic.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_else.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_elseif.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_extends.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_for.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_foreach.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_foreachelse.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_forelse.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_if.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_loop.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_section.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_smartyinterface.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_strip.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_template.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_textformat.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_topLevelBlock.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_with.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Plugin_withelse.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Processor.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Processor_smarty_compat.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Security_Exception.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Security_Policy.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Adapter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Filter_Adapter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty_Processor_Adapter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Smarty__Adapter.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Template_File.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Dwoo_Template_String.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/Smarty.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Block---Plugin.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Compilation---Exception.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Compiler.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Data.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Exception.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Filter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompilable---Block.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompilable.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ICompiler.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IDataProvider.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IElseable.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ILoader.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---IPluginProxy.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---ITemplate.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Loader.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Plugin.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Processor.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Security---Exception.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Security---Policy.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Smarty---Adapter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Template---File.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo---Template---String.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_Dwoo.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_dwooAutoload.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---a.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---auto_escape.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---block.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---capture.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---dynamic.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---else.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---elseif.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---for.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---foreach.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---foreachelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---forelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---if.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---loop.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---section.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---smartyinterface.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---strip.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---template.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---textformat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---topLevelBlock.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---with.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---blocks---withelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---filters---html_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---assign.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---capitalize.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---cat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_characters.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_paragraphs.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_sentences.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---count_words.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---counter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---cycle.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---date_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---default.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---dump.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---eol.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---escape.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---eval.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---extends.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---extendsCheck.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---fetch.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---include.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---indent.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---isset.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---load_templates.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---lower.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---mailto.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---math.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---nl2br.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---optional.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---regex_replace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---replace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---reverse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---safe.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---spacify.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---string_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---strip_tags.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---tif.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---truncate.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---upper.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---whitespace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---functions---wordwrap.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---helper.array.php.html
X%%PORTDOCS%%%%DOCSDIR%%/Dwoo/_plugins---builtin---processors---pre.smarty_compat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__Dwoo.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooBlockPlugin.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooCompilationException.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooCompiler.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooData.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooException.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooFilter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompilable.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompilableBlock.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooICompiler.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIDataProvider.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIElseable.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooILoader.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooIPluginProxy.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooITemplate.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooLoader.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooPlugin.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooProcessor.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSecurityException.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSecurityPolicy.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooSmartyAdapter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooTemplateFile.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__DwooTemplateString.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__dwooAutoload.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksa.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksauto_escape.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksblock.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockscapture.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksdynamic.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockselse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockselseif.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksfor.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforeach.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforeachelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksforelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksif.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksloop.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockssection.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockssmartyinterface.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblocksstrip.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstemplate.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstextformat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockstopLevelBlock.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockswith.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinblockswithelse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfiltershtml_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsassign.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscapitalize.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_characters.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_paragraphs.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_sentences.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscount_words.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscounter.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionscycle.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdate_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdefault.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsdump.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionseol.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsescape.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionseval.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsextends.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsextendsCheck.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsfetch.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsinclude.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsindent.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsisset.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsload_templates.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionslower.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsmailto.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsmath.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsnl2br.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsoptional.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsregex_replace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsreplace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsreverse.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionssafe.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsspacify.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsstring_format.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsstrip_tags.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionstif.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionstruncate.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionsupper.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionswhitespace.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinfunctionswordwrap.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinhelper.array.php.html
X%%PORTDOCS%%%%DOCSDIR%%/__filesource/fsource_Dwoo__pluginsbuiltinprocessorspre.smarty_compat.php.html
X%%PORTDOCS%%%%DOCSDIR%%/blank.html
X%%PORTDOCS%%%%DOCSDIR%%/classtrees_Dwoo.html
X%%PORTDOCS%%%%DOCSDIR%%/elementindex.html
X%%PORTDOCS%%%%DOCSDIR%%/elementindex_Dwoo.html
X%%PORTDOCS%%%%DOCSDIR%%/errors.html
X%%PORTDOCS%%%%DOCSDIR%%/index.html
X%%PORTDOCS%%%%DOCSDIR%%/li_Dwoo.html
X%%PORTDOCS%%%%DOCSDIR%%/media/banner.css
X%%PORTDOCS%%%%DOCSDIR%%/media/stylesheet.css
X%%PORTDOCS%%%%DOCSDIR%%/packages.html
X%%DATADIR%%/CHANGELOG
X%%DATADIR%%/Dwoo.compiled.php
X%%DATADIR%%/Dwoo.php
X%%DATADIR%%/Dwoo/Adapters/Agavi/DwooRenderer.php
X%%DATADIR%%/Dwoo/Adapters/Agavi/README
X%%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins/t.php
X%%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins/url.php
X%%DATADIR%%/Dwoo/Adapters/CakePHP/README
X%%DATADIR%%/Dwoo/Adapters/CakePHP/dwoo.php
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/README
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/config/dwootemplate.php
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/controllers/dwoowelcome.php
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/libraries/Dwootemplate.php
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/views/dwoowelcome.tpl
X%%DATADIR%%/Dwoo/Adapters/CodeIgniter/views/page.tpl
X%%DATADIR%%/Dwoo/Adapters/ZendFramework/PluginProxy.php
X%%DATADIR%%/Dwoo/Adapters/ZendFramework/README
X%%DATADIR%%/Dwoo/Adapters/ZendFramework/View.php
X%%DATADIR%%/Dwoo/Block/Plugin.php
X%%DATADIR%%/Dwoo/Compilation/Exception.php
X%%DATADIR%%/Dwoo/Compiler.php
X%%DATADIR%%/Dwoo/Data.php
X%%DATADIR%%/Dwoo/Exception.php
X%%DATADIR%%/Dwoo/Filter.php
X%%DATADIR%%/Dwoo/ICompilable.php
X%%DATADIR%%/Dwoo/ICompilable/Block.php
X%%DATADIR%%/Dwoo/ICompiler.php
X%%DATADIR%%/Dwoo/IDataProvider.php
X%%DATADIR%%/Dwoo/IElseable.php
X%%DATADIR%%/Dwoo/ILoader.php
X%%DATADIR%%/Dwoo/IPluginProxy.php
X%%DATADIR%%/Dwoo/ITemplate.php
X%%DATADIR%%/Dwoo/Loader.php
X%%DATADIR%%/Dwoo/Plugin.php
X%%DATADIR%%/Dwoo/Processor.php
X%%DATADIR%%/Dwoo/Security/Exception.php
X%%DATADIR%%/Dwoo/Security/Policy.php
X%%DATADIR%%/Dwoo/Smarty/Adapter.php
X%%DATADIR%%/Dwoo/Template/File.php
X%%DATADIR%%/Dwoo/Template/String.php
X%%DATADIR%%/LICENSE
X%%DATADIR%%/README
X%%DATADIR%%/UPGRADE_NOTES
X%%DATADIR%%/dwooAutoload.php
X%%DATADIR%%/plugins/builtin/blocks/a.php
X%%DATADIR%%/plugins/builtin/blocks/auto_escape.php
X%%DATADIR%%/plugins/builtin/blocks/block.php
X%%DATADIR%%/plugins/builtin/blocks/capture.php
X%%DATADIR%%/plugins/builtin/blocks/dynamic.php
X%%DATADIR%%/plugins/builtin/blocks/else.php
X%%DATADIR%%/plugins/builtin/blocks/elseif.php
X%%DATADIR%%/plugins/builtin/blocks/for.php
X%%DATADIR%%/plugins/builtin/blocks/foreach.php
X%%DATADIR%%/plugins/builtin/blocks/foreachelse.php
X%%DATADIR%%/plugins/builtin/blocks/forelse.php
X%%DATADIR%%/plugins/builtin/blocks/if.php
X%%DATADIR%%/plugins/builtin/blocks/loop.php
X%%DATADIR%%/plugins/builtin/blocks/section.php
X%%DATADIR%%/plugins/builtin/blocks/smartyinterface.php
X%%DATADIR%%/plugins/builtin/blocks/strip.php
X%%DATADIR%%/plugins/builtin/blocks/template.php
X%%DATADIR%%/plugins/builtin/blocks/textformat.php
X%%DATADIR%%/plugins/builtin/blocks/topLevelBlock.php
X%%DATADIR%%/plugins/builtin/blocks/with.php
X%%DATADIR%%/plugins/builtin/blocks/withelse.php
X%%DATADIR%%/plugins/builtin/filters/html_format.php
X%%DATADIR%%/plugins/builtin/functions/assign.php
X%%DATADIR%%/plugins/builtin/functions/capitalize.php
X%%DATADIR%%/plugins/builtin/functions/cat.php
X%%DATADIR%%/plugins/builtin/functions/count_characters.php
X%%DATADIR%%/plugins/builtin/functions/count_paragraphs.php
X%%DATADIR%%/plugins/builtin/functions/count_sentences.php
X%%DATADIR%%/plugins/builtin/functions/count_words.php
X%%DATADIR%%/plugins/builtin/functions/counter.php
X%%DATADIR%%/plugins/builtin/functions/cycle.php
X%%DATADIR%%/plugins/builtin/functions/date_format.php
X%%DATADIR%%/plugins/builtin/functions/default.php
X%%DATADIR%%/plugins/builtin/functions/dump.php
X%%DATADIR%%/plugins/builtin/functions/eol.php
X%%DATADIR%%/plugins/builtin/functions/escape.php
X%%DATADIR%%/plugins/builtin/functions/eval.php
X%%DATADIR%%/plugins/builtin/functions/extends.php
X%%DATADIR%%/plugins/builtin/functions/extendsCheck.php
X%%DATADIR%%/plugins/builtin/functions/fetch.php
X%%DATADIR%%/plugins/builtin/functions/include.php
X%%DATADIR%%/plugins/builtin/functions/indent.php
X%%DATADIR%%/plugins/builtin/functions/isset.php
X%%DATADIR%%/plugins/builtin/functions/load_templates.php
X%%DATADIR%%/plugins/builtin/functions/lower.php
X%%DATADIR%%/plugins/builtin/functions/mailto.php
X%%DATADIR%%/plugins/builtin/functions/math.php
X%%DATADIR%%/plugins/builtin/functions/nl2br.php
X%%DATADIR%%/plugins/builtin/functions/optional.php
X%%DATADIR%%/plugins/builtin/functions/regex_replace.php
X%%DATADIR%%/plugins/builtin/functions/replace.php
X%%DATADIR%%/plugins/builtin/functions/reverse.php
X%%DATADIR%%/plugins/builtin/functions/safe.php
X%%DATADIR%%/plugins/builtin/functions/spacify.php
X%%DATADIR%%/plugins/builtin/functions/string_format.php
X%%DATADIR%%/plugins/builtin/functions/strip_tags.php
X%%DATADIR%%/plugins/builtin/functions/tif.php
X%%DATADIR%%/plugins/builtin/functions/truncate.php
X%%DATADIR%%/plugins/builtin/functions/upper.php
X%%DATADIR%%/plugins/builtin/functions/whitespace.php
X%%DATADIR%%/plugins/builtin/functions/wordwrap.php
X%%DATADIR%%/plugins/builtin/helper.array.php
X%%DATADIR%%/plugins/builtin/processors/pre.smarty_compat.php
X at dirrm %%DATADIR%%/plugins/thirdparty
X at dirrm %%DATADIR%%/plugins/personal
X at dirrm %%DATADIR%%/plugins/builtin/processors
X at dirrm %%DATADIR%%/plugins/builtin/functions
X at dirrm %%DATADIR%%/plugins/builtin/filters
X at dirrm %%DATADIR%%/plugins/builtin/blocks
X at dirrm %%DATADIR%%/plugins/builtin
X at dirrm %%DATADIR%%/plugins
X at dirrm %%DATADIR%%/compiled
X at dirrm %%DATADIR%%/cache
X at dirrm %%DATADIR%%/Dwoo/Template
X at dirrm %%DATADIR%%/Dwoo/Smarty
X at dirrm %%DATADIR%%/Dwoo/Security
X at dirrm %%DATADIR%%/Dwoo/ICompilable
X at dirrm %%DATADIR%%/Dwoo/Compilation
X at dirrm %%DATADIR%%/Dwoo/Block
X at dirrm %%DATADIR%%/Dwoo/Adapters/ZendFramework
X at dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/views
X at dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/libraries
X at dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/controllers
X at dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter/config
X at dirrm %%DATADIR%%/Dwoo/Adapters/CodeIgniter
X at dirrm %%DATADIR%%/Dwoo/Adapters/CakePHP
X at dirrm %%DATADIR%%/Dwoo/Adapters/Agavi/dwoo_plugins
X at dirrm %%DATADIR%%/Dwoo/Adapters/Agavi
X at dirrm %%DATADIR%%/Dwoo/Adapters
X at dirrm %%DATADIR%%/Dwoo
X at dirrm %%DATADIR%%
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/media
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/__filesource
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/Dwoo
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X at exec mkdir -p %D/%%DATADIR%%/plugins/thirdparty
X at exec mkdir -p %D/%%DATADIR%%/plugins/personal
X at exec mkdir -p %D/%%DATADIR%%/compiled
X at exec mkdir -p %D/%%DATADIR%%/cache
3b71c4a33ade6166abe0feda6cd00573
exit
--- dwoo-1.1.1.shar ends here ---

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



More information about the freebsd-ports-bugs mailing list