svn commit: r357723 - head/www/thundersnarf

John Marino marino at FreeBSD.org
Fri Jun 13 21:39:42 UTC 2014


Author: marino
Date: Fri Jun 13 21:39:41 2014
New Revision: 357723
URL: http://svnweb.freebsd.org/changeset/ports/357723
QAT: https://qat.redports.org/buildarchive/r357723/

Log:
  www/thundersnarf: Add stage support and several fixes
  
  The PR that provided stage support corrected an almost empty pkg-plist
  so that it now has over 2400 entries.  However, that wasn't the only
  issue.  Some additional fixes "while we're here" are:
  
    * Convert to USES+=tar:bzip2 (PR)
    * Use new style for LIB_DEPENDS (PR)
    * Simplify WRKSRC (remove redundant :R modifier)
    * Convert to USES+=pgsql and WANT_PGSQL from USE_PGSQL
    * Convert to USE_PHP+= pdo pdo_pgsql
    * Remove manual RUN_DEPENDS
    * Remove redundant "-m 555" as INSTALL_SCRIPT already does this
    * Unmute installation commands
    * Use COPYTREE_SHARE instead of cp -R
    * Remove pkg-message post-install target (missed by PR)
    * Remove whitespace in WWW line of pkg-descr file
    * use @owner, @group in pkg-plist (functionality lost by PR)
    * Add port-extract to remove unwanted file that appears (F10+)
  
  PR:		190953
  Submitted by:	Joe Benden
  Fixes by:	marino
  Approved by:	stage and just-fix-it blankets

Modified:
  head/www/thundersnarf/Makefile
  head/www/thundersnarf/pkg-descr
  head/www/thundersnarf/pkg-plist

Modified: head/www/thundersnarf/Makefile
==============================================================================
--- head/www/thundersnarf/Makefile	Fri Jun 13 20:32:15 2014	(r357722)
+++ head/www/thundersnarf/Makefile	Fri Jun 13 21:39:41 2014	(r357723)
@@ -2,7 +2,7 @@
 
 PORTNAME=	thundersnarf
 PORTVERSION=	1.3
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	www
 MASTER_SITES=	http://www.tracanelli.com.br/l/dev/thunder/ \
@@ -12,17 +12,17 @@ MAINTAINER=	eksffa at freebsdbrasil.com.br
 COMMENT=	Web reporting and trending analysis for Thunder Cache Pro
 
 OPTIONS_DEFINE=	APACHE PHP PGSQL DOCS
-OPTIONS_DEFAULT=	APACHE PHP PGSQL
+OPTIONS_DEFAULT=APACHE PHP PGSQL
 APACHE_DESC=	Install apache for reporting viewing
 PHP_DESC=	Install PHP for reporting generating
 PGSQL_DESC=	Install PostgreSQL (report data storing)
 
-USE_BZIP2=	yes
+USES=		tar:bzip2
 
 NO_BUILD=	yes
-WRKSRC=		${WRKDIR}/${PORTNAME:R}
+WRKSRC=		${WRKDIR}/${PORTNAME}
+PLIST_SUB=	OWNER=${WWWOWN} GROUP=${WWWGRP}
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MAPACHE}
@@ -30,37 +30,34 @@ USE_APACHE_RUN=	22+
 .endif
 
 .if ${PORT_OPTIONS:MPGSQL}
-USE_PGSQL=	server
-WANT_PGSQL_VER=	84+
-.endif
-
-.if ${PORT_OPTIONS:MPHP} && ${PORT_OPTIONS:MPGSQL}
-RUN_DEPENDS+=	${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql
+USES+=		pgsql
+WANT_PGSQL=	server
 .endif
 
 .if ${PORT_OPTIONS:MPHP}
 USE_PHP+=	curl pcre bcmath pdo mcrypt mhash session pgsql spl dom xmlrpc ctype openssl simplexml soap json
+.  if ${PORT_OPTIONS:MPGSQL}
+USE_PHP+=	pdo_pgsql pgsql
+.  endif
 .endif
 
-LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl
+LIB_DEPENDS+=	libcurl.so:${PORTSDIR}/ftp/curl
 
 SUB_FILES=	pkg-message
 
+post-extract:
+	# Present on FreeBSD 8 and 9 after extraction
+	@${RM} -f ${WRKSRC}/protected/data/bin/._thundersnarf
+
 do-install:
-	@${CP} -R ${WRKSRC} ${WWWDIR}
-	@${INSTALL_SCRIPT} -m 555 ${WRKSRC}/protected/data/bin/thundersnarf ${PREFIX}/bin/
-	@${INSTALL_SCRIPT} -m 555 ${WRKSRC}/protected/data/bin/thundersnarf-poll ${PREFIX}/bin/
-	@${CHGRP} -R ${WWWGRP}	${WWWDIR}/protected/runtime \
-		${WWWDIR}/assets
-	@${CHMOD} -R g+rwx ${WWWDIR}/protected/runtime \
-		${WWWDIR}/assets
+	@${MKDIR} ${STAGEDIR}${WWWDIR}
+	cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${WWWDIR}
+	${INSTALL_SCRIPT} ${WRKSRC}/protected/data/bin/thundersnarf* \
+		${STAGEDIR}${PREFIX}/bin/
 
 .if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	@${CP} -Rv ${WRKSRC}/README ${DOCSDIR}/README.pt_BR
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_MAN} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/README.pt_BR
 .endif
 
-post-install:
-	@${CAT} ${PKGMESSAGE}
-
 .include <bsd.port.mk>

Modified: head/www/thundersnarf/pkg-descr
==============================================================================
--- head/www/thundersnarf/pkg-descr	Fri Jun 13 20:32:15 2014	(r357722)
+++ head/www/thundersnarf/pkg-descr	Fri Jun 13 21:39:41 2014	(r357723)
@@ -5,4 +5,4 @@ the real web acceleration rates and allo
 patterns, plugins, as well as domains which should have a plugin written for
 and, off course, the top efficient domains and caching patterns as well.
 
-WWW:	http://www.thundercache.com.br
+WWW: http://www.thundercache.com.br

Modified: head/www/thundersnarf/pkg-plist
==============================================================================
--- head/www/thundersnarf/pkg-plist	Fri Jun 13 20:32:15 2014	(r357722)
+++ head/www/thundersnarf/pkg-plist	Fri Jun 13 21:39:41 2014	(r357723)
@@ -1,6 +1,2424 @@
 bin/thundersnarf
 bin/thundersnarf-poll
-%%DOCSDIR%%/README.pt_BR
- at dirrm %%DOCSDIR%%
- at unexec echo "completely uninstalling %D/%%WWWDIR%%"
- at unexec /bin/rm -rf %D/%%WWWDIR%% 2>/dev/null || true
+%%PORTDOCS%%%%DOCSDIR%%/README.pt_BR
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+ at owner %%OWNER%%
+ at group %%GROUP%%
+%%WWWDIR%%/images/ie6nomore-safari.jpg
+%%WWWDIR%%/images/ajax-loader.gif
+%%WWWDIR%%/images/header_bg.png
+%%WWWDIR%%/images/logobm.png
+%%WWWDIR%%/images/ie6nomore-firefox.jpg
+%%WWWDIR%%/images/version.png
+%%WWWDIR%%/images/header_text.png
+%%WWWDIR%%/images/ie6nomore-ie8.jpg
+%%WWWDIR%%/images/ie6nomore-cornerx.jpg
+%%WWWDIR%%/images/capeta_piscando_clean_min.png
+%%WWWDIR%%/images/calendar.gif
+%%WWWDIR%%/images/header_textbackup.ng
+%%WWWDIR%%/images/ie6nomore-warning.jpg
+%%WWWDIR%%/images/ie6nomore-chrome.jpg
+%%WWWDIR%%/images/ajax-loader.png
+%%WWWDIR%%/README
+%%WWWDIR%%/requirements/messages/pt/yii.php
+%%WWWDIR%%/requirements/messages/.htaccess
+%%WWWDIR%%/requirements/messages/config.php
+%%WWWDIR%%/requirements/css/main.css
+%%WWWDIR%%/requirements/index.php
+%%WWWDIR%%/requirements/views/pt/index.php
+%%WWWDIR%%/requirements/views/.htaccess
+%%WWWDIR%%/requirements/views/index.php
+%%WWWDIR%%/css/main.css
+%%WWWDIR%%/css/bg.gif
+%%WWWDIR%%/css/bg2.gif
+%%WWWDIR%%/css/ie.css
+%%WWWDIR%%/css/print.css
+%%WWWDIR%%/css/screen.css
+%%WWWDIR%%/css/form.css
+%%WWWDIR%%/protected/yiic.php
+%%WWWDIR%%/protected/extensions/jui/jquery/external/qunit/testrunner.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/qunit/testsuite.css
+%%WWWDIR%%/protected/extensions/jui/jquery/external/easing/jquery.easing.1.3.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/jsdiff/jsdiff.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/docs/index.html
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/jquery.bgiframe.pack.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/jquery.bgiframe.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/ChangeLog.txt
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/jquery.bgiframe.min.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/test/index.html
+%%WWWDIR%%/protected/extensions/jui/jquery/external/bgiframe/META.json
+%%WWWDIR%%/protected/extensions/jui/jquery/external/cookie/jquery.cookie.pack.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/cookie/jquery.cookie.min.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/cookie/jquery.cookie.zip
+%%WWWDIR%%/protected/extensions/jui/jquery/external/cookie/jquery.cookie.js
+%%WWWDIR%%/protected/extensions/jui/jquery/external/simulate/jquery.simulate.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.core.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.explode.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.fold.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.bounce.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/jquery-ui-1.7.1.custom.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.selectable.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.slide.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.core.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.slider.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.clip.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/jquery-ui-1.7.1.custom.min.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.droppable.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.tabs.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.highlight.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.transfer.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.blind.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.resizable.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.pulsate.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.datepicker.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/jquery-ui-1.8.1.custom.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.draggable.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/jquery-ui-1.7.1.custom.packed.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.shake.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.dialog.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ca.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-hr.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ar.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-de.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-zh-CN.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-da.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-cs.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-pl.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ro.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ko.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/jquery-ui-i18n.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-fr.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-th.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-zh-TW.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-he.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-tr.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-es.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-nl.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-lv.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-fa.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-lt.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-it.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sq.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-hu.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-is.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-hy.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-pt-BR.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-uk.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ru.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sr-SR.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ja.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-id.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-bg.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sk.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-eo.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sr.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-no.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sl.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-fi.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-el.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-sv.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/i18n/ui.datepicker-ms.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.sortable.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.scale.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.accordion.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/ui.progressbar.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/effects.drop.js
+%%WWWDIR%%/protected/extensions/jui/jquery/js/jquery-ui-1.8.1.custom.min.js
+%%WWWDIR%%/protected/extensions/jui/jquery/images/calendar.gif
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_217bc0_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_d8e7f3_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_f9bd01_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_469bdd_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_6da8d5_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_2e83ff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_fcd113_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_d8e7f3_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_f5e175_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_glass_55_f8da4e_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_flat_55_999999_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_056b93_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_e0fdff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_f7a50d_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-icons_0078ae_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_glass_75_79c9ec_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_glass_45_0078ae_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/start/images/ui-bg_flat_75_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_glass_65_ffffff_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-icons_888888_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_glass_75_dadada_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_inset-soft_95_fef1ec_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-icons_2e83ff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_glass_75_ffffff_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-icons_454545_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_inset-soft_22_3b3b35_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_highlight-soft_25_5A9D1A_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_eeeeee_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_e7e6e4_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_highlight-soft_25_327E04_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_808080_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_diagonals-small_100_f0efea_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_8DC262_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_flat_35_f0f0f0_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_highlight-soft_100_f0efea_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/south-street/images/ui-bg_glow-ball_25_2e2e28_600x600.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_88a206_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_e1e463_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_ffeb33_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_454545_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-icons_c02669_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_9fda58_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_000000_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_1f1f1f_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-icons_b8ec79_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_glass_60_000000_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_flat_0_303030_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-icons_5fa5e3_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-icons_fcdd4a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_flat_0_e69700_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-icons_0a82eb_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-icons_0b54d5_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_ff7519_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_f08000_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_cb672b_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_glass_25_cb842e_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_f35f07_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_glass_70_ede4d4_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-icons_c47a23_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_flat_0_333333_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_flat_75_ffffff_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_flat_65_ffffff_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-icons_cc0000_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_diagonals-thick_55_eee7e7_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-icons_004276_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_inset-soft_15_121212_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_c98000_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_gloss-wave_16_121212_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_glass_95_fef1ec_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_f29a00_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_aaaaaa_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_highlight-hard_15_888888_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_666666_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_cccccc_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-icons_bbbbbb_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/vader/images/ui-bg_highlight-hard_55_555555_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_9bcc60_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_382f28_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_highlight-soft_40_cdc2a1_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_f1fd86_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-icons_add978_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_glass_20_44372c_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_gloss-wave_75_cdc2a1_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_inset-soft_40_cdc2a1_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/mint-choc/images/ui-bg_glass_10_382f28_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-icons_888888_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-icons_2e83ff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-icons_454545_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_888888_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_2694e8_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_2e83ff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-icons_72a7cf_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_glass_20_555555_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-icons_cccccc_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-icons_a83300_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-darkness/images/ui-icons_4b8e0b_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_ff7519_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_e9cd86_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_efec9f_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_f9f2bd_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_e8e2b5_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_f2ec64_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-icons_070603_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_flat_65_ffffff_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_4ca300_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_ffcf29_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_glass_40_111111_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_ededed_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/black-tie/images/ui-icons_bbbbbb_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-icons_98d2fb_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-icons_9ccdfc_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_flat_40_292929_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-icons_00498f_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/jquery-ui-1.7.1.custom.css
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-icons_228ef1_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
+%%WWWDIR%%/protected/extensions/jui/jquery/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
+%%WWWDIR%%/protected/extensions/jui/EAccordion.php
+%%WWWDIR%%/protected/extensions/jui/EAccordionPanel.php
+%%WWWDIR%%/protected/extensions/jui/EDialog.php
+%%WWWDIR%%/protected/extensions/jui/EJqueryUiWidget.php
+%%WWWDIR%%/protected/extensions/jui/EJqueryUiInclude.php
+%%WWWDIR%%/protected/extensions/jui/EDatePicker.php
+%%WWWDIR%%/protected/extensions/jui/EProgressBar.php
+%%WWWDIR%%/protected/extensions/jui/ESlider.php
+%%WWWDIR%%/protected/extensions/jui/doc/gpl-3.0.txt
+%%WWWDIR%%/protected/extensions/jui/doc/readme.txt
+%%WWWDIR%%/protected/extensions/jui/doc/GPL-LICENSE.txt
+%%WWWDIR%%/protected/extensions/jui/doc/version.txt
+%%WWWDIR%%/protected/extensions/jui/doc/MIT-LICENSE.txt
+%%WWWDIR%%/protected/extensions/jui/doc/AUTHORS.txt
+%%WWWDIR%%/protected/extensions/jui/EJqueryUiConfig.php
+%%WWWDIR%%/protected/extensions/jui/ETab.php
+%%WWWDIR%%/protected/extensions/jui/IJqueryUiWidget.php
+%%WWWDIR%%/protected/extensions/jui/ETabs.php
+%%WWWDIR%%/protected/extensions/yiidebugtb/XWebDebugRouter.php
+%%WWWDIR%%/protected/extensions/yiidebugtb/README.markdown
+%%WWWDIR%%/protected/extensions/yiidebugtb/views/debugPanel.php
+%%WWWDIR%%/protected/extensions/EFlot/EFlotWidget.php
+%%WWWDIR%%/protected/extensions/EFlot/EFlotGraphWidget.php
+%%WWWDIR%%/protected/extensions/EFlot/assets/README.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/Makefile
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.stack.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/excanvas.min.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth-1.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/multiple-axes.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/time.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/index.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/arrow-left.gif
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/setting-options.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/thresholding.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/arrow-right.gif
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth-4.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/visitors.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth-5.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/navigate.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-japan-gdp-growth.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/layout.css
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/interacting.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/arrow-up.gif
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/arrow-down.gif
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/ajax.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth-3.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/pie.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/tracking.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/basic.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/graph-types.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/stacking.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/image.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/percentiles.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-eu-gdp-growth-2.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/turning-series.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/hs-2004-27-a-large_web.jpg
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/selection.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/annotating.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/zooming.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/examples/data-usa-gdp-growth.json
+%%WWWDIR%%/protected/extensions/EFlot/assets/excanvas.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/flotpie.html
+%%WWWDIR%%/protected/extensions/EFlot/assets/NEWS.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.navigate.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.selection.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.crosshair.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.threshold.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/API.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/LICENSE.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.image.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.fillbetween.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/PLUGINS.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/FAQ.txt
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.flot.pie.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.colorhelpers.js
+%%WWWDIR%%/protected/extensions/EFlot/assets/jquery.js
+%%WWWDIR%%/protected/controllers/EstatisticasController.php
+%%WWWDIR%%/protected/controllers/IpController.php
+%%WWWDIR%%/protected/controllers/ExtensionController.php
+%%WWWDIR%%/protected/controllers/ResumoController.php
+%%WWWDIR%%/protected/controllers/FileController.php
+%%WWWDIR%%/protected/controllers/UserController.php
+%%WWWDIR%%/protected/controllers/SiteController.php
+%%WWWDIR%%/protected/controllers/DomainController.php
+%%WWWDIR%%/protected/controllers/RuntimeController.php
+%%WWWDIR%%/protected/yiic.bat
+%%WWWDIR%%/protected/.htaccess
+%%WWWDIR%%/protected/yiic
+%%WWWDIR%%/protected/config/console.php
+%%WWWDIR%%/protected/config/main.php
+%%WWWDIR%%/protected/config/thundersnarf.conf.php
+%%WWWDIR%%/protected/runtime/state.bin
+%%WWWDIR%%/protected/runtime/application.log
+%%WWWDIR%%/protected/runtime/HTML/4.1.1,ddc9b993d7fc8d4a185e8dbf5b9a0996,1.ser
+%%WWWDIR%%/protected/runtime/URI/4.1.1,05c766101e813c246917b022f97b5e6e,1.ser
+%%WWWDIR%%/protected/yii114/LICENSE
+%%WWWDIR%%/protected/yii114/framework/yiic.php
+%%WWWDIR%%/protected/yii114/framework/YiiBase.php
+%%WWWDIR%%/protected/yii114/framework/collections/CStack.php
+%%WWWDIR%%/protected/yii114/framework/collections/CList.php
+%%WWWDIR%%/protected/yii114/framework/collections/CQueueIterator.php
+%%WWWDIR%%/protected/yii114/framework/collections/CConfiguration.php
+%%WWWDIR%%/protected/yii114/framework/collections/CStackIterator.php
+%%WWWDIR%%/protected/yii114/framework/collections/CMap.php
+%%WWWDIR%%/protected/yii114/framework/collections/CQueue.php
+%%WWWDIR%%/protected/yii114/framework/collections/CMapIterator.php
+%%WWWDIR%%/protected/yii114/framework/collections/CAttributeCollection.php
+%%WWWDIR%%/protected/yii114/framework/collections/CListIterator.php
+%%WWWDIR%%/protected/yii114/framework/collections/CTypedList.php
+%%WWWDIR%%/protected/yii114/framework/yii.php
+%%WWWDIR%%/protected/yii114/framework/vendors/bbq/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/jquery/treeview/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/jquery/autocomplete/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/jquery/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/jquery/maskedinput/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/markdown/markdown.php
+%%WWWDIR%%/protected/yii114/framework/vendors/markdown/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/gettext/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/highlight.css
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/sh.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/java.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/cpp.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/php.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/sample.css
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/generate.bat
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/generate
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/ruby.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/html.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/abap.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/diff.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/javascript.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/css.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/TODO
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/mysql.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/python.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/vbscript.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/README
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/dtd.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/perl.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/sql.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/RUBY.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/ABAP.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/JAVA.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/XML.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/MYSQL.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/CPP.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/CSS.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/PHP.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/SQL.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Generator.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/HtmlTags.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/Array.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/XML.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/BB.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/JSON.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/Console.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/Html.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/PYTHON.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/HTML.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/PERL.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/VBSCRIPT.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/JAVASCRIPT.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/DIFF.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/Renderer.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/SH.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/Highlighter/DTD.php
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/xml.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/TextHighlighter/Text/package.xml
+%%WWWDIR%%/protected/yii114/framework/vendors/json/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema.ser
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/InterchangeBuilder.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Id.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Directive.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/ValidatorAtom.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Builder/Xml.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Validator.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Language.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Host.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/info.ini
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Base.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Filter/ExtractStyleBlocks.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Filter/YouTube.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/classes/en-x-test.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-test.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/EntityLookup/entities.ser
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/HTMLDefinition.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/CSSDefinition.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.css
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.js
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Lexer/PH5P.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/standalone/HTMLPurifier/Lexer/PEARSax3.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/HTMLPurifier.standalone.php
+%%WWWDIR%%/protected/yii114/framework/vendors/htmlpurifier/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/adodb/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/cldr/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/vendors/README.html
+%%WWWDIR%%/protected/yii114/framework/vendors/jqueryui/LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/messages/vi/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/vi/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/uk/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/uk/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/th/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/sr_sr/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/sv/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/sv/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/ru/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/ru/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/ro/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/pt/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/pl/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/no/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/nl/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/nl/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/lv/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/lv/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/ja/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/ja/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/sr_yu/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/id/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/it/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/it/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/hu/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/he/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/he/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/fr/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/fr/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/el/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/el/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/es/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/de/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/de/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/zh_cn/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/zh_cn/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/bg/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/bg/zii.php
+%%WWWDIR%%/protected/yii114/framework/messages/bs/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/config.php
+%%WWWDIR%%/protected/yii114/framework/messages/ta_in/yii.php
+%%WWWDIR%%/protected/yii114/framework/messages/zh_tw/yii.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CListView.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CPortlet.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CBreadcrumbs.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiButton.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiSelectable.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiSliderInput.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiDialog.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiWidget.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiDraggable.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiResizable.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiTabs.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiSortable.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiDroppable.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiAutoComplete.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiProgressBar.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiAccordion.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiInputWidget.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiDatePicker.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/jui/CJuiSlider.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CDetailView.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CMenu.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/CBaseListView.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CDataColumn.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CCheckBoxColumn.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CGridColumn.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CLinkColumn.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CButtonColumn.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/grid/CGridView.php
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/detailview/styles.css
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/detailview/styless.css
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/bg.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/loading.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/view.png
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/update.png
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/delete.png
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/up.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/down.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/jquery.yiigridview.js
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/styles.css
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/gridview/styless.css
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/jquery.yiilistview.js
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/loading.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/up.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/down.gif
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/styles.css
+%%WWWDIR%%/protected/yii114/framework/zii/widgets/assets/listview/styless.css
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/js/jquery-ui-i18n.js
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/js/jquery-ui.min.js
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/MIT-LICENSE.txt
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_flat_75_ffffff_40x100.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_glass_65_ffffff_1x400.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-icons_888888_256x240.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_dadada_1x400.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_glass_95_fef1ec_1x400.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-icons_2e83ff_256x240.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-anim_basic_16x16.gif
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-icons_222222_256x240.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-icons_cd0a0a_256x240.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-icons_454545_256x240.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/jui/css/base/jquery-ui.css
+%%WWWDIR%%/protected/yii114/framework/zii/vendors/README.html
+%%WWWDIR%%/protected/yii114/framework/zii/behaviors/CTimestampBehavior.php
+%%WWWDIR%%/protected/yii114/framework/yii-powered.png
+%%WWWDIR%%/protected/yii114/framework/yiic.bat
+%%WWWDIR%%/protected/yii114/framework/base/CApplication.php
+%%WWWDIR%%/protected/yii114/framework/base/CStatePersister.php
+%%WWWDIR%%/protected/yii114/framework/base/CBehavior.php
+%%WWWDIR%%/protected/yii114/framework/base/CException.php
+%%WWWDIR%%/protected/yii114/framework/base/CComponent.php
+%%WWWDIR%%/protected/yii114/framework/base/CModule.php
+%%WWWDIR%%/protected/yii114/framework/base/CModelBehavior.php
+%%WWWDIR%%/protected/yii114/framework/base/CHttpException.php
+%%WWWDIR%%/protected/yii114/framework/base/CModelEvent.php
+%%WWWDIR%%/protected/yii114/framework/base/CErrorHandler.php
+%%WWWDIR%%/protected/yii114/framework/base/CApplicationComponent.php
+%%WWWDIR%%/protected/yii114/framework/base/CErrorEvent.php
+%%WWWDIR%%/protected/yii114/framework/base/CSecurityManager.php
+%%WWWDIR%%/protected/yii114/framework/base/interfaces.php
+%%WWWDIR%%/protected/yii114/framework/base/CModel.php
+%%WWWDIR%%/protected/yii114/framework/base/CExceptionEvent.php
+%%WWWDIR%%/protected/yii114/framework/yiilite.php
+%%WWWDIR%%/protected/yii114/framework/validators/CTypeValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CRegularExpressionValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CUnsafeValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CInlineValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CRangeValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CSafeValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CNumberValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CBooleanValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CUniqueValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CExistValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CCompareValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CEmailValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CCaptchaValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CDefaultValueValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CRequiredValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CStringValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CFilterValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CUrlValidator.php
+%%WWWDIR%%/protected/yii114/framework/validators/CFileValidator.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CForm.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CFormButtonElement.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CFormElement.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CFormInputElement.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CFormStringElement.php
+%%WWWDIR%%/protected/yii114/framework/web/form/CFormElementCollection.php
+%%WWWDIR%%/protected/yii114/framework/web/CSort.php
+%%WWWDIR%%/protected/yii114/framework/web/CWidgetFactory.php
+%%WWWDIR%%/protected/yii114/framework/web/CDataProvider.php
+%%WWWDIR%%/protected/yii114/framework/web/CController.php
+%%WWWDIR%%/protected/yii114/framework/web/filters/CFilter.php
+%%WWWDIR%%/protected/yii114/framework/web/filters/CInlineFilter.php
+%%WWWDIR%%/protected/yii114/framework/web/filters/CFilterChain.php
+%%WWWDIR%%/protected/yii114/framework/web/renderers/CViewRenderer.php
+%%WWWDIR%%/protected/yii114/framework/web/renderers/CPradoViewRenderer.php
+%%WWWDIR%%/protected/yii114/framework/web/CHttpSession.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CAuthManager.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CUserIdentity.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CDbAuthManager.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CPhpAuthManager.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CAuthItem.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/schema.sql
+%%WWWDIR%%/protected/yii114/framework/web/auth/CWebUser.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CAuthAssignment.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CBaseUserIdentity.php
+%%WWWDIR%%/protected/yii114/framework/web/auth/CAccessControlFilter.php
+%%WWWDIR%%/protected/yii114/framework/web/CWebApplication.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CMultiFileUpload.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/captcha/Duality.ttf
+%%WWWDIR%%/protected/yii114/framework/web/widgets/captcha/CCaptchaAction.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/captcha/CCaptcha.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CMarkdown.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/pagers/pagerr.css
+%%WWWDIR%%/protected/yii114/framework/web/widgets/pagers/CListPager.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/pagers/CBasePager.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/pagers/pager.css
+%%WWWDIR%%/protected/yii114/framework/web/widgets/pagers/CLinkPager.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CAutoComplete.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CHtmlPurifier.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CWidget.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CClipWidget.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CFlexWidget.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CTextHighlighter.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/CTreeView.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/COutputProcessor.php
+%%WWWDIR%%/protected/yii114/framework/web/widgets/COutputCache.php

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-head mailing list