View | Details | Raw Unified | Return to bug 187484
Collapse All | Expand All

(-)piwigo/Makefile (-26 / +38 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/www/piwigo/Makefile 347789 2014-03-10 18:01:09Z bapt $
2
# $FreeBSD: head/www/piwigo/Makefile 347789 2014-03-10 18:01:09Z bapt $
3
3
4
PORTNAME=	piwigo
4
PORTNAME=	piwigo
5
PORTVERSION=	2.5.1
5
PORTVERSION=	2.6.1
6
CATEGORIES=	www
6
CATEGORIES=	www
7
MASTER_SITES=	http://piwigo.org/download/dlcounter.php?code=${PORTVERSION}&/ \
7
MASTER_SITES=	http://piwigo.org/download/dlcounter.php?code=${PORTVERSION}&/ \
8
		SF/${PORTNAME}/Piwigo/${PORTVERSION}
8
		SF/${PORTNAME}/Piwigo/${PORTVERSION}
Lines 10-24 Link Here
10
MAINTAINER=	glz@hidden-powers.com
10
MAINTAINER=	glz@hidden-powers.com
11
COMMENT=	PHP based Web Gallery
11
COMMENT=	PHP based Web Gallery
12
12
13
LICENSE=        GPLv2
14
LICENSE_FILE=   ${WRKSRC}/doc/COPYING
15
13
NO_BUILD=	yes
16
NO_BUILD=	yes
14
USE_PHP=	calendar ctype dom exif filter gd gettext hash iconv json \
17
USE_PHP=	calendar ctype dom exif filter gd gettext hash iconv json \
15
		mbstring mcrypt mhash mysql mysqli openssl pcre pdf pdo posix session \
18
		mbstring mcrypt mhash mysql mysqli openssl pcre pdf pdo posix \
16
		simplexml sockets spl tokenizer xml xmlreader xmlwriter zlib
19
		session simplexml sockets spl tokenizer xml xmlreader \
20
		xmlwriter zlib
17
USES=		zip
21
USES=		zip
18
WANT_PHP_WEB=	yes
22
WANT_PHP_WEB=	yes
19
WRKSRC=		${WRKDIR}/${PORTNAME}
23
WRKSRC=		${WRKDIR}/${PORTNAME}
20
24
21
SUB_FILES=	pkg-install pkg-deinstall pkg-message
25
SUB_FILES=	pkg-deinstall pkg-message
22
SUB_LIST+=	CP="${CP}" \
26
SUB_LIST+=	CP="${CP}" \
23
		MKDIR="${MKDIR}" \
27
		MKDIR="${MKDIR}" \
24
		CHOWN="${CHOWN}" \
28
		CHOWN="${CHOWN}" \
Lines 30-42 Link Here
30
OPTIONS_DEFAULT=IMAGICK
34
OPTIONS_DEFAULT=IMAGICK
31
IMAGICK_DESC=	${IMAGEMAGICK_DESC}
35
IMAGICK_DESC=	${IMAGEMAGICK_DESC}
32
36
33
PORTDOCS=	COPYING README_en.txt README_fr.txt
37
PORTDOCS=	README_ca.txt README_en.txt README_fr.txt
34
38
35
PLIST_SUB+=	WWWOWN="${WWWOWN}" \
39
PLIST_SUB+=	WWWOWN="${WWWOWN}" \
36
		WWWGRP="${WWWGRP}" \
40
		WWWGRP="${WWWGRP}" \
37
		CHOWN="${CHOWN}"
41
		CHOWN="${CHOWN}"
38
39
NO_STAGE=	yes
40
.include <bsd.port.pre.mk>
42
.include <bsd.port.pre.mk>
41
43
42
.if ${PORT_OPTIONS:MIMAGICK}
44
.if ${PORT_OPTIONS:MIMAGICK}
Lines 48-79 Link Here
48
.endif
50
.endif
49
51
50
post-extract:
52
post-extract:
51
	@${CHMOD} -R o-w ${WRKSRC}
53
	@${MV} ${WRKSRC}/local ${WRKSRC}/local.sample
54
	@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${WRKSRC}
55
	@${FIND} -d ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
56
	@${FIND} -d ${WRKSRC} -type f -exec ${CHMOD} ${SHAREMODE} {} \;
52
57
53
do-install:
58
do-install:
54
.if ${PORT_OPTIONS:MDOCS}
59
.if ${PORT_OPTIONS:MDOCS}
55
	@${INSTALL} -d ${DOCSDIR}/
60
	@${INSTALL} -d ${STAGEDIR}${DOCSDIR}/
56
	@cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
61
	@cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
57
.endif
62
.endif
58
.if ${PORT_OPTIONS:MEXAMPLES}
63
.if ${PORT_OPTIONS:MEXAMPLES}
59
	@${INSTALL} -d ${EXAMPLESDIR}/
64
	@${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}/
60
	@cd ${WRKSRC}/tools/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}/
65
	@cd ${WRKSRC}/tools/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/
61
.endif
66
.endif
62
67
	@cd ${WRKSRC}/doc/ && ${RM} ${PORTDOCS}
63
	@${RM} -fr ${WRKSRC}/doc/ ${WRKSRC}/tools/ ${WRKSRC}/_data/ ${WRKSRC}/upload/
68
	@${RM} -fr ${WRKSRC}/tools ${WRKSRC}/_data ${WRKSRC}/upload
64
	@${MV} ${WRKSRC}/local/ ${WRKSRC}/local.sample/
69
	@${INSTALL} -d ${STAGEDIR}${WWWDIR}
65
	@cd ${WRKSRC}/ && ${COPYTREE_INSTALL} . ${WWWDIR}
70
	@${TAR} -C ${WRKSRC} -cf - . | \
71
			${TAR} --unlink -C ${STAGEDIR}${WWWDIR} -xf -
66
72
67
post-install:
73
post-install:
68
	@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
74
	@if [ ! -e ${STAGEDIR}${WWWDIR}/local ]; then \
69
	@${CAT} ${PKGMESSAGE}
75
		${INSTALL} -d ${STAGEDIR}${WWWDIR}/local/ ; \
70
76
		${CP} -a ${STAGEDIR}${WWWDIR}/local.sample/ \
71
# Own version with our owners and we also have to protect if
77
			${STAGEDIR}${WWWDIR}/local/ ; \
72
# galleries is read-only.
78
	fi;
73
COPYTREE_INSTALL=	${SH} -c '(${CHOWN} -R ${SHAREOWN}:${SHAREGRP} $$0 && \
79
	@${CHOWN} -fR ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/plugins
74
		${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
80
	@if [ ! -e ${STAGEDIR}${WWWDIR}/upload ]; then \
75
		2>&1) && \
81
		${INSTALL} -d ${STAGEDIR}${WWWDIR}/upload/ ; \
76
		${FIND} -d $$0 $$2 -type d -exec ${CHMOD} 755 $$1/{} \; && \
82
		${CHMOD} 750 ${STAGEDIR}${WWWDIR}/upload ; \
77
		${FIND} -d $$0 $$2 -type f -exec ${CHMOD} ${SHAREMODE} $$1/{} \;' --
83
		${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/upload ; \
84
	fi
85
	@if [ ! -e ${STAGEDIR}${WWWDIR}/_data ]; then \
86
		${INSTALL} -d ${STAGEDIR}${WWWDIR}/_data/ ; \
87
		${CHMOD} 777 ${STAGEDIR}${WWWDIR}/_data ; \
88
		${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/_data ; \
89
	fi
78
90
79
.include <bsd.port.post.mk>
91
.include <bsd.port.post.mk>
(-)piwigo/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (piwigo-2.5.1.zip) = 5c7077cca7d555f789fc093981166176f7d9cb868090f3d0c3e0947a658f1827
1
SHA256 (piwigo-2.6.1.zip) = 98226c8620a84215c227907718679db3d55e446714443010fe97a860fdce8bf8
2
SIZE (piwigo-2.5.1.zip) = 5474890
2
SIZE (piwigo-2.6.1.zip) = 6458972
(-)piwigo/files/pkg-install.in (-36 lines)
Lines 1-36 Link Here
1
#! /bin/sh
2
3
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
4
5
WWWDIR="%%WWWDIR%%"
6
7
CP="%%CP%%"
8
MKDIR="%%MKDIR%%"
9
CHOWN="%%CHOWN%%"
10
TOUCH="%%TOUCH%%"
11
12
WWWOWN="%%WWWOWN%%"
13
WWWGRP="%%WWWGRP%%"
14
15
post-install() {
16
	if [ ! -e ${WWWDIR}/local ]; then
17
		${CP} -a ${WWWDIR}/local.sample ${WWWDIR}/local
18
	fi
19
	if [ ! -e ${WWWDIR}/_data ]; then
20
		${MKDIR} -m 777 ${WWWDIR}/_data
21
		${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/_data
22
		${TOUCH} ${WWWDIR}/_data/dummy.txt
23
	fi
24
	${CHOWN} -fR ${WWWOWN}:${WWWGRP} ${WWWDIR}/plugins
25
	if [ ! -e ${WWWDIR}/upload ]; then
26
		${MKDIR} -m 750 ${WWWDIR}/upload
27
		${CHOWN} -fR ${WWWOWN}:${WWWGRP} ${WWWDIR}/upload
28
		${TOUCH} ${WWWDIR}/upload/.keepme
29
	fi
30
}
31
32
case $2 in
33
	POST-INSTALL)
34
		post-install
35
		;;
36
esac
(-)piwigo/files/pkg-message.in (-1 / +5 lines)
Lines 11-18 Link Here
11
The local directory contains the empty structure 
11
The local directory contains the empty structure 
12
used to store local configuration.
12
used to store local configuration.
13
13
14
If you are upgrading, alwyas read the documentation
15
on the site. There may be special steps you need to
16
bring your site to the new version.
17
14
Make sure the ownership and mode of the installation
18
Make sure the ownership and mode of the installation
15
match your intended use.
19
directores and files match your intended use.
16
20
17
If you included ImageMagick, don't forget to set
21
If you included ImageMagick, don't forget to set
18
$conf['ext_imagick_dir'] = '%%LOCALBASE%%/bin/';
22
$conf['ext_imagick_dir'] = '%%LOCALBASE%%/bin/';
(-)piwigo/pkg-descr (-5 / +13 lines)
Lines 1-8 Link Here
1
Piwigo is a free and open source software used
1
Piwigo is a photo gallery software for the web that comes with powerful features
2
to present photo collections on your web site.
2
to publish and manage your collection of pictures.
3
3
4
If you are upgrading, alwyas read the documentation
4
Started in 2002, the project is now supported by an active community of users and
5
on the site. There may be special steps you need to
5
developers. It supports numerous galleries of all sizes all over the world, from
6
bring your site to a new version.
6
an individual ten-photos party to the images stock of an agency. This scalability
7
is supported by smart browsing capabilities based on categories, tags and chrono-
8
logical search. Various extensions make Piwigo even more scalable and customizable
9
to suit your own needs and desires.
10
11
Piwigo is both web and photo standard compliant. And, icing on the cake, it is
12
free and opensource.
13
14
PhpWebGallery became Piwigo on February 15th, 2009.
7
15
8
WWW: http://piwigo.org/
16
WWW: http://piwigo.org/
(-)piwigo/pkg-plist (-119 / +644 lines)
Lines 1-24 Link Here
1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/config.inc.php
2
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/convert_language_to_2.1.pl
3
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/convert_template_to_2.1.pl
4
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fill_history.pl
1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fill_history.pl
5
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/index.php
2
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/index.php
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/key2value.php
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/language/translation_validated.inc.php
3
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/language/translation_validated.inc.php
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metadata.php
4
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/metadata.php
9
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/missing_keys.pl
5
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/missing_keys.pl
10
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/piwigo_remote.pl
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/piwigo_remote.pl
11
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pwg_rel_create.sh
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pwg_rel_create.sh
12
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/release_creation.readme
13
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/replace.php
14
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/replace_language_keys.pl
15
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/replace_language_values.pl
16
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/translation_analysis.php
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/translation_analysis.php
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/triggers_list.php
9
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/triggers_list.php
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ws.htm
10
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ws.htm
19
@exec mkdir -m 0750 -p %D/_data
20
@exec %%CHOWN%% %%WWWOWN%%:%%WWWGRP%% %D/_data
21
%%WWWDIR%%/_data/dummy.txt
22
%%WWWDIR%%/about.php
11
%%WWWDIR%%/about.php
23
%%WWWDIR%%/action.php
12
%%WWWDIR%%/action.php
24
%%WWWDIR%%/admin.php
13
%%WWWDIR%%/admin.php
Lines 125-150 Link Here
125
%%WWWDIR%%/admin/themes/clear/icon/page_end.png
114
%%WWWDIR%%/admin/themes/clear/icon/page_end.png
126
%%WWWDIR%%/admin/themes/clear/icon/page_top.png
115
%%WWWDIR%%/admin/themes/clear/icon/page_top.png
127
%%WWWDIR%%/admin/themes/clear/icon/permissions.png
116
%%WWWDIR%%/admin/themes/clear/icon/permissions.png
128
%%WWWDIR%%/admin/themes/clear/icon/plug_activate.png
129
%%WWWDIR%%/admin/themes/clear/icon/plug_activate_grey.png
130
%%WWWDIR%%/admin/themes/clear/icon/plug_deactivate.png
131
%%WWWDIR%%/admin/themes/clear/icon/plug_deactivate_grey.png
132
%%WWWDIR%%/admin/themes/clear/icon/plug_delete.png
133
%%WWWDIR%%/admin/themes/clear/icon/plug_delete_grey.png
134
%%WWWDIR%%/admin/themes/clear/icon/plug_install.png
135
%%WWWDIR%%/admin/themes/clear/icon/plug_install_grey.png
136
%%WWWDIR%%/admin/themes/clear/icon/plug_uninstall.png
137
%%WWWDIR%%/admin/themes/clear/icon/plug_uninstall_grey.png
138
%%WWWDIR%%/admin/themes/clear/icon/plus.gif
117
%%WWWDIR%%/admin/themes/clear/icon/plus.gif
139
%%WWWDIR%%/admin/themes/clear/icon/preferences.png
118
%%WWWDIR%%/admin/themes/clear/icon/preferences.png
140
%%WWWDIR%%/admin/themes/clear/icon/prev.png
119
%%WWWDIR%%/admin/themes/clear/icon/prev.png
141
%%WWWDIR%%/admin/themes/clear/icon/ranks.png
142
%%WWWDIR%%/admin/themes/clear/icon/ranks_grey.png
143
%%WWWDIR%%/admin/themes/clear/icon/remove_filter.png
120
%%WWWDIR%%/admin/themes/clear/icon/remove_filter.png
144
%%WWWDIR%%/admin/themes/clear/icon/remove_filter_hover.png
121
%%WWWDIR%%/admin/themes/clear/icon/remove_filter_hover.png
145
%%WWWDIR%%/admin/themes/clear/icon/sync_metadata.png
146
%%WWWDIR%%/admin/themes/clear/icon/sync_metadata_pink.png
147
%%WWWDIR%%/admin/themes/clear/icon/synchronize.png
148
%%WWWDIR%%/admin/themes/clear/icon/toggle_is_default_group.png
122
%%WWWDIR%%/admin/themes/clear/icon/toggle_is_default_group.png
149
%%WWWDIR%%/admin/themes/clear/icon/uncheck.png
123
%%WWWDIR%%/admin/themes/clear/icon/uncheck.png
150
%%WWWDIR%%/admin/themes/clear/icon/validate_s.png
124
%%WWWDIR%%/admin/themes/clear/icon/validate_s.png
Lines 172-177 Link Here
172
%%WWWDIR%%/admin/themes/clear/themeconf.inc.php
146
%%WWWDIR%%/admin/themes/clear/themeconf.inc.php
173
%%WWWDIR%%/admin/themes/default/fix-ie5-ie6.css
147
%%WWWDIR%%/admin/themes/default/fix-ie5-ie6.css
174
%%WWWDIR%%/admin/themes/default/fix-ie7.css
148
%%WWWDIR%%/admin/themes/default/fix-ie7.css
149
%%WWWDIR%%/admin/themes/default/fontello/LICENSE.txt
150
%%WWWDIR%%/admin/themes/default/fontello/README.txt
151
%%WWWDIR%%/admin/themes/default/fontello/config.json
152
%%WWWDIR%%/admin/themes/default/fontello/css/animation.css
153
%%WWWDIR%%/admin/themes/default/fontello/css/fontello-codes.css
154
%%WWWDIR%%/admin/themes/default/fontello/css/fontello-embedded.css
155
%%WWWDIR%%/admin/themes/default/fontello/css/fontello-ie7-codes.css
156
%%WWWDIR%%/admin/themes/default/fontello/css/fontello-ie7.css
157
%%WWWDIR%%/admin/themes/default/fontello/css/fontello.css
158
%%WWWDIR%%/admin/themes/default/fontello/demo.html
159
%%WWWDIR%%/admin/themes/default/fontello/font/fontello.eot
160
%%WWWDIR%%/admin/themes/default/fontello/font/fontello.svg
161
%%WWWDIR%%/admin/themes/default/fontello/font/fontello.ttf
162
%%WWWDIR%%/admin/themes/default/fontello/font/fontello.woff
175
%%WWWDIR%%/admin/themes/default/icon/cat_move.png
163
%%WWWDIR%%/admin/themes/default/icon/cat_move.png
176
%%WWWDIR%%/admin/themes/default/icon/category_children.png
164
%%WWWDIR%%/admin/themes/default/icon/category_children.png
177
%%WWWDIR%%/admin/themes/default/icon/category_delete.png
165
%%WWWDIR%%/admin/themes/default/icon/category_delete.png
Lines 197-221 Link Here
197
%%WWWDIR%%/admin/themes/default/icon/page_end.png
185
%%WWWDIR%%/admin/themes/default/icon/page_end.png
198
%%WWWDIR%%/admin/themes/default/icon/page_top.png
186
%%WWWDIR%%/admin/themes/default/icon/page_top.png
199
%%WWWDIR%%/admin/themes/default/icon/permissions.png
187
%%WWWDIR%%/admin/themes/default/icon/permissions.png
200
%%WWWDIR%%/admin/themes/default/icon/plug_activate.png
201
%%WWWDIR%%/admin/themes/default/icon/plug_activate_grey.png
202
%%WWWDIR%%/admin/themes/default/icon/plug_deactivate.png
203
%%WWWDIR%%/admin/themes/default/icon/plug_deactivate_grey.png
204
%%WWWDIR%%/admin/themes/default/icon/plug_delete.png
205
%%WWWDIR%%/admin/themes/default/icon/plug_delete_grey.png
206
%%WWWDIR%%/admin/themes/default/icon/plug_install.png
207
%%WWWDIR%%/admin/themes/default/icon/plug_install_grey.png
208
%%WWWDIR%%/admin/themes/default/icon/plug_uninstall.png
209
%%WWWDIR%%/admin/themes/default/icon/plug_uninstall_grey.png
210
%%WWWDIR%%/admin/themes/default/icon/plus.gif
188
%%WWWDIR%%/admin/themes/default/icon/plus.gif
211
%%WWWDIR%%/admin/themes/default/icon/preferences.png
189
%%WWWDIR%%/admin/themes/default/icon/preferences.png
212
%%WWWDIR%%/admin/themes/default/icon/ranks.png
213
%%WWWDIR%%/admin/themes/default/icon/ranks_grey.png
214
%%WWWDIR%%/admin/themes/default/icon/remove_filter.png
190
%%WWWDIR%%/admin/themes/default/icon/remove_filter.png
215
%%WWWDIR%%/admin/themes/default/icon/remove_filter_hover.png
191
%%WWWDIR%%/admin/themes/default/icon/remove_filter_hover.png
216
%%WWWDIR%%/admin/themes/default/icon/sync_metadata.png
217
%%WWWDIR%%/admin/themes/default/icon/sync_metadata_pink.png
218
%%WWWDIR%%/admin/themes/default/icon/synchronize.png
219
%%WWWDIR%%/admin/themes/default/icon/toggle_is_default_group.png
192
%%WWWDIR%%/admin/themes/default/icon/toggle_is_default_group.png
220
%%WWWDIR%%/admin/themes/default/icon/uncheck.png
193
%%WWWDIR%%/admin/themes/default/icon/uncheck.png
221
%%WWWDIR%%/admin/themes/default/icon/validate_s.png
194
%%WWWDIR%%/admin/themes/default/icon/validate_s.png
Lines 224-236 Link Here
224
%%WWWDIR%%/admin/themes/default/icon/warnings.png
197
%%WWWDIR%%/admin/themes/default/icon/warnings.png
225
%%WWWDIR%%/admin/themes/default/images/ajax-loader-bar.gif
198
%%WWWDIR%%/admin/themes/default/images/ajax-loader-bar.gif
226
%%WWWDIR%%/admin/themes/default/images/ajax-loader.gif
199
%%WWWDIR%%/admin/themes/default/images/ajax-loader.gif
227
%%WWWDIR%%/admin/themes/default/images/jgrowl-alert.png
228
%%WWWDIR%%/admin/themes/default/images/jgrowl-check.png
229
%%WWWDIR%%/admin/themes/default/images/jgrowl-error.png
230
%%WWWDIR%%/admin/themes/default/images/logo.png
200
%%WWWDIR%%/admin/themes/default/images/logo.png
231
%%WWWDIR%%/admin/themes/default/images/pbar-ani.gif
201
%%WWWDIR%%/admin/themes/default/images/pbar-ani.gif
232
%%WWWDIR%%/admin/themes/default/index.php
202
%%WWWDIR%%/admin/themes/default/index.php
233
%%WWWDIR%%/admin/themes/default/js/menu_icons.js
203
%%WWWDIR%%/admin/themes/default/js/common.js
204
%%WWWDIR%%/admin/themes/default/js/jquery.geoip.js
234
%%WWWDIR%%/admin/themes/default/local_head.tpl
205
%%WWWDIR%%/admin/themes/default/local_head.tpl
235
%%WWWDIR%%/admin/themes/default/print.css
206
%%WWWDIR%%/admin/themes/default/print.css
236
%%WWWDIR%%/admin/themes/default/template/admin.tpl
207
%%WWWDIR%%/admin/themes/default/template/admin.tpl
Lines 297-303 Link Here
297
%%WWWDIR%%/admin/themes/default/template/user_perm.tpl
268
%%WWWDIR%%/admin/themes/default/template/user_perm.tpl
298
%%WWWDIR%%/admin/themes/default/theme.css
269
%%WWWDIR%%/admin/themes/default/theme.css
299
%%WWWDIR%%/admin/themes/default/themeconf.inc.php
270
%%WWWDIR%%/admin/themes/default/themeconf.inc.php
300
%%WWWDIR%%/admin/themes/default/uploadify.jGrowl.css
301
%%WWWDIR%%/admin/themes/roma/icon/home.png
271
%%WWWDIR%%/admin/themes/roma/icon/home.png
302
%%WWWDIR%%/admin/themes/roma/icon/next.png
272
%%WWWDIR%%/admin/themes/roma/icon/next.png
303
%%WWWDIR%%/admin/themes/roma/icon/prev.png
273
%%WWWDIR%%/admin/themes/roma/icon/prev.png
Lines 339-350 Link Here
339
%%WWWDIR%%/admin/updates_ext.php
309
%%WWWDIR%%/admin/updates_ext.php
340
%%WWWDIR%%/admin/updates_pwg.php
310
%%WWWDIR%%/admin/updates_pwg.php
341
%%WWWDIR%%/admin/user_list.php
311
%%WWWDIR%%/admin/user_list.php
312
%%WWWDIR%%/admin/user_list_backend.php
342
%%WWWDIR%%/admin/user_perm.php
313
%%WWWDIR%%/admin/user_perm.php
343
%%WWWDIR%%/category.php
314
%%WWWDIR%%/category.php
344
%%WWWDIR%%/comments.php
315
%%WWWDIR%%/comments.php
316
%%WWWDIR%%/doc/COPYING
317
%%WWWDIR%%/doc/index.php
345
%%WWWDIR%%/feed.php
318
%%WWWDIR%%/feed.php
346
@exec mkdir -m 0750 -p %D/galleries
347
@exec %%CHOWN%% -f %%WWWOWN%%:%%WWWGRP%% %D/galleries
348
%%WWWDIR%%/galleries/index.php
319
%%WWWDIR%%/galleries/index.php
349
%%WWWDIR%%/i.php
320
%%WWWDIR%%/i.php
350
%%WWWDIR%%/identification.php
321
%%WWWDIR%%/identification.php
Lines 354-360 Link Here
354
%%WWWDIR%%/include/calendar_weekly.class.php
325
%%WWWDIR%%/include/calendar_weekly.class.php
355
%%WWWDIR%%/include/category_cats.inc.php
326
%%WWWDIR%%/include/category_cats.inc.php
356
%%WWWDIR%%/include/category_default.inc.php
327
%%WWWDIR%%/include/category_default.inc.php
357
%%WWWDIR%%/include/class_smtp_mail.inc.php
358
%%WWWDIR%%/include/common.inc.php
328
%%WWWDIR%%/include/common.inc.php
359
%%WWWDIR%%/include/config_default.inc.php
329
%%WWWDIR%%/include/config_default.inc.php
360
%%WWWDIR%%/include/constants.php
330
%%WWWDIR%%/include/constants.php
Lines 364-369 Link Here
364
%%WWWDIR%%/include/derivative.inc.php
334
%%WWWDIR%%/include/derivative.inc.php
365
%%WWWDIR%%/include/derivative_params.inc.php
335
%%WWWDIR%%/include/derivative_params.inc.php
366
%%WWWDIR%%/include/derivative_std_params.inc.php
336
%%WWWDIR%%/include/derivative_std_params.inc.php
337
%%WWWDIR%%/include/emogrifier.class.php
367
%%WWWDIR%%/include/feedcreator.class.php
338
%%WWWDIR%%/include/feedcreator.class.php
368
%%WWWDIR%%/include/filter.inc.php
339
%%WWWDIR%%/include/filter.inc.php
369
%%WWWDIR%%/include/functions.inc.php
340
%%WWWDIR%%/include/functions.inc.php
Lines 397-443 Link Here
397
%%WWWDIR%%/include/php_compat/index.php
368
%%WWWDIR%%/include/php_compat/index.php
398
%%WWWDIR%%/include/php_compat/json_encode.php
369
%%WWWDIR%%/include/php_compat/json_encode.php
399
%%WWWDIR%%/include/php_compat/preg_last_error.php
370
%%WWWDIR%%/include/php_compat/preg_last_error.php
371
%%WWWDIR%%/include/phpmailer/PHPMailerAutoload.php
372
%%WWWDIR%%/include/phpmailer/class.phpmailer.php
373
%%WWWDIR%%/include/phpmailer/class.smtp.php
400
%%WWWDIR%%/include/picture_comment.inc.php
374
%%WWWDIR%%/include/picture_comment.inc.php
401
%%WWWDIR%%/include/picture_metadata.inc.php
375
%%WWWDIR%%/include/picture_metadata.inc.php
402
%%WWWDIR%%/include/picture_rate.inc.php
376
%%WWWDIR%%/include/picture_rate.inc.php
403
%%WWWDIR%%/include/section_init.inc.php
377
%%WWWDIR%%/include/section_init.inc.php
404
%%WWWDIR%%/include/smarty/COPYING.lib
378
%%WWWDIR%%/include/smarty/COPYING.lib
405
%%WWWDIR%%/include/smarty/NEWS
406
%%WWWDIR%%/include/smarty/README
379
%%WWWDIR%%/include/smarty/README
407
%%WWWDIR%%/include/smarty/libs/Config_File.class.php
380
%%WWWDIR%%/include/smarty/SMARTY_2_BC_NOTES.txt
381
%%WWWDIR%%/include/smarty/SMARTY_3.0_BC_NOTES.txt
382
%%WWWDIR%%/include/smarty/SMARTY_3.1_NOTES.txt
383
%%WWWDIR%%/include/smarty/change_log.txt
408
%%WWWDIR%%/include/smarty/libs/Smarty.class.php
384
%%WWWDIR%%/include/smarty/libs/Smarty.class.php
409
%%WWWDIR%%/include/smarty/libs/Smarty_Compiler.class.php
385
%%WWWDIR%%/include/smarty/libs/SmartyBC.class.php
410
%%WWWDIR%%/include/smarty/libs/debug.tpl
386
%%WWWDIR%%/include/smarty/libs/debug.tpl
411
%%WWWDIR%%/include/smarty/libs/internals/core.assemble_plugin_filepath.php
412
%%WWWDIR%%/include/smarty/libs/internals/core.assign_smarty_interface.php
413
%%WWWDIR%%/include/smarty/libs/internals/core.create_dir_structure.php
414
%%WWWDIR%%/include/smarty/libs/internals/core.display_debug_console.php
415
%%WWWDIR%%/include/smarty/libs/internals/core.get_include_path.php
416
%%WWWDIR%%/include/smarty/libs/internals/core.get_microtime.php
417
%%WWWDIR%%/include/smarty/libs/internals/core.get_php_resource.php
418
%%WWWDIR%%/include/smarty/libs/internals/core.is_secure.php
419
%%WWWDIR%%/include/smarty/libs/internals/core.is_trusted.php
420
%%WWWDIR%%/include/smarty/libs/internals/core.load_plugins.php
421
%%WWWDIR%%/include/smarty/libs/internals/core.load_resource_plugin.php
422
%%WWWDIR%%/include/smarty/libs/internals/core.process_cached_inserts.php
423
%%WWWDIR%%/include/smarty/libs/internals/core.process_compiled_include.php
424
%%WWWDIR%%/include/smarty/libs/internals/core.read_cache_file.php
425
%%WWWDIR%%/include/smarty/libs/internals/core.rm_auto.php
426
%%WWWDIR%%/include/smarty/libs/internals/core.rmdir.php
427
%%WWWDIR%%/include/smarty/libs/internals/core.run_insert_handler.php
428
%%WWWDIR%%/include/smarty/libs/internals/core.smarty_include_php.php
429
%%WWWDIR%%/include/smarty/libs/internals/core.write_cache_file.php
430
%%WWWDIR%%/include/smarty/libs/internals/core.write_compiled_include.php
431
%%WWWDIR%%/include/smarty/libs/internals/core.write_compiled_resource.php
432
%%WWWDIR%%/include/smarty/libs/internals/core.write_file.php
433
%%WWWDIR%%/include/smarty/libs/plugins/block.textformat.php
387
%%WWWDIR%%/include/smarty/libs/plugins/block.textformat.php
434
%%WWWDIR%%/include/smarty/libs/plugins/compiler.assign.php
435
%%WWWDIR%%/include/smarty/libs/plugins/function.assign_debug_info.php
436
%%WWWDIR%%/include/smarty/libs/plugins/function.config_load.php
437
%%WWWDIR%%/include/smarty/libs/plugins/function.counter.php
388
%%WWWDIR%%/include/smarty/libs/plugins/function.counter.php
438
%%WWWDIR%%/include/smarty/libs/plugins/function.cycle.php
389
%%WWWDIR%%/include/smarty/libs/plugins/function.cycle.php
439
%%WWWDIR%%/include/smarty/libs/plugins/function.debug.php
440
%%WWWDIR%%/include/smarty/libs/plugins/function.eval.php
441
%%WWWDIR%%/include/smarty/libs/plugins/function.fetch.php
390
%%WWWDIR%%/include/smarty/libs/plugins/function.fetch.php
442
%%WWWDIR%%/include/smarty/libs/plugins/function.html_checkboxes.php
391
%%WWWDIR%%/include/smarty/libs/plugins/function.html_checkboxes.php
443
%%WWWDIR%%/include/smarty/libs/plugins/function.html_image.php
392
%%WWWDIR%%/include/smarty/libs/plugins/function.html_image.php
Lines 448-484 Link Here
448
%%WWWDIR%%/include/smarty/libs/plugins/function.html_table.php
397
%%WWWDIR%%/include/smarty/libs/plugins/function.html_table.php
449
%%WWWDIR%%/include/smarty/libs/plugins/function.mailto.php
398
%%WWWDIR%%/include/smarty/libs/plugins/function.mailto.php
450
%%WWWDIR%%/include/smarty/libs/plugins/function.math.php
399
%%WWWDIR%%/include/smarty/libs/plugins/function.math.php
451
%%WWWDIR%%/include/smarty/libs/plugins/function.popup.php
452
%%WWWDIR%%/include/smarty/libs/plugins/function.popup_init.php
453
%%WWWDIR%%/include/smarty/libs/plugins/modifier.capitalize.php
400
%%WWWDIR%%/include/smarty/libs/plugins/modifier.capitalize.php
454
%%WWWDIR%%/include/smarty/libs/plugins/modifier.cat.php
455
%%WWWDIR%%/include/smarty/libs/plugins/modifier.count_characters.php
456
%%WWWDIR%%/include/smarty/libs/plugins/modifier.count_paragraphs.php
457
%%WWWDIR%%/include/smarty/libs/plugins/modifier.count_sentences.php
458
%%WWWDIR%%/include/smarty/libs/plugins/modifier.count_words.php
459
%%WWWDIR%%/include/smarty/libs/plugins/modifier.date_format.php
401
%%WWWDIR%%/include/smarty/libs/plugins/modifier.date_format.php
460
%%WWWDIR%%/include/smarty/libs/plugins/modifier.debug_print_var.php
402
%%WWWDIR%%/include/smarty/libs/plugins/modifier.debug_print_var.php
461
%%WWWDIR%%/include/smarty/libs/plugins/modifier.default.php
462
%%WWWDIR%%/include/smarty/libs/plugins/modifier.escape.php
403
%%WWWDIR%%/include/smarty/libs/plugins/modifier.escape.php
463
%%WWWDIR%%/include/smarty/libs/plugins/modifier.indent.php
464
%%WWWDIR%%/include/smarty/libs/plugins/modifier.lower.php
465
%%WWWDIR%%/include/smarty/libs/plugins/modifier.nl2br.php
466
%%WWWDIR%%/include/smarty/libs/plugins/modifier.regex_replace.php
404
%%WWWDIR%%/include/smarty/libs/plugins/modifier.regex_replace.php
467
%%WWWDIR%%/include/smarty/libs/plugins/modifier.replace.php
405
%%WWWDIR%%/include/smarty/libs/plugins/modifier.replace.php
468
%%WWWDIR%%/include/smarty/libs/plugins/modifier.spacify.php
406
%%WWWDIR%%/include/smarty/libs/plugins/modifier.spacify.php
469
%%WWWDIR%%/include/smarty/libs/plugins/modifier.string_format.php
470
%%WWWDIR%%/include/smarty/libs/plugins/modifier.strip.php
471
%%WWWDIR%%/include/smarty/libs/plugins/modifier.strip_tags.php
472
%%WWWDIR%%/include/smarty/libs/plugins/modifier.truncate.php
407
%%WWWDIR%%/include/smarty/libs/plugins/modifier.truncate.php
473
%%WWWDIR%%/include/smarty/libs/plugins/modifier.upper.php
408
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.cat.php
474
%%WWWDIR%%/include/smarty/libs/plugins/modifier.wordwrap.php
409
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.count_characters.php
410
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.count_paragraphs.php
411
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.count_sentences.php
412
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.count_words.php
413
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.default.php
414
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.escape.php
415
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.from_charset.php
416
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.indent.php
417
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.lower.php
418
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.noprint.php
419
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.string_format.php
420
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.strip.php
421
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.strip_tags.php
422
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.to_charset.php
423
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.unescape.php
424
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.upper.php
425
%%WWWDIR%%/include/smarty/libs/plugins/modifiercompiler.wordwrap.php
475
%%WWWDIR%%/include/smarty/libs/plugins/outputfilter.trimwhitespace.php
426
%%WWWDIR%%/include/smarty/libs/plugins/outputfilter.trimwhitespace.php
476
%%WWWDIR%%/include/smarty/libs/plugins/shared.escape_special_chars.php
427
%%WWWDIR%%/include/smarty/libs/plugins/shared.escape_special_chars.php
428
%%WWWDIR%%/include/smarty/libs/plugins/shared.literal_compiler_param.php
477
%%WWWDIR%%/include/smarty/libs/plugins/shared.make_timestamp.php
429
%%WWWDIR%%/include/smarty/libs/plugins/shared.make_timestamp.php
430
%%WWWDIR%%/include/smarty/libs/plugins/shared.mb_str_replace.php
431
%%WWWDIR%%/include/smarty/libs/plugins/shared.mb_unicode.php
432
%%WWWDIR%%/include/smarty/libs/plugins/shared.mb_wordwrap.php
433
%%WWWDIR%%/include/smarty/libs/plugins/variablefilter.htmlspecialchars.php
434
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_cacheresource.php
435
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_cacheresource_custom.php
436
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php
437
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_config_source.php
438
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php
439
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_append.php
440
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_assign.php
441
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_block.php
442
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_break.php
443
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_call.php
444
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_capture.php
445
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_config_load.php
446
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_continue.php
447
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_debug.php
448
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_eval.php
449
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_extends.php
450
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_for.php
451
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_foreach.php
452
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_function.php
453
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_if.php
454
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_include.php
455
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_include_php.php
456
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_insert.php
457
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php
458
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_nocache.php
459
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_block_plugin.php
460
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_function_plugin.php
461
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_modifier.php
462
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_object_block_function.php
463
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_object_function.php
464
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_print_expression.php
465
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_registered_block.php
466
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_registered_function.php
467
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_private_special_variable.php
468
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php
469
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_section.php
470
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php
471
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compile_while.php
472
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_compilebase.php
473
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_config.php
474
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_config_file_compiler.php
475
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_configfilelexer.php
476
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_configfileparser.php
477
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_data.php
478
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_debug.php
479
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_filter_handler.php
480
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_function_call_handler.php
481
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_get_include_path.php
482
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_nocache_insert.php
483
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_parsetree.php
484
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_eval.php
485
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_extends.php
486
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_file.php
487
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_php.php
488
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_registered.php
489
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_stream.php
490
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_resource_string.php
491
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php
492
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_template.php
493
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_templatebase.php
494
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php
495
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_templatelexer.php
496
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_templateparser.php
497
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_utility.php
498
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_internal_write_file.php
499
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_resource.php
500
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_resource_custom.php
501
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_resource_recompiled.php
502
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_resource_uncompiled.php
503
%%WWWDIR%%/include/smarty/libs/sysplugins/smarty_security.php
478
%%WWWDIR%%/include/template.class.php
504
%%WWWDIR%%/include/template.class.php
479
%%WWWDIR%%/include/user.inc.php
505
%%WWWDIR%%/include/user.inc.php
480
%%WWWDIR%%/include/ws_core.inc.php
506
%%WWWDIR%%/include/ws_core.inc.php
481
%%WWWDIR%%/include/ws_functions.inc.php
507
%%WWWDIR%%/include/ws_functions.inc.php
508
%%WWWDIR%%/include/ws_functions/index.php
509
%%WWWDIR%%/include/ws_functions/pwg.categories.php
510
%%WWWDIR%%/include/ws_functions/pwg.extensions.php
511
%%WWWDIR%%/include/ws_functions/pwg.groups.php
512
%%WWWDIR%%/include/ws_functions/pwg.images.php
513
%%WWWDIR%%/include/ws_functions/pwg.permissions.php
514
%%WWWDIR%%/include/ws_functions/pwg.php
515
%%WWWDIR%%/include/ws_functions/pwg.tags.php
516
%%WWWDIR%%/include/ws_functions/pwg.users.php
482
%%WWWDIR%%/include/ws_protocols/index.php
517
%%WWWDIR%%/include/ws_protocols/index.php
483
%%WWWDIR%%/include/ws_protocols/json_encoder.php
518
%%WWWDIR%%/include/ws_protocols/json_encoder.php
484
%%WWWDIR%%/include/ws_protocols/php_encoder.php
519
%%WWWDIR%%/include/ws_protocols/php_encoder.php
Lines 523-528 Link Here
523
%%WWWDIR%%/install/db/132-database.php
558
%%WWWDIR%%/install/db/132-database.php
524
%%WWWDIR%%/install/db/133-database.php
559
%%WWWDIR%%/install/db/133-database.php
525
%%WWWDIR%%/install/db/134-database.php
560
%%WWWDIR%%/install/db/134-database.php
561
%%WWWDIR%%/install/db/135-database.php
562
%%WWWDIR%%/install/db/136-database.php
563
%%WWWDIR%%/install/db/137-database.php
564
%%WWWDIR%%/install/db/138-database.php
565
%%WWWDIR%%/install/db/139-database.php
526
%%WWWDIR%%/install/db/61-database.php
566
%%WWWDIR%%/install/db/61-database.php
527
%%WWWDIR%%/install/db/62-database.php
567
%%WWWDIR%%/install/db/62-database.php
528
%%WWWDIR%%/install/db/63-database.php
568
%%WWWDIR%%/install/db/63-database.php
Lines 581-586 Link Here
581
%%WWWDIR%%/install/upgrade_2.2.0.php
621
%%WWWDIR%%/install/upgrade_2.2.0.php
582
%%WWWDIR%%/install/upgrade_2.3.0.php
622
%%WWWDIR%%/install/upgrade_2.3.0.php
583
%%WWWDIR%%/install/upgrade_2.4.0.php
623
%%WWWDIR%%/install/upgrade_2.4.0.php
624
%%WWWDIR%%/install/upgrade_2.5.0.php
584
%%WWWDIR%%/language/af_ZA/about.html
625
%%WWWDIR%%/language/af_ZA/about.html
585
%%WWWDIR%%/language/af_ZA/admin.lang.php
626
%%WWWDIR%%/language/af_ZA/admin.lang.php
586
%%WWWDIR%%/language/af_ZA/af_ZA.jpg
627
%%WWWDIR%%/language/af_ZA/af_ZA.jpg
Lines 588-599 Link Here
588
%%WWWDIR%%/language/af_ZA/help/cat_modify.html
629
%%WWWDIR%%/language/af_ZA/help/cat_modify.html
589
%%WWWDIR%%/language/af_ZA/help/cat_move.html
630
%%WWWDIR%%/language/af_ZA/help/cat_move.html
590
%%WWWDIR%%/language/af_ZA/help/permalinks.html
631
%%WWWDIR%%/language/af_ZA/help/permalinks.html
632
%%WWWDIR%%/language/af_ZA/help/search.html
591
%%WWWDIR%%/language/af_ZA/help/synchronize.html
633
%%WWWDIR%%/language/af_ZA/help/synchronize.html
592
%%WWWDIR%%/language/af_ZA/help/user_list.html
634
%%WWWDIR%%/language/af_ZA/help/user_list.html
593
%%WWWDIR%%/language/af_ZA/index.php
635
%%WWWDIR%%/language/af_ZA/index.php
594
%%WWWDIR%%/language/af_ZA/install.lang.php
636
%%WWWDIR%%/language/af_ZA/install.lang.php
595
%%WWWDIR%%/language/af_ZA/iso.txt
637
%%WWWDIR%%/language/af_ZA/iso.txt
596
%%WWWDIR%%/language/af_ZA/upgrade.lang.php
638
%%WWWDIR%%/language/af_ZA/upgrade.lang.php
639
%%WWWDIR%%/language/ar_MA/ar_MA.jpg
640
%%WWWDIR%%/language/ar_MA/common.lang.php
641
%%WWWDIR%%/language/ar_MA/index.php
642
%%WWWDIR%%/language/ar_MA/iso.txt
597
%%WWWDIR%%/language/ar_SA/Translator.txt
643
%%WWWDIR%%/language/ar_SA/Translator.txt
598
%%WWWDIR%%/language/ar_SA/about.html
644
%%WWWDIR%%/language/ar_SA/about.html
599
%%WWWDIR%%/language/ar_SA/admin.lang.php
645
%%WWWDIR%%/language/ar_SA/admin.lang.php
Lines 633-638 Link Here
633
%%WWWDIR%%/language/bg_BG/help/cat_modify.html
679
%%WWWDIR%%/language/bg_BG/help/cat_modify.html
634
%%WWWDIR%%/language/bg_BG/help/cat_move.html
680
%%WWWDIR%%/language/bg_BG/help/cat_move.html
635
%%WWWDIR%%/language/bg_BG/help/cat_options.html
681
%%WWWDIR%%/language/bg_BG/help/cat_options.html
682
%%WWWDIR%%/language/bg_BG/help/synchronize.html
683
%%WWWDIR%%/language/bg_BG/help/user_list.html
636
%%WWWDIR%%/language/bg_BG/index.php
684
%%WWWDIR%%/language/bg_BG/index.php
637
%%WWWDIR%%/language/bg_BG/install.lang.php
685
%%WWWDIR%%/language/bg_BG/install.lang.php
638
%%WWWDIR%%/language/bg_BG/iso.txt
686
%%WWWDIR%%/language/bg_BG/iso.txt
Lines 640-645 Link Here
640
%%WWWDIR%%/language/bn_IN/bn_IN.jpg
688
%%WWWDIR%%/language/bn_IN/bn_IN.jpg
641
%%WWWDIR%%/language/bn_IN/common.lang.php
689
%%WWWDIR%%/language/bn_IN/common.lang.php
642
%%WWWDIR%%/language/bn_IN/iso.txt
690
%%WWWDIR%%/language/bn_IN/iso.txt
691
%%WWWDIR%%/language/br_FR/about.html
692
%%WWWDIR%%/language/br_FR/admin.lang.php
693
%%WWWDIR%%/language/br_FR/br_FR.jpg
694
%%WWWDIR%%/language/br_FR/common.lang.php
695
%%WWWDIR%%/language/br_FR/install.lang.php
696
%%WWWDIR%%/language/br_FR/iso.txt
697
%%WWWDIR%%/language/br_FR/upgrade.lang.php
643
%%WWWDIR%%/language/ca_ES/about.html
698
%%WWWDIR%%/language/ca_ES/about.html
644
%%WWWDIR%%/language/ca_ES/admin.lang.php
699
%%WWWDIR%%/language/ca_ES/admin.lang.php
645
%%WWWDIR%%/language/ca_ES/ca_ES.jpg
700
%%WWWDIR%%/language/ca_ES/ca_ES.jpg
Lines 785-790 Link Here
785
%%WWWDIR%%/language/el_GR/install.lang.php
840
%%WWWDIR%%/language/el_GR/install.lang.php
786
%%WWWDIR%%/language/el_GR/iso.txt
841
%%WWWDIR%%/language/el_GR/iso.txt
787
%%WWWDIR%%/language/el_GR/upgrade.lang.php
842
%%WWWDIR%%/language/el_GR/upgrade.lang.php
843
%%WWWDIR%%/language/en_GB/about.html
844
%%WWWDIR%%/language/en_GB/admin.lang.php
845
%%WWWDIR%%/language/en_GB/common.lang.php
846
%%WWWDIR%%/language/en_GB/en_GB.jpg
847
%%WWWDIR%%/language/en_GB/index.php
848
%%WWWDIR%%/language/en_GB/iso.txt
788
%%WWWDIR%%/language/en_UK/about.html
849
%%WWWDIR%%/language/en_UK/about.html
789
%%WWWDIR%%/language/en_UK/admin.lang.php
850
%%WWWDIR%%/language/en_UK/admin.lang.php
790
%%WWWDIR%%/language/en_UK/common.lang.php
851
%%WWWDIR%%/language/en_UK/common.lang.php
Lines 814-824 Link Here
814
%%WWWDIR%%/language/en_UK/install.lang.php
875
%%WWWDIR%%/language/en_UK/install.lang.php
815
%%WWWDIR%%/language/en_UK/iso.txt
876
%%WWWDIR%%/language/en_UK/iso.txt
816
%%WWWDIR%%/language/en_UK/upgrade.lang.php
877
%%WWWDIR%%/language/en_UK/upgrade.lang.php
878
%%WWWDIR%%/language/en_US/common.lang.php
879
%%WWWDIR%%/language/en_US/en_US.jpg
880
%%WWWDIR%%/language/en_US/index.php
881
%%WWWDIR%%/language/en_US/iso.txt
817
%%WWWDIR%%/language/eo_EO/about.html
882
%%WWWDIR%%/language/eo_EO/about.html
818
%%WWWDIR%%/language/eo_EO/admin.lang.php
883
%%WWWDIR%%/language/eo_EO/admin.lang.php
819
%%WWWDIR%%/language/eo_EO/common.lang.php
884
%%WWWDIR%%/language/eo_EO/common.lang.php
820
%%WWWDIR%%/language/eo_EO/eo_EO.jpg
885
%%WWWDIR%%/language/eo_EO/eo_EO.jpg
886
%%WWWDIR%%/language/eo_EO/help/cat_modify.html
887
%%WWWDIR%%/language/eo_EO/help/cat_move.html
888
%%WWWDIR%%/language/eo_EO/help/cat_options.html
889
%%WWWDIR%%/language/eo_EO/help/cat_perm.html
890
%%WWWDIR%%/language/eo_EO/help/group_list.html
891
%%WWWDIR%%/language/eo_EO/help/help_groups.html
892
%%WWWDIR%%/language/eo_EO/help/user_list.html
893
%%WWWDIR%%/language/eo_EO/install.lang.php
821
%%WWWDIR%%/language/eo_EO/iso.txt
894
%%WWWDIR%%/language/eo_EO/iso.txt
895
%%WWWDIR%%/language/eo_EO/upgrade.lang.php
822
%%WWWDIR%%/language/es_AR/about.html
896
%%WWWDIR%%/language/es_AR/about.html
823
%%WWWDIR%%/language/es_AR/common.lang.php
897
%%WWWDIR%%/language/es_AR/common.lang.php
824
%%WWWDIR%%/language/es_AR/es_AR.jpg
898
%%WWWDIR%%/language/es_AR/es_AR.jpg
Lines 862-867 Link Here
862
%%WWWDIR%%/language/et_EE/help/cat_options.html
936
%%WWWDIR%%/language/et_EE/help/cat_options.html
863
%%WWWDIR%%/language/et_EE/help/cat_perm.html
937
%%WWWDIR%%/language/et_EE/help/cat_perm.html
864
%%WWWDIR%%/language/et_EE/help/configuration.html
938
%%WWWDIR%%/language/et_EE/help/configuration.html
939
%%WWWDIR%%/language/et_EE/help/group_list.html
865
%%WWWDIR%%/language/et_EE/install.lang.php
940
%%WWWDIR%%/language/et_EE/install.lang.php
866
%%WWWDIR%%/language/et_EE/iso.txt
941
%%WWWDIR%%/language/et_EE/iso.txt
867
%%WWWDIR%%/language/et_EE/upgrade.lang.php
942
%%WWWDIR%%/language/et_EE/upgrade.lang.php
Lines 869-874 Link Here
869
%%WWWDIR%%/language/fa_IR/admin.lang.php
944
%%WWWDIR%%/language/fa_IR/admin.lang.php
870
%%WWWDIR%%/language/fa_IR/common.lang.php
945
%%WWWDIR%%/language/fa_IR/common.lang.php
871
%%WWWDIR%%/language/fa_IR/fa_IR.jpg
946
%%WWWDIR%%/language/fa_IR/fa_IR.jpg
947
%%WWWDIR%%/language/fa_IR/help/cat_modify.html
948
%%WWWDIR%%/language/fa_IR/help/cat_move.html
949
%%WWWDIR%%/language/fa_IR/help/cat_options.html
872
%%WWWDIR%%/language/fa_IR/help/help_add_photos.html
950
%%WWWDIR%%/language/fa_IR/help/help_add_photos.html
873
%%WWWDIR%%/language/fa_IR/help/help_groups.html
951
%%WWWDIR%%/language/fa_IR/help/help_groups.html
874
%%WWWDIR%%/language/fa_IR/help/help_misc.html
952
%%WWWDIR%%/language/fa_IR/help/help_misc.html
Lines 943-948 Link Here
943
%%WWWDIR%%/language/fr_FR/install.lang.php
1021
%%WWWDIR%%/language/fr_FR/install.lang.php
944
%%WWWDIR%%/language/fr_FR/iso.txt
1022
%%WWWDIR%%/language/fr_FR/iso.txt
945
%%WWWDIR%%/language/fr_FR/upgrade.lang.php
1023
%%WWWDIR%%/language/fr_FR/upgrade.lang.php
1024
%%WWWDIR%%/language/ga_IE/common.lang.php
1025
%%WWWDIR%%/language/ga_IE/ga_IE.jpg
1026
%%WWWDIR%%/language/ga_IE/iso.txt
946
%%WWWDIR%%/language/gl_ES/about.html
1027
%%WWWDIR%%/language/gl_ES/about.html
947
%%WWWDIR%%/language/gl_ES/admin.lang.php
1028
%%WWWDIR%%/language/gl_ES/admin.lang.php
948
%%WWWDIR%%/language/gl_ES/common.lang.php
1029
%%WWWDIR%%/language/gl_ES/common.lang.php
Lines 952-957 Link Here
952
%%WWWDIR%%/language/gl_ES/help/cat_options.html
1033
%%WWWDIR%%/language/gl_ES/help/cat_options.html
953
%%WWWDIR%%/language/gl_ES/help/cat_perm.html
1034
%%WWWDIR%%/language/gl_ES/help/cat_perm.html
954
%%WWWDIR%%/language/gl_ES/help/configuration.html
1035
%%WWWDIR%%/language/gl_ES/help/configuration.html
1036
%%WWWDIR%%/language/gl_ES/help/extend_for_templates.html
955
%%WWWDIR%%/language/gl_ES/install.lang.php
1037
%%WWWDIR%%/language/gl_ES/install.lang.php
956
%%WWWDIR%%/language/gl_ES/iso.txt
1038
%%WWWDIR%%/language/gl_ES/iso.txt
957
%%WWWDIR%%/language/gl_ES/upgrade.lang.php
1039
%%WWWDIR%%/language/gl_ES/upgrade.lang.php
Lines 1015-1020 Link Here
1015
%%WWWDIR%%/language/hu_HU/install.lang.php
1097
%%WWWDIR%%/language/hu_HU/install.lang.php
1016
%%WWWDIR%%/language/hu_HU/iso.txt
1098
%%WWWDIR%%/language/hu_HU/iso.txt
1017
%%WWWDIR%%/language/hu_HU/upgrade.lang.php
1099
%%WWWDIR%%/language/hu_HU/upgrade.lang.php
1100
%%WWWDIR%%/language/id_ID/common.lang.php
1101
%%WWWDIR%%/language/id_ID/id_ID.jpg
1102
%%WWWDIR%%/language/id_ID/index.php
1103
%%WWWDIR%%/language/id_ID/iso.txt
1018
%%WWWDIR%%/language/index.php
1104
%%WWWDIR%%/language/index.php
1019
%%WWWDIR%%/language/is_IS/about.html
1105
%%WWWDIR%%/language/is_IS/about.html
1020
%%WWWDIR%%/language/is_IS/common.lang.php
1106
%%WWWDIR%%/language/is_IS/common.lang.php
Lines 1116-1134 Link Here
1116
%%WWWDIR%%/language/km_KH/iso.txt
1202
%%WWWDIR%%/language/km_KH/iso.txt
1117
%%WWWDIR%%/language/km_KH/km_KH.jpg
1203
%%WWWDIR%%/language/km_KH/km_KH.jpg
1118
%%WWWDIR%%/language/kn_IN/about.html
1204
%%WWWDIR%%/language/kn_IN/about.html
1205
%%WWWDIR%%/language/kn_IN/admin.lang.php
1119
%%WWWDIR%%/language/kn_IN/common.lang.php
1206
%%WWWDIR%%/language/kn_IN/common.lang.php
1207
%%WWWDIR%%/language/kn_IN/install.lang.php
1120
%%WWWDIR%%/language/kn_IN/iso.txt
1208
%%WWWDIR%%/language/kn_IN/iso.txt
1121
%%WWWDIR%%/language/kn_IN/kn_IN.jpg
1209
%%WWWDIR%%/language/kn_IN/kn_IN.jpg
1210
%%WWWDIR%%/language/kn_IN/upgrade.lang.php
1211
%%WWWDIR%%/language/ko_KR/admin.lang.php
1122
%%WWWDIR%%/language/ko_KR/common.lang.php
1212
%%WWWDIR%%/language/ko_KR/common.lang.php
1123
%%WWWDIR%%/language/ko_KR/index.php
1213
%%WWWDIR%%/language/ko_KR/index.php
1214
%%WWWDIR%%/language/ko_KR/install.lang.php
1124
%%WWWDIR%%/language/ko_KR/iso.txt
1215
%%WWWDIR%%/language/ko_KR/iso.txt
1125
%%WWWDIR%%/language/ko_KR/ko_KR.jpg
1216
%%WWWDIR%%/language/ko_KR/ko_KR.jpg
1217
%%WWWDIR%%/language/ko_KR/upgrade.lang.php
1126
%%WWWDIR%%/language/kok_IN/common.lang.php
1218
%%WWWDIR%%/language/kok_IN/common.lang.php
1127
%%WWWDIR%%/language/kok_IN/iso.txt
1219
%%WWWDIR%%/language/kok_IN/iso.txt
1128
%%WWWDIR%%/language/kok_IN/kok_IN.jpg
1220
%%WWWDIR%%/language/kok_IN/kok_IN.jpg
1221
%%WWWDIR%%/language/lb_LU/common.lang.php
1222
%%WWWDIR%%/language/lb_LU/iso.txt
1223
%%WWWDIR%%/language/lb_LU/lb_LU.jpg
1129
%%WWWDIR%%/language/lt_LT/about.html
1224
%%WWWDIR%%/language/lt_LT/about.html
1130
%%WWWDIR%%/language/lt_LT/admin.lang.php
1225
%%WWWDIR%%/language/lt_LT/admin.lang.php
1131
%%WWWDIR%%/language/lt_LT/common.lang.php
1226
%%WWWDIR%%/language/lt_LT/common.lang.php
1227
%%WWWDIR%%/language/lt_LT/help/cat_move.html
1228
%%WWWDIR%%/language/lt_LT/help/cat_options.html
1229
%%WWWDIR%%/language/lt_LT/help/index.php
1132
%%WWWDIR%%/language/lt_LT/install.lang.php
1230
%%WWWDIR%%/language/lt_LT/install.lang.php
1133
%%WWWDIR%%/language/lt_LT/iso.txt
1231
%%WWWDIR%%/language/lt_LT/iso.txt
1134
%%WWWDIR%%/language/lt_LT/lt_LT.jpg
1232
%%WWWDIR%%/language/lt_LT/lt_LT.jpg
Lines 1167-1172 Link Here
1167
%%WWWDIR%%/language/mk_MK/install.lang.php
1265
%%WWWDIR%%/language/mk_MK/install.lang.php
1168
%%WWWDIR%%/language/mk_MK/iso.txt
1266
%%WWWDIR%%/language/mk_MK/iso.txt
1169
%%WWWDIR%%/language/mk_MK/mk_MK.jpg
1267
%%WWWDIR%%/language/mk_MK/mk_MK.jpg
1268
%%WWWDIR%%/language/mn_MN/about.html
1269
%%WWWDIR%%/language/mn_MN/admin.lang.php
1270
%%WWWDIR%%/language/mn_MN/common.lang.php
1271
%%WWWDIR%%/language/mn_MN/install.lang.php
1272
%%WWWDIR%%/language/mn_MN/iso.txt
1273
%%WWWDIR%%/language/mn_MN/mn_MN.jpg
1274
%%WWWDIR%%/language/mn_MN/upgrade.lang.php
1170
%%WWWDIR%%/language/ms_MY/common.lang.php
1275
%%WWWDIR%%/language/ms_MY/common.lang.php
1171
%%WWWDIR%%/language/ms_MY/iso.txt
1276
%%WWWDIR%%/language/ms_MY/iso.txt
1172
%%WWWDIR%%/language/ms_MY/ms_MY.jpg
1277
%%WWWDIR%%/language/ms_MY/ms_MY.jpg
Lines 1384-1396 Link Here
1384
%%WWWDIR%%/language/sk_SK/about.html
1489
%%WWWDIR%%/language/sk_SK/about.html
1385
%%WWWDIR%%/language/sk_SK/admin.lang.php
1490
%%WWWDIR%%/language/sk_SK/admin.lang.php
1386
%%WWWDIR%%/language/sk_SK/common.lang.php
1491
%%WWWDIR%%/language/sk_SK/common.lang.php
1492
%%WWWDIR%%/language/sk_SK/help/cat_modify.html
1493
%%WWWDIR%%/language/sk_SK/help/cat_move.html
1494
%%WWWDIR%%/language/sk_SK/help/cat_options.html
1495
%%WWWDIR%%/language/sk_SK/help/cat_perm.html
1496
%%WWWDIR%%/language/sk_SK/help/configuration.html
1497
%%WWWDIR%%/language/sk_SK/help/extend_for_templates.html
1498
%%WWWDIR%%/language/sk_SK/help/group_list.html
1387
%%WWWDIR%%/language/sk_SK/help/help_add_photos.html
1499
%%WWWDIR%%/language/sk_SK/help/help_add_photos.html
1388
%%WWWDIR%%/language/sk_SK/help/help_groups.html
1500
%%WWWDIR%%/language/sk_SK/help/help_groups.html
1389
%%WWWDIR%%/language/sk_SK/help/help_misc.html
1501
%%WWWDIR%%/language/sk_SK/help/help_misc.html
1390
%%WWWDIR%%/language/sk_SK/help/help_permissions.html
1502
%%WWWDIR%%/language/sk_SK/help/help_permissions.html
1391
%%WWWDIR%%/language/sk_SK/help/help_virtual_links.html
1503
%%WWWDIR%%/language/sk_SK/help/help_virtual_links.html
1504
%%WWWDIR%%/language/sk_SK/help/history.html
1392
%%WWWDIR%%/language/sk_SK/help/index.php
1505
%%WWWDIR%%/language/sk_SK/help/index.php
1506
%%WWWDIR%%/language/sk_SK/help/maintenance.html
1507
%%WWWDIR%%/language/sk_SK/help/notification_by_mail.html
1508
%%WWWDIR%%/language/sk_SK/help/permalinks.html
1393
%%WWWDIR%%/language/sk_SK/help/photos_add_ftp.html
1509
%%WWWDIR%%/language/sk_SK/help/photos_add_ftp.html
1510
%%WWWDIR%%/language/sk_SK/help/search.html
1511
%%WWWDIR%%/language/sk_SK/help/synchronize.html
1512
%%WWWDIR%%/language/sk_SK/help/user_list.html
1394
%%WWWDIR%%/language/sk_SK/index.php
1513
%%WWWDIR%%/language/sk_SK/index.php
1395
%%WWWDIR%%/language/sk_SK/install.lang.php
1514
%%WWWDIR%%/language/sk_SK/install.lang.php
1396
%%WWWDIR%%/language/sk_SK/iso.txt
1515
%%WWWDIR%%/language/sk_SK/iso.txt
Lines 1399-1404 Link Here
1399
%%WWWDIR%%/language/sl_SI/about.html
1518
%%WWWDIR%%/language/sl_SI/about.html
1400
%%WWWDIR%%/language/sl_SI/admin.lang.php
1519
%%WWWDIR%%/language/sl_SI/admin.lang.php
1401
%%WWWDIR%%/language/sl_SI/common.lang.php
1520
%%WWWDIR%%/language/sl_SI/common.lang.php
1521
%%WWWDIR%%/language/sl_SI/help/cat_move.html
1522
%%WWWDIR%%/language/sl_SI/help/search.html
1523
%%WWWDIR%%/language/sl_SI/help/synchronize.html
1524
%%WWWDIR%%/language/sl_SI/help/user_list.html
1402
%%WWWDIR%%/language/sl_SI/index.php
1525
%%WWWDIR%%/language/sl_SI/index.php
1403
%%WWWDIR%%/language/sl_SI/install.lang.php
1526
%%WWWDIR%%/language/sl_SI/install.lang.php
1404
%%WWWDIR%%/language/sl_SI/iso.txt
1527
%%WWWDIR%%/language/sl_SI/iso.txt
Lines 1432-1446 Link Here
1432
%%WWWDIR%%/language/sv_SE/help/maintenance.html
1555
%%WWWDIR%%/language/sv_SE/help/maintenance.html
1433
%%WWWDIR%%/language/sv_SE/help/notification_by_mail.html
1556
%%WWWDIR%%/language/sv_SE/help/notification_by_mail.html
1434
%%WWWDIR%%/language/sv_SE/help/permalinks.html
1557
%%WWWDIR%%/language/sv_SE/help/permalinks.html
1558
%%WWWDIR%%/language/sv_SE/help/photos_add_ftp.html
1435
%%WWWDIR%%/language/sv_SE/help/search.html
1559
%%WWWDIR%%/language/sv_SE/help/search.html
1560
%%WWWDIR%%/language/sv_SE/help/synchronize.html
1436
%%WWWDIR%%/language/sv_SE/help/user_list.html
1561
%%WWWDIR%%/language/sv_SE/help/user_list.html
1437
%%WWWDIR%%/language/sv_SE/install.lang.php
1562
%%WWWDIR%%/language/sv_SE/install.lang.php
1438
%%WWWDIR%%/language/sv_SE/iso.txt
1563
%%WWWDIR%%/language/sv_SE/iso.txt
1439
%%WWWDIR%%/language/sv_SE/sv_SE.jpg
1564
%%WWWDIR%%/language/sv_SE/sv_SE.jpg
1440
%%WWWDIR%%/language/sv_SE/upgrade.lang.php
1565
%%WWWDIR%%/language/sv_SE/upgrade.lang.php
1566
%%WWWDIR%%/language/ta_IN/admin.lang.php
1441
%%WWWDIR%%/language/ta_IN/common.lang.php
1567
%%WWWDIR%%/language/ta_IN/common.lang.php
1568
%%WWWDIR%%/language/ta_IN/install.lang.php
1442
%%WWWDIR%%/language/ta_IN/iso.txt
1569
%%WWWDIR%%/language/ta_IN/iso.txt
1443
%%WWWDIR%%/language/ta_IN/ta_IN.jpg
1570
%%WWWDIR%%/language/ta_IN/ta_IN.jpg
1571
%%WWWDIR%%/language/ta_IN/upgrade.lang.php
1444
%%WWWDIR%%/language/th_TH/about.html
1572
%%WWWDIR%%/language/th_TH/about.html
1445
%%WWWDIR%%/language/th_TH/admin.lang.php
1573
%%WWWDIR%%/language/th_TH/admin.lang.php
1446
%%WWWDIR%%/language/th_TH/common.lang.php
1574
%%WWWDIR%%/language/th_TH/common.lang.php
Lines 1458-1463 Link Here
1458
%%WWWDIR%%/language/tr_TR/help/cat_options.html
1586
%%WWWDIR%%/language/tr_TR/help/cat_options.html
1459
%%WWWDIR%%/language/tr_TR/help/cat_perm.html
1587
%%WWWDIR%%/language/tr_TR/help/cat_perm.html
1460
%%WWWDIR%%/language/tr_TR/help/configuration.html
1588
%%WWWDIR%%/language/tr_TR/help/configuration.html
1589
%%WWWDIR%%/language/tr_TR/help/extend_for_templates.html
1461
%%WWWDIR%%/language/tr_TR/help/group_list.html
1590
%%WWWDIR%%/language/tr_TR/help/group_list.html
1462
%%WWWDIR%%/language/tr_TR/help/help_add_photos.html
1591
%%WWWDIR%%/language/tr_TR/help/help_add_photos.html
1463
%%WWWDIR%%/language/tr_TR/help/help_groups.html
1592
%%WWWDIR%%/language/tr_TR/help/help_groups.html
Lines 1465-1471 Link Here
1465
%%WWWDIR%%/language/tr_TR/help/help_permissions.html
1594
%%WWWDIR%%/language/tr_TR/help/help_permissions.html
1466
%%WWWDIR%%/language/tr_TR/help/help_virtual_links.html
1595
%%WWWDIR%%/language/tr_TR/help/help_virtual_links.html
1467
%%WWWDIR%%/language/tr_TR/help/history.html
1596
%%WWWDIR%%/language/tr_TR/help/history.html
1597
%%WWWDIR%%/language/tr_TR/help/maintenance.html
1468
%%WWWDIR%%/language/tr_TR/help/notification_by_mail.html
1598
%%WWWDIR%%/language/tr_TR/help/notification_by_mail.html
1599
%%WWWDIR%%/language/tr_TR/help/permalinks.html
1469
%%WWWDIR%%/language/tr_TR/help/photos_add_ftp.html
1600
%%WWWDIR%%/language/tr_TR/help/photos_add_ftp.html
1470
%%WWWDIR%%/language/tr_TR/help/search.html
1601
%%WWWDIR%%/language/tr_TR/help/search.html
1471
%%WWWDIR%%/language/tr_TR/help/synchronize.html
1602
%%WWWDIR%%/language/tr_TR/help/synchronize.html
Lines 1539-1551 Link Here
1539
%%WWWDIR%%/language/zh_CN/upgrade.lang.php
1670
%%WWWDIR%%/language/zh_CN/upgrade.lang.php
1540
%%WWWDIR%%/language/zh_CN/zh_CN.jpg
1671
%%WWWDIR%%/language/zh_CN/zh_CN.jpg
1541
%%WWWDIR%%/language/zh_HK/about.html
1672
%%WWWDIR%%/language/zh_HK/about.html
1673
%%WWWDIR%%/language/zh_HK/admin.lang.php
1542
%%WWWDIR%%/language/zh_HK/common.lang.php
1674
%%WWWDIR%%/language/zh_HK/common.lang.php
1675
%%WWWDIR%%/language/zh_HK/help/cat_move.html
1676
%%WWWDIR%%/language/zh_HK/help/cat_options.html
1677
%%WWWDIR%%/language/zh_HK/help/cat_perm.html
1678
%%WWWDIR%%/language/zh_HK/help/index.php
1543
%%WWWDIR%%/language/zh_HK/index.php
1679
%%WWWDIR%%/language/zh_HK/index.php
1680
%%WWWDIR%%/language/zh_HK/install.lang.php
1544
%%WWWDIR%%/language/zh_HK/iso.txt
1681
%%WWWDIR%%/language/zh_HK/iso.txt
1682
%%WWWDIR%%/language/zh_HK/upgrade.lang.php
1545
%%WWWDIR%%/language/zh_HK/zh_HK.jpg
1683
%%WWWDIR%%/language/zh_HK/zh_HK.jpg
1546
%%WWWDIR%%/language/zh_TW/about.html
1684
%%WWWDIR%%/language/zh_TW/about.html
1547
%%WWWDIR%%/language/zh_TW/admin.lang.php
1685
%%WWWDIR%%/language/zh_TW/admin.lang.php
1548
%%WWWDIR%%/language/zh_TW/common.lang.php
1686
%%WWWDIR%%/language/zh_TW/common.lang.php
1687
%%WWWDIR%%/language/zh_TW/help/cat_modify.html
1688
%%WWWDIR%%/language/zh_TW/help/cat_move.html
1689
%%WWWDIR%%/language/zh_TW/help/cat_options.html
1690
%%WWWDIR%%/language/zh_TW/help/cat_perm.html
1691
%%WWWDIR%%/language/zh_TW/help/configuration.html
1692
%%WWWDIR%%/language/zh_TW/help/extend_for_templates.html
1693
%%WWWDIR%%/language/zh_TW/help/group_list.html
1694
%%WWWDIR%%/language/zh_TW/help/help_add_photos.html
1695
%%WWWDIR%%/language/zh_TW/help/help_groups.html
1696
%%WWWDIR%%/language/zh_TW/help/help_misc.html
1697
%%WWWDIR%%/language/zh_TW/help/help_permissions.html
1698
%%WWWDIR%%/language/zh_TW/help/help_virtual_links.html
1699
%%WWWDIR%%/language/zh_TW/help/history.html
1700
%%WWWDIR%%/language/zh_TW/help/maintenance.html
1701
%%WWWDIR%%/language/zh_TW/help/notification_by_mail.html
1702
%%WWWDIR%%/language/zh_TW/help/permalinks.html
1703
%%WWWDIR%%/language/zh_TW/help/photos_add_ftp.html
1704
%%WWWDIR%%/language/zh_TW/help/search.html
1705
%%WWWDIR%%/language/zh_TW/help/synchronize.html
1706
%%WWWDIR%%/language/zh_TW/help/user_list.html
1549
%%WWWDIR%%/language/zh_TW/install.lang.php
1707
%%WWWDIR%%/language/zh_TW/install.lang.php
1550
%%WWWDIR%%/language/zh_TW/iso.txt
1708
%%WWWDIR%%/language/zh_TW/iso.txt
1551
%%WWWDIR%%/language/zh_TW/upgrade.lang.php
1709
%%WWWDIR%%/language/zh_TW/upgrade.lang.php
Lines 1554-1569 Link Here
1554
%%WWWDIR%%/local.sample/css/index.php
1712
%%WWWDIR%%/local.sample/css/index.php
1555
%%WWWDIR%%/local.sample/index.php
1713
%%WWWDIR%%/local.sample/index.php
1556
%%WWWDIR%%/local.sample/language/index.php
1714
%%WWWDIR%%/local.sample/language/index.php
1557
%%WWWDIR%%/local/config/index.php
1558
%%WWWDIR%%/local/css/index.php
1559
%%WWWDIR%%/local/index.php
1560
%%WWWDIR%%/local/language/index.php
1561
%%WWWDIR%%/nbm.php
1715
%%WWWDIR%%/nbm.php
1562
%%WWWDIR%%/notification.php
1716
%%WWWDIR%%/notification.php
1563
%%WWWDIR%%/password.php
1717
%%WWWDIR%%/password.php
1564
%%WWWDIR%%/picture.php
1718
%%WWWDIR%%/picture.php
1565
@exec mkdir -m 0750 -p %D/plugins
1719
@owner %%WWWOWN%%
1566
@exec %%CHOWN%% %%WWWOWN%%:%%WWWGRP%% %D/plugins
1720
@group %%WWWGRP%%
1567
%%WWWDIR%%/plugins/LocalFilesEditor/admin.php
1721
%%WWWDIR%%/plugins/LocalFilesEditor/admin.php
1568
%%WWWDIR%%/plugins/LocalFilesEditor/codemirror/lib/codemirror.css
1722
%%WWWDIR%%/plugins/LocalFilesEditor/codemirror/lib/codemirror.css
1569
%%WWWDIR%%/plugins/LocalFilesEditor/codemirror/lib/codemirror.js
1723
%%WWWDIR%%/plugins/LocalFilesEditor/codemirror/lib/codemirror.js
Lines 1609-1614 Link Here
1609
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/description.txt
1763
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/description.txt
1610
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/index.php
1764
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/index.php
1611
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/plugin.lang.php
1765
%%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG/plugin.lang.php
1766
%%WWWDIR%%/plugins/LocalFilesEditor/language/br_FR/description.txt
1767
%%WWWDIR%%/plugins/LocalFilesEditor/language/br_FR/index.php
1768
%%WWWDIR%%/plugins/LocalFilesEditor/language/br_FR/plugin.lang.php
1612
%%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES/description.txt
1769
%%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES/description.txt
1613
%%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES/plugin.lang.php
1770
%%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES/plugin.lang.php
1614
%%WWWDIR%%/plugins/LocalFilesEditor/language/cs_CZ/description.txt
1771
%%WWWDIR%%/plugins/LocalFilesEditor/language/cs_CZ/description.txt
Lines 1624-1629 Link Here
1624
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/description.txt
1781
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/description.txt
1625
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/index.php
1782
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/index.php
1626
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/plugin.lang.php
1783
%%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK/plugin.lang.php
1784
%%WWWDIR%%/plugins/LocalFilesEditor/language/eo_EO/description.txt
1785
%%WWWDIR%%/plugins/LocalFilesEditor/language/eo_EO/plugin.lang.php
1627
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/description.txt
1786
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/description.txt
1628
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/index.php
1787
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/index.php
1629
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/plugin.lang.php
1788
%%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES/plugin.lang.php
Lines 1662-1670 Link Here
1662
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/description.txt
1821
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/description.txt
1663
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/index.php
1822
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/index.php
1664
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/plugin.lang.php
1823
%%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE/plugin.lang.php
1824
%%WWWDIR%%/plugins/LocalFilesEditor/language/kn_IN/description.txt
1825
%%WWWDIR%%/plugins/LocalFilesEditor/language/kn_IN/plugin.lang.php
1826
%%WWWDIR%%/plugins/LocalFilesEditor/language/lt_LT/description.txt
1827
%%WWWDIR%%/plugins/LocalFilesEditor/language/lt_LT/plugin.lang.php
1665
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/description.txt
1828
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/description.txt
1666
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/index.php
1829
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/index.php
1667
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/plugin.lang.php
1830
%%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV/plugin.lang.php
1831
%%WWWDIR%%/plugins/LocalFilesEditor/language/mn_MN/description.txt
1832
%%WWWDIR%%/plugins/LocalFilesEditor/language/mn_MN/index.php
1833
%%WWWDIR%%/plugins/LocalFilesEditor/language/mn_MN/plugin.lang.php
1668
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/description.txt
1834
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/description.txt
1669
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/index.php
1835
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/index.php
1670
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/plugin.lang.php
1836
%%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO/plugin.lang.php
Lines 1682-1687 Link Here
1682
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/description.txt
1848
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/description.txt
1683
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/index.php
1849
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/index.php
1684
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/plugin.lang.php
1850
%%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT/plugin.lang.php
1851
%%WWWDIR%%/plugins/LocalFilesEditor/language/ro_RO/description.txt
1852
%%WWWDIR%%/plugins/LocalFilesEditor/language/ro_RO/plugin.lang.php
1685
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/description.txt
1853
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/description.txt
1686
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/index.php
1854
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/index.php
1687
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/plugin.lang.php
1855
%%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU/plugin.lang.php
Lines 1690-1701 Link Here
1690
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/description.txt
1858
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/description.txt
1691
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/index.php
1859
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/index.php
1692
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/plugin.lang.php
1860
%%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK/plugin.lang.php
1861
%%WWWDIR%%/plugins/LocalFilesEditor/language/sl_SI/description.txt
1862
%%WWWDIR%%/plugins/LocalFilesEditor/language/sl_SI/plugin.lang.php
1693
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/description.txt
1863
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/description.txt
1694
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/index.php
1864
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/index.php
1695
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/plugin.lang.php
1865
%%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS/plugin.lang.php
1696
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/description.txt
1866
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/description.txt
1697
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/index.php
1867
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/index.php
1698
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/plugin.lang.php
1868
%%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE/plugin.lang.php
1869
%%WWWDIR%%/plugins/LocalFilesEditor/language/ta_IN/description.txt
1870
%%WWWDIR%%/plugins/LocalFilesEditor/language/ta_IN/plugin.lang.php
1699
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/description.txt
1871
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/description.txt
1700
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/index.php
1872
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/index.php
1701
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/plugin.lang.php
1873
%%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH/plugin.lang.php
Lines 1710-1715 Link Here
1710
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/description.txt
1882
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/description.txt
1711
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/index.php
1883
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/index.php
1712
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/plugin.lang.php
1884
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN/plugin.lang.php
1885
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_HK/description.txt
1886
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_HK/plugin.lang.php
1713
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/description.txt
1887
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/description.txt
1714
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/index.php
1888
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/index.php
1715
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/plugin.lang.php
1889
%%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW/plugin.lang.php
Lines 1729-1734 Link Here
1729
%%WWWDIR%%/plugins/admin_multi_view/language/ar_SA/index.php
1903
%%WWWDIR%%/plugins/admin_multi_view/language/ar_SA/index.php
1730
%%WWWDIR%%/plugins/admin_multi_view/language/bg_BG/description.txt
1904
%%WWWDIR%%/plugins/admin_multi_view/language/bg_BG/description.txt
1731
%%WWWDIR%%/plugins/admin_multi_view/language/bg_BG/index.php
1905
%%WWWDIR%%/plugins/admin_multi_view/language/bg_BG/index.php
1906
%%WWWDIR%%/plugins/admin_multi_view/language/br_FR/description.txt
1907
%%WWWDIR%%/plugins/admin_multi_view/language/br_FR/index.php
1732
%%WWWDIR%%/plugins/admin_multi_view/language/ca_ES/description.txt
1908
%%WWWDIR%%/plugins/admin_multi_view/language/ca_ES/description.txt
1733
%%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ/description.txt
1909
%%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ/description.txt
1734
%%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ/index.php
1910
%%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ/index.php
Lines 1738-1743 Link Here
1738
%%WWWDIR%%/plugins/admin_multi_view/language/el_GR/description.txt
1914
%%WWWDIR%%/plugins/admin_multi_view/language/el_GR/description.txt
1739
%%WWWDIR%%/plugins/admin_multi_view/language/en_UK/description.txt
1915
%%WWWDIR%%/plugins/admin_multi_view/language/en_UK/description.txt
1740
%%WWWDIR%%/plugins/admin_multi_view/language/en_UK/index.php
1916
%%WWWDIR%%/plugins/admin_multi_view/language/en_UK/index.php
1917
%%WWWDIR%%/plugins/admin_multi_view/language/eo_EO/description.txt
1741
%%WWWDIR%%/plugins/admin_multi_view/language/es_ES/description.txt
1918
%%WWWDIR%%/plugins/admin_multi_view/language/es_ES/description.txt
1742
%%WWWDIR%%/plugins/admin_multi_view/language/es_ES/index.php
1919
%%WWWDIR%%/plugins/admin_multi_view/language/es_ES/index.php
1743
%%WWWDIR%%/plugins/admin_multi_view/language/et_EE/description.txt
1920
%%WWWDIR%%/plugins/admin_multi_view/language/et_EE/description.txt
Lines 1763-1770 Link Here
1763
%%WWWDIR%%/plugins/admin_multi_view/language/ja_JP/index.php
1940
%%WWWDIR%%/plugins/admin_multi_view/language/ja_JP/index.php
1764
%%WWWDIR%%/plugins/admin_multi_view/language/ka_GE/description.txt
1941
%%WWWDIR%%/plugins/admin_multi_view/language/ka_GE/description.txt
1765
%%WWWDIR%%/plugins/admin_multi_view/language/ka_GE/index.php
1942
%%WWWDIR%%/plugins/admin_multi_view/language/ka_GE/index.php
1943
%%WWWDIR%%/plugins/admin_multi_view/language/kn_IN/description.txt
1944
%%WWWDIR%%/plugins/admin_multi_view/language/lt_LT/description.txt
1766
%%WWWDIR%%/plugins/admin_multi_view/language/lv_LV/description.txt
1945
%%WWWDIR%%/plugins/admin_multi_view/language/lv_LV/description.txt
1767
%%WWWDIR%%/plugins/admin_multi_view/language/lv_LV/index.php
1946
%%WWWDIR%%/plugins/admin_multi_view/language/lv_LV/index.php
1947
%%WWWDIR%%/plugins/admin_multi_view/language/mn_MN/description.txt
1948
%%WWWDIR%%/plugins/admin_multi_view/language/mn_MN/index.php
1768
%%WWWDIR%%/plugins/admin_multi_view/language/nb_NO/description.txt
1949
%%WWWDIR%%/plugins/admin_multi_view/language/nb_NO/description.txt
1769
%%WWWDIR%%/plugins/admin_multi_view/language/nb_NO/index.php
1950
%%WWWDIR%%/plugins/admin_multi_view/language/nb_NO/index.php
1770
%%WWWDIR%%/plugins/admin_multi_view/language/nl_NL/description.txt
1951
%%WWWDIR%%/plugins/admin_multi_view/language/nl_NL/description.txt
Lines 1786-1791 Link Here
1786
%%WWWDIR%%/plugins/admin_multi_view/language/sr_RS/index.php
1967
%%WWWDIR%%/plugins/admin_multi_view/language/sr_RS/index.php
1787
%%WWWDIR%%/plugins/admin_multi_view/language/sv_SE/description.txt
1968
%%WWWDIR%%/plugins/admin_multi_view/language/sv_SE/description.txt
1788
%%WWWDIR%%/plugins/admin_multi_view/language/sv_SE/index.php
1969
%%WWWDIR%%/plugins/admin_multi_view/language/sv_SE/index.php
1970
%%WWWDIR%%/plugins/admin_multi_view/language/ta_IN/description.txt
1789
%%WWWDIR%%/plugins/admin_multi_view/language/th_TH/description.txt
1971
%%WWWDIR%%/plugins/admin_multi_view/language/th_TH/description.txt
1790
%%WWWDIR%%/plugins/admin_multi_view/language/th_TH/index.php
1972
%%WWWDIR%%/plugins/admin_multi_view/language/th_TH/index.php
1791
%%WWWDIR%%/plugins/admin_multi_view/language/tr_TR/description.txt
1973
%%WWWDIR%%/plugins/admin_multi_view/language/tr_TR/description.txt
Lines 1795-1800 Link Here
1795
%%WWWDIR%%/plugins/admin_multi_view/language/vi_VN/index.php
1977
%%WWWDIR%%/plugins/admin_multi_view/language/vi_VN/index.php
1796
%%WWWDIR%%/plugins/admin_multi_view/language/zh_CN/description.txt
1978
%%WWWDIR%%/plugins/admin_multi_view/language/zh_CN/description.txt
1797
%%WWWDIR%%/plugins/admin_multi_view/language/zh_CN/index.php
1979
%%WWWDIR%%/plugins/admin_multi_view/language/zh_CN/index.php
1980
%%WWWDIR%%/plugins/admin_multi_view/language/zh_HK/description.txt
1981
%%WWWDIR%%/plugins/admin_multi_view/language/zh_HK/index.php
1798
%%WWWDIR%%/plugins/admin_multi_view/language/zh_TW/description.txt
1982
%%WWWDIR%%/plugins/admin_multi_view/language/zh_TW/description.txt
1799
%%WWWDIR%%/plugins/admin_multi_view/language/zh_TW/index.php
1983
%%WWWDIR%%/plugins/admin_multi_view/language/zh_TW/index.php
1800
%%WWWDIR%%/plugins/admin_multi_view/main.inc.php
1984
%%WWWDIR%%/plugins/admin_multi_view/main.inc.php
Lines 1806-1811 Link Here
1806
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/description.txt
1990
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/description.txt
1807
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/index.php
1991
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/index.php
1808
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/plugin.lang.php
1992
%%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG/plugin.lang.php
1993
%%WWWDIR%%/plugins/c13y_upgrade/language/br_FR/description.txt
1994
%%WWWDIR%%/plugins/c13y_upgrade/language/br_FR/index.php
1995
%%WWWDIR%%/plugins/c13y_upgrade/language/br_FR/plugin.lang.php
1809
%%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES/description.txt
1996
%%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES/description.txt
1810
%%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES/plugin.lang.php
1997
%%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES/plugin.lang.php
1811
%%WWWDIR%%/plugins/c13y_upgrade/language/cs_CZ/description.txt
1998
%%WWWDIR%%/plugins/c13y_upgrade/language/cs_CZ/description.txt
Lines 1821-1826 Link Here
1821
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/description.txt
2008
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/description.txt
1822
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/index.php
2009
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/index.php
1823
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/plugin.lang.php
2010
%%WWWDIR%%/plugins/c13y_upgrade/language/en_UK/plugin.lang.php
2011
%%WWWDIR%%/plugins/c13y_upgrade/language/eo_EO/description.txt
2012
%%WWWDIR%%/plugins/c13y_upgrade/language/eo_EO/plugin.lang.php
1824
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/description.txt
2013
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/description.txt
1825
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/index.php
2014
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/index.php
1826
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/plugin.lang.php
2015
%%WWWDIR%%/plugins/c13y_upgrade/language/es_ES/plugin.lang.php
Lines 1858-1863 Link Here
1858
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/description.txt
2047
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/description.txt
1859
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/index.php
2048
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/index.php
1860
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/plugin.lang.php
2049
%%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE/plugin.lang.php
2050
%%WWWDIR%%/plugins/c13y_upgrade/language/kn_IN/description.txt
2051
%%WWWDIR%%/plugins/c13y_upgrade/language/kn_IN/plugin.lang.php
2052
%%WWWDIR%%/plugins/c13y_upgrade/language/ko_KR/plugin.lang.php
2053
%%WWWDIR%%/plugins/c13y_upgrade/language/lt_LT/description.txt
2054
%%WWWDIR%%/plugins/c13y_upgrade/language/lt_LT/plugin.lang.php
1861
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/description.txt
2055
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/description.txt
1862
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/index.php
2056
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/index.php
1863
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/plugin.lang.php
2057
%%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV/plugin.lang.php
Lines 1877-1882 Link Here
1877
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/description.txt
2071
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/description.txt
1878
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/index.php
2072
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/index.php
1879
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/plugin.lang.php
2073
%%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT/plugin.lang.php
2074
%%WWWDIR%%/plugins/c13y_upgrade/language/ro_RO/description.txt
2075
%%WWWDIR%%/plugins/c13y_upgrade/language/ro_RO/plugin.lang.php
1880
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/description.txt
2076
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/description.txt
1881
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/index.php
2077
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/index.php
1882
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/plugin.lang.php
2078
%%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU/plugin.lang.php
Lines 1891-1896 Link Here
1891
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/description.txt
2087
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/description.txt
1892
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/index.php
2088
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/index.php
1893
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/plugin.lang.php
2089
%%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE/plugin.lang.php
2090
%%WWWDIR%%/plugins/c13y_upgrade/language/ta_IN/description.txt
2091
%%WWWDIR%%/plugins/c13y_upgrade/language/ta_IN/plugin.lang.php
2092
%%WWWDIR%%/plugins/c13y_upgrade/language/th_TH/description.txt
2093
%%WWWDIR%%/plugins/c13y_upgrade/language/th_TH/plugin.lang.php
1894
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/description.txt
2094
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/description.txt
1895
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/index.php
2095
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/index.php
1896
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/plugin.lang.php
2096
%%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR/plugin.lang.php
Lines 1902-1907 Link Here
1902
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/description.txt
2102
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/description.txt
1903
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/index.php
2103
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/index.php
1904
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/plugin.lang.php
2104
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN/plugin.lang.php
2105
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_HK/description.txt
2106
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_HK/plugin.lang.php
1905
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/description.txt
2107
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/description.txt
1906
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/index.php
2108
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/index.php
1907
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/plugin.lang.php
2109
%%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW/plugin.lang.php
Lines 1917-1922 Link Here
1917
%%WWWDIR%%/plugins/language_switch/language/ar_SA/index.php
2119
%%WWWDIR%%/plugins/language_switch/language/ar_SA/index.php
1918
%%WWWDIR%%/plugins/language_switch/language/bg_BG/description.txt
2120
%%WWWDIR%%/plugins/language_switch/language/bg_BG/description.txt
1919
%%WWWDIR%%/plugins/language_switch/language/bg_BG/index.php
2121
%%WWWDIR%%/plugins/language_switch/language/bg_BG/index.php
2122
%%WWWDIR%%/plugins/language_switch/language/br_FR/description.txt
1920
%%WWWDIR%%/plugins/language_switch/language/ca_ES/description.txt
2123
%%WWWDIR%%/plugins/language_switch/language/ca_ES/description.txt
1921
%%WWWDIR%%/plugins/language_switch/language/cs_CZ/description.txt
2124
%%WWWDIR%%/plugins/language_switch/language/cs_CZ/description.txt
1922
%%WWWDIR%%/plugins/language_switch/language/cs_CZ/index.php
2125
%%WWWDIR%%/plugins/language_switch/language/cs_CZ/index.php
Lines 1926-1931 Link Here
1926
%%WWWDIR%%/plugins/language_switch/language/el_GR/description.txt
2129
%%WWWDIR%%/plugins/language_switch/language/el_GR/description.txt
1927
%%WWWDIR%%/plugins/language_switch/language/en_UK/description.txt
2130
%%WWWDIR%%/plugins/language_switch/language/en_UK/description.txt
1928
%%WWWDIR%%/plugins/language_switch/language/en_UK/index.php
2131
%%WWWDIR%%/plugins/language_switch/language/en_UK/index.php
2132
%%WWWDIR%%/plugins/language_switch/language/eo_EO/description.txt
1929
%%WWWDIR%%/plugins/language_switch/language/es_ES/description.txt
2133
%%WWWDIR%%/plugins/language_switch/language/es_ES/description.txt
1930
%%WWWDIR%%/plugins/language_switch/language/es_ES/index.php
2134
%%WWWDIR%%/plugins/language_switch/language/es_ES/index.php
1931
%%WWWDIR%%/plugins/language_switch/language/et_EE/description.txt
2135
%%WWWDIR%%/plugins/language_switch/language/et_EE/description.txt
Lines 1951-1959 Link Here
1951
%%WWWDIR%%/plugins/language_switch/language/ja_JP/index.php
2155
%%WWWDIR%%/plugins/language_switch/language/ja_JP/index.php
1952
%%WWWDIR%%/plugins/language_switch/language/ka_GE/description.txt
2156
%%WWWDIR%%/plugins/language_switch/language/ka_GE/description.txt
1953
%%WWWDIR%%/plugins/language_switch/language/ka_GE/index.php
2157
%%WWWDIR%%/plugins/language_switch/language/ka_GE/index.php
2158
%%WWWDIR%%/plugins/language_switch/language/kn_IN/description.txt
1954
%%WWWDIR%%/plugins/language_switch/language/lt_LT/description.txt
2159
%%WWWDIR%%/plugins/language_switch/language/lt_LT/description.txt
1955
%%WWWDIR%%/plugins/language_switch/language/lv_LV/description.txt
2160
%%WWWDIR%%/plugins/language_switch/language/lv_LV/description.txt
1956
%%WWWDIR%%/plugins/language_switch/language/lv_LV/index.php
2161
%%WWWDIR%%/plugins/language_switch/language/lv_LV/index.php
2162
%%WWWDIR%%/plugins/language_switch/language/mn_MN/description.txt
2163
%%WWWDIR%%/plugins/language_switch/language/mn_MN/index.php
1957
%%WWWDIR%%/plugins/language_switch/language/nb_NO/description.txt
2164
%%WWWDIR%%/plugins/language_switch/language/nb_NO/description.txt
1958
%%WWWDIR%%/plugins/language_switch/language/nb_NO/index.php
2165
%%WWWDIR%%/plugins/language_switch/language/nb_NO/index.php
1959
%%WWWDIR%%/plugins/language_switch/language/nl_NL/description.txt
2166
%%WWWDIR%%/plugins/language_switch/language/nl_NL/description.txt
Lines 1976-1981 Link Here
1976
%%WWWDIR%%/plugins/language_switch/language/sr_RS/index.php
2183
%%WWWDIR%%/plugins/language_switch/language/sr_RS/index.php
1977
%%WWWDIR%%/plugins/language_switch/language/sv_SE/description.txt
2184
%%WWWDIR%%/plugins/language_switch/language/sv_SE/description.txt
1978
%%WWWDIR%%/plugins/language_switch/language/sv_SE/index.php
2185
%%WWWDIR%%/plugins/language_switch/language/sv_SE/index.php
2186
%%WWWDIR%%/plugins/language_switch/language/ta_IN/description.txt
1979
%%WWWDIR%%/plugins/language_switch/language/th_TH/description.txt
2187
%%WWWDIR%%/plugins/language_switch/language/th_TH/description.txt
1980
%%WWWDIR%%/plugins/language_switch/language/th_TH/index.php
2188
%%WWWDIR%%/plugins/language_switch/language/th_TH/index.php
1981
%%WWWDIR%%/plugins/language_switch/language/tr_TR/description.txt
2189
%%WWWDIR%%/plugins/language_switch/language/tr_TR/description.txt
Lines 1985-1996 Link Here
1985
%%WWWDIR%%/plugins/language_switch/language/vi_VN/index.php
2193
%%WWWDIR%%/plugins/language_switch/language/vi_VN/index.php
1986
%%WWWDIR%%/plugins/language_switch/language/zh_CN/description.txt
2194
%%WWWDIR%%/plugins/language_switch/language/zh_CN/description.txt
1987
%%WWWDIR%%/plugins/language_switch/language/zh_CN/index.php
2195
%%WWWDIR%%/plugins/language_switch/language/zh_CN/index.php
2196
%%WWWDIR%%/plugins/language_switch/language/zh_HK/description.txt
1988
%%WWWDIR%%/plugins/language_switch/language/zh_TW/description.txt
2197
%%WWWDIR%%/plugins/language_switch/language/zh_TW/description.txt
1989
%%WWWDIR%%/plugins/language_switch/language/zh_TW/index.php
2198
%%WWWDIR%%/plugins/language_switch/language/zh_TW/index.php
1990
%%WWWDIR%%/plugins/language_switch/language_switch.css
2199
%%WWWDIR%%/plugins/language_switch/language_switch.css
1991
%%WWWDIR%%/plugins/language_switch/language_switch.inc.php
2200
%%WWWDIR%%/plugins/language_switch/language_switch.inc.php
1992
%%WWWDIR%%/plugins/language_switch/main.inc.php
2201
%%WWWDIR%%/plugins/language_switch/main.inc.php
1993
%%WWWDIR%%/plugins/language_switch/style.css
2202
%%WWWDIR%%/plugins/language_switch/style.css
2203
@mode
2204
@owner root
2205
@group wheel
1994
%%WWWDIR%%/popuphelp.php
2206
%%WWWDIR%%/popuphelp.php
1995
%%WWWDIR%%/profile.php
2207
%%WWWDIR%%/profile.php
1996
%%WWWDIR%%/qsearch.php
2208
%%WWWDIR%%/qsearch.php
Lines 2052-2071 Link Here
2052
%%WWWDIR%%/themes/Sylvia/images/transparent.gif
2264
%%WWWDIR%%/themes/Sylvia/images/transparent.gif
2053
%%WWWDIR%%/themes/Sylvia/index.php
2265
%%WWWDIR%%/themes/Sylvia/index.php
2054
%%WWWDIR%%/themes/Sylvia/local_head.tpl
2266
%%WWWDIR%%/themes/Sylvia/local_head.tpl
2055
%%WWWDIR%%/themes/Sylvia/mail-css.tpl
2056
%%WWWDIR%%/themes/Sylvia/screenshot.png
2267
%%WWWDIR%%/themes/Sylvia/screenshot.png
2057
%%WWWDIR%%/themes/Sylvia/theme-ie.css
2268
%%WWWDIR%%/themes/Sylvia/theme-ie.css
2058
%%WWWDIR%%/themes/Sylvia/theme.css
2269
%%WWWDIR%%/themes/Sylvia/theme.css
2059
%%WWWDIR%%/themes/Sylvia/themeconf.inc.php
2270
%%WWWDIR%%/themes/Sylvia/themeconf.inc.php
2060
%%WWWDIR%%/themes/clear/index.php
2271
%%WWWDIR%%/themes/clear/index.php
2061
%%WWWDIR%%/themes/clear/mail-css.tpl
2062
%%WWWDIR%%/themes/clear/screenshot.png
2272
%%WWWDIR%%/themes/clear/screenshot.png
2063
%%WWWDIR%%/themes/clear/theme.css
2273
%%WWWDIR%%/themes/clear/theme.css
2064
%%WWWDIR%%/themes/clear/themeconf.inc.php
2274
%%WWWDIR%%/themes/clear/themeconf.inc.php
2065
%%WWWDIR%%/themes/dark/images/index.php
2275
%%WWWDIR%%/themes/dark/images/index.php
2066
%%WWWDIR%%/themes/dark/images/tableh1_bg.png
2276
%%WWWDIR%%/themes/dark/images/tableh1_bg.png
2067
%%WWWDIR%%/themes/dark/index.php
2277
%%WWWDIR%%/themes/dark/index.php
2068
%%WWWDIR%%/themes/dark/mail-css.tpl
2069
%%WWWDIR%%/themes/dark/screenshot.png
2278
%%WWWDIR%%/themes/dark/screenshot.png
2070
%%WWWDIR%%/themes/dark/theme.css
2279
%%WWWDIR%%/themes/dark/theme.css
2071
%%WWWDIR%%/themes/dark/themeconf.inc.php
2280
%%WWWDIR%%/themes/dark/themeconf.inc.php
Lines 2103-2113 Link Here
2103
%%WWWDIR%%/themes/default/images/progressbg_yellow.gif
2312
%%WWWDIR%%/themes/default/images/progressbg_yellow.gif
2104
%%WWWDIR%%/themes/default/index.php
2313
%%WWWDIR%%/themes/default/index.php
2105
%%WWWDIR%%/themes/default/js/datepicker.js
2314
%%WWWDIR%%/themes/default/js/datepicker.js
2106
%%WWWDIR%%/themes/default/js/image.loader.js
2107
%%WWWDIR%%/themes/default/js/jquery.js
2315
%%WWWDIR%%/themes/default/js/jquery.js
2108
%%WWWDIR%%/themes/default/js/jquery.min.js
2316
%%WWWDIR%%/themes/default/js/jquery.min.js
2109
%%WWWDIR%%/themes/default/js/plugins/Jcrop.gif
2317
%%WWWDIR%%/themes/default/js/plugins/Jcrop.gif
2110
%%WWWDIR%%/themes/default/js/plugins/chosen-sprite.png
2318
%%WWWDIR%%/themes/default/js/plugins/chosen-sprite.png
2319
%%WWWDIR%%/themes/default/js/plugins/chosen-sprite@2x.png
2111
%%WWWDIR%%/themes/default/js/plugins/chosen.css
2320
%%WWWDIR%%/themes/default/js/plugins/chosen.css
2112
%%WWWDIR%%/themes/default/js/plugins/chosen.jquery.min.js
2321
%%WWWDIR%%/themes/default/js/plugins/chosen.jquery.min.js
2113
%%WWWDIR%%/themes/default/js/plugins/colorbox/style1/colorbox.css
2322
%%WWWDIR%%/themes/default/js/plugins/colorbox/style1/colorbox.css
Lines 2130-2135 Link Here
2130
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images/controls.png.old
2339
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images/controls.png.old
2131
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images/loading.gif
2340
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images/loading.gif
2132
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/index.html
2341
%%WWWDIR%%/themes/default/js/plugins/colorbox/style2/index.html
2342
%%WWWDIR%%/themes/default/js/plugins/datatables/css/demo_page.css
2343
%%WWWDIR%%/themes/default/js/plugins/datatables/css/demo_table.css
2344
%%WWWDIR%%/themes/default/js/plugins/datatables/css/demo_table_jui.css
2345
%%WWWDIR%%/themes/default/js/plugins/datatables/css/jquery.dataTables.css
2346
%%WWWDIR%%/themes/default/js/plugins/datatables/css/jquery.dataTables_themeroller.css
2347
%%WWWDIR%%/themes/default/js/plugins/datatables/images/Sorting icons.psd
2348
%%WWWDIR%%/themes/default/js/plugins/datatables/images/back_disabled.png
2349
%%WWWDIR%%/themes/default/js/plugins/datatables/images/back_enabled.png
2350
%%WWWDIR%%/themes/default/js/plugins/datatables/images/back_enabled_hover.png
2351
%%WWWDIR%%/themes/default/js/plugins/datatables/images/favicon.ico
2352
%%WWWDIR%%/themes/default/js/plugins/datatables/images/forward_disabled.png
2353
%%WWWDIR%%/themes/default/js/plugins/datatables/images/forward_enabled.png
2354
%%WWWDIR%%/themes/default/js/plugins/datatables/images/forward_enabled_hover.png
2355
%%WWWDIR%%/themes/default/js/plugins/datatables/images/sort_asc.png
2356
%%WWWDIR%%/themes/default/js/plugins/datatables/images/sort_asc_disabled.png
2357
%%WWWDIR%%/themes/default/js/plugins/datatables/images/sort_both.png
2358
%%WWWDIR%%/themes/default/js/plugins/datatables/images/sort_desc.png
2359
%%WWWDIR%%/themes/default/js/plugins/datatables/images/sort_desc_disabled.png
2360
%%WWWDIR%%/themes/default/js/plugins/jgrowl-alert.png
2361
%%WWWDIR%%/themes/default/js/plugins/jgrowl-check.png
2362
%%WWWDIR%%/themes/default/js/plugins/jgrowl-error.png
2133
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.css
2363
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.css
2134
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.js
2364
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.js
2135
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.min.js
2365
%%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.min.js
Lines 2137-2152 Link Here
2137
%%WWWDIR%%/themes/default/js/plugins/jquery.autogrow-textarea.js
2367
%%WWWDIR%%/themes/default/js/plugins/jquery.autogrow-textarea.js
2138
%%WWWDIR%%/themes/default/js/plugins/jquery.cluetip.js
2368
%%WWWDIR%%/themes/default/js/plugins/jquery.cluetip.js
2139
%%WWWDIR%%/themes/default/js/plugins/jquery.colorbox.min.js
2369
%%WWWDIR%%/themes/default/js/plugins/jquery.colorbox.min.js
2370
%%WWWDIR%%/themes/default/js/plugins/jquery.dataTables.js
2371
%%WWWDIR%%/themes/default/js/plugins/jquery.jgrowl.css
2140
%%WWWDIR%%/themes/default/js/plugins/jquery.jgrowl_minimized.js
2372
%%WWWDIR%%/themes/default/js/plugins/jquery.jgrowl_minimized.js
2141
%%WWWDIR%%/themes/default/js/plugins/jquery.progressbar.js
2373
%%WWWDIR%%/themes/default/js/plugins/jquery.progressbar.js
2142
%%WWWDIR%%/themes/default/js/plugins/jquery.progressbar.min.js
2374
%%WWWDIR%%/themes/default/js/plugins/jquery.progressbar.min.js
2143
%%WWWDIR%%/themes/default/js/plugins/jquery.sort.js
2375
%%WWWDIR%%/themes/default/js/plugins/jquery.sort.js
2144
%%WWWDIR%%/themes/default/js/plugins/jquery.tipTip.minified.js
2376
%%WWWDIR%%/themes/default/js/plugins/jquery.tipTip.minified.js
2377
%%WWWDIR%%/themes/default/js/plugins/jquery.tokeninput.css
2145
%%WWWDIR%%/themes/default/js/plugins/jquery.tokeninput.js
2378
%%WWWDIR%%/themes/default/js/plugins/jquery.tokeninput.js
2379
%%WWWDIR%%/themes/default/js/plugins/underscore.js
2146
%%WWWDIR%%/themes/default/js/pngfix.js
2380
%%WWWDIR%%/themes/default/js/pngfix.js
2147
%%WWWDIR%%/themes/default/js/raphael.js
2148
%%WWWDIR%%/themes/default/js/rating.js
2381
%%WWWDIR%%/themes/default/js/rating.js
2149
%%WWWDIR%%/themes/default/js/scripts.js
2382
%%WWWDIR%%/themes/default/js/scripts.js
2383
%%WWWDIR%%/themes/default/js/switchbox.js
2150
%%WWWDIR%%/themes/default/js/thumbnails.loader.js
2384
%%WWWDIR%%/themes/default/js/thumbnails.loader.js
2151
%%WWWDIR%%/themes/default/js/ui/i18n/jquery-ui-i18n.js
2385
%%WWWDIR%%/themes/default/js/ui/i18n/jquery-ui-i18n.js
2152
%%WWWDIR%%/themes/default/js/ui/i18n/jquery.ui.datepicker-af.js
2386
%%WWWDIR%%/themes/default/js/ui/i18n/jquery.ui.datepicker-af.js
Lines 2338-2354 Link Here
2338
%%WWWDIR%%/themes/default/template/index.tpl
2572
%%WWWDIR%%/themes/default/template/index.tpl
2339
%%WWWDIR%%/themes/default/template/infos_errors.tpl
2573
%%WWWDIR%%/themes/default/template/infos_errors.tpl
2340
%%WWWDIR%%/themes/default/template/mail/index.php
2574
%%WWWDIR%%/themes/default/template/mail/index.php
2575
%%WWWDIR%%/themes/default/template/mail/screenshot-clear.png
2576
%%WWWDIR%%/themes/default/template/mail/screenshot-dark.png
2341
%%WWWDIR%%/themes/default/template/mail/text/html/cat_group_info.tpl
2577
%%WWWDIR%%/themes/default/template/mail/text/html/cat_group_info.tpl
2342
%%WWWDIR%%/themes/default/template/mail/text/html/footer.tpl
2578
%%WWWDIR%%/themes/default/template/mail/text/html/footer.tpl
2343
%%WWWDIR%%/themes/default/template/mail/text/html/global-mail-css.tpl
2579
%%WWWDIR%%/themes/default/template/mail/text/html/global-mail-css.tpl
2344
%%WWWDIR%%/themes/default/template/mail/text/html/header.tpl
2580
%%WWWDIR%%/themes/default/template/mail/text/html/header.tpl
2345
%%WWWDIR%%/themes/default/template/mail/text/html/index.php
2581
%%WWWDIR%%/themes/default/template/mail/text/html/index.php
2582
%%WWWDIR%%/themes/default/template/mail/text/html/mail-css-clear.tpl
2583
%%WWWDIR%%/themes/default/template/mail/text/html/mail-css-dark.tpl
2584
%%WWWDIR%%/themes/default/template/mail/text/html/notification_admin.tpl
2346
%%WWWDIR%%/themes/default/template/mail/text/html/notification_by_mail.tpl
2585
%%WWWDIR%%/themes/default/template/mail/text/html/notification_by_mail.tpl
2347
%%WWWDIR%%/themes/default/template/mail/text/index.php
2586
%%WWWDIR%%/themes/default/template/mail/text/index.php
2348
%%WWWDIR%%/themes/default/template/mail/text/plain/cat_group_info.tpl
2587
%%WWWDIR%%/themes/default/template/mail/text/plain/cat_group_info.tpl
2349
%%WWWDIR%%/themes/default/template/mail/text/plain/footer.tpl
2588
%%WWWDIR%%/themes/default/template/mail/text/plain/footer.tpl
2350
%%WWWDIR%%/themes/default/template/mail/text/plain/header.tpl
2589
%%WWWDIR%%/themes/default/template/mail/text/plain/header.tpl
2351
%%WWWDIR%%/themes/default/template/mail/text/plain/index.php
2590
%%WWWDIR%%/themes/default/template/mail/text/plain/index.php
2591
%%WWWDIR%%/themes/default/template/mail/text/plain/notification_admin.tpl
2352
%%WWWDIR%%/themes/default/template/mail/text/plain/notification_by_mail.tpl
2592
%%WWWDIR%%/themes/default/template/mail/text/plain/notification_by_mail.tpl
2353
%%WWWDIR%%/themes/default/template/mainpage_categories.tpl
2593
%%WWWDIR%%/themes/default/template/mainpage_categories.tpl
2354
%%WWWDIR%%/themes/default/template/menubar.tpl
2594
%%WWWDIR%%/themes/default/template/menubar.tpl
Lines 2382-2387 Link Here
2382
%%WWWDIR%%/themes/default/watermarks/Owned_Stamp.png
2622
%%WWWDIR%%/themes/default/watermarks/Owned_Stamp.png
2383
%%WWWDIR%%/themes/default/watermarks/Sample.png
2623
%%WWWDIR%%/themes/default/watermarks/Sample.png
2384
%%WWWDIR%%/themes/default/watermarks/copyright.png
2624
%%WWWDIR%%/themes/default/watermarks/copyright.png
2625
%%WWWDIR%%/themes/elegant/admin/admin.inc.php
2626
%%WWWDIR%%/themes/elegant/admin/admin.tpl
2627
%%WWWDIR%%/themes/elegant/admin/index.php
2628
%%WWWDIR%%/themes/elegant/admin/jquery.ui.button.css
2629
%%WWWDIR%%/themes/elegant/admin/upgrade.inc.php
2385
%%WWWDIR%%/themes/elegant/fix-ie7.css
2630
%%WWWDIR%%/themes/elegant/fix-ie7.css
2386
%%WWWDIR%%/themes/elegant/icon/arrows_ccc.png
2631
%%WWWDIR%%/themes/elegant/icon/arrows_ccc.png
2387
%%WWWDIR%%/themes/elegant/icon/arrows_fff.png
2632
%%WWWDIR%%/themes/elegant/icon/arrows_fff.png
Lines 2393-2406 Link Here
2393
%%WWWDIR%%/themes/elegant/icon/none.png
2638
%%WWWDIR%%/themes/elegant/icon/none.png
2394
%%WWWDIR%%/themes/elegant/icon/rating-stars.png
2639
%%WWWDIR%%/themes/elegant/icon/rating-stars.png
2395
%%WWWDIR%%/themes/elegant/index.php
2640
%%WWWDIR%%/themes/elegant/index.php
2641
%%WWWDIR%%/themes/elegant/language/ar_SA/theme.lang.php
2642
%%WWWDIR%%/themes/elegant/language/bg_BG/theme.lang.php
2643
%%WWWDIR%%/themes/elegant/language/br_FR/theme.lang.php
2644
%%WWWDIR%%/themes/elegant/language/ca_ES/theme.lang.php
2645
%%WWWDIR%%/themes/elegant/language/cs_CZ/index.php
2646
%%WWWDIR%%/themes/elegant/language/cs_CZ/theme.lang.php
2647
%%WWWDIR%%/themes/elegant/language/da_DK/theme.lang.php
2648
%%WWWDIR%%/themes/elegant/language/de_DE/theme.lang.php
2649
%%WWWDIR%%/themes/elegant/language/el_GR/theme.lang.php
2650
%%WWWDIR%%/themes/elegant/language/en_UK/index.php
2651
%%WWWDIR%%/themes/elegant/language/en_UK/theme.lang.php
2652
%%WWWDIR%%/themes/elegant/language/eo_EO/theme.lang.php
2653
%%WWWDIR%%/themes/elegant/language/es_ES/theme.lang.php
2654
%%WWWDIR%%/themes/elegant/language/et_EE/theme.lang.php
2655
%%WWWDIR%%/themes/elegant/language/fa_IR/theme.lang.php
2656
%%WWWDIR%%/themes/elegant/language/fi_FI/theme.lang.php
2657
%%WWWDIR%%/themes/elegant/language/fr_CA/index.php
2658
%%WWWDIR%%/themes/elegant/language/fr_CA/theme.lang.php
2659
%%WWWDIR%%/themes/elegant/language/fr_FR/index.php
2660
%%WWWDIR%%/themes/elegant/language/fr_FR/theme.lang.php
2661
%%WWWDIR%%/themes/elegant/language/hu_HU/theme.lang.php
2662
%%WWWDIR%%/themes/elegant/language/index.php
2663
%%WWWDIR%%/themes/elegant/language/it_IT/theme.lang.php
2664
%%WWWDIR%%/themes/elegant/language/ja_JP/index.php
2665
%%WWWDIR%%/themes/elegant/language/ja_JP/theme.lang.php
2666
%%WWWDIR%%/themes/elegant/language/kn_IN/theme.lang.php
2667
%%WWWDIR%%/themes/elegant/language/ko_KR/theme.lang.php
2668
%%WWWDIR%%/themes/elegant/language/lt_LT/theme.lang.php
2669
%%WWWDIR%%/themes/elegant/language/lv_LV/theme.lang.php
2670
%%WWWDIR%%/themes/elegant/language/mn_MN/index.php
2671
%%WWWDIR%%/themes/elegant/language/mn_MN/theme.lang.php
2672
%%WWWDIR%%/themes/elegant/language/nb_NO/theme.lang.php
2673
%%WWWDIR%%/themes/elegant/language/nl_NL/theme.lang.php
2674
%%WWWDIR%%/themes/elegant/language/nn_NO/theme.lang.php
2675
%%WWWDIR%%/themes/elegant/language/pl_PL/theme.lang.php
2676
%%WWWDIR%%/themes/elegant/language/pt_BR/theme.lang.php
2677
%%WWWDIR%%/themes/elegant/language/pt_PT/theme.lang.php
2678
%%WWWDIR%%/themes/elegant/language/ro_RO/theme.lang.php
2679
%%WWWDIR%%/themes/elegant/language/ru_RU/theme.lang.php
2680
%%WWWDIR%%/themes/elegant/language/sk_SK/theme.lang.php
2681
%%WWWDIR%%/themes/elegant/language/sl_SI/theme.lang.php
2682
%%WWWDIR%%/themes/elegant/language/sv_SE/theme.lang.php
2683
%%WWWDIR%%/themes/elegant/language/ta_IN/theme.lang.php
2684
%%WWWDIR%%/themes/elegant/language/th_TH/theme.lang.php
2685
%%WWWDIR%%/themes/elegant/language/tr_TR/theme.lang.php
2686
%%WWWDIR%%/themes/elegant/language/uk_UA/theme.lang.php
2687
%%WWWDIR%%/themes/elegant/language/vi_VN/theme.lang.php
2688
%%WWWDIR%%/themes/elegant/language/zh_CN/theme.lang.php
2689
%%WWWDIR%%/themes/elegant/language/zh_HK/theme.lang.php
2690
%%WWWDIR%%/themes/elegant/language/zh_TW/theme.lang.php
2396
%%WWWDIR%%/themes/elegant/local_head.tpl
2691
%%WWWDIR%%/themes/elegant/local_head.tpl
2397
%%WWWDIR%%/themes/elegant/mail-css.tpl
2398
%%WWWDIR%%/themes/elegant/screenshot.png
2692
%%WWWDIR%%/themes/elegant/screenshot.png
2399
%%WWWDIR%%/themes/elegant/scripts.js
2693
%%WWWDIR%%/themes/elegant/scripts.js
2400
%%WWWDIR%%/themes/elegant/scripts_pp.js
2694
%%WWWDIR%%/themes/elegant/scripts_pp.js
2401
%%WWWDIR%%/themes/elegant/theme.css
2695
%%WWWDIR%%/themes/elegant/theme.css
2402
%%WWWDIR%%/themes/elegant/themeconf.inc.php
2696
%%WWWDIR%%/themes/elegant/themeconf.inc.php
2403
%%WWWDIR%%/themes/index.php
2697
%%WWWDIR%%/themes/index.php
2698
%%WWWDIR%%/themes/smartpocket/admin/admin.inc.php
2699
%%WWWDIR%%/themes/smartpocket/admin/admin.tpl
2700
%%WWWDIR%%/themes/smartpocket/admin/index.php
2701
%%WWWDIR%%/themes/smartpocket/admin/maintain.inc.php
2702
%%WWWDIR%%/themes/smartpocket/admin/upgrade.inc.php
2703
%%WWWDIR%%/themes/smartpocket/images/ajax-loader.gif
2404
%%WWWDIR%%/themes/smartpocket/images/ajax-loader.png
2704
%%WWWDIR%%/themes/smartpocket/images/ajax-loader.png
2405
%%WWWDIR%%/themes/smartpocket/images/error.gif
2705
%%WWWDIR%%/themes/smartpocket/images/error.gif
2406
%%WWWDIR%%/themes/smartpocket/images/icons-18-black.png
2706
%%WWWDIR%%/themes/smartpocket/images/icons-18-black.png
Lines 2418-2425 Link Here
2418
%%WWWDIR%%/themes/smartpocket/js/jquery.mobile.min.js
2718
%%WWWDIR%%/themes/smartpocket/js/jquery.mobile.min.js
2419
%%WWWDIR%%/themes/smartpocket/js/klass.min.js
2719
%%WWWDIR%%/themes/smartpocket/js/klass.min.js
2420
%%WWWDIR%%/themes/smartpocket/js/smartpocket.js
2720
%%WWWDIR%%/themes/smartpocket/js/smartpocket.js
2721
%%WWWDIR%%/themes/smartpocket/js/thumb.arrange.js
2722
%%WWWDIR%%/themes/smartpocket/language/bg_BG/index.php
2723
%%WWWDIR%%/themes/smartpocket/language/bg_BG/theme.lang.php
2724
%%WWWDIR%%/themes/smartpocket/language/cs_CZ/index.php
2725
%%WWWDIR%%/themes/smartpocket/language/cs_CZ/theme.lang.php
2726
%%WWWDIR%%/themes/smartpocket/language/da_DK/index.php
2727
%%WWWDIR%%/themes/smartpocket/language/da_DK/theme.lang.php
2728
%%WWWDIR%%/themes/smartpocket/language/de_DE/index.php
2729
%%WWWDIR%%/themes/smartpocket/language/de_DE/theme.lang.php
2730
%%WWWDIR%%/themes/smartpocket/language/el_GR/index.php
2731
%%WWWDIR%%/themes/smartpocket/language/el_GR/theme.lang.php
2732
%%WWWDIR%%/themes/smartpocket/language/en_UK/index.php
2733
%%WWWDIR%%/themes/smartpocket/language/en_UK/theme.lang.php
2734
%%WWWDIR%%/themes/smartpocket/language/eo_EO/index.php
2735
%%WWWDIR%%/themes/smartpocket/language/eo_EO/theme.lang.php
2736
%%WWWDIR%%/themes/smartpocket/language/es_ES/index.php
2737
%%WWWDIR%%/themes/smartpocket/language/es_ES/theme.lang.php
2738
%%WWWDIR%%/themes/smartpocket/language/et_EE/index.php
2739
%%WWWDIR%%/themes/smartpocket/language/et_EE/theme.lang.php
2740
%%WWWDIR%%/themes/smartpocket/language/fa_IR/index.php
2741
%%WWWDIR%%/themes/smartpocket/language/fa_IR/theme.lang.php
2742
%%WWWDIR%%/themes/smartpocket/language/fi_FI/index.php
2743
%%WWWDIR%%/themes/smartpocket/language/fi_FI/theme.lang.php
2744
%%WWWDIR%%/themes/smartpocket/language/fr_CA/index.php
2745
%%WWWDIR%%/themes/smartpocket/language/fr_CA/theme.lang.php
2746
%%WWWDIR%%/themes/smartpocket/language/fr_FR/index.php
2747
%%WWWDIR%%/themes/smartpocket/language/fr_FR/theme.lang.php
2748
%%WWWDIR%%/themes/smartpocket/language/it_IT/index.php
2749
%%WWWDIR%%/themes/smartpocket/language/it_IT/theme.lang.php
2750
%%WWWDIR%%/themes/smartpocket/language/lt_LT/index.php
2751
%%WWWDIR%%/themes/smartpocket/language/lt_LT/theme.lang.php
2752
%%WWWDIR%%/themes/smartpocket/language/lv_LV/index.php
2753
%%WWWDIR%%/themes/smartpocket/language/lv_LV/theme.lang.php
2754
%%WWWDIR%%/themes/smartpocket/language/mn_MN/index.php
2755
%%WWWDIR%%/themes/smartpocket/language/mn_MN/theme.lang.php
2756
%%WWWDIR%%/themes/smartpocket/language/nb_NO/index.php
2757
%%WWWDIR%%/themes/smartpocket/language/nb_NO/theme.lang.php
2758
%%WWWDIR%%/themes/smartpocket/language/nl_NL/index.php
2759
%%WWWDIR%%/themes/smartpocket/language/nl_NL/theme.lang.php
2760
%%WWWDIR%%/themes/smartpocket/language/pl_PL/index.php
2761
%%WWWDIR%%/themes/smartpocket/language/pl_PL/theme.lang.php
2762
%%WWWDIR%%/themes/smartpocket/language/pt_BR/index.php
2763
%%WWWDIR%%/themes/smartpocket/language/pt_BR/theme.lang.php
2764
%%WWWDIR%%/themes/smartpocket/language/pt_PT/index.php
2765
%%WWWDIR%%/themes/smartpocket/language/pt_PT/theme.lang.php
2766
%%WWWDIR%%/themes/smartpocket/language/ru_RU/index.php
2767
%%WWWDIR%%/themes/smartpocket/language/ru_RU/theme.lang.php
2768
%%WWWDIR%%/themes/smartpocket/language/sk_SK/index.php
2769
%%WWWDIR%%/themes/smartpocket/language/sk_SK/theme.lang.php
2770
%%WWWDIR%%/themes/smartpocket/language/ta_IN/index.php
2771
%%WWWDIR%%/themes/smartpocket/language/ta_IN/theme.lang.php
2772
%%WWWDIR%%/themes/smartpocket/language/tr_TR/index.php
2773
%%WWWDIR%%/themes/smartpocket/language/tr_TR/theme.lang.php
2774
%%WWWDIR%%/themes/smartpocket/language/uk_UA/index.php
2775
%%WWWDIR%%/themes/smartpocket/language/uk_UA/theme.lang.php
2776
%%WWWDIR%%/themes/smartpocket/language/vi_VN/index.php
2777
%%WWWDIR%%/themes/smartpocket/language/vi_VN/theme.lang.php
2778
%%WWWDIR%%/themes/smartpocket/language/zh_CN/index.php
2779
%%WWWDIR%%/themes/smartpocket/language/zh_CN/theme.lang.php
2780
%%WWWDIR%%/themes/smartpocket/language/zh_HK/index.php
2781
%%WWWDIR%%/themes/smartpocket/language/zh_HK/theme.lang.php
2421
%%WWWDIR%%/themes/smartpocket/photoswipe.css
2782
%%WWWDIR%%/themes/smartpocket/photoswipe.css
2422
%%WWWDIR%%/themes/smartpocket/screenshot.png
2783
%%WWWDIR%%/themes/smartpocket/screenshot.png
2784
%%WWWDIR%%/themes/smartpocket/template/about.tpl
2785
%%WWWDIR%%/themes/smartpocket/template/add_menu_on_public_pages.tpl
2786
%%WWWDIR%%/themes/smartpocket/template/comment_list.tpl
2787
%%WWWDIR%%/themes/smartpocket/template/comments.tpl
2423
%%WWWDIR%%/themes/smartpocket/template/footer.tpl
2788
%%WWWDIR%%/themes/smartpocket/template/footer.tpl
2424
%%WWWDIR%%/themes/smartpocket/template/header.tpl
2789
%%WWWDIR%%/themes/smartpocket/template/header.tpl
2425
%%WWWDIR%%/themes/smartpocket/template/identification.tpl
2790
%%WWWDIR%%/themes/smartpocket/template/identification.tpl
Lines 2427-2452 Link Here
2427
%%WWWDIR%%/themes/smartpocket/template/infos_errors.tpl
2792
%%WWWDIR%%/themes/smartpocket/template/infos_errors.tpl
2428
%%WWWDIR%%/themes/smartpocket/template/mainpage_categories.tpl
2793
%%WWWDIR%%/themes/smartpocket/template/mainpage_categories.tpl
2429
%%WWWDIR%%/themes/smartpocket/template/menubar.tpl
2794
%%WWWDIR%%/themes/smartpocket/template/menubar.tpl
2795
%%WWWDIR%%/themes/smartpocket/template/menubar_categories.tpl
2796
%%WWWDIR%%/themes/smartpocket/template/menubar_identification.tpl
2797
%%WWWDIR%%/themes/smartpocket/template/menubar_links.tpl
2798
%%WWWDIR%%/themes/smartpocket/template/menubar_menu.tpl
2799
%%WWWDIR%%/themes/smartpocket/template/menubar_specials.tpl
2800
%%WWWDIR%%/themes/smartpocket/template/menubar_tags.tpl
2430
%%WWWDIR%%/themes/smartpocket/template/navigation_bar.tpl
2801
%%WWWDIR%%/themes/smartpocket/template/navigation_bar.tpl
2802
%%WWWDIR%%/themes/smartpocket/template/notification.tpl
2803
%%WWWDIR%%/themes/smartpocket/template/picture.tpl
2804
%%WWWDIR%%/themes/smartpocket/template/picture_content.tpl
2805
%%WWWDIR%%/themes/smartpocket/template/picture_nav_buttons.tpl
2431
%%WWWDIR%%/themes/smartpocket/template/profile.tpl
2806
%%WWWDIR%%/themes/smartpocket/template/profile.tpl
2432
%%WWWDIR%%/themes/smartpocket/template/profile_content.tpl
2807
%%WWWDIR%%/themes/smartpocket/template/profile_content.tpl
2433
%%WWWDIR%%/themes/smartpocket/template/redirect.tpl
2808
%%WWWDIR%%/themes/smartpocket/template/redirect.tpl
2434
%%WWWDIR%%/themes/smartpocket/template/register.tpl
2809
%%WWWDIR%%/themes/smartpocket/template/register.tpl
2810
%%WWWDIR%%/themes/smartpocket/template/search.tpl
2811
%%WWWDIR%%/themes/smartpocket/template/tags.tpl
2435
%%WWWDIR%%/themes/smartpocket/template/thumbnails.tpl
2812
%%WWWDIR%%/themes/smartpocket/template/thumbnails.tpl
2436
%%WWWDIR%%/themes/smartpocket/theme.css
2813
%%WWWDIR%%/themes/smartpocket/theme.css
2437
%%WWWDIR%%/themes/smartpocket/themeconf.inc.php
2814
%%WWWDIR%%/themes/smartpocket/themeconf.inc.php
2438
%%WWWDIR%%/upgrade.php
2815
%%WWWDIR%%/upgrade.php
2439
%%WWWDIR%%/upgrade_feed.php
2816
%%WWWDIR%%/upgrade_feed.php
2440
@exec mkdir -m 0750 -p %D/upload
2441
@exec %%CHOWN%% %%WWWOWN%%:%%WWWGRP%% %D/upload
2442
%%WWWDIR%%/upload/.keepme
2443
%%WWWDIR%%/ws.php
2817
%%WWWDIR%%/ws.php
2818
@mode 750
2819
@owner %%WWWOWN%%
2820
@group %%WWWGRP%%
2821
@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% -m 750 %D/%%WWWDIR%%/upload
2444
@dirrmtry %%WWWDIR%%/upload
2822
@dirrmtry %%WWWDIR%%/upload
2823
@mode
2824
@owner root
2825
@group wheel
2445
@dirrm %%WWWDIR%%/themes/smartpocket/template
2826
@dirrm %%WWWDIR%%/themes/smartpocket/template
2827
@dirrm %%WWWDIR%%/themes/smartpocket/language/zh_HK
2828
@dirrm %%WWWDIR%%/themes/smartpocket/language/zh_CN
2829
@dirrm %%WWWDIR%%/themes/smartpocket/language/vi_VN
2830
@dirrm %%WWWDIR%%/themes/smartpocket/language/uk_UA
2831
@dirrm %%WWWDIR%%/themes/smartpocket/language/tr_TR
2832
@dirrm %%WWWDIR%%/themes/smartpocket/language/ta_IN
2833
@dirrm %%WWWDIR%%/themes/smartpocket/language/sk_SK
2834
@dirrm %%WWWDIR%%/themes/smartpocket/language/ru_RU
2835
@dirrm %%WWWDIR%%/themes/smartpocket/language/pt_PT
2836
@dirrm %%WWWDIR%%/themes/smartpocket/language/pt_BR
2837
@dirrm %%WWWDIR%%/themes/smartpocket/language/pl_PL
2838
@dirrm %%WWWDIR%%/themes/smartpocket/language/nl_NL
2839
@dirrm %%WWWDIR%%/themes/smartpocket/language/nb_NO
2840
@dirrm %%WWWDIR%%/themes/smartpocket/language/mn_MN
2841
@dirrm %%WWWDIR%%/themes/smartpocket/language/lv_LV
2842
@dirrm %%WWWDIR%%/themes/smartpocket/language/lt_LT
2843
@dirrm %%WWWDIR%%/themes/smartpocket/language/it_IT
2844
@dirrm %%WWWDIR%%/themes/smartpocket/language/fr_FR
2845
@dirrm %%WWWDIR%%/themes/smartpocket/language/fr_CA
2846
@dirrm %%WWWDIR%%/themes/smartpocket/language/fi_FI
2847
@dirrm %%WWWDIR%%/themes/smartpocket/language/fa_IR
2848
@dirrm %%WWWDIR%%/themes/smartpocket/language/et_EE
2849
@dirrm %%WWWDIR%%/themes/smartpocket/language/es_ES
2850
@dirrm %%WWWDIR%%/themes/smartpocket/language/eo_EO
2851
@dirrm %%WWWDIR%%/themes/smartpocket/language/en_UK
2852
@dirrm %%WWWDIR%%/themes/smartpocket/language/el_GR
2853
@dirrm %%WWWDIR%%/themes/smartpocket/language/de_DE
2854
@dirrm %%WWWDIR%%/themes/smartpocket/language/da_DK
2855
@dirrm %%WWWDIR%%/themes/smartpocket/language/cs_CZ
2856
@dirrm %%WWWDIR%%/themes/smartpocket/language/bg_BG
2857
@dirrm %%WWWDIR%%/themes/smartpocket/language
2446
@dirrm %%WWWDIR%%/themes/smartpocket/js
2858
@dirrm %%WWWDIR%%/themes/smartpocket/js
2447
@dirrm %%WWWDIR%%/themes/smartpocket/images
2859
@dirrm %%WWWDIR%%/themes/smartpocket/images
2860
@dirrm %%WWWDIR%%/themes/smartpocket/admin
2448
@dirrm %%WWWDIR%%/themes/smartpocket
2861
@dirrm %%WWWDIR%%/themes/smartpocket
2862
@dirrm %%WWWDIR%%/themes/elegant/language/zh_TW
2863
@dirrm %%WWWDIR%%/themes/elegant/language/zh_HK
2864
@dirrm %%WWWDIR%%/themes/elegant/language/zh_CN
2865
@dirrm %%WWWDIR%%/themes/elegant/language/vi_VN
2866
@dirrm %%WWWDIR%%/themes/elegant/language/uk_UA
2867
@dirrm %%WWWDIR%%/themes/elegant/language/tr_TR
2868
@dirrm %%WWWDIR%%/themes/elegant/language/th_TH
2869
@dirrm %%WWWDIR%%/themes/elegant/language/ta_IN
2870
@dirrm %%WWWDIR%%/themes/elegant/language/sv_SE
2871
@dirrm %%WWWDIR%%/themes/elegant/language/sl_SI
2872
@dirrm %%WWWDIR%%/themes/elegant/language/sk_SK
2873
@dirrm %%WWWDIR%%/themes/elegant/language/ru_RU
2874
@dirrm %%WWWDIR%%/themes/elegant/language/ro_RO
2875
@dirrm %%WWWDIR%%/themes/elegant/language/pt_PT
2876
@dirrm %%WWWDIR%%/themes/elegant/language/pt_BR
2877
@dirrm %%WWWDIR%%/themes/elegant/language/pl_PL
2878
@dirrm %%WWWDIR%%/themes/elegant/language/nn_NO
2879
@dirrm %%WWWDIR%%/themes/elegant/language/nl_NL
2880
@dirrm %%WWWDIR%%/themes/elegant/language/nb_NO
2881
@dirrm %%WWWDIR%%/themes/elegant/language/mn_MN
2882
@dirrm %%WWWDIR%%/themes/elegant/language/lv_LV
2883
@dirrm %%WWWDIR%%/themes/elegant/language/lt_LT
2884
@dirrm %%WWWDIR%%/themes/elegant/language/ko_KR
2885
@dirrm %%WWWDIR%%/themes/elegant/language/kn_IN
2886
@dirrm %%WWWDIR%%/themes/elegant/language/ja_JP
2887
@dirrm %%WWWDIR%%/themes/elegant/language/it_IT
2888
@dirrm %%WWWDIR%%/themes/elegant/language/hu_HU
2889
@dirrm %%WWWDIR%%/themes/elegant/language/fr_FR
2890
@dirrm %%WWWDIR%%/themes/elegant/language/fr_CA
2891
@dirrm %%WWWDIR%%/themes/elegant/language/fi_FI
2892
@dirrm %%WWWDIR%%/themes/elegant/language/fa_IR
2893
@dirrm %%WWWDIR%%/themes/elegant/language/et_EE
2894
@dirrm %%WWWDIR%%/themes/elegant/language/es_ES
2895
@dirrm %%WWWDIR%%/themes/elegant/language/eo_EO
2896
@dirrm %%WWWDIR%%/themes/elegant/language/en_UK
2897
@dirrm %%WWWDIR%%/themes/elegant/language/el_GR
2898
@dirrm %%WWWDIR%%/themes/elegant/language/de_DE
2899
@dirrm %%WWWDIR%%/themes/elegant/language/da_DK
2900
@dirrm %%WWWDIR%%/themes/elegant/language/cs_CZ
2901
@dirrm %%WWWDIR%%/themes/elegant/language/ca_ES
2902
@dirrm %%WWWDIR%%/themes/elegant/language/br_FR
2903
@dirrm %%WWWDIR%%/themes/elegant/language/bg_BG
2904
@dirrm %%WWWDIR%%/themes/elegant/language/ar_SA
2905
@dirrm %%WWWDIR%%/themes/elegant/language
2449
@dirrm %%WWWDIR%%/themes/elegant/icon
2906
@dirrm %%WWWDIR%%/themes/elegant/icon
2907
@dirrm %%WWWDIR%%/themes/elegant/admin
2450
@dirrm %%WWWDIR%%/themes/elegant
2908
@dirrm %%WWWDIR%%/themes/elegant
2451
@dirrm %%WWWDIR%%/themes/default/watermarks
2909
@dirrm %%WWWDIR%%/themes/default/watermarks
2452
@dirrm %%WWWDIR%%/themes/default/template/mail/text/plain
2910
@dirrm %%WWWDIR%%/themes/default/template/mail/text/plain
Lines 2461-2466 Link Here
2461
@dirrm %%WWWDIR%%/themes/default/js/ui/minified
2919
@dirrm %%WWWDIR%%/themes/default/js/ui/minified
2462
@dirrm %%WWWDIR%%/themes/default/js/ui/i18n
2920
@dirrm %%WWWDIR%%/themes/default/js/ui/i18n
2463
@dirrm %%WWWDIR%%/themes/default/js/ui
2921
@dirrm %%WWWDIR%%/themes/default/js/ui
2922
@dirrm %%WWWDIR%%/themes/default/js/plugins/datatables/images
2923
@dirrm %%WWWDIR%%/themes/default/js/plugins/datatables/css
2924
@dirrm %%WWWDIR%%/themes/default/js/plugins/datatables
2464
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images
2925
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style2/images
2465
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style2
2926
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style2
2466
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style1/images/ie6
2927
@dirrm %%WWWDIR%%/themes/default/js/plugins/colorbox/style1/images/ie6
Lines 2486-2497 Link Here
2486
@dirrm %%WWWDIR%%/template-extension/distributed/samples
2947
@dirrm %%WWWDIR%%/template-extension/distributed/samples
2487
@dirrm %%WWWDIR%%/template-extension/distributed
2948
@dirrm %%WWWDIR%%/template-extension/distributed
2488
@dirrmtry %%WWWDIR%%/template-extension
2949
@dirrmtry %%WWWDIR%%/template-extension
2950
@owner %%WWWOWN%%
2951
@group %%WWWGRP%%
2489
@dirrm %%WWWDIR%%/plugins/language_switch/language/zh_TW
2952
@dirrm %%WWWDIR%%/plugins/language_switch/language/zh_TW
2953
@dirrm %%WWWDIR%%/plugins/language_switch/language/zh_HK
2490
@dirrm %%WWWDIR%%/plugins/language_switch/language/zh_CN
2954
@dirrm %%WWWDIR%%/plugins/language_switch/language/zh_CN
2491
@dirrm %%WWWDIR%%/plugins/language_switch/language/vi_VN
2955
@dirrm %%WWWDIR%%/plugins/language_switch/language/vi_VN
2492
@dirrm %%WWWDIR%%/plugins/language_switch/language/uk_UA
2956
@dirrm %%WWWDIR%%/plugins/language_switch/language/uk_UA
2493
@dirrm %%WWWDIR%%/plugins/language_switch/language/tr_TR
2957
@dirrm %%WWWDIR%%/plugins/language_switch/language/tr_TR
2494
@dirrm %%WWWDIR%%/plugins/language_switch/language/th_TH
2958
@dirrm %%WWWDIR%%/plugins/language_switch/language/th_TH
2959
@dirrm %%WWWDIR%%/plugins/language_switch/language/ta_IN
2495
@dirrm %%WWWDIR%%/plugins/language_switch/language/sv_SE
2960
@dirrm %%WWWDIR%%/plugins/language_switch/language/sv_SE
2496
@dirrm %%WWWDIR%%/plugins/language_switch/language/sr_RS
2961
@dirrm %%WWWDIR%%/plugins/language_switch/language/sr_RS
2497
@dirrm %%WWWDIR%%/plugins/language_switch/language/sl_SI
2962
@dirrm %%WWWDIR%%/plugins/language_switch/language/sl_SI
Lines 2505-2512 Link Here
2505
@dirrm %%WWWDIR%%/plugins/language_switch/language/nn_NO
2970
@dirrm %%WWWDIR%%/plugins/language_switch/language/nn_NO
2506
@dirrm %%WWWDIR%%/plugins/language_switch/language/nl_NL
2971
@dirrm %%WWWDIR%%/plugins/language_switch/language/nl_NL
2507
@dirrm %%WWWDIR%%/plugins/language_switch/language/nb_NO
2972
@dirrm %%WWWDIR%%/plugins/language_switch/language/nb_NO
2973
@dirrm %%WWWDIR%%/plugins/language_switch/language/mn_MN
2508
@dirrm %%WWWDIR%%/plugins/language_switch/language/lv_LV
2974
@dirrm %%WWWDIR%%/plugins/language_switch/language/lv_LV
2509
@dirrm %%WWWDIR%%/plugins/language_switch/language/lt_LT
2975
@dirrm %%WWWDIR%%/plugins/language_switch/language/lt_LT
2976
@dirrm %%WWWDIR%%/plugins/language_switch/language/kn_IN
2510
@dirrm %%WWWDIR%%/plugins/language_switch/language/ka_GE
2977
@dirrm %%WWWDIR%%/plugins/language_switch/language/ka_GE
2511
@dirrm %%WWWDIR%%/plugins/language_switch/language/ja_JP
2978
@dirrm %%WWWDIR%%/plugins/language_switch/language/ja_JP
2512
@dirrm %%WWWDIR%%/plugins/language_switch/language/it_IT
2979
@dirrm %%WWWDIR%%/plugins/language_switch/language/it_IT
Lines 2520-2546 Link Here
2520
@dirrm %%WWWDIR%%/plugins/language_switch/language/fa_IR
2987
@dirrm %%WWWDIR%%/plugins/language_switch/language/fa_IR
2521
@dirrm %%WWWDIR%%/plugins/language_switch/language/et_EE
2988
@dirrm %%WWWDIR%%/plugins/language_switch/language/et_EE
2522
@dirrm %%WWWDIR%%/plugins/language_switch/language/es_ES
2989
@dirrm %%WWWDIR%%/plugins/language_switch/language/es_ES
2990
@dirrm %%WWWDIR%%/plugins/language_switch/language/eo_EO
2523
@dirrm %%WWWDIR%%/plugins/language_switch/language/en_UK
2991
@dirrm %%WWWDIR%%/plugins/language_switch/language/en_UK
2524
@dirrm %%WWWDIR%%/plugins/language_switch/language/el_GR
2992
@dirrm %%WWWDIR%%/plugins/language_switch/language/el_GR
2525
@dirrm %%WWWDIR%%/plugins/language_switch/language/de_DE
2993
@dirrm %%WWWDIR%%/plugins/language_switch/language/de_DE
2526
@dirrm %%WWWDIR%%/plugins/language_switch/language/da_DK
2994
@dirrm %%WWWDIR%%/plugins/language_switch/language/da_DK
2527
@dirrm %%WWWDIR%%/plugins/language_switch/language/cs_CZ
2995
@dirrm %%WWWDIR%%/plugins/language_switch/language/cs_CZ
2528
@dirrm %%WWWDIR%%/plugins/language_switch/language/ca_ES
2996
@dirrm %%WWWDIR%%/plugins/language_switch/language/ca_ES
2997
@dirrm %%WWWDIR%%/plugins/language_switch/language/br_FR
2529
@dirrm %%WWWDIR%%/plugins/language_switch/language/bg_BG
2998
@dirrm %%WWWDIR%%/plugins/language_switch/language/bg_BG
2530
@dirrm %%WWWDIR%%/plugins/language_switch/language/ar_SA
2999
@dirrm %%WWWDIR%%/plugins/language_switch/language/ar_SA
2531
@dirrm %%WWWDIR%%/plugins/language_switch/language/af_ZA
3000
@dirrm %%WWWDIR%%/plugins/language_switch/language/af_ZA
2532
@dirrm %%WWWDIR%%/plugins/language_switch/language
3001
@dirrm %%WWWDIR%%/plugins/language_switch/language
2533
@dirrm %%WWWDIR%%/plugins/language_switch
3002
@dirrm %%WWWDIR%%/plugins/language_switch
2534
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW
3003
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/zh_TW
3004
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/zh_HK
2535
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN
3005
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/zh_CN
2536
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/vi_VN
3006
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/vi_VN
2537
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/uk_UA
3007
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/uk_UA
2538
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR
3008
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/tr_TR
3009
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/th_TH
3010
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ta_IN
2539
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE
3011
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sv_SE
2540
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sr_RS
3012
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sr_RS
2541
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sl_SI
3013
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sl_SI
2542
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sk_SK
3014
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/sk_SK
2543
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU
3015
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ru_RU
3016
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ro_RO
2544
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT
3017
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pt_PT
2545
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pt_BR
3018
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pt_BR
2546
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pl_PL
3019
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/pl_PL
Lines 2548-2553 Link Here
2548
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/nl_NL
3021
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/nl_NL
2549
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/nb_NO
3022
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/nb_NO
2550
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV
3023
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/lv_LV
3024
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/lt_LT
3025
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ko_KR
3026
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/kn_IN
2551
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE
3027
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ka_GE
2552
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ja_JP
3028
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ja_JP
2553
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/it_IT
3029
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/it_IT
Lines 2561-2582 Link Here
2561
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/fa_IR
3037
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/fa_IR
2562
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/et_EE
3038
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/et_EE
2563
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/es_ES
3039
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/es_ES
3040
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/eo_EO
2564
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/en_UK
3041
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/en_UK
2565
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/el_GR
3042
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/el_GR
2566
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/de_DE
3043
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/de_DE
2567
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/da_DK
3044
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/da_DK
2568
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/cs_CZ
3045
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/cs_CZ
2569
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES
3046
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ca_ES
3047
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/br_FR
2570
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG
3048
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/bg_BG
2571
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ar_SA
3049
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language/ar_SA
2572
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language
3050
@dirrm %%WWWDIR%%/plugins/c13y_upgrade/language
2573
@dirrm %%WWWDIR%%/plugins/c13y_upgrade
3051
@dirrm %%WWWDIR%%/plugins/c13y_upgrade
2574
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/zh_TW
3052
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/zh_TW
3053
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/zh_HK
2575
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/zh_CN
3054
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/zh_CN
2576
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/vi_VN
3055
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/vi_VN
2577
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/uk_UA
3056
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/uk_UA
2578
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/tr_TR
3057
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/tr_TR
2579
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/th_TH
3058
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/th_TH
3059
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ta_IN
2580
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sv_SE
3060
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sv_SE
2581
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sr_RS
3061
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sr_RS
2582
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sl_SI
3062
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/sl_SI
Lines 2589-2595 Link Here
2589
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nn_NO
3069
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nn_NO
2590
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nl_NL
3070
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nl_NL
2591
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nb_NO
3071
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/nb_NO
3072
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/mn_MN
2592
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/lv_LV
3073
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/lv_LV
3074
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/lt_LT
3075
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/kn_IN
2593
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ka_GE
3076
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ka_GE
2594
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ja_JP
3077
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ja_JP
2595
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/it_IT
3078
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/it_IT
Lines 2603-2614 Link Here
2603
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/fa_IR
3086
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/fa_IR
2604
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/et_EE
3087
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/et_EE
2605
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/es_ES
3088
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/es_ES
3089
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/eo_EO
2606
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/en_UK
3090
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/en_UK
2607
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/el_GR
3091
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/el_GR
2608
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/de_DE
3092
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/de_DE
2609
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/da_DK
3093
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/da_DK
2610
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ
3094
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/cs_CZ
2611
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ca_ES
3095
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ca_ES
3096
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/br_FR
2612
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/bg_BG
3097
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/bg_BG
2613
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ar_SA
3098
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/ar_SA
2614
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/af_ZA
3099
@dirrm %%WWWDIR%%/plugins/admin_multi_view/language/af_ZA
Lines 2616-2638 Link Here
2616
@dirrm %%WWWDIR%%/plugins/admin_multi_view
3101
@dirrm %%WWWDIR%%/plugins/admin_multi_view
2617
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/template
3102
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/template
2618
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW
3103
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/zh_TW
3104
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/zh_HK
2619
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN
3105
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/zh_CN
2620
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/vi_VN
3106
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/vi_VN
2621
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/uk_UA
3107
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/uk_UA
2622
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/tr_TR
3108
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/tr_TR
2623
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH
3109
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/th_TH
3110
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ta_IN
2624
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE
3111
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sv_SE
2625
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS
3112
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sr_RS
3113
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sl_SI
2626
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK
3114
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sk_SK
2627
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sh_RS
3115
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/sh_RS
2628
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU
3116
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ru_RU
3117
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ro_RO
2629
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT
3118
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pt_PT
2630
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pt_BR
3119
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pt_BR
2631
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pl_PL
3120
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/pl_PL
2632
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nn_NO
3121
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nn_NO
2633
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nl_NL
3122
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nl_NL
2634
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO
3123
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/nb_NO
3124
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/mn_MN
2635
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV
3125
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/lv_LV
3126
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/lt_LT
3127
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/kn_IN
2636
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE
3128
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ka_GE
2637
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ja_JP
3129
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ja_JP
2638
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/it_IT
3130
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/it_IT
Lines 2646-2657 Link Here
2646
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/fa_IR
3138
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/fa_IR
2647
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/et_EE
3139
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/et_EE
2648
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES
3140
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/es_ES
3141
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/eo_EO
2649
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK
3142
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/en_UK
2650
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/el_GR
3143
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/el_GR
2651
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/de_DE
3144
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/de_DE
2652
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/da_DK
3145
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/da_DK
2653
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/cs_CZ
3146
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/cs_CZ
2654
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES
3147
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ca_ES
3148
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/br_FR
2655
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG
3149
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/bg_BG
2656
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ar_SA
3150
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/ar_SA
2657
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/af_ZA
3151
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/language/af_ZA
Lines 2671-2685 Link Here
2671
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/codemirror
3165
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor/codemirror
2672
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor
3166
@dirrm %%WWWDIR%%/plugins/LocalFilesEditor
2673
@dirrmtry %%WWWDIR%%/plugins
3167
@dirrmtry %%WWWDIR%%/plugins
2674
@dirrm %%WWWDIR%%/local/language
3168
@mode
2675
@dirrm %%WWWDIR%%/local/config
3169
@owner root
2676
@dirrm %%WWWDIR%%/local/css
3170
@group wheel
2677
@dirrm %%WWWDIR%%/local
3171
@unexec if diff -qr %D/%%WWWDIR%%/local/ %D/%%WWWDIR%%/local.sample/ >/dev/null ; then rm -rf %D/%%WWWDIR%%/local ; fi
2678
@dirrmtry %%WWWDIR%%/local.sample/language
3172
@dirrmtry %%WWWDIR%%/local/language
2679
@dirrmtry %%WWWDIR%%/local.sample/css
3173
@dirrmtry %%WWWDIR%%/local/css
2680
@dirrmtry %%WWWDIR%%/local.sample/config
3174
@dirrmtry %%WWWDIR%%/local/config
2681
@dirrmtry %%WWWDIR%%/local.sample
3175
@dirrmtry %%WWWDIR%%/local
3176
@exec if [ ! -d %D/%%WWWDIR%%/local/config ]; then cp -a %D/%%WWWDIR%%/local.sample/ %D/%%WWWDIR%%/local/ ; fi
3177
@dirrm %%WWWDIR%%/local.sample/language
3178
@dirrm %%WWWDIR%%/local.sample/css
3179
@dirrm %%WWWDIR%%/local.sample/config
3180
@dirrm %%WWWDIR%%/local.sample
3181
@dirrm %%WWWDIR%%/language/zh_TW/help
2682
@dirrm %%WWWDIR%%/language/zh_TW
3182
@dirrm %%WWWDIR%%/language/zh_TW
3183
@dirrm %%WWWDIR%%/language/zh_HK/help
2683
@dirrm %%WWWDIR%%/language/zh_HK
3184
@dirrm %%WWWDIR%%/language/zh_HK
2684
@dirrm %%WWWDIR%%/language/zh_CN/help
3185
@dirrm %%WWWDIR%%/language/zh_CN/help
2685
@dirrm %%WWWDIR%%/language/zh_CN
3186
@dirrm %%WWWDIR%%/language/zh_CN
Lines 2695-2700 Link Here
2695
@dirrm %%WWWDIR%%/language/sv_SE/help
3196
@dirrm %%WWWDIR%%/language/sv_SE/help
2696
@dirrm %%WWWDIR%%/language/sv_SE
3197
@dirrm %%WWWDIR%%/language/sv_SE
2697
@dirrm %%WWWDIR%%/language/sr_RS
3198
@dirrm %%WWWDIR%%/language/sr_RS
3199
@dirrm %%WWWDIR%%/language/sl_SI/help
2698
@dirrm %%WWWDIR%%/language/sl_SI
3200
@dirrm %%WWWDIR%%/language/sl_SI
2699
@dirrm %%WWWDIR%%/language/sk_SK/help
3201
@dirrm %%WWWDIR%%/language/sk_SK/help
2700
@dirrm %%WWWDIR%%/language/sk_SK
3202
@dirrm %%WWWDIR%%/language/sk_SK
Lines 2717-2726 Link Here
2717
@dirrm %%WWWDIR%%/language/nb_NO/help
3219
@dirrm %%WWWDIR%%/language/nb_NO/help
2718
@dirrm %%WWWDIR%%/language/nb_NO
3220
@dirrm %%WWWDIR%%/language/nb_NO
2719
@dirrm %%WWWDIR%%/language/ms_MY
3221
@dirrm %%WWWDIR%%/language/ms_MY
3222
@dirrm %%WWWDIR%%/language/mn_MN
2720
@dirrm %%WWWDIR%%/language/mk_MK
3223
@dirrm %%WWWDIR%%/language/mk_MK
2721
@dirrm %%WWWDIR%%/language/lv_LV/help
3224
@dirrm %%WWWDIR%%/language/lv_LV/help
2722
@dirrm %%WWWDIR%%/language/lv_LV
3225
@dirrm %%WWWDIR%%/language/lv_LV
3226
@dirrm %%WWWDIR%%/language/lt_LT/help
2723
@dirrm %%WWWDIR%%/language/lt_LT
3227
@dirrm %%WWWDIR%%/language/lt_LT
3228
@dirrm %%WWWDIR%%/language/lb_LU
2724
@dirrm %%WWWDIR%%/language/kok_IN
3229
@dirrm %%WWWDIR%%/language/kok_IN
2725
@dirrm %%WWWDIR%%/language/ko_KR
3230
@dirrm %%WWWDIR%%/language/ko_KR
2726
@dirrm %%WWWDIR%%/language/kn_IN
3231
@dirrm %%WWWDIR%%/language/kn_IN
Lines 2732-2737 Link Here
2732
@dirrm %%WWWDIR%%/language/it_IT/help
3237
@dirrm %%WWWDIR%%/language/it_IT/help
2733
@dirrm %%WWWDIR%%/language/it_IT
3238
@dirrm %%WWWDIR%%/language/it_IT
2734
@dirrm %%WWWDIR%%/language/is_IS
3239
@dirrm %%WWWDIR%%/language/is_IS
3240
@dirrm %%WWWDIR%%/language/id_ID
2735
@dirrm %%WWWDIR%%/language/hu_HU/help
3241
@dirrm %%WWWDIR%%/language/hu_HU/help
2736
@dirrm %%WWWDIR%%/language/hu_HU
3242
@dirrm %%WWWDIR%%/language/hu_HU
2737
@dirrm %%WWWDIR%%/language/hr_HR/help
3243
@dirrm %%WWWDIR%%/language/hr_HR/help
Lines 2740-2745 Link Here
2740
@dirrm %%WWWDIR%%/language/he_IL
3246
@dirrm %%WWWDIR%%/language/he_IL
2741
@dirrm %%WWWDIR%%/language/gl_ES/help
3247
@dirrm %%WWWDIR%%/language/gl_ES/help
2742
@dirrm %%WWWDIR%%/language/gl_ES
3248
@dirrm %%WWWDIR%%/language/gl_ES
3249
@dirrm %%WWWDIR%%/language/ga_IE
2743
@dirrm %%WWWDIR%%/language/fr_FR/help
3250
@dirrm %%WWWDIR%%/language/fr_FR/help
2744
@dirrm %%WWWDIR%%/language/fr_FR
3251
@dirrm %%WWWDIR%%/language/fr_FR
2745
@dirrm %%WWWDIR%%/language/fr_CA/help
3252
@dirrm %%WWWDIR%%/language/fr_CA/help
Lines 2752-2760 Link Here
2752
@dirrm %%WWWDIR%%/language/es_ES/help
3259
@dirrm %%WWWDIR%%/language/es_ES/help
2753
@dirrm %%WWWDIR%%/language/es_ES
3260
@dirrm %%WWWDIR%%/language/es_ES
2754
@dirrm %%WWWDIR%%/language/es_AR
3261
@dirrm %%WWWDIR%%/language/es_AR
3262
@dirrm %%WWWDIR%%/language/eo_EO/help
2755
@dirrm %%WWWDIR%%/language/eo_EO
3263
@dirrm %%WWWDIR%%/language/eo_EO
3264
@dirrm %%WWWDIR%%/language/en_US
2756
@dirrm %%WWWDIR%%/language/en_UK/help
3265
@dirrm %%WWWDIR%%/language/en_UK/help
2757
@dirrm %%WWWDIR%%/language/en_UK
3266
@dirrm %%WWWDIR%%/language/en_UK
3267
@dirrm %%WWWDIR%%/language/en_GB
2758
@dirrm %%WWWDIR%%/language/el_GR/help
3268
@dirrm %%WWWDIR%%/language/el_GR/help
2759
@dirrm %%WWWDIR%%/language/el_GR
3269
@dirrm %%WWWDIR%%/language/el_GR
2760
@dirrm %%WWWDIR%%/language/dv_MV
3270
@dirrm %%WWWDIR%%/language/dv_MV
Lines 2766-2791 Link Here
2766
@dirrm %%WWWDIR%%/language/cs_CZ
3276
@dirrm %%WWWDIR%%/language/cs_CZ
2767
@dirrm %%WWWDIR%%/language/ca_ES/help
3277
@dirrm %%WWWDIR%%/language/ca_ES/help
2768
@dirrm %%WWWDIR%%/language/ca_ES
3278
@dirrm %%WWWDIR%%/language/ca_ES
3279
@dirrm %%WWWDIR%%/language/br_FR
2769
@dirrm %%WWWDIR%%/language/bn_IN
3280
@dirrm %%WWWDIR%%/language/bn_IN
2770
@dirrm %%WWWDIR%%/language/bg_BG/help
3281
@dirrm %%WWWDIR%%/language/bg_BG/help
2771
@dirrm %%WWWDIR%%/language/bg_BG
3282
@dirrm %%WWWDIR%%/language/bg_BG
2772
@dirrm %%WWWDIR%%/language/az_AZ
3283
@dirrm %%WWWDIR%%/language/az_AZ
2773
@dirrm %%WWWDIR%%/language/ar_SA/help
3284
@dirrm %%WWWDIR%%/language/ar_SA/help
2774
@dirrm %%WWWDIR%%/language/ar_SA
3285
@dirrm %%WWWDIR%%/language/ar_SA
3286
@dirrm %%WWWDIR%%/language/ar_MA
2775
@dirrm %%WWWDIR%%/language/af_ZA/help
3287
@dirrm %%WWWDIR%%/language/af_ZA/help
2776
@dirrm %%WWWDIR%%/language/af_ZA
3288
@dirrm %%WWWDIR%%/language/af_ZA
2777
@dirrm %%WWWDIR%%/language
3289
@dirrm %%WWWDIR%%/language
2778
@dirrm %%WWWDIR%%/install/db
3290
@dirrm %%WWWDIR%%/install/db
2779
@dirrm %%WWWDIR%%/install
3291
@dirrm %%WWWDIR%%/install
2780
@dirrm %%WWWDIR%%/include/ws_protocols
3292
@dirrm %%WWWDIR%%/include/ws_protocols
3293
@dirrm %%WWWDIR%%/include/ws_functions
3294
@dirrm %%WWWDIR%%/include/smarty/libs/sysplugins
2781
@dirrm %%WWWDIR%%/include/smarty/libs/plugins
3295
@dirrm %%WWWDIR%%/include/smarty/libs/plugins
2782
@dirrm %%WWWDIR%%/include/smarty/libs/internals
2783
@dirrm %%WWWDIR%%/include/smarty/libs
3296
@dirrm %%WWWDIR%%/include/smarty/libs
2784
@dirrm %%WWWDIR%%/include/smarty
3297
@dirrm %%WWWDIR%%/include/smarty
3298
@dirrm %%WWWDIR%%/include/phpmailer
2785
@dirrm %%WWWDIR%%/include/php_compat
3299
@dirrm %%WWWDIR%%/include/php_compat
2786
@dirrm %%WWWDIR%%/include/dblayer
3300
@dirrm %%WWWDIR%%/include/dblayer
2787
@dirrm %%WWWDIR%%/include
3301
@dirrm %%WWWDIR%%/include
2788
@dirrmtry %%WWWDIR%%/galleries
3302
@dirrmtry %%WWWDIR%%/galleries
3303
@dirrm %%WWWDIR%%/doc
2789
@dirrm %%WWWDIR%%/admin/themes/roma/images
3304
@dirrm %%WWWDIR%%/admin/themes/roma/images
2790
@dirrm %%WWWDIR%%/admin/themes/roma/icon
3305
@dirrm %%WWWDIR%%/admin/themes/roma/icon
2791
@dirrm %%WWWDIR%%/admin/themes/roma
3306
@dirrm %%WWWDIR%%/admin/themes/roma
Lines 2794-2799 Link Here
2794
@dirrm %%WWWDIR%%/admin/themes/default/js
3309
@dirrm %%WWWDIR%%/admin/themes/default/js
2795
@dirrm %%WWWDIR%%/admin/themes/default/images
3310
@dirrm %%WWWDIR%%/admin/themes/default/images
2796
@dirrm %%WWWDIR%%/admin/themes/default/icon
3311
@dirrm %%WWWDIR%%/admin/themes/default/icon
3312
@dirrm %%WWWDIR%%/admin/themes/default/fontello/font
3313
@dirrm %%WWWDIR%%/admin/themes/default/fontello/css
3314
@dirrm %%WWWDIR%%/admin/themes/default/fontello
2797
@dirrm %%WWWDIR%%/admin/themes/default
3315
@dirrm %%WWWDIR%%/admin/themes/default
2798
@dirrm %%WWWDIR%%/admin/themes/clear/images
3316
@dirrm %%WWWDIR%%/admin/themes/clear/images
2799
@dirrm %%WWWDIR%%/admin/themes/clear/icon
3317
@dirrm %%WWWDIR%%/admin/themes/clear/icon
Lines 2802-2808 Link Here
2802
@dirrm %%WWWDIR%%/admin/include/uploadify
3320
@dirrm %%WWWDIR%%/admin/include/uploadify
2803
@dirrm %%WWWDIR%%/admin/include
3321
@dirrm %%WWWDIR%%/admin/include
2804
@dirrm %%WWWDIR%%/admin
3322
@dirrm %%WWWDIR%%/admin
3323
@mode 777
3324
@owner %%WWWOWN%%
3325
@group %%WWWGRP%%
3326
@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% -m 777 %D/%%WWWDIR%%/_data
2805
@dirrm %%WWWDIR%%/_data
3327
@dirrm %%WWWDIR%%/_data
3328
@mode
3329
@owner root
3330
@group wheel
2806
@dirrmtry %%WWWDIR%%
3331
@dirrmtry %%WWWDIR%%
2807
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/language
3332
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/language
2808
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
3333
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%

Return to bug 187484