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

(-)drupal6/Makefile (-12 / +17 lines)
Lines 1-12 Link Here
1
# New ports collection makefile for:	drupal5
1
# New ports collection makefile for:	drupal6
2
# Date Created: 			12 Feb 2007
2
# Date Created: 			12 Feb 2007
3
# Whom:					Nick Hilliard <nick@foobar.org>
3
# Whom:					Nick Hilliard <nick@foobar.org>
4
#
4
#
5
# $FreeBSD: ports/www/drupal5/Makefile,v 1.45 2008/02/20 16:19:41 miwi Exp $
5
# $FreeBSD: $
6
#
6
#
7
7
8
PORTNAME=	drupal5
8
PORTNAME=	drupal6
9
PORTVERSION=	5.7
9
PORTVERSION=	6.2
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	http://ftp.drupal.org/files/projects/
11
MASTER_SITES=	http://ftp.drupal.org/files/projects/
12
DISTNAME=	drupal-${PORTVERSION}
12
DISTNAME=	drupal-${PORTVERSION}
Lines 15-31 Link Here
15
MAINTAINER=	nick@foobar.org
15
MAINTAINER=	nick@foobar.org
16
COMMENT=	A database driven web content management system (CMS)
16
COMMENT=	A database driven web content management system (CMS)
17
17
18
DRUPAL5_PORT=	yes
18
DRUPAL6_PORT=	yes
19
19
20
USE_PHP=	gd pcre session xml mbstring
20
USE_PHP=	gd pcre session xml mbstring
21
IGNORE_WITH_PHP=4
21
WANT_PHP_WEB=	yes
22
WANT_PHP_WEB=	yes
22
23
23
OPTIONS+=	MYSQL "MySQL database support" on \
24
OPTIONS+=	MYSQLI "MySQL Improved Extension database support" on \
25
		MYSQL "MySQL database support" off \
24
		PGSQL "PostgreSQL database support" off
26
		PGSQL "PostgreSQL database support" off
25
27
26
NO_BUILD=	yes
28
NO_BUILD=	yes
27
DOCS=		CHANGELOG.txt INSTALL.txt LICENSE.txt MAINTAINERS.txt \
29
DOCS=		CHANGELOG.txt INSTALL.txt LICENSE.txt MAINTAINERS.txt \
28
		UPGRADE.txt INSTALL.mysql.txt INSTALL.pgsql.txt
30
		UPGRADE.txt INSTALL.mysql.txt INSTALL.pgsql.txt \
31
		COPYRIGHT.txt
29
SUB_FILES+=	pkg-message
32
SUB_FILES+=	pkg-message
30
PKGMESSAGE=	${WRKDIR}/pkg-message
33
PKGMESSAGE=	${WRKDIR}/pkg-message
31
34
Lines 34-39 Link Here
34
.if defined(WITH_MYSQL)
37
.if defined(WITH_MYSQL)
35
USE_PHP+=	mysql
38
USE_PHP+=	mysql
36
.endif
39
.endif
40
.if defined(WITH_MYSQLI)
41
USE_PHP+=	mysqli
42
.endif
37
.if defined(WITH_PGSQL)
43
.if defined(WITH_PGSQL)
38
RUN_DEPENDS+=	${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
44
RUN_DEPENDS+=	${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB
39
USE_PHP+=	pgsql
45
USE_PHP+=	pgsql
Lines 43-49 Link Here
43
	${MKDIR} ${DRUPAL_DIR}
49
	${MKDIR} ${DRUPAL_DIR}
44
	${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR}
50
	${CP} ${WRKSRC}/.htaccess ${DRUPAL_DIR}
45
	${CP} ${WRKSRC}/cron.php ${DRUPAL_DIR}
51
	${CP} ${WRKSRC}/cron.php ${DRUPAL_DIR}
46
	${MKDIR} ${DRUPAL_DIR}/files
47
	${CP} -R ${WRKSRC}/includes ${DRUPAL_DIR}
52
	${CP} -R ${WRKSRC}/includes ${DRUPAL_DIR}
48
	${CP} ${WRKSRC}/index.php ${DRUPAL_DIR}
53
	${CP} ${WRKSRC}/index.php ${DRUPAL_DIR}
49
	${CP} ${WRKSRC}/install.php ${DRUPAL_DIR}
54
	${CP} ${WRKSRC}/install.php ${DRUPAL_DIR}
Lines 55-63 Link Here
55
	${MKDIR} ${DRUPAL_DIR}/sites/all
60
	${MKDIR} ${DRUPAL_DIR}/sites/all
56
	${CP} ${WRKSRC}/sites/all/README.txt ${DRUPAL_DIR}/sites/all/
61
	${CP} ${WRKSRC}/sites/all/README.txt ${DRUPAL_DIR}/sites/all/
57
	${MKDIR} ${DRUPAL_DIR}/sites/default
62
	${MKDIR} ${DRUPAL_DIR}/sites/default
58
	${CP} ${WRKSRC}/sites/default/settings.php ${DRUPAL_DIR}/sites/default/settings.php-dist
63
	${CP} ${WRKSRC}/sites/default/default.settings.php ${DRUPAL_DIR}/sites/default/default.settings.php-dist
59
	@if [ ! -f ${DRUPAL_DIR}/sites/default/settings.php ]; then \
64
	@if [ ! -f ${DRUPAL_DIR}/sites/default/default.settings.php ]; then \
60
		${CP} -p ${DRUPAL_DIR}/sites/default/settings.php-dist ${DRUPAL_DIR}/sites/default/settings.php ; \
65
		${CP} -p ${DRUPAL_DIR}/sites/default/default.settings.php-dist ${DRUPAL_DIR}/sites/default/default.settings.php ; \
61
	fi
66
	fi
62
	${CP} -R ${WRKSRC}/themes ${DRUPAL_DIR}
67
	${CP} -R ${WRKSRC}/themes ${DRUPAL_DIR}
63
	${CP} ${WRKSRC}/update.php ${DRUPAL_DIR}
68
	${CP} ${WRKSRC}/update.php ${DRUPAL_DIR}
Lines 73-77 Link Here
73
post-install:
78
post-install:
74
	@${CAT} ${PKGMESSAGE}
79
	@${CAT} ${PKGMESSAGE}
75
80
76
.include "${.CURDIR}/bsd.drupal.mk"
81
.include "${.CURDIR}/../../www/drupal5/bsd.drupal.mk"
77
.include <bsd.port.post.mk>
82
.include <bsd.port.post.mk>
(-)drupal6/bsd.drupal.mk (-160 lines)
Lines 1-160 Link Here
1
# $FreeBSD: ports/www/drupal5/bsd.drupal.mk,v 1.7 2007/08/21 08:33:35 miwi Exp $
2
#
3
4
# Make sure we cannot define any combination of DRUPAL{4,5,6}
5
.if (defined(DRUPAL4_MODULE) && defined(DRUPAL5_MODULE)) || (defined(DRUPAL4_MODULE) && defined(DRUPAL6_MODULE)) || (defined(DRUPAL5_MODULE) && defined(DRUPAL6_MODULE))
6
BROKEN=		cannot define a combination of DRUPAL4_MODULE, DRUPAL5_MODULE and DRUPAL6_MODULE
7
.endif
8
9
# Make sure DRUPAL_MODULE is defined.  If no DRUPAL*_module defined, then define DRUPAL4_MODULE
10
.if defined(DRUPAL4_MODULE) || defined(DRUPAL5_MODULE) || defined(DRUPAL6_MODULE)
11
DRUPAL_MODULE?=	yes
12
.endif
13
14
.if defined(DRUPAL_MODULE)
15
DRUPAL_MODTYPE=	modules
16
.endif
17
18
# Make sure DRUPAL_PORT is defined.  If no DRUPAL*_module defined, then define DRUPAL4_PORT
19
.if defined(DRUPAL4_PORT) || defined(DRUPAL5_PORT) || defined(DRUPAL6_PORT)
20
DRUPAL_PORT?=	yes
21
.endif
22
23
# Make sure DRUPAL_THEME is defined
24
.if defined(DRUPAL5_THEME) || defined(DRUPAL6_THEME)
25
DRUPAL_THEME?=	yes
26
DRUPAL_MODTYPE=	themes
27
.endif
28
29
.if defined(DRUPAL6_MODULE) || defined(DRUPAL6_PORT) || defined(DRUPAL6_THEME)
30
DRUPAL_BASE?=   www/drupal6
31
.else
32
.if defined(DRUPAL5_MODULE) || defined(DRUPAL5_PORT) || defined(DRUPAL5_THEME)
33
DRUPAL_BASE?=	www/drupal5
34
.else
35
DRUPAL_BASE?=	www/drupal4
36
.endif
37
.endif
38
39
DRUPAL_DIR=	${PREFIX}/${DRUPAL_BASE}
40
DRUPAL_DOCSDIR?=	${PREFIX}/${DRUPAL_BASE}/doc
41
PLIST_SUB+=	DRUPAL_BASE=${DRUPAL_BASE}
42
SUB_LIST+=	DRUPAL_BASE=${DRUPAL_BASE} DRUPAL_DIR=${DRUPAL_DIR}
43
44
.if defined(DRUPAL_PORT)
45
DOCSDIR?=	${DRUPAL_DOCSDIR}
46
.endif
47
48
.if defined(DRUPAL_MODULE) || defined (DRUPAL_THEME)
49
50
.if defined(DRUPAL4_MODULE)
51
PKGNAMEPREFIX=	drupal4-
52
DRUPAL_VERSION?=	4.7.0
53
.if defined(DRUPAL_MODSUBDIR)
54
DRUPAL_MODDIR?= ${DRUPAL_BASE}/${DRUPAL_MODTYPE}/${DRUPAL_MODSUBDIR}
55
.else 
56
DRUPAL_MODDIR?= ${DRUPAL_BASE}/${DRUPAL_MODTYPE}
57
.endif
58
.endif
59
60
.if defined(DRUPAL5_MODULE) || defined (DRUPAL5_THEME)
61
PKGNAMEPREFIX=	drupal5-
62
DRUPAL_VERSION?=	5.0
63
.if defined(DRUPAL_MODSUBDIR)
64
DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${DRUPAL_MODTYPE}/${DRUPAL_MODSUBDIR}
65
.else
66
DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${DRUPAL_MODTYPE}/${PORTNAME}
67
.endif
68
.endif
69
70
.if defined(DRUPAL6_MODULE) || defined (DRUPAL6_THEME)
71
PKGNAMEPREFIX=	drupal6-
72
DRUPAL_VERSION?=	6.0
73
.if defined(DRUPAL_MODSUBDIR)
74
DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${DRUPAL_MODTYPE}/${DRUPAL_MODSUBDIR}
75
.else
76
DRUPAL_MODDIR?= ${DRUPAL_BASE}/sites/all/${DRUPAL_MODTYPE}/${PORTNAME}
77
.endif
78
.endif
79
80
DOCSDIR?=	${DRUPAL_DOCSDIR}/${PORTNAME}
81
82
.if defined(DRUPAL_MOD_SNAPSHOT)
83
MASTER_SITE_DRUPAL+= \
84
	${MASTER_SITE_LOCAL}
85
MASTER_SITE_DRUPAL_SUBDIR=	pav/drupal
86
.else
87
MASTER_SITE_DRUPAL+= \
88
	http://ftp.drupal.org/files/projects/ \
89
	http://ftp.osuosl.org/pub/drupal/files/projects/
90
MASTER_SITE_DRUPAL_SUBDIR=
91
.endif
92
93
MASTER_SITES?=	${MASTER_SITE_DRUPAL}
94
MASTER_SITE_SUBDIR?=	${MASTER_SITE_DRUPAL_SUBDIR}
95
96
DIST_SUBDIR=	drupal
97
98
NO_BUILD?=	yes
99
100
WRKSRC?=	${WRKDIR}/${PORTNAME}
101
RUN_DEPENDS+=	${LOCALBASE}/${DRUPAL_BASE}/index.php:${PORTSDIR}/${DRUPAL_BASE}
102
103
.if defined(MODULE_CONF_FILES)
104
SUB_FILES=	pkg-install
105
SUB_LIST+=	CONF_FILES="${MODULE_CONF_FILES:C|^|${DRUPAL_MODDIR}/|}" \
106
		CONF_DIRS="${MODULE_CONF_DIRS:C|^|${DRUPAL_MODDIR}/|}"
107
# XXX: where?
108
PKGINSTALL=	${WRKDIR}/pkg-install
109
PKGDEINSTALL=	${PKGINSTALL}
110
.endif
111
112
PLIST_SUB+=	DRUPAL_MODDIR=${DRUPAL_MODDIR}
113
PLIST_FILES+=	${MODULE_FILES:C|^|%%DRUPAL_MODDIR%%/|}
114
PLIST_FILES+=	${MODULE_CONF_FILES:C|^|%%DRUPAL_MODDIR%%/|:C|$|-dist|}
115
PLIST_DIRS+=	${MODULE_DIRS:C|^|%%DRUPAL_MODDIR%%/|}
116
.if defined(DRUPAL5_MODULE) || defined(DRUPAL5_THEME)  || defined(DRUPAL6_MODULE) || defined(DRUPAL6_THEME)
117
PLIST_DIRS+=	${DRUPAL_MODDIR}
118
.endif
119
.if defined(DRUPAL_MODSUBDIR)
120
PLIST_DIRS+=	${DRUPAL_MODDIR}
121
.endif
122
.if !defined(NOPORTDOCS)
123
PLIST_FILES+=	${DOC_FILES:C|^|%%DOCSDIR%%/|}
124
PLIST_DIRS+=	${DOC_DIRS:C|^|%%DOCSDIR%%/|}
125
PLIST_DIRS+=	%%DOCSDIR%%
126
.endif
127
128
do-install:
129
.if defined(DRUPAL5_MODULE) || defined(DRUPAL5_THEME) || defined(DRUPAL6_MODULE) || defined(DRUPAL6_THEME)
130
	@${MKDIR} ${DRUPAL_MODDIR:C|^|${PREFIX}/|}
131
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${DRUPAL_MODDIR:C|^|${PREFIX}/|}
132
.endif
133
.if defined(MODULE_CONF_DIRS)
134
	@${MKDIR} ${MODULE_CONF_DIRS:C|^|${PREFIX}/${DRUPAL_MODDIR}/|}
135
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${MODULE_CONF_DIRS:C|^|${PREFIX}/${DRUPAL_MODDIR}/|}
136
.endif
137
.if defined(MODULE_DIRS)
138
	@${MKDIR} ${MODULE_DIRS:C|^|${PREFIX}/${DRUPAL_MODDIR}/|}
139
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${MODULE_DIRS:C|^|${PREFIX}/${DRUPAL_MODDIR}/|}
140
.endif
141
.for f in ${MODULE_FILES}
142
	@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/${DRUPAL_MODDIR}/${f}
143
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/${DRUPAL_MODDIR}/${f}
144
.endfor
145
.for f in ${MODULE_CONF_FILES}
146
	@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/${DRUPAL_MODDIR}/${f}-dist
147
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/${DRUPAL_MODDIR}/${f}-dist
148
.endfor
149
.if !defined(NOPORTDOCS)
150
	@${MKDIR} ${DOCSDIR} ${DOC_DIRS:C|^|${DOCSDIR}/|}
151
.for f in ${DOC_FILES}
152
	@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/${f}
153
.endfor
154
.endif
155
156
.if defined(MODULE_CONF_FILES)
157
post-install:
158
	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
159
.endif
160
.endif
(-)drupal6/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (drupal/drupal-5.7.tar.gz) = c7d9911ad1001c790bbdfe6fd4cdfc89
1
MD5 (drupal/drupal-6.2.tar.gz) = 4c5af590b42b5a8e826177119c7e73b3
2
SHA256 (drupal/drupal-5.7.tar.gz) = 60fa0b4d451dc5409f1e340d46c0d5fe4bcd4d832319a6a1cbb602e2e49e39cf
2
SHA256 (drupal/drupal-6.2.tar.gz) = 750db02a3605ebb445514e878b1b58e405291c88a9645877e80a5705268e44d8
3
SIZE (drupal/drupal-5.7.tar.gz) = 754688
3
SIZE (drupal/drupal-6.2.tar.gz) = 1058550
(-)drupal6/files/pkg-message.in (-2 / +2 lines)
Lines 26-30 Link Here
26
Please see http://drupal.org/cron for important information on setting up
26
Please see http://drupal.org/cron for important information on setting up
27
periodic maintenance tasks in Drupal.
27
periodic maintenance tasks in Drupal.
28
28
29
For important information about upgrading from Drupal version 4, please see: 
29
For important information about upgrading from previous versions of Drupal, please 
30
%%DRUPAL_DIR%%/doc/UPGRADE.txt
30
please see: %%DRUPAL_DIR%%/doc/UPGRADE.txt
(-)drupal6/pkg-plist (-27 / +216 lines)
Lines 1-3 Link Here
1
%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT.txt
1
%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS.txt
2
%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS.txt
2
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql.txt
3
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.mysql.txt
3
%%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt
4
%%PORTDOCS%%%%DOCSDIR%%/UPGRADE.txt
Lines 7-27 Link Here
7
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
8
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
8
%%DRUPAL_BASE%%/.htaccess
9
%%DRUPAL_BASE%%/.htaccess
9
%%DRUPAL_BASE%%/cron.php
10
%%DRUPAL_BASE%%/cron.php
11
%%DRUPAL_BASE%%/includes/actions.inc
12
%%DRUPAL_BASE%%/includes/batch.inc
10
%%DRUPAL_BASE%%/includes/bootstrap.inc
13
%%DRUPAL_BASE%%/includes/bootstrap.inc
14
%%DRUPAL_BASE%%/includes/cache-install.inc
11
%%DRUPAL_BASE%%/includes/cache.inc
15
%%DRUPAL_BASE%%/includes/cache.inc
12
%%DRUPAL_BASE%%/includes/common.inc
16
%%DRUPAL_BASE%%/includes/common.inc
13
%%DRUPAL_BASE%%/includes/database.inc
17
%%DRUPAL_BASE%%/includes/database.inc
18
%%DRUPAL_BASE%%/includes/database.mysql-common.inc
14
%%DRUPAL_BASE%%/includes/database.mysql.inc
19
%%DRUPAL_BASE%%/includes/database.mysql.inc
15
%%DRUPAL_BASE%%/includes/database.mysqli.inc
20
%%DRUPAL_BASE%%/includes/database.mysqli.inc
16
%%DRUPAL_BASE%%/includes/database.pgsql.inc
21
%%DRUPAL_BASE%%/includes/database.pgsql.inc
17
%%DRUPAL_BASE%%/includes/file.inc
22
%%DRUPAL_BASE%%/includes/file.inc
18
%%DRUPAL_BASE%%/includes/form.inc
23
%%DRUPAL_BASE%%/includes/form.inc
24
%%DRUPAL_BASE%%/includes/image.gd.inc
19
%%DRUPAL_BASE%%/includes/image.inc
25
%%DRUPAL_BASE%%/includes/image.inc
20
%%DRUPAL_BASE%%/includes/install.inc
26
%%DRUPAL_BASE%%/includes/install.inc
21
%%DRUPAL_BASE%%/includes/install.mysql.inc
27
%%DRUPAL_BASE%%/includes/install.mysql.inc
22
%%DRUPAL_BASE%%/includes/install.mysqli.inc
28
%%DRUPAL_BASE%%/includes/install.mysqli.inc
23
%%DRUPAL_BASE%%/includes/install.pgsql.inc
29
%%DRUPAL_BASE%%/includes/install.pgsql.inc
30
%%DRUPAL_BASE%%/includes/language.inc
24
%%DRUPAL_BASE%%/includes/locale.inc
31
%%DRUPAL_BASE%%/includes/locale.inc
32
%%DRUPAL_BASE%%/includes/mail.inc
25
%%DRUPAL_BASE%%/includes/menu.inc
33
%%DRUPAL_BASE%%/includes/menu.inc
26
%%DRUPAL_BASE%%/includes/module.inc
34
%%DRUPAL_BASE%%/includes/module.inc
27
%%DRUPAL_BASE%%/includes/pager.inc
35
%%DRUPAL_BASE%%/includes/pager.inc
Lines 29-44 Link Here
29
%%DRUPAL_BASE%%/includes/session.inc
37
%%DRUPAL_BASE%%/includes/session.inc
30
%%DRUPAL_BASE%%/includes/tablesort.inc
38
%%DRUPAL_BASE%%/includes/tablesort.inc
31
%%DRUPAL_BASE%%/includes/theme.inc
39
%%DRUPAL_BASE%%/includes/theme.inc
40
%%DRUPAL_BASE%%/includes/theme.maintenance.inc
32
%%DRUPAL_BASE%%/includes/unicode.inc
41
%%DRUPAL_BASE%%/includes/unicode.inc
33
%%DRUPAL_BASE%%/includes/xmlrpc.inc
42
%%DRUPAL_BASE%%/includes/xmlrpc.inc
34
%%DRUPAL_BASE%%/includes/xmlrpcs.inc
43
%%DRUPAL_BASE%%/includes/xmlrpcs.inc
35
%%DRUPAL_BASE%%/index.php
44
%%DRUPAL_BASE%%/index.php
36
%%DRUPAL_BASE%%/install.php
45
%%DRUPAL_BASE%%/install.php
46
%%DRUPAL_BASE%%/misc/ahah.js
37
%%DRUPAL_BASE%%/misc/arrow-asc.png
47
%%DRUPAL_BASE%%/misc/arrow-asc.png
38
%%DRUPAL_BASE%%/misc/arrow-desc.png
48
%%DRUPAL_BASE%%/misc/arrow-desc.png
39
%%DRUPAL_BASE%%/misc/autocomplete.js
49
%%DRUPAL_BASE%%/misc/autocomplete.js
50
%%DRUPAL_BASE%%/misc/batch.js
40
%%DRUPAL_BASE%%/misc/blog.png
51
%%DRUPAL_BASE%%/misc/blog.png
41
%%DRUPAL_BASE%%/misc/collapse.js
52
%%DRUPAL_BASE%%/misc/collapse.js
53
%%DRUPAL_BASE%%/misc/draggable.png
42
%%DRUPAL_BASE%%/misc/drupal.js
54
%%DRUPAL_BASE%%/misc/drupal.js
43
%%DRUPAL_BASE%%/misc/druplicon.png
55
%%DRUPAL_BASE%%/misc/druplicon.png
44
%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.css
56
%%DRUPAL_BASE%%/misc/farbtastic/farbtastic.css
Lines 48-53 Link Here
48
%%DRUPAL_BASE%%/misc/farbtastic/wheel.png
60
%%DRUPAL_BASE%%/misc/farbtastic/wheel.png
49
%%DRUPAL_BASE%%/misc/favicon.ico
61
%%DRUPAL_BASE%%/misc/favicon.ico
50
%%DRUPAL_BASE%%/misc/feed.png
62
%%DRUPAL_BASE%%/misc/feed.png
63
%%DRUPAL_BASE%%/misc/form.js
51
%%DRUPAL_BASE%%/misc/forum-closed.png
64
%%DRUPAL_BASE%%/misc/forum-closed.png
52
%%DRUPAL_BASE%%/misc/forum-default.png
65
%%DRUPAL_BASE%%/misc/forum-default.png
53
%%DRUPAL_BASE%%/misc/forum-hot-new.png
66
%%DRUPAL_BASE%%/misc/forum-hot-new.png
Lines 55-62 Link Here
55
%%DRUPAL_BASE%%/misc/forum-new.png
68
%%DRUPAL_BASE%%/misc/forum-new.png
56
%%DRUPAL_BASE%%/misc/forum-sticky.png
69
%%DRUPAL_BASE%%/misc/forum-sticky.png
57
%%DRUPAL_BASE%%/misc/grippie.png
70
%%DRUPAL_BASE%%/misc/grippie.png
71
%%DRUPAL_BASE%%/misc/jquery.form.js
58
%%DRUPAL_BASE%%/misc/jquery.js
72
%%DRUPAL_BASE%%/misc/jquery.js
59
%%DRUPAL_BASE%%/misc/maintenance.css
73
%%DRUPAL_BASE%%/misc/menu-collapsed-rtl.png
60
%%DRUPAL_BASE%%/misc/menu-collapsed.png
74
%%DRUPAL_BASE%%/misc/menu-collapsed.png
61
%%DRUPAL_BASE%%/misc/menu-expanded.png
75
%%DRUPAL_BASE%%/misc/menu-expanded.png
62
%%DRUPAL_BASE%%/misc/menu-leaf.png
76
%%DRUPAL_BASE%%/misc/menu-leaf.png
Lines 69-213 Link Here
69
%%DRUPAL_BASE%%/misc/powered-gray-135x42.png
83
%%DRUPAL_BASE%%/misc/powered-gray-135x42.png
70
%%DRUPAL_BASE%%/misc/powered-gray-80x15.png
84
%%DRUPAL_BASE%%/misc/powered-gray-80x15.png
71
%%DRUPAL_BASE%%/misc/powered-gray-88x31.png
85
%%DRUPAL_BASE%%/misc/powered-gray-88x31.png
86
%%DRUPAL_BASE%%/misc/print-rtl.css
72
%%DRUPAL_BASE%%/misc/print.css
87
%%DRUPAL_BASE%%/misc/print.css
73
%%DRUPAL_BASE%%/misc/progress.gif
88
%%DRUPAL_BASE%%/misc/progress.gif
74
%%DRUPAL_BASE%%/misc/progress.js
89
%%DRUPAL_BASE%%/misc/progress.js
90
%%DRUPAL_BASE%%/misc/tabledrag.js
91
%%DRUPAL_BASE%%/misc/tableheader.js
75
%%DRUPAL_BASE%%/misc/tableselect.js
92
%%DRUPAL_BASE%%/misc/tableselect.js
93
%%DRUPAL_BASE%%/misc/teaser.js
76
%%DRUPAL_BASE%%/misc/textarea.js
94
%%DRUPAL_BASE%%/misc/textarea.js
77
%%DRUPAL_BASE%%/misc/throbber.gif
95
%%DRUPAL_BASE%%/misc/throbber.gif
78
%%DRUPAL_BASE%%/misc/update.js
96
%%DRUPAL_BASE%%/misc/tree-bottom.png
79
%%DRUPAL_BASE%%/misc/upload.js
97
%%DRUPAL_BASE%%/misc/tree.png
80
%%DRUPAL_BASE%%/misc/watchdog-error.png
98
%%DRUPAL_BASE%%/misc/watchdog-error.png
81
%%DRUPAL_BASE%%/misc/watchdog-ok.png
99
%%DRUPAL_BASE%%/misc/watchdog-ok.png
82
%%DRUPAL_BASE%%/misc/watchdog-warning.png
100
%%DRUPAL_BASE%%/misc/watchdog-warning.png
83
%%DRUPAL_BASE%%/misc/xml.png
101
%%DRUPAL_BASE%%/misc/xml.png
102
%%DRUPAL_BASE%%/modules/README.txt
103
%%DRUPAL_BASE%%/modules/aggregator/aggregator-feed-source.tpl.php
104
%%DRUPAL_BASE%%/modules/aggregator/aggregator-item.tpl.php
105
%%DRUPAL_BASE%%/modules/aggregator/aggregator-rtl.css
106
%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-item.tpl.php
107
%%DRUPAL_BASE%%/modules/aggregator/aggregator-summary-items.tpl.php
108
%%DRUPAL_BASE%%/modules/aggregator/aggregator-wrapper.tpl.php
109
%%DRUPAL_BASE%%/modules/aggregator/aggregator.admin.inc
84
%%DRUPAL_BASE%%/modules/aggregator/aggregator.css
110
%%DRUPAL_BASE%%/modules/aggregator/aggregator.css
85
%%DRUPAL_BASE%%/modules/aggregator/aggregator.info
111
%%DRUPAL_BASE%%/modules/aggregator/aggregator.info
86
%%DRUPAL_BASE%%/modules/aggregator/aggregator.install
112
%%DRUPAL_BASE%%/modules/aggregator/aggregator.install
87
%%DRUPAL_BASE%%/modules/aggregator/aggregator.module
113
%%DRUPAL_BASE%%/modules/aggregator/aggregator.module
114
%%DRUPAL_BASE%%/modules/aggregator/aggregator.pages.inc
115
%%DRUPAL_BASE%%/modules/block/block-admin-display-form.tpl.php
116
%%DRUPAL_BASE%%/modules/block/block.admin.inc
88
%%DRUPAL_BASE%%/modules/block/block.css
117
%%DRUPAL_BASE%%/modules/block/block.css
89
%%DRUPAL_BASE%%/modules/block/block.info
118
%%DRUPAL_BASE%%/modules/block/block.info
119
%%DRUPAL_BASE%%/modules/block/block.install
120
%%DRUPAL_BASE%%/modules/block/block.js
90
%%DRUPAL_BASE%%/modules/block/block.module
121
%%DRUPAL_BASE%%/modules/block/block.module
91
%%DRUPAL_BASE%%/modules/blog/blog.info
122
%%DRUPAL_BASE%%/modules/blog/blog.info
92
%%DRUPAL_BASE%%/modules/blog/blog.module
123
%%DRUPAL_BASE%%/modules/blog/blog.module
124
%%DRUPAL_BASE%%/modules/blog/blog.pages.inc
93
%%DRUPAL_BASE%%/modules/blogapi/blogapi.info
125
%%DRUPAL_BASE%%/modules/blogapi/blogapi.info
126
%%DRUPAL_BASE%%/modules/blogapi/blogapi.install
94
%%DRUPAL_BASE%%/modules/blogapi/blogapi.module
127
%%DRUPAL_BASE%%/modules/blogapi/blogapi.module
128
%%DRUPAL_BASE%%/modules/book/book-all-books-block.tpl.php
129
%%DRUPAL_BASE%%/modules/book/book-export-html.tpl.php
130
%%DRUPAL_BASE%%/modules/book/book-navigation.tpl.php
131
%%DRUPAL_BASE%%/modules/book/book-node-export-html.tpl.php
132
%%DRUPAL_BASE%%/modules/book/book-rtl.css
133
%%DRUPAL_BASE%%/modules/book/book.admin.inc
95
%%DRUPAL_BASE%%/modules/book/book.css
134
%%DRUPAL_BASE%%/modules/book/book.css
96
%%DRUPAL_BASE%%/modules/book/book.info
135
%%DRUPAL_BASE%%/modules/book/book.info
97
%%DRUPAL_BASE%%/modules/book/book.install
136
%%DRUPAL_BASE%%/modules/book/book.install
98
%%DRUPAL_BASE%%/modules/book/book.module
137
%%DRUPAL_BASE%%/modules/book/book.module
138
%%DRUPAL_BASE%%/modules/book/book.pages.inc
139
%%DRUPAL_BASE%%/modules/color/color-rtl.css
99
%%DRUPAL_BASE%%/modules/color/color.css
140
%%DRUPAL_BASE%%/modules/color/color.css
100
%%DRUPAL_BASE%%/modules/color/color.info
141
%%DRUPAL_BASE%%/modules/color/color.info
101
%%DRUPAL_BASE%%/modules/color/color.install
142
%%DRUPAL_BASE%%/modules/color/color.install
102
%%DRUPAL_BASE%%/modules/color/color.js
143
%%DRUPAL_BASE%%/modules/color/color.js
103
%%DRUPAL_BASE%%/modules/color/color.module
144
%%DRUPAL_BASE%%/modules/color/color.module
145
%%DRUPAL_BASE%%/modules/color/images/hook-rtl.png
104
%%DRUPAL_BASE%%/modules/color/images/hook.png
146
%%DRUPAL_BASE%%/modules/color/images/hook.png
105
%%DRUPAL_BASE%%/modules/color/images/lock.png
147
%%DRUPAL_BASE%%/modules/color/images/lock.png
148
%%DRUPAL_BASE%%/modules/comment/comment-folded.tpl.php
149
%%DRUPAL_BASE%%/modules/comment/comment-rtl.css
150
%%DRUPAL_BASE%%/modules/comment/comment-wrapper.tpl.php
151
%%DRUPAL_BASE%%/modules/comment/comment.admin.inc
106
%%DRUPAL_BASE%%/modules/comment/comment.css
152
%%DRUPAL_BASE%%/modules/comment/comment.css
107
%%DRUPAL_BASE%%/modules/comment/comment.info
153
%%DRUPAL_BASE%%/modules/comment/comment.info
108
%%DRUPAL_BASE%%/modules/comment/comment.install
154
%%DRUPAL_BASE%%/modules/comment/comment.install
155
%%DRUPAL_BASE%%/modules/comment/comment.js
109
%%DRUPAL_BASE%%/modules/comment/comment.module
156
%%DRUPAL_BASE%%/modules/comment/comment.module
157
%%DRUPAL_BASE%%/modules/comment/comment.pages.inc
158
%%DRUPAL_BASE%%/modules/comment/comment.tpl.php
159
%%DRUPAL_BASE%%/modules/contact/contact.admin.inc
110
%%DRUPAL_BASE%%/modules/contact/contact.info
160
%%DRUPAL_BASE%%/modules/contact/contact.info
111
%%DRUPAL_BASE%%/modules/contact/contact.install
161
%%DRUPAL_BASE%%/modules/contact/contact.install
112
%%DRUPAL_BASE%%/modules/contact/contact.module
162
%%DRUPAL_BASE%%/modules/contact/contact.module
113
%%DRUPAL_BASE%%/modules/drupal/drupal.info
163
%%DRUPAL_BASE%%/modules/contact/contact.pages.inc
114
%%DRUPAL_BASE%%/modules/drupal/drupal.install
164
%%DRUPAL_BASE%%/modules/dblog/dblog-rtl.css
115
%%DRUPAL_BASE%%/modules/drupal/drupal.module
165
%%DRUPAL_BASE%%/modules/dblog/dblog.admin.inc
166
%%DRUPAL_BASE%%/modules/dblog/dblog.css
167
%%DRUPAL_BASE%%/modules/dblog/dblog.info
168
%%DRUPAL_BASE%%/modules/dblog/dblog.install
169
%%DRUPAL_BASE%%/modules/dblog/dblog.module
170
%%DRUPAL_BASE%%/modules/filter/filter.admin.inc
116
%%DRUPAL_BASE%%/modules/filter/filter.info
171
%%DRUPAL_BASE%%/modules/filter/filter.info
172
%%DRUPAL_BASE%%/modules/filter/filter.install
117
%%DRUPAL_BASE%%/modules/filter/filter.module
173
%%DRUPAL_BASE%%/modules/filter/filter.module
174
%%DRUPAL_BASE%%/modules/filter/filter.pages.inc
175
%%DRUPAL_BASE%%/modules/forum/forum-icon.tpl.php
176
%%DRUPAL_BASE%%/modules/forum/forum-list.tpl.php
177
%%DRUPAL_BASE%%/modules/forum/forum-rtl.css
178
%%DRUPAL_BASE%%/modules/forum/forum-submitted.tpl.php
179
%%DRUPAL_BASE%%/modules/forum/forum-topic-list.tpl.php
180
%%DRUPAL_BASE%%/modules/forum/forum-topic-navigation.tpl.php
181
%%DRUPAL_BASE%%/modules/forum/forum.admin.inc
118
%%DRUPAL_BASE%%/modules/forum/forum.css
182
%%DRUPAL_BASE%%/modules/forum/forum.css
119
%%DRUPAL_BASE%%/modules/forum/forum.info
183
%%DRUPAL_BASE%%/modules/forum/forum.info
120
%%DRUPAL_BASE%%/modules/forum/forum.install
184
%%DRUPAL_BASE%%/modules/forum/forum.install
121
%%DRUPAL_BASE%%/modules/forum/forum.module
185
%%DRUPAL_BASE%%/modules/forum/forum.module
186
%%DRUPAL_BASE%%/modules/forum/forum.pages.inc
187
%%DRUPAL_BASE%%/modules/forum/forums.tpl.php
188
%%DRUPAL_BASE%%/modules/help/help-rtl.css
189
%%DRUPAL_BASE%%/modules/help/help.admin.inc
122
%%DRUPAL_BASE%%/modules/help/help.css
190
%%DRUPAL_BASE%%/modules/help/help.css
123
%%DRUPAL_BASE%%/modules/help/help.info
191
%%DRUPAL_BASE%%/modules/help/help.info
124
%%DRUPAL_BASE%%/modules/help/help.module
192
%%DRUPAL_BASE%%/modules/help/help.module
125
%%DRUPAL_BASE%%/modules/legacy/legacy.info
126
%%DRUPAL_BASE%%/modules/legacy/legacy.module
127
%%DRUPAL_BASE%%/modules/locale/locale.css
193
%%DRUPAL_BASE%%/modules/locale/locale.css
128
%%DRUPAL_BASE%%/modules/locale/locale.info
194
%%DRUPAL_BASE%%/modules/locale/locale.info
129
%%DRUPAL_BASE%%/modules/locale/locale.install
195
%%DRUPAL_BASE%%/modules/locale/locale.install
130
%%DRUPAL_BASE%%/modules/locale/locale.module
196
%%DRUPAL_BASE%%/modules/locale/locale.module
197
%%DRUPAL_BASE%%/modules/menu/menu.admin.inc
131
%%DRUPAL_BASE%%/modules/menu/menu.info
198
%%DRUPAL_BASE%%/modules/menu/menu.info
199
%%DRUPAL_BASE%%/modules/menu/menu.install
132
%%DRUPAL_BASE%%/modules/menu/menu.module
200
%%DRUPAL_BASE%%/modules/menu/menu.module
133
%%DRUPAL_BASE%%/modules/node/content_types.inc
201
%%DRUPAL_BASE%%/modules/node/content_types.inc
202
%%DRUPAL_BASE%%/modules/node/node-rtl.css
203
%%DRUPAL_BASE%%/modules/node/node.admin.inc
134
%%DRUPAL_BASE%%/modules/node/node.css
204
%%DRUPAL_BASE%%/modules/node/node.css
135
%%DRUPAL_BASE%%/modules/node/node.info
205
%%DRUPAL_BASE%%/modules/node/node.info
206
%%DRUPAL_BASE%%/modules/node/node.install
136
%%DRUPAL_BASE%%/modules/node/node.module
207
%%DRUPAL_BASE%%/modules/node/node.module
208
%%DRUPAL_BASE%%/modules/node/node.pages.inc
209
%%DRUPAL_BASE%%/modules/node/node.tpl.php
210
%%DRUPAL_BASE%%/modules/openid/login-bg.png
211
%%DRUPAL_BASE%%/modules/openid/openid.css
212
%%DRUPAL_BASE%%/modules/openid/openid.inc
213
%%DRUPAL_BASE%%/modules/openid/openid.info
214
%%DRUPAL_BASE%%/modules/openid/openid.install
215
%%DRUPAL_BASE%%/modules/openid/openid.js
216
%%DRUPAL_BASE%%/modules/openid/openid.module
217
%%DRUPAL_BASE%%/modules/openid/openid.pages.inc
218
%%DRUPAL_BASE%%/modules/openid/xrds.inc
219
%%DRUPAL_BASE%%/modules/path/path.admin.inc
137
%%DRUPAL_BASE%%/modules/path/path.info
220
%%DRUPAL_BASE%%/modules/path/path.info
138
%%DRUPAL_BASE%%/modules/path/path.module
221
%%DRUPAL_BASE%%/modules/path/path.module
222
%%DRUPAL_BASE%%/modules/php/php.info
223
%%DRUPAL_BASE%%/modules/php/php.install
224
%%DRUPAL_BASE%%/modules/php/php.module
139
%%DRUPAL_BASE%%/modules/ping/ping.info
225
%%DRUPAL_BASE%%/modules/ping/ping.info
140
%%DRUPAL_BASE%%/modules/ping/ping.module
226
%%DRUPAL_BASE%%/modules/ping/ping.module
227
%%DRUPAL_BASE%%/modules/poll/poll-bar-block.tpl.php
228
%%DRUPAL_BASE%%/modules/poll/poll-bar.tpl.php
229
%%DRUPAL_BASE%%/modules/poll/poll-results-block.tpl.php
230
%%DRUPAL_BASE%%/modules/poll/poll-results.tpl.php
231
%%DRUPAL_BASE%%/modules/poll/poll-rtl.css
232
%%DRUPAL_BASE%%/modules/poll/poll-vote.tpl.php
141
%%DRUPAL_BASE%%/modules/poll/poll.css
233
%%DRUPAL_BASE%%/modules/poll/poll.css
142
%%DRUPAL_BASE%%/modules/poll/poll.info
234
%%DRUPAL_BASE%%/modules/poll/poll.info
143
%%DRUPAL_BASE%%/modules/poll/poll.install
235
%%DRUPAL_BASE%%/modules/poll/poll.install
144
%%DRUPAL_BASE%%/modules/poll/poll.module
236
%%DRUPAL_BASE%%/modules/poll/poll.module
237
%%DRUPAL_BASE%%/modules/poll/poll.pages.inc
238
%%DRUPAL_BASE%%/modules/profile/profile-block.tpl.php
239
%%DRUPAL_BASE%%/modules/profile/profile-listing.tpl.php
240
%%DRUPAL_BASE%%/modules/profile/profile-wrapper.tpl.php
241
%%DRUPAL_BASE%%/modules/profile/profile.admin.inc
242
%%DRUPAL_BASE%%/modules/profile/profile.css
145
%%DRUPAL_BASE%%/modules/profile/profile.info
243
%%DRUPAL_BASE%%/modules/profile/profile.info
146
%%DRUPAL_BASE%%/modules/profile/profile.install
244
%%DRUPAL_BASE%%/modules/profile/profile.install
245
%%DRUPAL_BASE%%/modules/profile/profile.js
147
%%DRUPAL_BASE%%/modules/profile/profile.module
246
%%DRUPAL_BASE%%/modules/profile/profile.module
247
%%DRUPAL_BASE%%/modules/profile/profile.pages.inc
248
%%DRUPAL_BASE%%/modules/search/search-block-form.tpl.php
249
%%DRUPAL_BASE%%/modules/search/search-result.tpl.php
250
%%DRUPAL_BASE%%/modules/search/search-results.tpl.php
251
%%DRUPAL_BASE%%/modules/search/search-rtl.css
252
%%DRUPAL_BASE%%/modules/search/search-theme-form.tpl.php
253
%%DRUPAL_BASE%%/modules/search/search.admin.inc
148
%%DRUPAL_BASE%%/modules/search/search.css
254
%%DRUPAL_BASE%%/modules/search/search.css
149
%%DRUPAL_BASE%%/modules/search/search.info
255
%%DRUPAL_BASE%%/modules/search/search.info
150
%%DRUPAL_BASE%%/modules/search/search.install
256
%%DRUPAL_BASE%%/modules/search/search.install
151
%%DRUPAL_BASE%%/modules/search/search.module
257
%%DRUPAL_BASE%%/modules/search/search.module
258
%%DRUPAL_BASE%%/modules/search/search.pages.inc
259
%%DRUPAL_BASE%%/modules/statistics/statistics.admin.inc
152
%%DRUPAL_BASE%%/modules/statistics/statistics.info
260
%%DRUPAL_BASE%%/modules/statistics/statistics.info
153
%%DRUPAL_BASE%%/modules/statistics/statistics.install
261
%%DRUPAL_BASE%%/modules/statistics/statistics.install
154
%%DRUPAL_BASE%%/modules/statistics/statistics.module
262
%%DRUPAL_BASE%%/modules/statistics/statistics.module
263
%%DRUPAL_BASE%%/modules/statistics/statistics.pages.inc
264
%%DRUPAL_BASE%%/modules/syslog/syslog.info
265
%%DRUPAL_BASE%%/modules/syslog/syslog.module
266
%%DRUPAL_BASE%%/modules/system/admin-rtl.css
155
%%DRUPAL_BASE%%/modules/system/admin.css
267
%%DRUPAL_BASE%%/modules/system/admin.css
268
%%DRUPAL_BASE%%/modules/system/block.tpl.php
269
%%DRUPAL_BASE%%/modules/system/box.tpl.php
270
%%DRUPAL_BASE%%/modules/system/defaults-rtl.css
156
%%DRUPAL_BASE%%/modules/system/defaults.css
271
%%DRUPAL_BASE%%/modules/system/defaults.css
272
%%DRUPAL_BASE%%/modules/system/maintenance-page.tpl.php
273
%%DRUPAL_BASE%%/modules/system/maintenance.css
274
%%DRUPAL_BASE%%/modules/system/page.tpl.php
275
%%DRUPAL_BASE%%/modules/system/system-menus-rtl.css
276
%%DRUPAL_BASE%%/modules/system/system-menus.css
277
%%DRUPAL_BASE%%/modules/system/system-rtl.css
278
%%DRUPAL_BASE%%/modules/system/system.admin.inc
157
%%DRUPAL_BASE%%/modules/system/system.css
279
%%DRUPAL_BASE%%/modules/system/system.css
158
%%DRUPAL_BASE%%/modules/system/system.info
280
%%DRUPAL_BASE%%/modules/system/system.info
159
%%DRUPAL_BASE%%/modules/system/system.install
281
%%DRUPAL_BASE%%/modules/system/system.install
282
%%DRUPAL_BASE%%/modules/system/system.js
160
%%DRUPAL_BASE%%/modules/system/system.module
283
%%DRUPAL_BASE%%/modules/system/system.module
284
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.admin.inc
285
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.css
161
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.info
286
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.info
287
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.install
288
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.js
162
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.module
289
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.module
290
%%DRUPAL_BASE%%/modules/taxonomy/taxonomy.pages.inc
291
%%DRUPAL_BASE%%/modules/throttle/throttle.admin.inc
163
%%DRUPAL_BASE%%/modules/throttle/throttle.info
292
%%DRUPAL_BASE%%/modules/throttle/throttle.info
164
%%DRUPAL_BASE%%/modules/throttle/throttle.module
293
%%DRUPAL_BASE%%/modules/throttle/throttle.module
165
%%DRUPAL_BASE%%/modules/tracker/tracker.css
294
%%DRUPAL_BASE%%/modules/tracker/tracker.css
166
%%DRUPAL_BASE%%/modules/tracker/tracker.info
295
%%DRUPAL_BASE%%/modules/tracker/tracker.info
167
%%DRUPAL_BASE%%/modules/tracker/tracker.module
296
%%DRUPAL_BASE%%/modules/tracker/tracker.module
297
%%DRUPAL_BASE%%/modules/tracker/tracker.pages.inc
298
%%DRUPAL_BASE%%/modules/translation/translation.info
299
%%DRUPAL_BASE%%/modules/translation/translation.module
300
%%DRUPAL_BASE%%/modules/translation/translation.pages.inc
301
%%DRUPAL_BASE%%/modules/trigger/trigger.admin.inc
302
%%DRUPAL_BASE%%/modules/trigger/trigger.info
303
%%DRUPAL_BASE%%/modules/trigger/trigger.install
304
%%DRUPAL_BASE%%/modules/trigger/trigger.module
305
%%DRUPAL_BASE%%/modules/update/update-rtl.css
306
%%DRUPAL_BASE%%/modules/update/update.compare.inc
307
%%DRUPAL_BASE%%/modules/update/update.css
308
%%DRUPAL_BASE%%/modules/update/update.fetch.inc
309
%%DRUPAL_BASE%%/modules/update/update.info
310
%%DRUPAL_BASE%%/modules/update/update.install
311
%%DRUPAL_BASE%%/modules/update/update.module
312
%%DRUPAL_BASE%%/modules/update/update.report.inc
313
%%DRUPAL_BASE%%/modules/update/update.settings.inc
314
%%DRUPAL_BASE%%/modules/upload/upload.admin.inc
168
%%DRUPAL_BASE%%/modules/upload/upload.info
315
%%DRUPAL_BASE%%/modules/upload/upload.info
316
%%DRUPAL_BASE%%/modules/upload/upload.install
169
%%DRUPAL_BASE%%/modules/upload/upload.module
317
%%DRUPAL_BASE%%/modules/upload/upload.module
318
%%DRUPAL_BASE%%/modules/user/user-picture.tpl.php
319
%%DRUPAL_BASE%%/modules/user/user-profile-category.tpl.php
320
%%DRUPAL_BASE%%/modules/user/user-profile-item.tpl.php
321
%%DRUPAL_BASE%%/modules/user/user-profile.tpl.php
322
%%DRUPAL_BASE%%/modules/user/user-rtl.css
323
%%DRUPAL_BASE%%/modules/user/user.admin.inc
170
%%DRUPAL_BASE%%/modules/user/user.css
324
%%DRUPAL_BASE%%/modules/user/user.css
171
%%DRUPAL_BASE%%/modules/user/user.info
325
%%DRUPAL_BASE%%/modules/user/user.info
326
%%DRUPAL_BASE%%/modules/user/user.install
327
%%DRUPAL_BASE%%/modules/user/user.js
172
%%DRUPAL_BASE%%/modules/user/user.module
328
%%DRUPAL_BASE%%/modules/user/user.module
173
%%DRUPAL_BASE%%/modules/watchdog/watchdog.css
329
%%DRUPAL_BASE%%/modules/user/user.pages.inc
174
%%DRUPAL_BASE%%/modules/watchdog/watchdog.info
175
%%DRUPAL_BASE%%/modules/watchdog/watchdog.module
176
%%DRUPAL_BASE%%/profiles/default/default.profile
330
%%DRUPAL_BASE%%/profiles/default/default.profile
177
%%DRUPAL_BASE%%/robots.txt
331
%%DRUPAL_BASE%%/robots.txt
178
%%DRUPAL_BASE%%/scripts/code-clean.sh
332
%%DRUPAL_BASE%%/scripts/code-clean.sh
179
%%DRUPAL_BASE%%/scripts/code-style.pl
333
%%DRUPAL_BASE%%/scripts/code-style.pl
180
%%DRUPAL_BASE%%/scripts/cron-curl.sh
334
%%DRUPAL_BASE%%/scripts/cron-curl.sh
181
%%DRUPAL_BASE%%/scripts/cron-lynx.sh
335
%%DRUPAL_BASE%%/scripts/cron-lynx.sh
336
%%DRUPAL_BASE%%/scripts/drupal.sh
182
%%DRUPAL_BASE%%/sites/all/README.txt
337
%%DRUPAL_BASE%%/sites/all/README.txt
183
%%DRUPAL_BASE%%/sites/all/modules/.keepme
338
%%DRUPAL_BASE%%/sites/all/modules/.keepme
184
%%DRUPAL_BASE%%/sites/all/themes/.keepme
339
%%DRUPAL_BASE%%/sites/all/themes/.keepme
185
%%DRUPAL_BASE%%/sites/default/settings.php
340
%%DRUPAL_BASE%%/sites/default/default.settings.php
186
%%DRUPAL_BASE%%/sites/default/settings.php-dist
341
%%DRUPAL_BASE%%/sites/default/default.settings.php-dist
342
%%DRUPAL_BASE%%/themes/README.txt
187
%%DRUPAL_BASE%%/themes/bluemarine/block.tpl.php
343
%%DRUPAL_BASE%%/themes/bluemarine/block.tpl.php
344
%%DRUPAL_BASE%%/themes/bluemarine/bluemarine.info
188
%%DRUPAL_BASE%%/themes/bluemarine/box.tpl.php
345
%%DRUPAL_BASE%%/themes/bluemarine/box.tpl.php
189
%%DRUPAL_BASE%%/themes/bluemarine/comment.tpl.php
346
%%DRUPAL_BASE%%/themes/bluemarine/comment.tpl.php
190
%%DRUPAL_BASE%%/themes/bluemarine/logo.png
347
%%DRUPAL_BASE%%/themes/bluemarine/logo.png
191
%%DRUPAL_BASE%%/themes/bluemarine/node.tpl.php
348
%%DRUPAL_BASE%%/themes/bluemarine/node.tpl.php
192
%%DRUPAL_BASE%%/themes/bluemarine/page.tpl.php
349
%%DRUPAL_BASE%%/themes/bluemarine/page.tpl.php
193
%%DRUPAL_BASE%%/themes/bluemarine/screenshot.png
350
%%DRUPAL_BASE%%/themes/bluemarine/screenshot.png
351
%%DRUPAL_BASE%%/themes/bluemarine/style-rtl.css
194
%%DRUPAL_BASE%%/themes/bluemarine/style.css
352
%%DRUPAL_BASE%%/themes/bluemarine/style.css
195
%%DRUPAL_BASE%%/themes/chameleon/background.png
353
%%DRUPAL_BASE%%/themes/chameleon/background.png
354
%%DRUPAL_BASE%%/themes/chameleon/chameleon.info
196
%%DRUPAL_BASE%%/themes/chameleon/chameleon.theme
355
%%DRUPAL_BASE%%/themes/chameleon/chameleon.theme
356
%%DRUPAL_BASE%%/themes/chameleon/common-rtl.css
197
%%DRUPAL_BASE%%/themes/chameleon/common.css
357
%%DRUPAL_BASE%%/themes/chameleon/common.css
198
%%DRUPAL_BASE%%/themes/chameleon/logo.png
358
%%DRUPAL_BASE%%/themes/chameleon/logo.png
199
%%DRUPAL_BASE%%/themes/chameleon/marvin/bullet.png
359
%%DRUPAL_BASE%%/themes/chameleon/marvin/bullet.png
360
%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark-rtl.png
200
%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark.png
361
%%DRUPAL_BASE%%/themes/chameleon/marvin/druplicon-watermark.png
201
%%DRUPAL_BASE%%/themes/chameleon/marvin/logo.png
362
%%DRUPAL_BASE%%/themes/chameleon/marvin/logo.png
363
%%DRUPAL_BASE%%/themes/chameleon/marvin/marvin.info
202
%%DRUPAL_BASE%%/themes/chameleon/marvin/screenshot.png
364
%%DRUPAL_BASE%%/themes/chameleon/marvin/screenshot.png
365
%%DRUPAL_BASE%%/themes/chameleon/marvin/style-rtl.css
203
%%DRUPAL_BASE%%/themes/chameleon/marvin/style.css
366
%%DRUPAL_BASE%%/themes/chameleon/marvin/style.css
204
%%DRUPAL_BASE%%/themes/chameleon/screenshot.png
367
%%DRUPAL_BASE%%/themes/chameleon/screenshot.png
368
%%DRUPAL_BASE%%/themes/chameleon/style-rtl.css
205
%%DRUPAL_BASE%%/themes/chameleon/style.css
369
%%DRUPAL_BASE%%/themes/chameleon/style.css
206
%%DRUPAL_BASE%%/themes/engines/phptemplate/block.tpl.php
207
%%DRUPAL_BASE%%/themes/engines/phptemplate/box.tpl.php
208
%%DRUPAL_BASE%%/themes/engines/phptemplate/comment.tpl.php
209
%%DRUPAL_BASE%%/themes/engines/phptemplate/default.tpl.php
210
%%DRUPAL_BASE%%/themes/engines/phptemplate/node.tpl.php
211
%%DRUPAL_BASE%%/themes/engines/phptemplate/phptemplate.engine
370
%%DRUPAL_BASE%%/themes/engines/phptemplate/phptemplate.engine
212
%%DRUPAL_BASE%%/themes/garland/block.tpl.php
371
%%DRUPAL_BASE%%/themes/garland/block.tpl.php
213
%%DRUPAL_BASE%%/themes/garland/color/base.png
372
%%DRUPAL_BASE%%/themes/garland/color/base.png
Lines 215-221 Link Here
215
%%DRUPAL_BASE%%/themes/garland/color/preview.css
374
%%DRUPAL_BASE%%/themes/garland/color/preview.css
216
%%DRUPAL_BASE%%/themes/garland/color/preview.png
375
%%DRUPAL_BASE%%/themes/garland/color/preview.png
217
%%DRUPAL_BASE%%/themes/garland/comment.tpl.php
376
%%DRUPAL_BASE%%/themes/garland/comment.tpl.php
377
%%DRUPAL_BASE%%/themes/garland/fix-ie-rtl.css
218
%%DRUPAL_BASE%%/themes/garland/fix-ie.css
378
%%DRUPAL_BASE%%/themes/garland/fix-ie.css
379
%%DRUPAL_BASE%%/themes/garland/garland.info
219
%%DRUPAL_BASE%%/themes/garland/images/bg-bar-white.png
380
%%DRUPAL_BASE%%/themes/garland/images/bg-bar-white.png
220
%%DRUPAL_BASE%%/themes/garland/images/bg-bar.png
381
%%DRUPAL_BASE%%/themes/garland/images/bg-bar.png
221
%%DRUPAL_BASE%%/themes/garland/images/bg-content-left.png
382
%%DRUPAL_BASE%%/themes/garland/images/bg-content-left.png
Lines 227-252 Link Here
227
%%DRUPAL_BASE%%/themes/garland/images/bg-tab.png
388
%%DRUPAL_BASE%%/themes/garland/images/bg-tab.png
228
%%DRUPAL_BASE%%/themes/garland/images/body.png
389
%%DRUPAL_BASE%%/themes/garland/images/body.png
229
%%DRUPAL_BASE%%/themes/garland/images/gradient-inner.png
390
%%DRUPAL_BASE%%/themes/garland/images/gradient-inner.png
391
%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed-rtl.gif
230
%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed.gif
392
%%DRUPAL_BASE%%/themes/garland/images/menu-collapsed.gif
231
%%DRUPAL_BASE%%/themes/garland/images/menu-expanded.gif
393
%%DRUPAL_BASE%%/themes/garland/images/menu-expanded.gif
232
%%DRUPAL_BASE%%/themes/garland/images/menu-leaf.gif
394
%%DRUPAL_BASE%%/themes/garland/images/menu-leaf.gif
395
%%DRUPAL_BASE%%/themes/garland/images/task-list.png
233
%%DRUPAL_BASE%%/themes/garland/logo.png
396
%%DRUPAL_BASE%%/themes/garland/logo.png
397
%%DRUPAL_BASE%%/themes/garland/maintenance-page.tpl.php
234
%%DRUPAL_BASE%%/themes/garland/minnelli/color/base.png
398
%%DRUPAL_BASE%%/themes/garland/minnelli/color/base.png
235
%%DRUPAL_BASE%%/themes/garland/minnelli/color/color.inc
399
%%DRUPAL_BASE%%/themes/garland/minnelli/color/color.inc
236
%%DRUPAL_BASE%%/themes/garland/minnelli/color/preview.png
400
%%DRUPAL_BASE%%/themes/garland/minnelli/color/preview.png
237
%%DRUPAL_BASE%%/themes/garland/minnelli/logo.png
401
%%DRUPAL_BASE%%/themes/garland/minnelli/logo.png
402
%%DRUPAL_BASE%%/themes/garland/minnelli/minnelli.css
403
%%DRUPAL_BASE%%/themes/garland/minnelli/minnelli.info
238
%%DRUPAL_BASE%%/themes/garland/minnelli/screenshot.png
404
%%DRUPAL_BASE%%/themes/garland/minnelli/screenshot.png
239
%%DRUPAL_BASE%%/themes/garland/minnelli/style.css
240
%%DRUPAL_BASE%%/themes/garland/node.tpl.php
405
%%DRUPAL_BASE%%/themes/garland/node.tpl.php
241
%%DRUPAL_BASE%%/themes/garland/page.tpl.php
406
%%DRUPAL_BASE%%/themes/garland/page.tpl.php
242
%%DRUPAL_BASE%%/themes/garland/print.css
407
%%DRUPAL_BASE%%/themes/garland/print.css
243
%%DRUPAL_BASE%%/themes/garland/screenshot.png
408
%%DRUPAL_BASE%%/themes/garland/screenshot.png
409
%%DRUPAL_BASE%%/themes/garland/style-rtl.css
244
%%DRUPAL_BASE%%/themes/garland/style.css
410
%%DRUPAL_BASE%%/themes/garland/style.css
245
%%DRUPAL_BASE%%/themes/garland/template.php
411
%%DRUPAL_BASE%%/themes/garland/template.php
412
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover-rtl.png
246
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover.png
413
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-hover.png
414
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-rtl.png
415
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited-rtl.png
247
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited.png
416
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next-visited.png
248
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next.png
417
%%DRUPAL_BASE%%/themes/pushbutton/arrow-next.png
418
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover-rtl.png
249
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover.png
419
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-hover.png
420
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-rtl.png
421
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited-rtl.png
250
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited.png
422
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev-visited.png
251
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev.png
423
%%DRUPAL_BASE%%/themes/pushbutton/arrow-prev.png
252
%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-hover.png
424
%%DRUPAL_BASE%%/themes/pushbutton/arrow-up-hover.png
Lines 256-279 Link Here
256
%%DRUPAL_BASE%%/themes/pushbutton/block.tpl.php
428
%%DRUPAL_BASE%%/themes/pushbutton/block.tpl.php
257
%%DRUPAL_BASE%%/themes/pushbutton/box.tpl.php
429
%%DRUPAL_BASE%%/themes/pushbutton/box.tpl.php
258
%%DRUPAL_BASE%%/themes/pushbutton/comment.tpl.php
430
%%DRUPAL_BASE%%/themes/pushbutton/comment.tpl.php
431
%%DRUPAL_BASE%%/themes/pushbutton/forum-container-rtl.jpg
259
%%DRUPAL_BASE%%/themes/pushbutton/forum-container.jpg
432
%%DRUPAL_BASE%%/themes/pushbutton/forum-container.jpg
433
%%DRUPAL_BASE%%/themes/pushbutton/forum-link-rtl.png
260
%%DRUPAL_BASE%%/themes/pushbutton/forum-link.png
434
%%DRUPAL_BASE%%/themes/pushbutton/forum-link.png
261
%%DRUPAL_BASE%%/themes/pushbutton/header-a.jpg
435
%%DRUPAL_BASE%%/themes/pushbutton/header-a.jpg
436
%%DRUPAL_BASE%%/themes/pushbutton/header-b-rtl.jpg
262
%%DRUPAL_BASE%%/themes/pushbutton/header-b.jpg
437
%%DRUPAL_BASE%%/themes/pushbutton/header-b.jpg
263
%%DRUPAL_BASE%%/themes/pushbutton/header-c.png
438
%%DRUPAL_BASE%%/themes/pushbutton/header-c.png
439
%%DRUPAL_BASE%%/themes/pushbutton/icon-block-rtl.png
264
%%DRUPAL_BASE%%/themes/pushbutton/icon-block.png
440
%%DRUPAL_BASE%%/themes/pushbutton/icon-block.png
441
%%DRUPAL_BASE%%/themes/pushbutton/icon-comment-rtl.png
265
%%DRUPAL_BASE%%/themes/pushbutton/icon-comment.png
442
%%DRUPAL_BASE%%/themes/pushbutton/icon-comment.png
443
%%DRUPAL_BASE%%/themes/pushbutton/logo-active-rtl.jpg
266
%%DRUPAL_BASE%%/themes/pushbutton/logo-active.jpg
444
%%DRUPAL_BASE%%/themes/pushbutton/logo-active.jpg
445
%%DRUPAL_BASE%%/themes/pushbutton/logo-background-rtl.jpg
267
%%DRUPAL_BASE%%/themes/pushbutton/logo-background.jpg
446
%%DRUPAL_BASE%%/themes/pushbutton/logo-background.jpg
447
%%DRUPAL_BASE%%/themes/pushbutton/logo-hover-rtl.jpg
268
%%DRUPAL_BASE%%/themes/pushbutton/logo-hover.jpg
448
%%DRUPAL_BASE%%/themes/pushbutton/logo-hover.jpg
269
%%DRUPAL_BASE%%/themes/pushbutton/logo.png
449
%%DRUPAL_BASE%%/themes/pushbutton/logo.png
270
%%DRUPAL_BASE%%/themes/pushbutton/node.tpl.php
450
%%DRUPAL_BASE%%/themes/pushbutton/node.tpl.php
271
%%DRUPAL_BASE%%/themes/pushbutton/page.tpl.php
451
%%DRUPAL_BASE%%/themes/pushbutton/page.tpl.php
452
%%DRUPAL_BASE%%/themes/pushbutton/pushbutton.info
272
%%DRUPAL_BASE%%/themes/pushbutton/screenshot.png
453
%%DRUPAL_BASE%%/themes/pushbutton/screenshot.png
454
%%DRUPAL_BASE%%/themes/pushbutton/style-rtl.css
273
%%DRUPAL_BASE%%/themes/pushbutton/style.css
455
%%DRUPAL_BASE%%/themes/pushbutton/style.css
456
%%DRUPAL_BASE%%/themes/pushbutton/tabs-off-rtl.png
274
%%DRUPAL_BASE%%/themes/pushbutton/tabs-off.png
457
%%DRUPAL_BASE%%/themes/pushbutton/tabs-off.png
458
%%DRUPAL_BASE%%/themes/pushbutton/tabs-on-rtl.png
275
%%DRUPAL_BASE%%/themes/pushbutton/tabs-on.png
459
%%DRUPAL_BASE%%/themes/pushbutton/tabs-on.png
460
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover-rtl.png
276
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover.png
461
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-hover.png
462
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off-rtl.png
277
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off.png
463
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-off.png
278
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-on.png
464
%%DRUPAL_BASE%%/themes/pushbutton/tabs-option-on.png
279
%%DRUPAL_BASE%%/update.php
465
%%DRUPAL_BASE%%/update.php
Lines 282-288 Link Here
282
@dirrm %%DRUPAL_BASE%%/includes
468
@dirrm %%DRUPAL_BASE%%/includes
283
@dirrm %%DRUPAL_BASE%%/misc/farbtastic
469
@dirrm %%DRUPAL_BASE%%/misc/farbtastic
284
@dirrm %%DRUPAL_BASE%%/misc
470
@dirrm %%DRUPAL_BASE%%/misc
285
@dirrm %%DRUPAL_BASE%%/modules/menu
471
@dirrm %%DRUPAL_BASE%%/modules/aggregator
286
@dirrm %%DRUPAL_BASE%%/modules/block
472
@dirrm %%DRUPAL_BASE%%/modules/block
287
@dirrm %%DRUPAL_BASE%%/modules/blog
473
@dirrm %%DRUPAL_BASE%%/modules/blog
288
@dirrm %%DRUPAL_BASE%%/modules/blogapi
474
@dirrm %%DRUPAL_BASE%%/modules/blogapi
Lines 291-318 Link Here
291
@dirrm %%DRUPAL_BASE%%/modules/color
477
@dirrm %%DRUPAL_BASE%%/modules/color
292
@dirrm %%DRUPAL_BASE%%/modules/comment
478
@dirrm %%DRUPAL_BASE%%/modules/comment
293
@dirrm %%DRUPAL_BASE%%/modules/contact
479
@dirrm %%DRUPAL_BASE%%/modules/contact
294
@dirrm %%DRUPAL_BASE%%/modules/drupal
480
@dirrm %%DRUPAL_BASE%%/modules/dblog
295
@dirrm %%DRUPAL_BASE%%/modules/filter
481
@dirrm %%DRUPAL_BASE%%/modules/filter
296
@dirrm %%DRUPAL_BASE%%/modules/forum
482
@dirrm %%DRUPAL_BASE%%/modules/forum
297
@dirrm %%DRUPAL_BASE%%/modules/help
483
@dirrm %%DRUPAL_BASE%%/modules/help
298
@dirrm %%DRUPAL_BASE%%/modules/legacy
299
@dirrm %%DRUPAL_BASE%%/modules/locale
484
@dirrm %%DRUPAL_BASE%%/modules/locale
300
@dirrm %%DRUPAL_BASE%%/modules/aggregator
485
@dirrm %%DRUPAL_BASE%%/modules/menu
301
@dirrm %%DRUPAL_BASE%%/modules/node
486
@dirrm %%DRUPAL_BASE%%/modules/node
487
@dirrm %%DRUPAL_BASE%%/modules/openid
302
@dirrm %%DRUPAL_BASE%%/modules/path
488
@dirrm %%DRUPAL_BASE%%/modules/path
489
@dirrm %%DRUPAL_BASE%%/modules/php
303
@dirrm %%DRUPAL_BASE%%/modules/ping
490
@dirrm %%DRUPAL_BASE%%/modules/ping
304
@dirrm %%DRUPAL_BASE%%/modules/poll
491
@dirrm %%DRUPAL_BASE%%/modules/poll
305
@dirrm %%DRUPAL_BASE%%/modules/profile
492
@dirrm %%DRUPAL_BASE%%/modules/profile
306
@dirrm %%DRUPAL_BASE%%/modules/search
493
@dirrm %%DRUPAL_BASE%%/modules/search
307
@dirrm %%DRUPAL_BASE%%/modules/statistics
494
@dirrm %%DRUPAL_BASE%%/modules/statistics
495
@dirrm %%DRUPAL_BASE%%/modules/syslog
308
@dirrm %%DRUPAL_BASE%%/modules/system
496
@dirrm %%DRUPAL_BASE%%/modules/system
309
@dirrm %%DRUPAL_BASE%%/modules/taxonomy
497
@dirrm %%DRUPAL_BASE%%/modules/taxonomy
310
@dirrm %%DRUPAL_BASE%%/modules/throttle
498
@dirrm %%DRUPAL_BASE%%/modules/throttle
311
@dirrm %%DRUPAL_BASE%%/modules/tracker
499
@dirrm %%DRUPAL_BASE%%/modules/tracker
500
@dirrm %%DRUPAL_BASE%%/modules/translation
501
@dirrm %%DRUPAL_BASE%%/modules/trigger
502
@dirrm %%DRUPAL_BASE%%/modules/update
312
@dirrm %%DRUPAL_BASE%%/modules/upload
503
@dirrm %%DRUPAL_BASE%%/modules/upload
313
@dirrm %%DRUPAL_BASE%%/modules/user
504
@dirrm %%DRUPAL_BASE%%/modules/user
314
@dirrm %%DRUPAL_BASE%%/modules/watchdog
315
@dirrm %%DRUPAL_BASE%%/modules
316
@dirrm %%DRUPAL_BASE%%/profiles/default
505
@dirrm %%DRUPAL_BASE%%/profiles/default
317
@dirrm %%DRUPAL_BASE%%/profiles
506
@dirrm %%DRUPAL_BASE%%/profiles
318
@dirrm %%DRUPAL_BASE%%/scripts
507
@dirrm %%DRUPAL_BASE%%/scripts
Lines 321-337 Link Here
321
@dirrm %%DRUPAL_BASE%%/themes/chameleon
510
@dirrm %%DRUPAL_BASE%%/themes/chameleon
322
@dirrm %%DRUPAL_BASE%%/themes/engines/phptemplate
511
@dirrm %%DRUPAL_BASE%%/themes/engines/phptemplate
323
@dirrm %%DRUPAL_BASE%%/themes/engines
512
@dirrm %%DRUPAL_BASE%%/themes/engines
324
@dirrm %%DRUPAL_BASE%%/themes/garland/images
325
@dirrm %%DRUPAL_BASE%%/themes/garland/color
513
@dirrm %%DRUPAL_BASE%%/themes/garland/color
514
@dirrm %%DRUPAL_BASE%%/themes/garland/images
326
@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli/color
515
@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli/color
327
@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli
516
@dirrm %%DRUPAL_BASE%%/themes/garland/minnelli
328
@dirrm %%DRUPAL_BASE%%/themes/garland
517
@dirrm %%DRUPAL_BASE%%/themes/garland
329
@dirrm %%DRUPAL_BASE%%/themes/pushbutton
518
@dirrm %%DRUPAL_BASE%%/themes/pushbutton
330
@dirrm %%DRUPAL_BASE%%/themes
519
@dirrm %%DRUPAL_BASE%%/themes
331
@dirrmtry %%DRUPAL_BASE%%/files
332
@dirrmtry %%DRUPAL_BASE%%/sites/all/modules
520
@dirrmtry %%DRUPAL_BASE%%/sites/all/modules
333
@dirrmtry %%DRUPAL_BASE%%/sites/all/themes
521
@dirrmtry %%DRUPAL_BASE%%/sites/all/themes
334
@dirrmtry %%DRUPAL_BASE%%/sites/all
522
@dirrmtry %%DRUPAL_BASE%%/sites/all
523
@dirrmtry %%DRUPAL_BASE%%/sites/default/files
335
@dirrmtry %%DRUPAL_BASE%%/sites/default
524
@dirrmtry %%DRUPAL_BASE%%/sites/default
336
@dirrmtry %%DRUPAL_BASE%%/sites
525
@dirrmtry %%DRUPAL_BASE%%/sites
337
@dirrmtry %%DRUPAL_BASE%%/modules
526
@dirrmtry %%DRUPAL_BASE%%/modules

Return to bug 123785