View | Details | Raw Unified | Return to bug 198526 | Differences between
and this patch

Collapse All | Expand All

(-)deskutils/py-khal/Makefile (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	khal
4
PORTVERSION=	0.4.0
5
CATEGORIES=	deskutils python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	che@bein.link
10
COMMENT=	CalDAV-based calendar
11
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>=3.2:${PORTSDIR}/devel/py-click \
16
	${PYTHON_PKGNAMEPREFIX}icalendar>=3.8.2:${PORTSDIR}/devel/py-icalendar \
17
	${PYTHON_PKGNAMEPREFIX}urwid>=1.2.1:${PORTSDIR}/devel/py-urwid \
18
	${PYTHON_PKGNAMEPREFIX}xdg>=0.25:${PORTSDIR}/devel/py-xdg \
19
	${PYTHON_PKGNAMEPREFIX}pytz>=2014.10:${PORTSDIR}/devel/py-pytz \
20
	${PYTHON_PKGNAMEPREFIX}dateutil>=2.3:${PORTSDIR}/devel/py-dateutil \
21
	${PYTHON_PKGNAMEPREFIX}configobj>=5.0.6:${PORTSDIR}/devel/py-configobj \
22
	${PYTHON_PKGNAMEPREFIX}tzlocal>=1.0:${PORTSDIR}/devel/py-tzlocal \
23
	${PYTHON_PKGNAMEPREFIX}vdirsyncer>=0.4.3:${PORTSDIR}/deskutils/py-vdirsyncer
24
25
USES=		python
26
USE_PYTHON=	autoplist distutils
27
28
.include <bsd.port.mk>
(-)deskutils/py-khal/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (khal-0.4.0.tar.gz) = 9762783cfe1343772da7fd5e287ecfbd825f25e29482b3d32834b41837111e84
2
SIZE (khal-0.4.0.tar.gz) = 43665
(-)deskutils/py-khal/pkg-descr (+5 lines)
Line 0 Link Here
1
Khal is a calendar program for the terminal for viewing, adding and editing 
2
events and calendars. Khal is build on the iCalendar and vdir (allowing the 
3
use of vdirsyncer for CalDAV compatibility) standards.
4
5
WWW: http://lostpackets.de/khal/
(-)www/lighttpd/Makefile (+230 lines)
Line 0 Link Here
1
# Created by: k@123.org
2
# $FreeBSD$
3
4
PORTNAME?=	lighttpd
5
PORTVERSION=	1.4.35
6
PORTREVISION=	5
7
CATEGORIES?=	www
8
MASTER_SITES?=	http://download.lighttpd.net/lighttpd/releases-1.4.x/
9
10
MAINTAINER?=	mat@FreeBSD.org
11
COMMENT?=	Secure, fast, compliant, and flexible Web Server
12
13
.if !defined(_BUILDING_LIGHTTPD_MODULE)
14
LICENSE=	BSD3CLAUSE
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
.endif
17
18
LIB_DEPENDS+=	libpcre.so:${PORTSDIR}/devel/pcre
19
20
GNU_CONFIGURE=	yes
21
USES=		gmake libtool pkgconfig tar:bzip2
22
23
USE_AUTOTOOLS=	autoconf autoheader aclocal automake
24
AUTOMAKE_ARGS=	-a -c -f
25
CONFIGURE_ARGS+=	--libdir=${PREFIX}/lib/lighttpd
26
INSTALL_TARGET=	install-strip
27
28
CPPFLAGS+=	-I${LOCALBASE}/include
29
LDFLAGS+=	-L${LOCALBASE}/lib
30
31
.if !defined(_BUILDING_LIGHTTPD_MODULE)
32
USE_RC_SUBR=	lighttpd
33
34
OPTIONS_DEFINE=	BZIP2 DOCS FAM GDBM IPV6 LIBEV LUA MEMCACHE MYSQL MYSQLAUTH \
35
		NODELAY LDAP OPENSSL SPAWNFCGI VALGRIND WEBDAV
36
37
OPTIONS_DEFAULT=	IPV6 OPENSSL
38
39
BZIP2_DESC=	bzip2 support (mod_compress)
40
GDBM_DESC=	gdbm storage (mod_trigger_b4_dl)
41
LDAP_DESC=	LDAP authentication
42
LUA_DESC=	lua support (mod_cml, mod_magnet)
43
MEMCACHE_DESC=	memcached storage (mod_trigger_b4_dl)
44
MYSQL_DESC=	MySQL support (mod_mysql_vhost)
45
MYSQLAUTH_DESC=	MySQL authentication (requires WITH_MYSQL)
46
NODELAY_DESC=	Set TCP_NODELAY on listening sockets
47
SPAWNFCGI_DESC=	Depend on spawn-fcgi utility
48
VALGRIND_DESC=	valgrind support
49
WEBDAV_DESC=	WebDAV support
50
51
FAM_USES=	fam
52
FAM_CONFIGURE_ON=	--with-fam
53
FAM_CONFIGURE_ENV=	FAM_CFLAGS="-I${LOCALBASE}/include" FAM_LIBS="-L${LOCALBASE}/lib"
54
55
LIGHTTPD_CONF_FILES=	lighttpd.conf modules.conf
56
57
LIGHTTPD_CONF_D_FILES=	access_log.conf \
58
	auth.conf cgi.conf cml.conf \
59
	compress.conf debug.conf dirlisting.conf \
60
	evhost.conf expire.conf fastcgi.conf \
61
	magnet.conf mime.conf mysql_vhost.conf proxy.conf \
62
	rrdtool.conf scgi.conf secdownload.conf \
63
	simple_vhost.conf ssi.conf status.conf \
64
	trigger_b4_dl.conf userdir.conf webdav.conf
65
66
LIGHTTPD_LOGROOT?=	/var/log/lighttpd
67
LIGHTTPD_WEBROOT?=	${PREFIX}/www/data
68
LIGHTTPD_USER?=		www
69
LIGHTTPD_GROUP?=	www
70
71
PLIST_SUB+=		LOGROOT="${LIGHTTPD_LOGROOT}" \
72
			USER="${LIGHTTPD_USER}" \
73
			GROUP="${LIGHTTPD_GROUP}" \
74
			MKDIR="${MKDIR}" \
75
			CHOWN="${CHOWN}"
76
77
.endif # !defined(_BUILDING_LIGHTTPD_MODULE)
78
79
.include <bsd.port.options.mk>
80
81
.if !defined(_BUILDING_LIGHTTPD_MODULE)
82
# Default REQUIRE to rc.d script
83
_REQUIRE=	DAEMON
84
85
.if ${PORT_OPTIONS:MDOCS}
86
DOCS=		AUTHORS COPYING INSTALL NEWS README
87
PORTDOCS=	${DOCS}
88
.endif
89
90
.if ${PORT_OPTIONS:MOPENSSL}
91
USE_OPENSSL=		yes
92
CONFIGURE_ARGS+=	--with-openssl \
93
			--with-openssl-includes=${OPENSSLINC} \
94
			--with-openssl-libs=${OPENSSLLIB}
95
.endif
96
97
.if ${PORT_OPTIONS:MBZIP2}
98
CONFIGURE_ARGS+=	--with-bzip2
99
.endif
100
101
.if ${PORT_OPTIONS:MGDBM}
102
LIB_DEPENDS+=		libgdbm.so:${PORTSDIR}/databases/gdbm
103
CONFIGURE_ARGS+=	--with-gdbm
104
.endif
105
106
.if empty(PORT_OPTIONS:MIPV6)
107
CONFIGURE_ARGS+=	--disable-ipv6
108
.endif
109
110
.if ${PORT_OPTIONS:MLIBEV}
111
CONFIGURE_ARGS+=	--with-libev=${LOCALBASE}
112
LIB_DEPENDS+=		libev.so:${PORTSDIR}/devel/libev
113
.endif
114
115
.if ${PORT_OPTIONS:MLUA}
116
USES+=			lua:51
117
CONFIGURE_ARGS+=	--with-lua
118
CONFIGURE_ENV+=		LUA_CFLAGS="-I${LUA_INCDIR}" LUA_LIBS="-L${LUA_LIBDIR} -llua-${LUA_VER}"
119
.endif
120
121
.if ${PORT_OPTIONS:MMEMCACHE}
122
LIB_DEPENDS+=		libmemcache.so:${PORTSDIR}/databases/libmemcache
123
CONFIGURE_ARGS+=	--with-memcache
124
.endif
125
126
.if ${PORT_OPTIONS:MMYSQL}
127
USE_MYSQL=		yes
128
CONFIGURE_ARGS+=	--with-mysql
129
_REQUIRE+=		mysql
130
.endif
131
132
.if ${PORT_OPTIONS:MMYSQLAUTH} && empty(PORT_OPTIONS:MMYSQL)
133
IGNORE=		option WITH_MYSQLAUTH requires WITH_MYSQL
134
.endif
135
136
.if ${PORT_OPTIONS:MMYSQLAUTH}
137
EXTRA_PATCHES+=		${FILESDIR}/extra-patch-mysqlauth
138
PORTDOCS+=		README.mysqlauth mysql_auth.sql
139
.endif
140
141
.if ${PORT_OPTIONS:MNODELAY}
142
EXTRA_PATCHES+=		${FILESDIR}/extra-patch-nodelay
143
.endif
144
145
.if ${PORT_OPTIONS:MLDAP}
146
USE_OPENLDAP=		yes
147
CONFIGURE_ARGS+=	--with-ldap
148
_REQUIRE+=		slapd
149
.endif
150
151
.if ${PORT_OPTIONS:MSPAWNFCGI}
152
RUN_DEPENDS+=		spawn-fcgi:${PORTSDIR}/www/spawn-fcgi
153
.endif
154
155
.if ${PORT_OPTIONS:MVALGRIND}
156
BUILD_DEPENDS+=		valgrind:${PORTSDIR}/devel/valgrind
157
RUN_DEPENDS+=		valgrind:${PORTSDIR}/devel/valgrind
158
CONFIGURE_ARGS+=	--with-valgrind
159
.endif
160
161
.if ${PORT_OPTIONS:MWEBDAV}
162
USE_GNOME+=		libxml2
163
LIB_DEPENDS+=		libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \
164
			libsqlite3.so:${PORTSDIR}/databases/sqlite3
165
CONFIGURE_ARGS+=	--with-webdav-props --with-webdav-locks
166
.endif
167
168
SUB_LIST+=		REQUIRE="${_REQUIRE}"
169
170
post-patch:
171
	@${REINPLACE_CMD} -e 's|-std=gnu99||' \
172
		${WRKSRC}/configure ${WRKSRC}/configure.ac
173
	@${REINPLACE_CMD} -E -e \
174
		's|^(server.document-root.*=).*|\1 "${PREFIX}/www/data/"|' \
175
		-e "s|/etc/lighttpd|${PREFIX}/etc/lighttpd|g" \
176
		-e 's|^(server.event-handler.*=).*|\1 "freebsd-kqueue"|' \
177
		-e 's|^(server.network-backend.*=).*|\1 "writev"|' \
178
		-e "s|^(server.username.*=).*|\1 \"${LIGHTTPD_USER}\"|" \
179
		-e "s|^(server.groupname.*=).*|\1 \"${LIGHTTPD_GROUP}\"|" \
180
		-e "s|^(var.log_root.*=).*|\1 \"${LIGHTTPD_LOGROOT}\"|" \
181
		-e "s|^(var.home_dir.*=).*|\1 \"/var/spool/lighttpd\"|" \
182
		-e "s|^(var.server_root.*=).*|\1 \"${LIGHTTPD_WEBROOT}\"|" \
183
		${WRKSRC}/doc/config/lighttpd.conf
184
	@${REINPLACE_CMD} -e "s|/etc/lighttpd|${PREFIX}/etc/lighttpd|g" \
185
		${WRKSRC}/doc/config/conf.d/auth.conf
186
	@${REINPLACE_CMD} -e "s|/usr/bin/python|${LOCALBASE}/bin/python|" \
187
		${WRKSRC}/doc/config/conf.d/cgi.conf \
188
		${WRKSRC}/tests/*.conf
189
	@${ECHO} >> ${WRKSRC}/doc/config/lighttpd.conf
190
	@${ECHO} "# IPv4 listening socket" >> \
191
		${WRKSRC}/doc/config/lighttpd.conf
192
	@${ECHO} "\$$SERVER[\"socket\"] == \"0.0.0.0:80\" { }" >> \
193
		${WRKSRC}/doc/config/lighttpd.conf
194
195
post-install:
196
	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d ${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d
197
.for FILE in ${LIGHTTPD_CONF_FILES}
198
	@${INSTALL_DATA} ${WRKSRC}/doc/config/${FILE} \
199
		${STAGEDIR}${PREFIX}/etc/lighttpd/${FILE}.sample
200
.endfor
201
.for FILE in ${LIGHTTPD_CONF_D_FILES}
202
	@${INSTALL_DATA} ${WRKSRC}/doc/config/conf.d/${FILE} \
203
		${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/${FILE}.sample
204
.endfor
205
	@${INSTALL_DATA} ${WRKSRC}/doc/config/vhosts.d/vhosts.template \
206
		${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d/vhosts.template
207
208
.if ${PORT_OPTIONS:MDOCS}
209
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
210
. for FILE in ${DOCS}
211
	@${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE}
212
. endfor
213
.endif
214
.if ${PORT_OPTIONS:MMYSQLAUTH}
215
. for FILE in README.mysqlauth mysql_auth.sql
216
	@${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE}
217
. endfor
218
.endif
219
	@${MKDIR} -m 0700 ${STAGEDIR}${LIGHTTPD_LOGROOT}
220
221
test: build
222
	@cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${MAKE} \
223
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} \
224
		check-TESTS
225
226
regression-test: test
227
228
.endif # !defined(_BUILDING_LIGHTTPD_MODULE)
229
230
.include <bsd.port.mk>
(-)www/lighttpd/distinfo (+6 lines)
Line 0 Link Here
1
SHA256 (lighttpd-1.4.35.tar.bz2) = 4a71c1f6d8af41ed894b507720c4c17184dc320590013881d5170ca7f15c5bf7
2
SIZE (lighttpd-1.4.35.tar.bz2) = 665955
3
SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = d7c3704d5253c4f3c18459f89059063b311e50096cd2c38fc982cec683c32e61
4
SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = 44695
5
SHA256 (lighttpd-1.4.26_mod_geoip.patch.gz) = db43cc0ed7c808b5eed3185d97346e70dea0f1ef4fa9ed436d08e4faff7f97e7
6
SIZE (lighttpd-1.4.26_mod_geoip.patch.gz) = 3267
(-)www/lighttpd/files/COPYING.mod_h264_streaming (+341 lines)
Line 0 Link Here
1
License
2
3
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS 
4
CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS 
5
PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE 
6
WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS 
7
PROHIBITED.
8
9
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND 
10
AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS 
11
LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU 
12
THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF 
13
SUCH TERMS AND CONDITIONS.
14
15
1. Definitions
16
17
   1. "Adaptation" means a work based upon the Work, or upon the 
18
Work and other pre-existing works, such as a translation, 
19
adaptation, derivative work, arrangement of music or other 
20
alterations of a literary or artistic work, or phonogram or 
21
performance and includes cinematographic adaptations or any other 
22
form in which the Work may be recast, transformed, or adapted 
23
including in any form recognizably derived from the original, except 
24
that a work that constitutes a Collection will not be considered an 
25
Adaptation for the purpose of this License. For the avoidance of 
26
doubt, where the Work is a musical work, performance or phonogram, 
27
the synchronization of the Work in timed-relation with a moving 
28
image ("synching") will be considered an Adaptation for the purpose 
29
of this License.
30
   2. "Collection" means a collection of literary or artistic works, 
31
such as encyclopedias and anthologies, or performances, phonograms 
32
or broadcasts, or other works or subject matter other than works 
33
listed in Section 1(g) below, which, by reason of the selection and 
34
arrangement of their contents, constitute intellectual creations, in 
35
which the Work is included in its entirety in unmodified form along 
36
with one or more other contributions, each constituting separate and 
37
independent works in themselves, which together are assembled into a 
38
collective whole. A work that constitutes a Collection will not be 
39
considered an Adaptation (as defined above) for the purposes of this 
40
License.
41
   3. "Distribute" means to make available to the public the 
42
original and copies of the Work or Adaptation, as appropriate, 
43
through sale or other transfer of ownership.
44
   4. "License Elements" means the following high-level license 
45
attributes as selected by Licensor and indicated in the title of 
46
this License: Attribution, Noncommercial, ShareAlike.
47
   5. "Licensor" means the individual, individuals, entity or 
48
entities that offer(s) the Work under the terms of this License.
49
   6. "Original Author" means, in the case of a literary or artistic 
50
work, the individual, individuals, entity or entities who created 
51
the Work or if no individual or entity can be identified, the 
52
publisher; and in addition (i) in the case of a performance the 
53
actors, singers, musicians, dancers, and other persons who act, 
54
sing, deliver, declaim, play in, interpret or otherwise perform 
55
literary or artistic works or expressions of folklore; (ii) in the 
56
case of a phonogram the producer being the person or legal entity 
57
who first fixes the sounds of a performance or other sounds; and, 
58
(iii) in the case of broadcasts, the organization that transmits the 
59
broadcast.
60
   7. "Work" means the literary and/or artistic work offered under 
61
the terms of this License including without limitation any 
62
production in the literary, scientific and artistic domain, whatever 
63
may be the mode or form of its expression including digital form, 
64
such as a book, pamphlet and other writing; a lecture, address, 
65
sermon or other work of the same nature; a dramatic or 
66
dramatico-musical work; a choreographic work or entertainment in 
67
dumb show; a musical composition with or without words; a 
68
cinematographic work to which are assimilated works expressed by a 
69
process analogous to cinematography; a work of drawing, painting, 
70
architecture, sculpture, engraving or lithography; a photographic 
71
work to which are assimilated works expressed by a process analogous 
72
to photography; a work of applied art; an illustration, map, plan, 
73
sketch or three-dimensional work relative to geography, topography, 
74
architecture or science; a performance; a broadcast; a phonogram; a 
75
compilation of data to the extent it is protected as a copyrightable 
76
work; or a work performed by a variety or circus performer to the 
77
extent it is not otherwise considered a literary or artistic work.
78
   8. "You" means an individual or entity exercising rights under 
79
this License who has not previously violated the terms of this 
80
License with respect to the Work, or who has received express 
81
permission from the Licensor to exercise rights under this License 
82
despite a previous violation.
83
   9. "Publicly Perform" means to perform public recitations of the 
84
Work and to communicate to the public those public recitations, by 
85
any means or process, including by wire or wireless means or public 
86
digital performances; to make available to the public Works in such 
87
a way that members of the public may access these Works from a place 
88
and at a place individually chosen by them; to perform the Work to 
89
the public by any means or process and the communication to the 
90
public of the performances of the Work, including by public digital 
91
performance; to broadcast and rebroadcast the Work by any means 
92
including signs, sounds or images.
93
  10. "Reproduce" means to make copies of the Work by any means 
94
including without limitation by sound or visual recordings and the 
95
right of fixation and reproducing fixations of the Work, including 
96
storage of a protected performance or phonogram in digital form or 
97
other electronic medium.
98
99
2. Fair Dealing Rights. Nothing in this License is intended to 
100
reduce, limit, or restrict any uses free from copyright or rights 
101
arising from limitations or exceptions that are provided for in 
102
connection with the copyright protection under copyright law or 
103
other applicable laws.
104
105
3. License Grant. Subject to the terms and conditions of this 
106
License, Licensor hereby grants You a worldwide, royalty-free, 
107
non-exclusive, perpetual (for the duration of the applicable 
108
copyright) license to exercise the rights in the Work as stated 
109
below:
110
111
   1. to Reproduce the Work, to incorporate the Work into one or 
112
more Collections, and to Reproduce the Work as incorporated in the 
113
Collections;
114
   2. to create and Reproduce Adaptations provided that any such 
115
Adaptation, including any translation in any medium, takes 
116
reasonable steps to clearly label, demarcate or otherwise identify 
117
that changes were made to the original Work. For example, a 
118
translation could be marked "The original work was translated from 
119
English to Spanish," or a modification could indicate "The original 
120
work has been modified.";
121
   3. to Distribute and Publicly Perform the Work including as 
122
incorporated in Collections; and,
123
   4. to Distribute and Publicly Perform Adaptations.
124
125
The above rights may be exercised in all media and formats whether 
126
now known or hereafter devised. The above rights include the right 
127
to make such modifications as are technically necessary to exercise 
128
the rights in other media and formats. Subject to Section 8(f), all 
129
rights not expressly granted by Licensor are hereby reserved, 
130
including but not limited to the rights described in Section 4(e).
131
132
4. Restrictions. The license granted in Section 3 above is expressly 
133
made subject to and limited by the following restrictions:
134
135
   1. You may Distribute or Publicly Perform the Work only under the 
136
terms of this License. You must include a copy of, or the Uniform 
137
Resource Identifier (URI) for, this License with every copy of the 
138
Work You Distribute or Publicly Perform. You may not offer or impose 
139
any terms on the Work that restrict the terms of this License or the 
140
ability of the recipient of the Work to exercise the rights granted 
141
to that recipient under the terms of the License. You may not 
142
sublicense the Work. You must keep intact all notices that refer to 
143
this License and to the disclaimer of warranties with every copy of 
144
the Work You Distribute or Publicly Perform. When You Distribute or 
145
Publicly Perform the Work, You may not impose any effective 
146
technological measures on the Work that restrict the ability of a 
147
recipient of the Work from You to exercise the rights granted to 
148
that recipient under the terms of the License. This Section 4(a) 
149
applies to the Work as incorporated in a Collection, but this does 
150
not require the Collection apart from the Work itself to be made 
151
subject to the terms of this License. If You create a Collection, 
152
upon notice from any Licensor You must, to the extent practicable, 
153
remove from the Collection any credit as required by Section 4(d), 
154
as requested. If You create an Adaptation, upon notice from any 
155
Licensor You must, to the extent practicable, remove from the 
156
Adaptation any credit as required by Section 4(d), as requested.
157
   2. You may Distribute or Publicly Perform an Adaptation only 
158
under: (i) the terms of this License; (ii) a later version of this 
159
License with the same License Elements as this License; (iii) a 
160
Creative Commons jurisdiction license (either this or a later 
161
license version) that contains the same License Elements as this 
162
License (e.g., Attribution-NonCommercial-ShareAlike 3.0 US) 
163
("Applicable License"). You must include a copy of, or the URI, for 
164
Applicable License with every copy of each Adaptation You Distribute 
165
or Publicly Perform. You may not offer or impose any terms on the 
166
Adaptation that restrict the terms of the Applicable License or the 
167
ability of the recipient of the Adaptation to exercise the rights 
168
granted to that recipient under the terms of the Applicable License. 
169
You must keep intact all notices that refer to the Applicable 
170
License and to the disclaimer of warranties with every copy of the 
171
Work as included in the Adaptation You Distribute or Publicly 
172
Perform. When You Distribute or Publicly Perform the Adaptation, You 
173
may not impose any effective technological measures on the 
174
Adaptation that restrict the ability of a recipient of the 
175
Adaptation from You to exercise the rights granted to that recipient 
176
under the terms of the Applicable License. This Section 4(b) applies 
177
to the Adaptation as incorporated in a Collection, but this does not 
178
require the Collection apart from the Adaptation itself to be made 
179
subject to the terms of the Applicable License.
180
   3. You may not exercise any of the rights granted to You in 
181
Section 3 above in any manner that is primarily intended for or 
182
directed toward commercial advantage or private monetary 
183
compensation. The exchange of the Work for other copyrighted works 
184
by means of digital file-sharing or otherwise shall not be 
185
considered to be intended for or directed toward commercial 
186
advantage or private monetary compensation, provided there is no 
187
payment of any monetary compensation in con-nection with the 
188
exchange of copyrighted works.
189
   4. If You Distribute, or Publicly Perform the Work or any 
190
Adaptations or Collections, You must, unless a request has been made 
191
pursuant to Section 4(a), keep intact all copyright notices for the 
192
Work and provide, reasonable to the medium or means You are 
193
utilizing: (i) the name of the Original Author (or pseudonym, if 
194
applicable) if supplied, and/or if the Original Author and/or 
195
Licensor designate another party or parties (e.g., a sponsor 
196
institute, publishing entity, journal) for attribution ("Attribution 
197
Parties") in Licensor's copyright notice, terms of service or by 
198
other reasonable means, the name of such party or parties; (ii) the 
199
title of the Work if supplied; (iii) to the extent reasonably 
200
practicable, the URI, if any, that Licensor specifies to be 
201
associated with the Work, unless such URI does not refer to the 
202
copyright notice or licensing information for the Work; and, (iv) 
203
consistent with Section 3(b), in the case of an Adaptation, a credit 
204
identifying the use of the Work in the Adaptation (e.g., "French 
205
translation of the Work by Original Author," or "Screenplay based on 
206
original Work by Original Author"). The credit required by this 
207
Section 4(d) may be implemented in any reasonable manner; provided, 
208
however, that in the case of a Adaptation or Collection, at a 
209
minimum such credit will appear, if a credit for all contributing 
210
authors of the Adaptation or Collection appears, then as part of 
211
these credits and in a manner at least as prominent as the credits 
212
for the other contributing authors. For the avoidance of doubt, You 
213
may only use the credit required by this Section for the purpose of 
214
attribution in the manner set out above and, by exercising Your 
215
rights under this License, You may not implicitly or explicitly 
216
assert or imply any connection with, sponsorship or endorsement by 
217
the Original Author, Licensor and/or Attribution Parties, as 
218
appropriate, of You or Your use of the Work, without the separate, 
219
express prior written permission of the Original Author, Licensor 
220
and/or Attribution Parties.
221
   5.
222
223
      For the avoidance of doubt:
224
         1. Non-waivable Compulsory License Schemes. In those 
225
jurisdictions in which the right to collect royalties through any 
226
statutory or compulsory licensing scheme cannot be waived, the 
227
Licensor reserves the exclusive right to collect such royalties for 
228
any exercise by You of the rights granted under this License;
229
         2. Waivable Compulsory License Schemes. In those 
230
jurisdictions in which the right to collect royalties through any 
231
statutory or compulsory licensing scheme can be waived, the Licensor 
232
reserves the exclusive right to collect such royalties for any 
233
exercise by You of the rights granted under this License if Your 
234
exercise of such rights is for a purpose or use which is otherwise 
235
than noncommercial as permitted under Section 4(c) and otherwise 
236
waives the right to collect royalties through any statutory or 
237
compulsory licensing scheme; and,
238
         3. Voluntary License Schemes. The Licensor reserves the 
239
right to collect royalties, whether individually or, in the event 
240
that the Licensor is a member of a collecting society that 
241
administers voluntary licensing schemes, via that society, from any 
242
exercise by You of the rights granted under this License that is for 
243
a purpose or use which is otherwise than noncommercial as permitted 
244
under Section 4(c).
245
   6. Except as otherwise agreed in writing by the Licensor or as 
246
may be otherwise permitted by applicable law, if You Reproduce, 
247
Distribute or Publicly Perform the Work either by itself or as part 
248
of any Adaptations or Collections, You must not distort, mutilate, 
249
modify or take other derogatory action in relation to the Work which 
250
would be prejudicial to the Original Author's honor or reputation. 
251
Licensor agrees that in those jurisdictions (e.g. Japan), in which 
252
any exercise of the right granted in Section 3(b) of this License 
253
(the right to make Adaptations) would be deemed to be a distortion, 
254
mutilation, modification or other derogatory action prejudicial to 
255
the Original Author's honor and reputation, the Licensor will waive 
256
or not assert, as appropriate, this Section, to the fullest extent 
257
permitted by the applicable national law, to enable You to 
258
reasonably exercise Your right under Section 3(b) of this License 
259
(right to make Adaptations) but not otherwise.
260
261
5. Representations, Warranties and Disclaimer
262
263
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO 
264
THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE 
265
WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND 
266
CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, 
267
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, 
268
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF 
269
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF 
270
ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW 
271
THE EXCLUSION OF IMPLIED WARRANTIES, SO THIS EXCLUSION MAY NOT APPLY 
272
TO YOU.
273
274
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY 
275
APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY 
276
LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR 
277
EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE 
278
WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 
279
DAMAGES.
280
281
7. Termination
282
283
   1. This License and the rights granted hereunder will terminate 
284
automatically upon any breach by You of the terms of this License. 
285
Individuals or entities who have received Adaptations or Collections 
286
from You under this License, however, will not have their licenses 
287
terminated provided such individuals or entities remain in full 
288
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will 
289
survive any termination of this License.
290
   2. Subject to the above terms and conditions, the license granted 
291
here is perpetual (for the duration of the applicable copyright in 
292
the Work). Notwithstanding the above, Licensor reserves the right to 
293
release the Work under different license terms or to stop 
294
distributing the Work at any time; provided, however that any such 
295
election will not serve to withdraw this License (or any other 
296
license that has been, or is required to be, granted under the terms 
297
of this License), and this License will continue in full force and 
298
effect unless terminated as stated above.
299
300
8. Miscellaneous
301
302
   1. Each time You Distribute or Publicly Perform the Work or a 
303
Collection, the Licensor offers to the recipient a license to the 
304
Work on the same terms and conditions as the license granted to You 
305
under this License.
306
   2. Each time You Distribute or Publicly Perform an Adaptation, 
307
Licensor offers to the recipient a license to the original Work on 
308
the same terms and conditions as the license granted to You under 
309
this License.
310
   3. If any provision of this License is invalid or unenforceable 
311
under applicable law, it shall not affect the validity or 
312
enforceability of the remainder of the terms of this License, and 
313
without further action by the parties to this agreement, such 
314
provision shall be reformed to the minimum extent necessary to make 
315
such provision valid and enforceable.
316
   4. No term or provision of this License shall be deemed waived 
317
and no breach consented to unless such waiver or consent shall be in 
318
writing and signed by the party to be charged with such waiver or 
319
consent.
320
   5. This License constitutes the entire agreement between the 
321
parties with respect to the Work licensed here. There are no 
322
understandings, agreements or representations with respect to the 
323
Work not specified here. Licensor shall not be bound by any 
324
additional provisions that may appear in any communication from You. 
325
This License may not be modified without the mutual written 
326
agreement of the Licensor and You.
327
   6. The rights granted under, and the subject matter referenced, 
328
in this License were drafted utilizing the terminology of the Berne 
329
Convention for the Protection of Literary and Artistic Works (as 
330
amended on September 28, 1979), the Rome Convention of 1961, the 
331
WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms 
332
Treaty of 1996 and the Universal Copyright Convention (as revised on 
333
July 24, 1971). These rights and subject matter take effect in the 
334
relevant jurisdiction in which the License terms are sought to be 
335
enforced according to the corresponding provisions of the 
336
implementation of those treaty provisions in the applicable national 
337
law. If the standard suite of rights granted under applicable 
338
copyright law includes additional rights not granted under this 
339
License, such additional rights are deemed to be included in the 
340
License; this License is not intended to restrict the license of any 
341
rights under applicable law.
(-)www/lighttpd/files/README.mysqlauth (+45 lines)
Line 0 Link Here
1
References:
2
http://redmine.lighttpd.net/issues/752
3
http://redmine.lighttpd.net/attachments/1012/03_all_lighttpd-1.4.23-mysql_auth.diff
4
http://redmine.lighttpd.net/attachments/download/1012/03_all_lighttpd-1.4.23-mysql_auth.diff
5
6
This patch allows lighttpd to authenticate users against mySQL DBbr
7
NOTE: Only basic auth is implemented. Passwords are stored as MD5 hash in DB
8
9
make mysql db and user (read mySQL doc's if you don't know how)
10
import lighttpd-1.4.11-mysql_auth.sql
11
12
open lighttpd.conf and add
13
(be sure that you comment out any other auth - according to lighttpd docs)
14
15
auth.backend                                   = "mysql" 
16
auth.backend.mysql.host                        = "localhost" 
17
auth.backend.mysql.user                        = "db_user" 
18
auth.backend.mysql.pass                        = "db_pass" 
19
auth.backend.mysql.db                          = "db_name" 
20
auth.backend.mysql.port                        = "0" # (for default port 0, always needed)
21
auth.backend.mysql.socket                      = ""  # (for default leave blank, always needed)
22
auth.backend.mysql.users_table                 = "users_table" 
23
auth.backend.mysql.col_user                    = "col_name_username" 
24
auth.backend.mysql.col_pass                    = "col_name_password" # (md5 hash of password)
25
auth.backend.mysql.col_realm                   = "col_realm_name" 
26
27
configure lighttpd to use it (same as every other auth)
28
29
auth.require = ( "/some_path" =>
30
    (
31
        "method"  => "basic",
32
        "realm"   => "some_realm",
33
        "require" => "some_user",
34
    )
35
)
36
37
start lighttpd
38
39
P.S. patch include more complicated setup with separate table for domains.
40
If you are interested please contact with me to obtain more information.
41
42
Bugs, Patches and Suggestions
43
Send me E-Mail: drJeckyll@Jeckyll.net
44
45
-- drJeckyll
(-)www/lighttpd/files/extra-patch-mysqlauth (+455 lines)
Line 0 Link Here
1
diff -Naur new/lighttpd-1.4.23/src/http_auth.c old/lighttpd-1.4.23/src/http_auth.c
2
--- src/http_auth.c	2009-06-11 14:05:06.000000000 +0400
3
+++ src/http_auth.c	2009-10-08 10:10:15.000000000 +0400
4
@@ -24,6 +24,7 @@
5
 #include <errno.h>
6
 #include <unistd.h>
7
 #include <ctype.h>
8
+#include <mysql/mysql.h>
9
 
10
 #include "server.h"
11
 #include "log.h"
12
@@ -291,6 +292,117 @@
13
 		stream_close(&f);
14
 	} else if (p->conf.auth_backend == AUTH_BACKEND_LDAP) {
15
 		ret = 0;
16
+       } else if (p->conf.auth_backend == AUTH_BACKEND_MYSQL) {
17
+               MYSQL_RES *result;
18
+               MYSQL_ROW row;
19
+               int port = atoi(p->conf.auth_mysql_port->ptr);
20
+               char q[255];
21
+
22
+               if (p->conf.auth_mysql_socket->ptr != NULL)
23
+                   if (0 == strcmp(p->conf.auth_mysql_socket->ptr, "")) p->conf.auth_mysql_socket->ptr = NULL;
24
+
25
+               p->conf.mysql_conn = mysql_init(NULL);
26
+
27
+               if (mysql_real_connect(p->conf.mysql_conn, p->conf.auth_mysql_host->ptr, p->conf.auth_mysql_user->ptr, p->conf.auth_mysql_pass->ptr, p->conf.auth_mysql_db->ptr, port, p->conf.auth_mysql_socket->ptr, 0))
28
+               {
29
+//#define MY_HOSTING
30
+
31
+#ifdef MY_HOSTING
32
+                   char my_full_realm[255];
33
+                   char *my_realm = NULL;
34
+                   char *my_domain = NULL;
35
+
36
+                   char *uname;
37
+                   size_t unamelen;
38
+
39
+                   unamelen = strlen(username->ptr);
40
+                   uname = malloc(unamelen*2+1);
41
+
42
+                   mysql_real_escape_string(p->conf.mysql_conn,
43
+                                            uname, username->ptr,
44
+                                            (unsigned long)unamelen);
45
+
46
+                   strcpy(my_full_realm, realm->ptr);
47
+                   my_realm = strtok(my_full_realm, "@");
48
+
49
+                   if (my_realm != NULL)
50
+                   my_domain = strtok(NULL, "@");
51
+
52
+                   sprintf(q, "SELECT %s FROM %s, %s WHERE %s='%s' AND %s='%s' AND %s='%s' AND %s=%s",
53
+                               p->conf.auth_mysql_col_pass->ptr,
54
+
55
+                               p->conf.auth_mysql_users_table->ptr,
56
+                               p->conf.auth_mysql_domains_table->ptr,
57
+
58
+                               p->conf.auth_mysql_col_user->ptr,
59
+                               uname,
60
+
61
+                               p->conf.auth_mysql_col_realm->ptr,
62
+                               my_realm,
63
+
64
+                               p->conf.auth_mysql_col_domain->ptr,
65
+                               my_domain,
66
+
67
+                               p->conf.auth_mysql_domains_table_col_domain_id->ptr,
68
+                               p->conf.auth_mysql_users_table_col_domain_id->ptr
69
+                   );
70
+
71
+                   free(uname);
72
+#else
73
+                   // sanitize username & realm by taguchi@ff.iij4u.or.jp
74
+                   char *uname, *urealm;
75
+                   size_t unamelen, urealmlen;
76
+
77
+                   unamelen = strlen(username->ptr);
78
+                   urealmlen = strlen(realm->ptr);
79
+                   uname = malloc(unamelen*2+1);
80
+                   urealm = malloc(urealmlen*2+1);
81
+
82
+                   mysql_real_escape_string(p->conf.mysql_conn,
83
+                                            uname, username->ptr,
84
+                                            (unsigned long)unamelen);
85
+
86
+                   mysql_real_escape_string(p->conf.mysql_conn,
87
+                                            urealm, realm->ptr,
88
+                                            (unsigned long)unamelen);
89
+
90
+                   mysql_real_escape_string(p->conf.mysql_conn,
91
+                                            urealm, realm->ptr,
92
+                                            (unsigned long)urealmlen);
93
+
94
+                   sprintf(q, "SELECT %s FROM %s WHERE %s='%s' AND %s='%s'",
95
+                               p->conf.auth_mysql_col_pass->ptr,
96
+                               p->conf.auth_mysql_users_table->ptr,
97
+                               p->conf.auth_mysql_col_user->ptr,
98
+                               uname,
99
+                               p->conf.auth_mysql_col_realm->ptr,
100
+                               urealm
101
+                   );
102
+
103
+                   free(uname);
104
+                   free(urealm);
105
+#endif
106
+
107
+                   mysql_query(p->conf.mysql_conn, q);
108
+                   result = mysql_store_result(p->conf.mysql_conn);
109
+                   if (mysql_num_rows(result) == 1)
110
+                   {
111
+                       /* found */
112
+                       row = mysql_fetch_row(result);
113
+                       buffer_copy_string_len(password, row[0], strlen(row[0]));
114
+
115
+                       ret = 0;
116
+                   } else
117
+                   {
118
+                       /* not found */
119
+                       ret = -1;
120
+                   }
121
+
122
+                   mysql_free_result(result);
123
+                   mysql_close(p->conf.mysql_conn);
124
+
125
+                   p->conf.mysql_conn = NULL;
126
+               }
127
 	} else {
128
 		return -1;
129
 	}
130
@@ -831,6 +943,60 @@
131
 
132
 		return 0;
133
 #endif
134
+       } else if (p->conf.auth_backend == AUTH_BACKEND_MYSQL) {
135
+               /*
136
+                   we check for md5 crypt() now
137
+                   request by Nicola Tiling <nti@w4w.net>
138
+               */
139
+               if (password->ptr[0] == '$' && password->ptr[2] == '$')
140
+               {
141
+                   char salt[32];
142
+                   char *crypted;
143
+                   size_t salt_len = 0;
144
+                   char *dollar = NULL;
145
+
146
+                   if (NULL == (dollar = strchr(password->ptr + 3, '$'))) {
147
+                       fprintf(stderr, "%s.%d\n", __FILE__, __LINE__);
148
+                       return -1;
149
+                   }
150
+
151
+                   salt_len = dollar - password->ptr;
152
+
153
+                   if (salt_len > sizeof(salt) - 1)
154
+                   {
155
+                       fprintf(stderr, "%s.%d\n", __FILE__, __LINE__);
156
+                       return -1;
157
+                   }
158
+
159
+                   strncpy(salt, password->ptr, salt_len);
160
+
161
+                   salt[salt_len] = '\0';
162
+
163
+                   crypted = crypt(pw, salt);
164
+
165
+                   if (0 == strcmp(password->ptr, crypted))
166
+                   {
167
+                       return 0;
168
+                   } else {
169
+                       fprintf(stderr, "%s.%d\n", __FILE__, __LINE__);
170
+                   }
171
+               } else
172
+               /* plain md5 check now */
173
+               {
174
+                       li_MD5_CTX Md5Ctx;
175
+                       HASH HA1;
176
+                       char a1[256];
177
+
178
+                       li_MD5_Init(&Md5Ctx);
179
+                       li_MD5_Update(&Md5Ctx, (unsigned char *)pw, strlen(pw));
180
+                       li_MD5_Final(HA1, &Md5Ctx);
181
+
182
+                       CvtHex(HA1, a1);
183
+
184
+                       if (0 == strcmp(password->ptr, a1)) {
185
+                               return 0;
186
+                       }
187
+               }
188
 	}
189
 	return -1;
190
 }
191
diff -Naur new/lighttpd-1.4.23/src/http_auth.h old/lighttpd-1.4.23/src/http_auth.h
192
--- src/http_auth.h	2009-03-31 02:16:59.000000000 +0400
193
+++ src/http_auth.h	2009-10-08 10:13:56.000000000 +0400
194
@@ -8,13 +8,15 @@
195
 # define USE_LDAP
196
 # include <ldap.h>
197
 #endif
198
+#include <mysql/mysql.h>
199
 
200
 typedef enum {
201
 	AUTH_BACKEND_UNSET,
202
 	AUTH_BACKEND_PLAIN,
203
 	AUTH_BACKEND_LDAP,
204
 	AUTH_BACKEND_HTPASSWD,
205
-	AUTH_BACKEND_HTDIGEST
206
+        AUTH_BACKEND_HTDIGEST,
207
+        AUTH_BACKEND_MYSQL
208
 } auth_backend_t;
209
 
210
 typedef struct {
211
@@ -49,6 +51,22 @@
212
 	buffer *ldap_filter_pre;
213
 	buffer *ldap_filter_post;
214
 #endif
215
+
216
+       MYSQL  *mysql_conn;
217
+       buffer *auth_mysql_host;
218
+       buffer *auth_mysql_user;
219
+       buffer *auth_mysql_pass;
220
+       buffer *auth_mysql_db;
221
+       buffer *auth_mysql_port;
222
+       buffer *auth_mysql_socket;
223
+       buffer *auth_mysql_users_table;
224
+       buffer *auth_mysql_col_user;
225
+       buffer *auth_mysql_col_pass;
226
+       buffer *auth_mysql_col_realm;
227
+       buffer *auth_mysql_domains_table;
228
+       buffer *auth_mysql_col_domain;
229
+       buffer *auth_mysql_domains_table_col_domain_id;
230
+       buffer *auth_mysql_users_table_col_domain_id;
231
 } mod_auth_plugin_config;
232
 
233
 typedef struct {
234
diff -Naur new/lighttpd-1.4.23/src/Makefile.am old/lighttpd-1.4.23/src/Makefile.am
235
--- src/Makefile.am.orig	2013-12-03 17:17:52.000000000 +0100
236
+++ src/Makefile.am	2014-01-21 20:48:24.645439249 +0100
237
@@ -243,7 +243,7 @@
238
 lib_LTLIBRARIES += mod_auth.la
239
 mod_auth_la_SOURCES = mod_auth.c http_auth.c
240
 mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version
241
-mod_auth_la_LIBADD = $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
242
+mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
243
 
244
 lib_LTLIBRARIES += mod_rewrite.la
245
 mod_rewrite_la_SOURCES = mod_rewrite.c
246
diff -Naur lighttpd-1.4.23/src/Makefile.in old/lighttpd-1.4.23/src/Makefile.in
247
--- src/Makefile.in.orig	2014-01-20 13:09:11.000000000 +0100
248
+++ src/Makefile.in	2014-01-21 20:48:37.115438375 +0100
249
@@ -852,7 +852,7 @@
250
 mod_compress_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd)
251
 mod_auth_la_SOURCES = mod_auth.c http_auth.c
252
 mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version
253
-mod_auth_la_LIBADD = $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
254
+mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
255
 mod_rewrite_la_SOURCES = mod_rewrite.c
256
 mod_rewrite_la_LDFLAGS = -module -export-dynamic -avoid-version
257
 mod_rewrite_la_LIBADD = $(PCRE_LIB) $(common_libadd)
258
diff -Naur new/lighttpd-1.4.23/src/mod_auth.c old/lighttpd-1.4.23/src/mod_auth.c
259
--- src/mod_auth.c	2009-04-11 16:08:19.000000000 +0400
260
+++ src/mod_auth.c	2009-10-08 10:24:13.000000000 +0400
261
@@ -6,6 +6,7 @@
262
 #include <errno.h>
263
 #include <fcntl.h>
264
 #include <unistd.h>
265
+#include <mysql/mysql.h>
266
 
267
 #include "plugin.h"
268
 #include "http_auth.h"
269
@@ -83,6 +84,20 @@
270
 			if (s->ldap) ldap_unbind_s(s->ldap);
271
 #endif
272
 
273
+                       buffer_free(s->auth_mysql_host);
274
+                       buffer_free(s->auth_mysql_user);
275
+                       buffer_free(s->auth_mysql_pass);
276
+                       buffer_free(s->auth_mysql_db);
277
+                       buffer_free(s->auth_mysql_socket);
278
+                       buffer_free(s->auth_mysql_users_table);
279
+                       buffer_free(s->auth_mysql_col_user);
280
+                       buffer_free(s->auth_mysql_col_pass);
281
+                       buffer_free(s->auth_mysql_col_realm);
282
+                       buffer_free(s->auth_mysql_domains_table);
283
+                       buffer_free(s->auth_mysql_col_domain);
284
+                       buffer_free(s->auth_mysql_domains_table_col_domain_id);
285
+                       buffer_free(s->auth_mysql_users_table_col_domain_id);
286
+
287
 			free(s);
288
 		}
289
 		free(p->config_storage);
290
@@ -120,6 +135,21 @@
291
 	PATCH(ldap_filter_post);
292
 #endif
293
 
294
+       PATCH(auth_mysql_host);
295
+       PATCH(auth_mysql_user);
296
+       PATCH(auth_mysql_pass);
297
+       PATCH(auth_mysql_db);
298
+       PATCH(auth_mysql_port);
299
+       PATCH(auth_mysql_socket);
300
+       PATCH(auth_mysql_users_table);
301
+       PATCH(auth_mysql_col_user);
302
+       PATCH(auth_mysql_col_pass);
303
+       PATCH(auth_mysql_col_realm);
304
+       PATCH(auth_mysql_domains_table);
305
+       PATCH(auth_mysql_col_domain);
306
+       PATCH(auth_mysql_domains_table_col_domain_id);
307
+       PATCH(auth_mysql_users_table_col_domain_id);
308
+
309
 	/* skip the first, the global context */
310
 	for (i = 1; i < srv->config_context->used; i++) {
311
 		data_config *dc = (data_config *)srv->config_context->data[i];
312
@@ -169,6 +199,34 @@
313
 				PATCH(auth_ldap_bindpw);
314
 			} else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.ldap.allow-empty-pw"))) {
315
 				PATCH(auth_ldap_allow_empty_pw);
316
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.host"))) {
317
+                               PATCH(auth_mysql_host);
318
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.user"))) {
319
+                               PATCH(auth_mysql_user);
320
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.pass"))) {
321
+                               PATCH(auth_mysql_pass);
322
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.db"))) {
323
+                               PATCH(auth_mysql_db);
324
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.port"))) {
325
+                               PATCH(auth_mysql_port);
326
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.socket"))) {
327
+                               PATCH(auth_mysql_user);
328
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.users_table"))) {
329
+                               PATCH(auth_mysql_users_table);
330
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.col_user"))) {
331
+                               PATCH(auth_mysql_col_user);
332
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.col_pass"))) {
333
+                               PATCH(auth_mysql_col_pass);
334
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.col_realm"))) {
335
+                               PATCH(auth_mysql_col_realm);
336
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.domains_table"))) {
337
+                               PATCH(auth_mysql_domains_table);
338
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.col_domain"))) {
339
+                               PATCH(auth_mysql_col_domain);
340
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.domains_table_col_domain_id"))) {
341
+                               PATCH(auth_mysql_domains_table_col_domain_id);
342
+                       } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("auth.backend.mysql.users_table_col_domain_id"))) {
343
+                               PATCH(auth_mysql_users_table_col_domain_id);
344
 			}
345
 		}
346
 	}
347
@@ -323,10 +381,24 @@
348
 		{ "auth.backend.ldap.starttls",     NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 8 */
349
  		{ "auth.backend.ldap.bind-dn",      NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 9 */
350
  		{ "auth.backend.ldap.bind-pw",      NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 10 */
351
-		{ "auth.backend.ldap.allow-empty-pw",     NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 11 */
352
+                { "auth.backend.ldap.allow-empty-pw",     NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION },
353
 		{ "auth.backend.htdigest.userfile", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 12 */
354
 		{ "auth.backend.htpasswd.userfile", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 13 */
355
 		{ "auth.debug",                     NULL, T_CONFIG_SHORT, T_CONFIG_SCOPE_CONNECTION },  /* 14 */
356
+                { "auth.backend.mysql.host",        NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
357
+                { "auth.backend.mysql.user",        NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
358
+                { "auth.backend.mysql.pass",        NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
359
+                { "auth.backend.mysql.db",          NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
360
+                { "auth.backend.mysql.port",        NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
361
+                { "auth.backend.mysql.socket",      NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
362
+                { "auth.backend.mysql.users_table", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
363
+                { "auth.backend.mysql.col_user",    NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
364
+                { "auth.backend.mysql.col_pass",    NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
365
+                { "auth.backend.mysql.col_realm",   NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 23 */
366
+                { "auth.backend.mysql.domains_table",               NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
367
+                { "auth.backend.mysql.col_domain",                  NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
368
+                { "auth.backend.mysql.domains_table_col_domain_id", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION },
369
+                { "auth.backend.mysql.users_table_col_domain_id",   NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 27 */
370
 		{ NULL,                             NULL, T_CONFIG_UNSET, T_CONFIG_SCOPE_UNSET }
371
 	};
372
 
373
@@ -355,6 +427,22 @@
374
 		s->auth_debug = 0;
375
 
376
 		s->auth_require = array_init();
377
+                s->mysql_conn                             = NULL;
378
+                s->auth_mysql_host                        = buffer_init();
379
+                s->auth_mysql_user                        = buffer_init();
380
+                s->auth_mysql_pass                        = buffer_init();
381
+                s->auth_mysql_db                          = buffer_init();
382
+                s->auth_mysql_port                        = buffer_init();
383
+                s->auth_mysql_socket                      = buffer_init();
384
+                s->auth_mysql_users_table                 = buffer_init();
385
+                s->auth_mysql_col_user                    = buffer_init();
386
+                s->auth_mysql_col_pass                    = buffer_init();
387
+                s->auth_mysql_col_realm                   = buffer_init();
388
+                s->auth_mysql_domains_table               = buffer_init();
389
+                s->auth_mysql_col_domain                  = buffer_init();
390
+                s->auth_mysql_domains_table_col_domain_id = buffer_init();
391
+                s->auth_mysql_users_table_col_domain_id   = buffer_init();
392
+
393
 
394
 #ifdef USE_LDAP
395
 		s->ldap_filter_pre = buffer_init();
396
@@ -377,7 +465,20 @@
397
 		cv[12].destination = s->auth_htdigest_userfile;
398
 		cv[13].destination = s->auth_htpasswd_userfile;
399
 		cv[14].destination = &(s->auth_debug);
400
-
401
+                cv[15].destination = s->auth_mysql_host;
402
+                cv[16].destination = s->auth_mysql_user;
403
+                cv[17].destination = s->auth_mysql_pass;
404
+                cv[18].destination = s->auth_mysql_db;
405
+                cv[19].destination = s->auth_mysql_port;
406
+                cv[20].destination = s->auth_mysql_socket;
407
+                cv[21].destination = s->auth_mysql_users_table;
408
+                cv[22].destination = s->auth_mysql_col_user;
409
+                cv[23].destination = s->auth_mysql_col_pass;
410
+                cv[24].destination = s->auth_mysql_col_realm;
411
+                cv[25].destination = s->auth_mysql_domains_table;
412
+                cv[26].destination = s->auth_mysql_col_domain;
413
+                cv[27].destination = s->auth_mysql_domains_table_col_domain_id;
414
+                cv[28].destination = s->auth_mysql_users_table_col_domain_id;
415
 		p->config_storage[i] = s;
416
 		ca = ((data_config *)srv->config_context->data[i])->value;
417
 
418
@@ -394,6 +495,8 @@
419
 				s->auth_backend = AUTH_BACKEND_PLAIN;
420
 			} else if (0 == strcmp(s->auth_backend_conf->ptr, "ldap")) {
421
 				s->auth_backend = AUTH_BACKEND_LDAP;
422
+                        } else if (0 == strcmp(s->auth_backend_conf->ptr, "mysql")) {
423
+                                s->auth_backend = AUTH_BACKEND_MYSQL;
424
 			} else {
425
 				log_error_write(srv, __FILE__, __LINE__, "sb", "auth.backend not supported:", s->auth_backend_conf);
426
 
427
@@ -534,6 +637,28 @@
428
 				return (ret);
429
 			break;
430
 		}
431
+               case AUTH_BACKEND_MYSQL: {
432
+                       int port = atoi(s->auth_mysql_port->ptr);
433
+
434
+                       if (p->conf.auth_mysql_socket->ptr != NULL)
435
+                           if (0 == strcmp(s->auth_mysql_socket->ptr, "")) s->auth_mysql_socket->ptr = NULL;
436
+
437
+                       s->mysql_conn = mysql_init(NULL);
438
+                       if (!mysql_real_connect(s->mysql_conn, s->auth_mysql_host->ptr, s->auth_mysql_user->ptr, s->auth_mysql_pass->ptr, s->auth_mysql_db->ptr, port, NULL, 0))
439
+                       {
440
+                           log_error_write(srv, __FILE__, __LINE__, "sbsbsbsbss",
441
+                               "opening connection to mysql:", s->auth_mysql_host,
442
+                               "user:", s->auth_mysql_user,
443
+                               "pass:", s->auth_mysql_pass,
444
+                               "db:", s->auth_mysql_db,
445
+                               "failed:", strerror(errno));
446
+
447
+                           return HANDLER_ERROR;
448
+                       }
449
+                       mysql_close(s->mysql_conn);
450
+
451
+                       break;
452
+               }
453
 		default:
454
 			break;
455
 		}
(-)www/lighttpd/files/extra-patch-nodelay (+15 lines)
Line 0 Link Here
1
--- src/network.c.orig	Tue Jan 26 14:33:01 2010
2
+++ src/network.c	Tue Jan 26 14:37:39 2010
3
@@ -226,6 +226,12 @@
4
 		log_error_write(srv, __FILE__, __LINE__, "ss", "socketsockopt failed:", strerror(errno));
5
 		goto error_free_socket;
6
 	}
7
+	if(srv_socket->addr.plain.sa_family == AF_INET || srv_socket->addr.plain.sa_family == AF_INET6 ) {
8
+		if (setsockopt(srv_socket->fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val)) < 0) {
9
+			log_error_write(srv, __FILE__, __LINE__, "ss", "socketsockopt failed:", strerror(errno));
10
+			goto error_free_socket;
11
+		}
12
+	}
13
 
14
 	switch(srv_socket->addr.plain.sa_family) {
15
 #ifdef HAVE_IPV6
(-)www/lighttpd/files/h264_streaming.conf (+19 lines)
Line 0 Link Here
1
#######################################################################
2
##
3
##  H.264 Streaming Module 
4
## ------------------------
5
##
6
server.modules += ( "mod_h264_streaming" )
7
8
##
9
##  Configure streaming for .mp4 files
10
##
11
h264-streaming.extensions = ( ".mp4", ".f4v" )
12
13
##
14
##  Bandwidth shaping
15
##
16
#h264-streaming.buffer-seconds = 10
17
18
##
19
#######################################################################
(-)www/lighttpd/files/lighttpd.in (+138 lines)
Line 0 Link Here
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
#
5
# PROVIDE: lighttpd
6
# REQUIRE: %%REQUIRE%%
7
# KEYWORD: shutdown
8
#
9
# Add the following lines to /etc/rc.conf to enable lighttpd:
10
#
11
# lighttpd_enable (bool):	Set it to "YES" to enable lighttpd
12
#				Default is "NO".
13
# lighttpd_conf (path):		Set full path to configuration file.
14
#				Default is "%%PREFIX%%/etc/lighttpd/lighttpd.conf".
15
# lighttpd_pidfile (path):	Set full path to pid file.
16
#				Default is "/var/run/lighttpd.pid".
17
#
18
# Add the following lines to /etc/rc.conf for multiple instances:
19
# (overrides lighttpd_conf and lighttpd_pidfile from above)
20
#
21
# lighttpd_instances (string):	Instances of lighttpd
22
#				Default is "" (no instances).
23
# lighttpd_${i}_conf (path):	Set full path to instance configuration file.
24
#				Default is "%%PREFIX%%/etc/lighttpd/${i}.conf".
25
# lighttpd_${i}_pidfile (path):	Set full path to instance pid file
26
#				Default is "/var/run/lighttpd_${i}.pid".
27
#
28
29
. /etc/rc.subr
30
31
name="lighttpd"
32
rcvar=lighttpd_enable
33
34
load_rc_config $name
35
36
: ${lighttpd_enable="NO"}
37
: ${lighttpd_pidfile="/var/run/${name}.pid"}
38
39
# Compatibility for old configuration file location
40
deprecated_conf=
41
if [ -z "${lighttpd_conf}" ]; then
42
	if [ -f "%%PREFIX%%/etc/lighttpd.conf" ]; then
43
		deprecated_conf=1
44
		lighttpd_conf="%%PREFIX%%/etc/lighttpd.conf"
45
	else
46
		lighttpd_conf="%%PREFIX%%/etc/lighttpd/lighttpd.conf"
47
	fi
48
fi
49
50
command=%%PREFIX%%/sbin/lighttpd
51
stop_postcmd=stop_postcmd
52
restart_precmd="lighttpd_checkconfig"
53
graceful_precmd="lighttpd_checkconfig"
54
graceful_cmd="lighttpd_graceful"
55
gracefulstop_cmd="lighttpd_gracefulstop"
56
configtest_cmd="lighttpd_checkconfig"
57
extra_commands="reload graceful gracefulstop configtest"
58
command_args="-f ${lighttpd_conf}"
59
pidfile=${lighttpd_pidfile}
60
required_files=${lighttpd_conf}
61
62
lighttpd_check_deprecated()
63
{
64
	if [ -n "${deprecated_conf}" ]; then
65
		echo ""
66
		echo "*** NOTICE: ***"
67
		echo "The default location of %%PREFIX%%/etc/lighttpd.conf is deprecated"
68
		echo "Please consider moving to %%PREFIX%%/etc/lighttpd/lighttpd.conf"
69
		echo ""
70
	fi
71
}
72
73
lighttpd_checkconfig()
74
{
75
	echo "Performing sanity check on ${name} configuration:"
76
	eval "${command} ${command_args} -t"
77
}
78
79
lighttpd_gracefulstop()
80
{
81
	echo "Stopping ${name} gracefully."
82
	sig_reload="INT"
83
	run_rc_command reload
84
}
85
86
lighttpd_graceful()
87
{
88
	lighttpd_gracefulstop
89
	rm -f ${pidfile}
90
	run_rc_command start
91
}
92
93
lighttpd_run_instance()
94
{
95
	_i="$1"
96
	_rcmd="$2"
97
	name=${_orig_name}_${_i}
98
	eval ${name}_enable=${lighttpd_enable}
99
	eval lighttpd_conf=\"\${lighttpd_${_i}_conf:-"%%PREFIX%%/etc/lighttpd/${_i}.conf"}\"
100
	eval lighttpd_pidfile=\"\${lighttpd_${_i}_pidfile:-"/var/run/lighttpd_${_i}.pid"}\"
101
	command_args="-f ${lighttpd_conf}"
102
	pidfile=${lighttpd_pidfile}
103
	required_files=${lighttpd_conf}
104
	run_rc_command ${_rcmd}
105
}
106
107
stop_postcmd()
108
{
109
	rm -f ${pidfile}
110
}
111
112
if [ -n "${lighttpd_instances}" ]; then
113
	_orig_name="${name}"
114
	_run_cmd="$1"
115
	if [ $# -gt 0 ]; then
116
		shift
117
	fi
118
	if [ -n "$*" ]; then
119
		_run_instances="$*"
120
	fi
121
	if [ -n "${_run_instances}" ]; then
122
		for _a in $_run_instances; do
123
			for _in in ${lighttpd_instances}; do
124
				if [ "$_a" = "$_in" ]; then
125
					_runlist="${_runlist} ${_a}"
126
				fi
127
			done
128
		done
129
	else
130
		_runlist="${lighttpd_instances}"
131
	fi
132
	for _in in ${_runlist}; do
133
		lighttpd_run_instance $_in $_run_cmd
134
	done
135
else
136
	start_precmd="lighttpd_check_deprecated"
137
	run_rc_command "$1"
138
fi
(-)www/lighttpd/files/mysql_auth.sql (+10 lines)
Line 0 Link Here
1
CREATE TABLE `vhosts_secure`(
2
	vhost_secure_id bigint(20) NOT NULL AUTO_INCREMENT,
3
	vhost_secure_username varchar(255) NOT NULL,
4
	vhost_secure_password varchar(255) NOT NULL,
5
	vhost_secure_realm varchar(255) NOT NULL
6
	PRIMARY KEY (vhost_secure_id),
7
	INDEX i_username (vhost_secure_username),
8
	INDEX i_password (vhost_secure_password),
9
	INDEX i_realm (vhost_secure_realm)
10
);
(-)www/lighttpd/files/patch-configure.ac (+22 lines)
Line 0 Link Here
1
--- configure.ac.orig	2012-11-19 11:05:29.000000000 +0100
2
+++ configure.ac	2012-11-21 14:22:53.723233779 +0100
3
@@ -16,6 +16,7 @@
4
 dnl Checks for programs.
5
 AC_PROG_CC
6
 AM_PROG_CC_C_O
7
+AM_PROG_AR
8
 AC_PROG_LD
9
 AC_PROG_INSTALL
10
 AC_PROG_AWK
11
@@ -30,11 +31,6 @@
12
 dnl AM_PROG_AR requires automake 1.11 (and uses AC_COMPILE_IFELSE which wants AC_USE_SYSTEM_EXTENSIONS)
13
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
14
 
15
-dnl check environment
16
-AC_AIX
17
-AC_ISC_POSIX
18
-AC_MINIX
19
-
20
 dnl AC_CANONICAL_HOST
21
 case $host_os in
22
 	*darwin*|*cygwin*|*aix*|*mingw* ) NO_RDYNAMIC=yes;;
(-)www/lighttpd/files/patch-src-fdevent.h (+11 lines)
Line 0 Link Here
1
--- src/fdevent.h.orig	2011-12-19 07:41:33.183877666 +0100
2
+++ src/fdevent.h	2011-12-19 07:42:01.457863868 +0100
3
@@ -54,7 +54,7 @@
4
 # include <port.h>
5
 #endif
6
 
7
-#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE
8
+#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE && !defined HAVE_LIBEV
9
 # define USE_FREEBSD_KQUEUE
10
 # include <sys/event.h>
11
 #endif
(-)www/lighttpd/files/pkg-descr.mod_geoip (+4 lines)
Line 0 Link Here
1
mod_geoip is a lighttpd module that looks up the country code
2
for the IP address making the request without using reverse DNS.
3
4
WWW:	http://redmine.lighttpd.net/wiki/1/Docs:ModGeoip
(-)www/lighttpd/files/pkg-descr.mod_h264_streaming (+9 lines)
Line 0 Link Here
1
This is the H264 Streaming Module for the lighttpd webserver.
2
Its features are as follows:
3
4
  * Timeshifting seek
5
  * Virtual video clips
6
  * Network efficiency
7
  * Encoding
8
9
WWW: http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Lighttpd-Version2
(-)www/lighttpd/files/pkg-plist.mod_geoip (+2 lines)
Line 0 Link Here
1
@sample etc/lighttpd/conf.d/geoip.conf.sample
2
lib/lighttpd/mod_geoip.so
(-)www/lighttpd/files/pkg-plist.mod_h264_streaming (+2 lines)
Line 0 Link Here
1
@sample etc/lighttpd/conf.d/h264_streaming.conf.sample
2
lib/lighttpd/mod_h264_streaming.so
(-)www/lighttpd/pkg-descr (+8 lines)
Line 0 Link Here
1
lighttpd a secure, fast, compliant and very flexible web-server which
2
has been optimized for high-performance environments. It has a very
3
low memory footprint compared to other webservers and takes care of
4
cpu-load. Its advanced feature-set (FastCGI, CGI, Auth, Output-Compression,
5
URL-Rewriting and many more) make lighttpd the perfect webserver-software
6
for every server that is suffering load problems.
7
8
WWW: http://www.lighttpd.net/
(-)www/lighttpd/pkg-plist (+66 lines)
Line 0 Link Here
1
@sample etc/lighttpd/lighttpd.conf.sample
2
@sample etc/lighttpd/modules.conf.sample
3
@sample etc/lighttpd/conf.d/access_log.conf.sample
4
@sample etc/lighttpd/conf.d/auth.conf.sample
5
@sample etc/lighttpd/conf.d/cml.conf.sample
6
@sample etc/lighttpd/conf.d/cgi.conf.sample
7
@sample etc/lighttpd/conf.d/compress.conf.sample
8
@sample etc/lighttpd/conf.d/debug.conf.sample
9
@sample etc/lighttpd/conf.d/dirlisting.conf.sample
10
@sample etc/lighttpd/conf.d/evhost.conf.sample
11
@sample etc/lighttpd/conf.d/expire.conf.sample
12
@sample etc/lighttpd/conf.d/fastcgi.conf.sample
13
@sample etc/lighttpd/conf.d/magnet.conf.sample
14
@sample etc/lighttpd/conf.d/mime.conf.sample
15
@sample etc/lighttpd/conf.d/mysql_vhost.conf.sample
16
@sample etc/lighttpd/conf.d/proxy.conf.sample
17
@sample etc/lighttpd/conf.d/rrdtool.conf.sample
18
@sample etc/lighttpd/conf.d/scgi.conf.sample
19
@sample etc/lighttpd/conf.d/secdownload.conf.sample
20
@sample etc/lighttpd/conf.d/simple_vhost.conf.sample
21
@sample etc/lighttpd/conf.d/ssi.conf.sample
22
@sample etc/lighttpd/conf.d/status.conf.sample
23
@sample etc/lighttpd/conf.d/trigger_b4_dl.conf.sample
24
@sample etc/lighttpd/conf.d/userdir.conf.sample
25
@sample etc/lighttpd/conf.d/webdav.conf.sample
26
etc/lighttpd/vhosts.d/vhosts.template
27
lib/lighttpd/mod_access.so
28
lib/lighttpd/mod_accesslog.so
29
lib/lighttpd/mod_alias.so
30
lib/lighttpd/mod_auth.so
31
lib/lighttpd/mod_cgi.so
32
lib/lighttpd/mod_cml.so
33
lib/lighttpd/mod_compress.so
34
lib/lighttpd/mod_dirlisting.so
35
lib/lighttpd/mod_evasive.so
36
lib/lighttpd/mod_evhost.so
37
lib/lighttpd/mod_expire.so
38
lib/lighttpd/mod_extforward.so
39
lib/lighttpd/mod_fastcgi.so
40
lib/lighttpd/mod_flv_streaming.so
41
lib/lighttpd/mod_indexfile.so
42
lib/lighttpd/mod_magnet.so
43
lib/lighttpd/mod_mysql_vhost.so
44
lib/lighttpd/mod_proxy.so
45
lib/lighttpd/mod_redirect.so
46
lib/lighttpd/mod_rewrite.so
47
lib/lighttpd/mod_rrdtool.so
48
lib/lighttpd/mod_scgi.so
49
lib/lighttpd/mod_secdownload.so
50
lib/lighttpd/mod_setenv.so
51
lib/lighttpd/mod_simple_vhost.so
52
lib/lighttpd/mod_ssi.so
53
lib/lighttpd/mod_staticfile.so
54
lib/lighttpd/mod_status.so
55
lib/lighttpd/mod_trigger_b4_dl.so
56
lib/lighttpd/mod_userdir.so
57
lib/lighttpd/mod_usertrack.so
58
lib/lighttpd/mod_webdav.so
59
man/man8/lighttpd.8.gz
60
sbin/lighttpd
61
sbin/lighttpd-angel
62
@dirrm lib/lighttpd
63
@dirrmtry etc/lighttpd/vhosts.d
64
@dirrmtry etc/lighttpd/conf.d
65
@dirrmtry etc/lighttpd
66
@dirrmtry(%%USER%%,%%GROUP%%,700) %%LOGROOT%%
(-)www/npm/Makefile (+82 lines)
Line 0 Link Here
1
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	npm
5
PORTVERSION=	2.6.1
6
CATEGORIES=	www
7
MASTER_SITES=	LOCAL/sunpoet
8
9
MAINTAINER=	sunpoet@FreeBSD.org
10
COMMENT=	Node package manager
11
12
LICENSE=	MIT
13
14
OPTIONS_SINGLE=	BACKEND
15
OPTIONS_SINGLE_BACKEND=	IOJS NODE NODE_DEVEL NODE010
16
OPTIONS_DEFAULT=NODE
17
IOJS_DESC=	Use www/iojs as backend
18
NODE_DESC=	Use www/node as backend
19
NODE_DEVEL_DESC=Use www/node-devel as backend
20
NODE010_DESC=	Use www/node010 as backend
21
22
MAKE_ARGS=	npm_config_prefix=${STAGEDIR}${PREFIX}
23
NO_BUILD=	yes
24
REINPLACE_ARGS=	-i ''
25
USES=		cpe python:2 tar:xz
26
27
MANPREFIX=	${PREFIX}/lib/node_modules/npm
28
29
CPE_VENDOR=	npmjs
30
CPE_PRODUCT=	node_packaged_modules
31
32
IOJS_RUN_DEPENDS=	iojs>=1.0.0:${PORTSDIR}/www/iojs
33
NODE_DEVEL_RUN_DEPENDS=	node-devel>=0.8.0:${PORTSDIR}/www/node-devel
34
NODE_RUN_DEPENDS=	node>=0.8.0:${PORTSDIR}/www/node
35
NODE010_RUN_DEPENDS=	node010>=0.8.0:${PORTSDIR}/www/node010
36
37
post-patch:
38
	@${REINPLACE_CMD} -e 's|node cli.js|& --cache ${WRKDIR}/.cache|' ${WRKSRC}/Makefile
39
	@${ECHO_CMD} 'MANPATH ${PREFIX}/lib/node_modules/npm/man' > ${WRKDIR}/npm.conf
40
	@${REINPLACE_CMD} -e 's|exec python|exec ${PYTHON_CMD}|' ${WRKSRC}/node_modules/node-gyp/gyp/gyp
41
42
post-install:
43
	${INSTALL_DATA} ${WRKDIR}/npm.conf ${STAGEDIR}${PREFIX}/etc/man.d/npm.conf
44
45
# maintainer section:
46
# require: bash, git, gmake, perl, node
47
48
MS_DISTNAME=	${PORTNAME}-${MS_VERSION}
49
MS_RELEASES=	${MS_WRKSRC}/releases
50
MS_VERSION=	`${CAT} ${MS_VERSIONFILE}`
51
MS_VERSIONFILE=	${MS_WRKSRC}/.version
52
MS_WRKSRC=	${WRKSRC}/tmp
53
54
GITHUB_PROJECT=	${PORTNAME}
55
GITHUB_RELEASES=https://github.com/npm/npm/releases/latest
56
GITHUB_TARBALL=	https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/${GITHUB_VERSION}.tar.gz
57
GITHUB_USER=	npm
58
GITHUB_VERSION=	v${MS_VERSION}
59
60
maketar: do-clean
61
	@${MKDIR} ${MS_WRKSRC}/
62
	@${FETCH_BINARY} ${FETCH_ARGS:C/A//} -o ${MS_RELEASES} ${GITHUB_RELEASES}
63
	@${GREP} -o '/${GITHUB_USER}/${GITHUB_PROJECT}/archive/[^"]*\.tar\.gz' ${MS_RELEASES} | ${HEAD} -1 | ${CUT} -d/ -f5 | ${SED} 's|^v||; s|\.tar\.gz$$||' > ${MS_VERSIONFILE}
64
	@${ECHO_MSG} "*** Updating from ${PORTVERSION} to ${MS_VERSION} ..."
65
	@${FETCH_BINARY} ${FETCH_ARGS:C/A//} -o ${MS_WRKSRC}/${MS_DISTNAME}.tar.gz ${GITHUB_TARBALL}
66
	@${MKDIR} ${MS_WRKSRC}/${MS_DISTNAME}/
67
	@${TAR} -xf ${MS_WRKSRC}/${MS_DISTNAME}.tar.gz -C ${MS_WRKSRC}/${MS_DISTNAME}/ --strip-components 1
68
	@${REINPLACE_CMD} -e 's|${MAKE}|${GMAKE}|g; /^install: / s| docclean||' ${MS_WRKSRC}/${MS_DISTNAME}/Makefile
69
	@${REINPLACE_CMD} -e 's| && ${MAKE} -j8 doc||' ${MS_WRKSRC}/${MS_DISTNAME}/package.json
70
	@${REINPLACE_CMD} -e 's|linkBins, linkMans|linkBins|; /manRoot/ s|, "share"||' ${MS_WRKSRC}/${MS_DISTNAME}/lib/build.js ${MS_WRKSRC}/${MS_DISTNAME}/lib/unbuild.js
71
	@${REINPLACE_CMD} -e '1 s|#!/bin/bash|#!${LOCALBASE}/bin/bash|; s|${MAKE}|${GMAKE}|g; s|perl -pi|perl -p|' ${MS_WRKSRC}/${MS_DISTNAME}/scripts/doc-build.sh
72
	@${GREP} -lr share/man ${MS_WRKSRC}/${MS_DISTNAME}/doc/ ${MS_WRKSRC}/${MS_DISTNAME}/scripts/ | ${XARGS} -I % ${REINPLACE_CMD} 's|share/man|man|g' %
73
	@cd ${MS_WRKSRC}/${MS_DISTNAME}/ && ${GMAKE} docclean markedclean all html/doc/misc/npm-index.html
74
	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type d -exec ${CHMOD} 755 '{}' \;
75
	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -exec ${CHMOD} 644 '{}' \;
76
	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -name '*.sh' -exec ${CHMOD} 755 '{}' \;
77
	@cd ${MS_WRKSRC}/ && ${TAR} -Jcf ${MS_DISTNAME}.tar.xz ${MS_DISTNAME}/
78
	@${REINPLACE_CMD} -e '/^PORTVERSION=/ s|${PORTVERSION}|'${MS_VERSION}'|; /^PORTREVISION=/d' ${.CURDIR}/Makefile
79
	@sudo ${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/
80
	@cd ${.CURDIR}/ && ${MAKE_CMD} makesum
81
82
.include <bsd.port.mk>
(-)www/npm/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (npm-2.6.1.tar.xz) = 2a376c44efcba8899e77cab262afbb93795f98d80ac5b7ebe546e9b5fc8fc00a
2
SIZE (npm-2.6.1.tar.xz) = 2053508
(-)www/npm/pkg-descr (+5 lines)
Line 0 Link Here
1
npm is a package manager for node. You can use it to install and publish your
2
node programs. It manages dependencies and does other cool stuff.
3
4
WWW: http://npmjs.org/
5
WWW: https://github.com/npm/npm
(-)www/npm/pkg-plist (+2161 lines)
Line 0 Link Here
1
bin/npm
2
etc/man.d/npm.conf
3
lib/node_modules/npm/.mailmap
4
lib/node_modules/npm/.npmignore
5
lib/node_modules/npm/.npmrc
6
lib/node_modules/npm/.travis.yml
7
lib/node_modules/npm/AUTHORS
8
lib/node_modules/npm/CHANGELOG.md
9
lib/node_modules/npm/CONTRIBUTING.md
10
lib/node_modules/npm/LICENSE
11
lib/node_modules/npm/Makefile
12
lib/node_modules/npm/README.md
13
@(,,755) lib/node_modules/npm/bin/node-gyp-bin/node-gyp
14
lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd
15
lib/node_modules/npm/bin/npm
16
lib/node_modules/npm/bin/npm-cli.js
17
lib/node_modules/npm/bin/npm.cmd
18
lib/node_modules/npm/bin/read-package-json.js
19
lib/node_modules/npm/cli.js
20
lib/node_modules/npm/configure
21
lib/node_modules/npm/doc/api/npm-bin.md
22
lib/node_modules/npm/doc/api/npm-bugs.md
23
lib/node_modules/npm/doc/api/npm-cache.md
24
lib/node_modules/npm/doc/api/npm-commands.md
25
lib/node_modules/npm/doc/api/npm-config.md
26
lib/node_modules/npm/doc/api/npm-deprecate.md
27
lib/node_modules/npm/doc/api/npm-docs.md
28
lib/node_modules/npm/doc/api/npm-edit.md
29
lib/node_modules/npm/doc/api/npm-explore.md
30
lib/node_modules/npm/doc/api/npm-help-search.md
31
lib/node_modules/npm/doc/api/npm-init.md
32
lib/node_modules/npm/doc/api/npm-install.md
33
lib/node_modules/npm/doc/api/npm-link.md
34
lib/node_modules/npm/doc/api/npm-load.md
35
lib/node_modules/npm/doc/api/npm-ls.md
36
lib/node_modules/npm/doc/api/npm-outdated.md
37
lib/node_modules/npm/doc/api/npm-owner.md
38
lib/node_modules/npm/doc/api/npm-pack.md
39
lib/node_modules/npm/doc/api/npm-prefix.md
40
lib/node_modules/npm/doc/api/npm-prune.md
41
lib/node_modules/npm/doc/api/npm-publish.md
42
lib/node_modules/npm/doc/api/npm-rebuild.md
43
lib/node_modules/npm/doc/api/npm-repo.md
44
lib/node_modules/npm/doc/api/npm-restart.md
45
lib/node_modules/npm/doc/api/npm-root.md
46
lib/node_modules/npm/doc/api/npm-run-script.md
47
lib/node_modules/npm/doc/api/npm-search.md
48
lib/node_modules/npm/doc/api/npm-shrinkwrap.md
49
lib/node_modules/npm/doc/api/npm-start.md
50
lib/node_modules/npm/doc/api/npm-stop.md
51
lib/node_modules/npm/doc/api/npm-tag.md
52
lib/node_modules/npm/doc/api/npm-test.md
53
lib/node_modules/npm/doc/api/npm-uninstall.md
54
lib/node_modules/npm/doc/api/npm-unpublish.md
55
lib/node_modules/npm/doc/api/npm-update.md
56
lib/node_modules/npm/doc/api/npm-version.md
57
lib/node_modules/npm/doc/api/npm-view.md
58
lib/node_modules/npm/doc/api/npm-whoami.md
59
lib/node_modules/npm/doc/api/npm.md
60
lib/node_modules/npm/doc/cli/npm-access.md
61
lib/node_modules/npm/doc/cli/npm-adduser.md
62
lib/node_modules/npm/doc/cli/npm-bin.md
63
lib/node_modules/npm/doc/cli/npm-bugs.md
64
lib/node_modules/npm/doc/cli/npm-build.md
65
lib/node_modules/npm/doc/cli/npm-bundle.md
66
lib/node_modules/npm/doc/cli/npm-cache.md
67
lib/node_modules/npm/doc/cli/npm-completion.md
68
lib/node_modules/npm/doc/cli/npm-config.md
69
lib/node_modules/npm/doc/cli/npm-dedupe.md
70
lib/node_modules/npm/doc/cli/npm-deprecate.md
71
lib/node_modules/npm/doc/cli/npm-dist-tag.md
72
lib/node_modules/npm/doc/cli/npm-docs.md
73
lib/node_modules/npm/doc/cli/npm-edit.md
74
lib/node_modules/npm/doc/cli/npm-explore.md
75
lib/node_modules/npm/doc/cli/npm-help-search.md
76
lib/node_modules/npm/doc/cli/npm-help.md
77
lib/node_modules/npm/doc/cli/npm-init.md
78
lib/node_modules/npm/doc/cli/npm-install.md
79
lib/node_modules/npm/doc/cli/npm-link.md
80
lib/node_modules/npm/doc/cli/npm-logout.md
81
lib/node_modules/npm/doc/cli/npm-ls.md
82
lib/node_modules/npm/doc/cli/npm-outdated.md
83
lib/node_modules/npm/doc/cli/npm-owner.md
84
lib/node_modules/npm/doc/cli/npm-pack.md
85
lib/node_modules/npm/doc/cli/npm-prefix.md
86
lib/node_modules/npm/doc/cli/npm-prune.md
87
lib/node_modules/npm/doc/cli/npm-publish.md
88
lib/node_modules/npm/doc/cli/npm-rebuild.md
89
lib/node_modules/npm/doc/cli/npm-repo.md
90
lib/node_modules/npm/doc/cli/npm-restart.md
91
lib/node_modules/npm/doc/cli/npm-rm.md
92
lib/node_modules/npm/doc/cli/npm-root.md
93
lib/node_modules/npm/doc/cli/npm-run-script.md
94
lib/node_modules/npm/doc/cli/npm-search.md
95
lib/node_modules/npm/doc/cli/npm-shrinkwrap.md
96
lib/node_modules/npm/doc/cli/npm-star.md
97
lib/node_modules/npm/doc/cli/npm-stars.md
98
lib/node_modules/npm/doc/cli/npm-start.md
99
lib/node_modules/npm/doc/cli/npm-stop.md
100
lib/node_modules/npm/doc/cli/npm-tag.md
101
lib/node_modules/npm/doc/cli/npm-test.md
102
lib/node_modules/npm/doc/cli/npm-uninstall.md
103
lib/node_modules/npm/doc/cli/npm-unpublish.md
104
lib/node_modules/npm/doc/cli/npm-update.md
105
lib/node_modules/npm/doc/cli/npm-version.md
106
lib/node_modules/npm/doc/cli/npm-view.md
107
lib/node_modules/npm/doc/cli/npm-whoami.md
108
lib/node_modules/npm/doc/cli/npm.md
109
lib/node_modules/npm/doc/files/npm-folders.md
110
lib/node_modules/npm/doc/files/npmrc.md
111
lib/node_modules/npm/doc/files/package.json.md
112
lib/node_modules/npm/doc/misc/npm-coding-style.md
113
lib/node_modules/npm/doc/misc/npm-config.md
114
lib/node_modules/npm/doc/misc/npm-developers.md
115
lib/node_modules/npm/doc/misc/npm-disputes.md
116
lib/node_modules/npm/doc/misc/npm-faq.md
117
lib/node_modules/npm/doc/misc/npm-index.md
118
lib/node_modules/npm/doc/misc/npm-registry.md
119
lib/node_modules/npm/doc/misc/npm-scope.md
120
lib/node_modules/npm/doc/misc/npm-scripts.md
121
lib/node_modules/npm/doc/misc/removing-npm.md
122
lib/node_modules/npm/doc/misc/semver.md
123
lib/node_modules/npm/html/doc/README.html
124
lib/node_modules/npm/html/doc/api/npm-bin.html
125
lib/node_modules/npm/html/doc/api/npm-bugs.html
126
lib/node_modules/npm/html/doc/api/npm-cache.html
127
lib/node_modules/npm/html/doc/api/npm-commands.html
128
lib/node_modules/npm/html/doc/api/npm-config.html
129
lib/node_modules/npm/html/doc/api/npm-deprecate.html
130
lib/node_modules/npm/html/doc/api/npm-docs.html
131
lib/node_modules/npm/html/doc/api/npm-edit.html
132
lib/node_modules/npm/html/doc/api/npm-explore.html
133
lib/node_modules/npm/html/doc/api/npm-help-search.html
134
lib/node_modules/npm/html/doc/api/npm-init.html
135
lib/node_modules/npm/html/doc/api/npm-install.html
136
lib/node_modules/npm/html/doc/api/npm-link.html
137
lib/node_modules/npm/html/doc/api/npm-load.html
138
lib/node_modules/npm/html/doc/api/npm-ls.html
139
lib/node_modules/npm/html/doc/api/npm-outdated.html
140
lib/node_modules/npm/html/doc/api/npm-owner.html
141
lib/node_modules/npm/html/doc/api/npm-pack.html
142
lib/node_modules/npm/html/doc/api/npm-prefix.html
143
lib/node_modules/npm/html/doc/api/npm-prune.html
144
lib/node_modules/npm/html/doc/api/npm-publish.html
145
lib/node_modules/npm/html/doc/api/npm-rebuild.html
146
lib/node_modules/npm/html/doc/api/npm-repo.html
147
lib/node_modules/npm/html/doc/api/npm-restart.html
148
lib/node_modules/npm/html/doc/api/npm-root.html
149
lib/node_modules/npm/html/doc/api/npm-run-script.html
150
lib/node_modules/npm/html/doc/api/npm-search.html
151
lib/node_modules/npm/html/doc/api/npm-shrinkwrap.html
152
lib/node_modules/npm/html/doc/api/npm-start.html
153
lib/node_modules/npm/html/doc/api/npm-stop.html
154
lib/node_modules/npm/html/doc/api/npm-tag.html
155
lib/node_modules/npm/html/doc/api/npm-test.html
156
lib/node_modules/npm/html/doc/api/npm-uninstall.html
157
lib/node_modules/npm/html/doc/api/npm-unpublish.html
158
lib/node_modules/npm/html/doc/api/npm-update.html
159
lib/node_modules/npm/html/doc/api/npm-version.html
160
lib/node_modules/npm/html/doc/api/npm-view.html
161
lib/node_modules/npm/html/doc/api/npm-whoami.html
162
lib/node_modules/npm/html/doc/api/npm.html
163
lib/node_modules/npm/html/doc/cli/npm-access.html
164
lib/node_modules/npm/html/doc/cli/npm-adduser.html
165
lib/node_modules/npm/html/doc/cli/npm-bin.html
166
lib/node_modules/npm/html/doc/cli/npm-bugs.html
167
lib/node_modules/npm/html/doc/cli/npm-build.html
168
lib/node_modules/npm/html/doc/cli/npm-bundle.html
169
lib/node_modules/npm/html/doc/cli/npm-cache.html
170
lib/node_modules/npm/html/doc/cli/npm-completion.html
171
lib/node_modules/npm/html/doc/cli/npm-config.html
172
lib/node_modules/npm/html/doc/cli/npm-dedupe.html
173
lib/node_modules/npm/html/doc/cli/npm-deprecate.html
174
lib/node_modules/npm/html/doc/cli/npm-dist-tag.html
175
lib/node_modules/npm/html/doc/cli/npm-docs.html
176
lib/node_modules/npm/html/doc/cli/npm-edit.html
177
lib/node_modules/npm/html/doc/cli/npm-explore.html
178
lib/node_modules/npm/html/doc/cli/npm-help-search.html
179
lib/node_modules/npm/html/doc/cli/npm-help.html
180
lib/node_modules/npm/html/doc/cli/npm-init.html
181
lib/node_modules/npm/html/doc/cli/npm-install.html
182
lib/node_modules/npm/html/doc/cli/npm-link.html
183
lib/node_modules/npm/html/doc/cli/npm-logout.html
184
lib/node_modules/npm/html/doc/cli/npm-ls.html
185
lib/node_modules/npm/html/doc/cli/npm-outdated.html
186
lib/node_modules/npm/html/doc/cli/npm-owner.html
187
lib/node_modules/npm/html/doc/cli/npm-pack.html
188
lib/node_modules/npm/html/doc/cli/npm-prefix.html
189
lib/node_modules/npm/html/doc/cli/npm-prune.html
190
lib/node_modules/npm/html/doc/cli/npm-publish.html
191
lib/node_modules/npm/html/doc/cli/npm-rebuild.html
192
lib/node_modules/npm/html/doc/cli/npm-repo.html
193
lib/node_modules/npm/html/doc/cli/npm-restart.html
194
lib/node_modules/npm/html/doc/cli/npm-rm.html
195
lib/node_modules/npm/html/doc/cli/npm-root.html
196
lib/node_modules/npm/html/doc/cli/npm-run-script.html
197
lib/node_modules/npm/html/doc/cli/npm-search.html
198
lib/node_modules/npm/html/doc/cli/npm-shrinkwrap.html
199
lib/node_modules/npm/html/doc/cli/npm-star.html
200
lib/node_modules/npm/html/doc/cli/npm-stars.html
201
lib/node_modules/npm/html/doc/cli/npm-start.html
202
lib/node_modules/npm/html/doc/cli/npm-stop.html
203
lib/node_modules/npm/html/doc/cli/npm-tag.html
204
lib/node_modules/npm/html/doc/cli/npm-test.html
205
lib/node_modules/npm/html/doc/cli/npm-uninstall.html
206
lib/node_modules/npm/html/doc/cli/npm-unpublish.html
207
lib/node_modules/npm/html/doc/cli/npm-update.html
208
lib/node_modules/npm/html/doc/cli/npm-version.html
209
lib/node_modules/npm/html/doc/cli/npm-view.html
210
lib/node_modules/npm/html/doc/cli/npm-whoami.html
211
lib/node_modules/npm/html/doc/cli/npm.html
212
lib/node_modules/npm/html/doc/files/npm-folders.html
213
lib/node_modules/npm/html/doc/files/npm-global.html
214
lib/node_modules/npm/html/doc/files/npm-json.html
215
lib/node_modules/npm/html/doc/files/npmrc.html
216
lib/node_modules/npm/html/doc/files/package.json.html
217
lib/node_modules/npm/html/doc/index.html
218
lib/node_modules/npm/html/doc/misc/npm-coding-style.html
219
lib/node_modules/npm/html/doc/misc/npm-config.html
220
lib/node_modules/npm/html/doc/misc/npm-developers.html
221
lib/node_modules/npm/html/doc/misc/npm-disputes.html
222
lib/node_modules/npm/html/doc/misc/npm-faq.html
223
lib/node_modules/npm/html/doc/misc/npm-index.html
224
lib/node_modules/npm/html/doc/misc/npm-registry.html
225
lib/node_modules/npm/html/doc/misc/npm-scope.html
226
lib/node_modules/npm/html/doc/misc/npm-scripts.html
227
lib/node_modules/npm/html/doc/misc/removing-npm.html
228
lib/node_modules/npm/html/doc/misc/semver.html
229
lib/node_modules/npm/html/docfoot.html
230
lib/node_modules/npm/html/dochead.html
231
lib/node_modules/npm/html/favicon.ico
232
lib/node_modules/npm/html/index.html
233
lib/node_modules/npm/html/partial/doc/README.html
234
lib/node_modules/npm/html/partial/doc/api/npm-bin.html
235
lib/node_modules/npm/html/partial/doc/api/npm-bugs.html
236
lib/node_modules/npm/html/partial/doc/api/npm-cache.html
237
lib/node_modules/npm/html/partial/doc/api/npm-commands.html
238
lib/node_modules/npm/html/partial/doc/api/npm-config.html
239
lib/node_modules/npm/html/partial/doc/api/npm-deprecate.html
240
lib/node_modules/npm/html/partial/doc/api/npm-docs.html
241
lib/node_modules/npm/html/partial/doc/api/npm-edit.html
242
lib/node_modules/npm/html/partial/doc/api/npm-explore.html
243
lib/node_modules/npm/html/partial/doc/api/npm-help-search.html
244
lib/node_modules/npm/html/partial/doc/api/npm-init.html
245
lib/node_modules/npm/html/partial/doc/api/npm-install.html
246
lib/node_modules/npm/html/partial/doc/api/npm-link.html
247
lib/node_modules/npm/html/partial/doc/api/npm-load.html
248
lib/node_modules/npm/html/partial/doc/api/npm-ls.html
249
lib/node_modules/npm/html/partial/doc/api/npm-outdated.html
250
lib/node_modules/npm/html/partial/doc/api/npm-owner.html
251
lib/node_modules/npm/html/partial/doc/api/npm-pack.html
252
lib/node_modules/npm/html/partial/doc/api/npm-prefix.html
253
lib/node_modules/npm/html/partial/doc/api/npm-prune.html
254
lib/node_modules/npm/html/partial/doc/api/npm-publish.html
255
lib/node_modules/npm/html/partial/doc/api/npm-rebuild.html
256
lib/node_modules/npm/html/partial/doc/api/npm-repo.html
257
lib/node_modules/npm/html/partial/doc/api/npm-restart.html
258
lib/node_modules/npm/html/partial/doc/api/npm-root.html
259
lib/node_modules/npm/html/partial/doc/api/npm-run-script.html
260
lib/node_modules/npm/html/partial/doc/api/npm-search.html
261
lib/node_modules/npm/html/partial/doc/api/npm-shrinkwrap.html
262
lib/node_modules/npm/html/partial/doc/api/npm-start.html
263
lib/node_modules/npm/html/partial/doc/api/npm-stop.html
264
lib/node_modules/npm/html/partial/doc/api/npm-tag.html
265
lib/node_modules/npm/html/partial/doc/api/npm-test.html
266
lib/node_modules/npm/html/partial/doc/api/npm-uninstall.html
267
lib/node_modules/npm/html/partial/doc/api/npm-unpublish.html
268
lib/node_modules/npm/html/partial/doc/api/npm-update.html
269
lib/node_modules/npm/html/partial/doc/api/npm-version.html
270
lib/node_modules/npm/html/partial/doc/api/npm-view.html
271
lib/node_modules/npm/html/partial/doc/api/npm-whoami.html
272
lib/node_modules/npm/html/partial/doc/api/npm.html
273
lib/node_modules/npm/html/partial/doc/cli/npm-access.html
274
lib/node_modules/npm/html/partial/doc/cli/npm-adduser.html
275
lib/node_modules/npm/html/partial/doc/cli/npm-bin.html
276
lib/node_modules/npm/html/partial/doc/cli/npm-bugs.html
277
lib/node_modules/npm/html/partial/doc/cli/npm-build.html
278
lib/node_modules/npm/html/partial/doc/cli/npm-bundle.html
279
lib/node_modules/npm/html/partial/doc/cli/npm-cache.html
280
lib/node_modules/npm/html/partial/doc/cli/npm-completion.html
281
lib/node_modules/npm/html/partial/doc/cli/npm-config.html
282
lib/node_modules/npm/html/partial/doc/cli/npm-dedupe.html
283
lib/node_modules/npm/html/partial/doc/cli/npm-deprecate.html
284
lib/node_modules/npm/html/partial/doc/cli/npm-dist-tag.html
285
lib/node_modules/npm/html/partial/doc/cli/npm-docs.html
286
lib/node_modules/npm/html/partial/doc/cli/npm-edit.html
287
lib/node_modules/npm/html/partial/doc/cli/npm-explore.html
288
lib/node_modules/npm/html/partial/doc/cli/npm-help-search.html
289
lib/node_modules/npm/html/partial/doc/cli/npm-help.html
290
lib/node_modules/npm/html/partial/doc/cli/npm-init.html
291
lib/node_modules/npm/html/partial/doc/cli/npm-install.html
292
lib/node_modules/npm/html/partial/doc/cli/npm-link.html
293
lib/node_modules/npm/html/partial/doc/cli/npm-logout.html
294
lib/node_modules/npm/html/partial/doc/cli/npm-ls.html
295
lib/node_modules/npm/html/partial/doc/cli/npm-outdated.html
296
lib/node_modules/npm/html/partial/doc/cli/npm-owner.html
297
lib/node_modules/npm/html/partial/doc/cli/npm-pack.html
298
lib/node_modules/npm/html/partial/doc/cli/npm-prefix.html
299
lib/node_modules/npm/html/partial/doc/cli/npm-prune.html
300
lib/node_modules/npm/html/partial/doc/cli/npm-publish.html
301
lib/node_modules/npm/html/partial/doc/cli/npm-rebuild.html
302
lib/node_modules/npm/html/partial/doc/cli/npm-repo.html
303
lib/node_modules/npm/html/partial/doc/cli/npm-restart.html
304
lib/node_modules/npm/html/partial/doc/cli/npm-rm.html
305
lib/node_modules/npm/html/partial/doc/cli/npm-root.html
306
lib/node_modules/npm/html/partial/doc/cli/npm-run-script.html
307
lib/node_modules/npm/html/partial/doc/cli/npm-search.html
308
lib/node_modules/npm/html/partial/doc/cli/npm-shrinkwrap.html
309
lib/node_modules/npm/html/partial/doc/cli/npm-star.html
310
lib/node_modules/npm/html/partial/doc/cli/npm-stars.html
311
lib/node_modules/npm/html/partial/doc/cli/npm-start.html
312
lib/node_modules/npm/html/partial/doc/cli/npm-stop.html
313
lib/node_modules/npm/html/partial/doc/cli/npm-tag.html
314
lib/node_modules/npm/html/partial/doc/cli/npm-test.html
315
lib/node_modules/npm/html/partial/doc/cli/npm-uninstall.html
316
lib/node_modules/npm/html/partial/doc/cli/npm-unpublish.html
317
lib/node_modules/npm/html/partial/doc/cli/npm-update.html
318
lib/node_modules/npm/html/partial/doc/cli/npm-version.html
319
lib/node_modules/npm/html/partial/doc/cli/npm-view.html
320
lib/node_modules/npm/html/partial/doc/cli/npm-whoami.html
321
lib/node_modules/npm/html/partial/doc/cli/npm.html
322
lib/node_modules/npm/html/partial/doc/files/npm-folders.html
323
lib/node_modules/npm/html/partial/doc/files/npm-global.html
324
lib/node_modules/npm/html/partial/doc/files/npm-json.html
325
lib/node_modules/npm/html/partial/doc/files/npmrc.html
326
lib/node_modules/npm/html/partial/doc/files/package.json.html
327
lib/node_modules/npm/html/partial/doc/index.html
328
lib/node_modules/npm/html/partial/doc/misc/npm-coding-style.html
329
lib/node_modules/npm/html/partial/doc/misc/npm-config.html
330
lib/node_modules/npm/html/partial/doc/misc/npm-developers.html
331
lib/node_modules/npm/html/partial/doc/misc/npm-disputes.html
332
lib/node_modules/npm/html/partial/doc/misc/npm-faq.html
333
lib/node_modules/npm/html/partial/doc/misc/npm-registry.html
334
lib/node_modules/npm/html/partial/doc/misc/npm-scope.html
335
lib/node_modules/npm/html/partial/doc/misc/npm-scripts.html
336
lib/node_modules/npm/html/partial/doc/misc/removing-npm.html
337
lib/node_modules/npm/html/partial/doc/misc/semver.html
338
lib/node_modules/npm/html/static/style.css
339
lib/node_modules/npm/html/static/toc.js
340
lib/node_modules/npm/lib/access.js
341
lib/node_modules/npm/lib/adduser.js
342
lib/node_modules/npm/lib/bin.js
343
lib/node_modules/npm/lib/bugs.js
344
lib/node_modules/npm/lib/build.js
345
lib/node_modules/npm/lib/cache.js
346
lib/node_modules/npm/lib/cache/add-local-tarball.js
347
lib/node_modules/npm/lib/cache/add-local.js
348
lib/node_modules/npm/lib/cache/add-named.js
349
lib/node_modules/npm/lib/cache/add-remote-git.js
350
lib/node_modules/npm/lib/cache/add-remote-tarball.js
351
lib/node_modules/npm/lib/cache/cached-package-root.js
352
lib/node_modules/npm/lib/cache/caching-client.js
353
lib/node_modules/npm/lib/cache/get-stat.js
354
lib/node_modules/npm/lib/cache/maybe-github.js
355
lib/node_modules/npm/lib/cache/update-index.js
356
lib/node_modules/npm/lib/completion.js
357
lib/node_modules/npm/lib/config.js
358
lib/node_modules/npm/lib/config/clear-credentials-by-uri.js
359
lib/node_modules/npm/lib/config/core.js
360
lib/node_modules/npm/lib/config/defaults.js
361
lib/node_modules/npm/lib/config/find-prefix.js
362
lib/node_modules/npm/lib/config/get-credentials-by-uri.js
363
lib/node_modules/npm/lib/config/load-cafile.js
364
lib/node_modules/npm/lib/config/load-prefix.js
365
lib/node_modules/npm/lib/config/load-uid.js
366
lib/node_modules/npm/lib/config/nerf-dart.js
367
lib/node_modules/npm/lib/config/set-credentials-by-uri.js
368
lib/node_modules/npm/lib/config/set-user.js
369
lib/node_modules/npm/lib/dedupe.js
370
lib/node_modules/npm/lib/deprecate.js
371
lib/node_modules/npm/lib/dist-tag.js
372
lib/node_modules/npm/lib/docs.js
373
lib/node_modules/npm/lib/edit.js
374
lib/node_modules/npm/lib/explore.js
375
lib/node_modules/npm/lib/faq.js
376
lib/node_modules/npm/lib/get.js
377
lib/node_modules/npm/lib/help-search.js
378
lib/node_modules/npm/lib/help.js
379
lib/node_modules/npm/lib/init.js
380
lib/node_modules/npm/lib/install.js
381
lib/node_modules/npm/lib/link.js
382
lib/node_modules/npm/lib/logout.js
383
lib/node_modules/npm/lib/ls.js
384
lib/node_modules/npm/lib/npm.js
385
lib/node_modules/npm/lib/outdated.js
386
lib/node_modules/npm/lib/owner.js
387
lib/node_modules/npm/lib/pack.js
388
lib/node_modules/npm/lib/prefix.js
389
lib/node_modules/npm/lib/prune.js
390
lib/node_modules/npm/lib/publish.js
391
lib/node_modules/npm/lib/rebuild.js
392
lib/node_modules/npm/lib/repo.js
393
lib/node_modules/npm/lib/restart.js
394
lib/node_modules/npm/lib/root.js
395
lib/node_modules/npm/lib/run-script.js
396
lib/node_modules/npm/lib/search.js
397
lib/node_modules/npm/lib/set.js
398
lib/node_modules/npm/lib/shrinkwrap.js
399
lib/node_modules/npm/lib/star.js
400
lib/node_modules/npm/lib/stars.js
401
lib/node_modules/npm/lib/start.js
402
lib/node_modules/npm/lib/stop.js
403
lib/node_modules/npm/lib/substack.js
404
lib/node_modules/npm/lib/tag.js
405
lib/node_modules/npm/lib/test.js
406
lib/node_modules/npm/lib/unbuild.js
407
lib/node_modules/npm/lib/uninstall.js
408
lib/node_modules/npm/lib/unpublish.js
409
lib/node_modules/npm/lib/update.js
410
lib/node_modules/npm/lib/utils/completion.sh
411
lib/node_modules/npm/lib/utils/completion/file-completion.js
412
lib/node_modules/npm/lib/utils/completion/installed-deep.js
413
lib/node_modules/npm/lib/utils/completion/installed-shallow.js
414
lib/node_modules/npm/lib/utils/depr-check.js
415
lib/node_modules/npm/lib/utils/error-handler.js
416
lib/node_modules/npm/lib/utils/gently-rm.js
417
lib/node_modules/npm/lib/utils/git.js
418
lib/node_modules/npm/lib/utils/lifecycle.js
419
lib/node_modules/npm/lib/utils/link.js
420
lib/node_modules/npm/lib/utils/locker.js
421
lib/node_modules/npm/lib/utils/map-to-registry.js
422
lib/node_modules/npm/lib/utils/read-local-package.js
423
lib/node_modules/npm/lib/utils/spawn.js
424
lib/node_modules/npm/lib/utils/tar.js
425
lib/node_modules/npm/lib/utils/umask.js
426
lib/node_modules/npm/lib/utils/warn-deprecated.js
427
lib/node_modules/npm/lib/version.js
428
lib/node_modules/npm/lib/view.js
429
lib/node_modules/npm/lib/visnup.js
430
lib/node_modules/npm/lib/whoami.js
431
lib/node_modules/npm/lib/xmas.js
432
lib/node_modules/npm/make.bat
433
lib/node_modules/npm/man/man1/npm-README.1.gz
434
lib/node_modules/npm/man/man1/npm-access.1.gz
435
lib/node_modules/npm/man/man1/npm-adduser.1.gz
436
lib/node_modules/npm/man/man1/npm-bin.1.gz
437
lib/node_modules/npm/man/man1/npm-bugs.1.gz
438
lib/node_modules/npm/man/man1/npm-build.1.gz
439
lib/node_modules/npm/man/man1/npm-bundle.1.gz
440
lib/node_modules/npm/man/man1/npm-cache.1.gz
441
lib/node_modules/npm/man/man1/npm-completion.1.gz
442
lib/node_modules/npm/man/man1/npm-config.1.gz
443
lib/node_modules/npm/man/man1/npm-dedupe.1.gz
444
lib/node_modules/npm/man/man1/npm-deprecate.1.gz
445
lib/node_modules/npm/man/man1/npm-dist-tag.1.gz
446
lib/node_modules/npm/man/man1/npm-docs.1.gz
447
lib/node_modules/npm/man/man1/npm-edit.1.gz
448
lib/node_modules/npm/man/man1/npm-explore.1.gz
449
lib/node_modules/npm/man/man1/npm-help-search.1.gz
450
lib/node_modules/npm/man/man1/npm-help.1.gz
451
lib/node_modules/npm/man/man1/npm-init.1.gz
452
lib/node_modules/npm/man/man1/npm-install.1.gz
453
lib/node_modules/npm/man/man1/npm-link.1.gz
454
lib/node_modules/npm/man/man1/npm-logout.1.gz
455
lib/node_modules/npm/man/man1/npm-ls.1.gz
456
lib/node_modules/npm/man/man1/npm-outdated.1.gz
457
lib/node_modules/npm/man/man1/npm-owner.1.gz
458
lib/node_modules/npm/man/man1/npm-pack.1.gz
459
lib/node_modules/npm/man/man1/npm-prefix.1.gz
460
lib/node_modules/npm/man/man1/npm-prune.1.gz
461
lib/node_modules/npm/man/man1/npm-publish.1.gz
462
lib/node_modules/npm/man/man1/npm-rebuild.1.gz
463
lib/node_modules/npm/man/man1/npm-repo.1.gz
464
lib/node_modules/npm/man/man1/npm-restart.1.gz
465
lib/node_modules/npm/man/man1/npm-rm.1.gz
466
lib/node_modules/npm/man/man1/npm-root.1.gz
467
lib/node_modules/npm/man/man1/npm-run-script.1.gz
468
lib/node_modules/npm/man/man1/npm-search.1.gz
469
lib/node_modules/npm/man/man1/npm-shrinkwrap.1.gz
470
lib/node_modules/npm/man/man1/npm-star.1.gz
471
lib/node_modules/npm/man/man1/npm-stars.1.gz
472
lib/node_modules/npm/man/man1/npm-start.1.gz
473
lib/node_modules/npm/man/man1/npm-stop.1.gz
474
lib/node_modules/npm/man/man1/npm-tag.1.gz
475
lib/node_modules/npm/man/man1/npm-test.1.gz
476
lib/node_modules/npm/man/man1/npm-uninstall.1.gz
477
lib/node_modules/npm/man/man1/npm-unpublish.1.gz
478
lib/node_modules/npm/man/man1/npm-update.1.gz
479
lib/node_modules/npm/man/man1/npm-version.1.gz
480
lib/node_modules/npm/man/man1/npm-view.1.gz
481
lib/node_modules/npm/man/man1/npm-whoami.1.gz
482
lib/node_modules/npm/man/man1/npm.1.gz
483
lib/node_modules/npm/man/man3/npm-bin.3.gz
484
lib/node_modules/npm/man/man3/npm-bugs.3.gz
485
lib/node_modules/npm/man/man3/npm-cache.3.gz
486
lib/node_modules/npm/man/man3/npm-commands.3.gz
487
lib/node_modules/npm/man/man3/npm-config.3.gz
488
lib/node_modules/npm/man/man3/npm-deprecate.3.gz
489
lib/node_modules/npm/man/man3/npm-docs.3.gz
490
lib/node_modules/npm/man/man3/npm-edit.3.gz
491
lib/node_modules/npm/man/man3/npm-explore.3.gz
492
lib/node_modules/npm/man/man3/npm-help-search.3.gz
493
lib/node_modules/npm/man/man3/npm-init.3.gz
494
lib/node_modules/npm/man/man3/npm-install.3.gz
495
lib/node_modules/npm/man/man3/npm-link.3.gz
496
lib/node_modules/npm/man/man3/npm-load.3.gz
497
lib/node_modules/npm/man/man3/npm-ls.3.gz
498
lib/node_modules/npm/man/man3/npm-outdated.3.gz
499
lib/node_modules/npm/man/man3/npm-owner.3.gz
500
lib/node_modules/npm/man/man3/npm-pack.3.gz
501
lib/node_modules/npm/man/man3/npm-prefix.3.gz
502
lib/node_modules/npm/man/man3/npm-prune.3.gz
503
lib/node_modules/npm/man/man3/npm-publish.3.gz
504
lib/node_modules/npm/man/man3/npm-rebuild.3.gz
505
lib/node_modules/npm/man/man3/npm-repo.3.gz
506
lib/node_modules/npm/man/man3/npm-restart.3.gz
507
lib/node_modules/npm/man/man3/npm-root.3.gz
508
lib/node_modules/npm/man/man3/npm-run-script.3.gz
509
lib/node_modules/npm/man/man3/npm-search.3.gz
510
lib/node_modules/npm/man/man3/npm-shrinkwrap.3.gz
511
lib/node_modules/npm/man/man3/npm-start.3.gz
512
lib/node_modules/npm/man/man3/npm-stop.3.gz
513
lib/node_modules/npm/man/man3/npm-tag.3.gz
514
lib/node_modules/npm/man/man3/npm-test.3.gz
515
lib/node_modules/npm/man/man3/npm-uninstall.3.gz
516
lib/node_modules/npm/man/man3/npm-unpublish.3.gz
517
lib/node_modules/npm/man/man3/npm-update.3.gz
518
lib/node_modules/npm/man/man3/npm-version.3.gz
519
lib/node_modules/npm/man/man3/npm-view.3.gz
520
lib/node_modules/npm/man/man3/npm-whoami.3.gz
521
lib/node_modules/npm/man/man3/npm.3.gz
522
lib/node_modules/npm/man/man5/npm-folders.5.gz
523
lib/node_modules/npm/man/man5/npm-global.5.gz
524
lib/node_modules/npm/man/man5/npm-json.5.gz
525
lib/node_modules/npm/man/man5/npmrc.5.gz
526
lib/node_modules/npm/man/man5/package.json.5.gz
527
lib/node_modules/npm/man/man7/npm-coding-style.7.gz
528
lib/node_modules/npm/man/man7/npm-config.7.gz
529
lib/node_modules/npm/man/man7/npm-developers.7.gz
530
lib/node_modules/npm/man/man7/npm-disputes.7.gz
531
lib/node_modules/npm/man/man7/npm-faq.7.gz
532
lib/node_modules/npm/man/man7/npm-index.7.gz
533
lib/node_modules/npm/man/man7/npm-registry.7.gz
534
lib/node_modules/npm/man/man7/npm-scope.7.gz
535
lib/node_modules/npm/man/man7/npm-scripts.7.gz
536
lib/node_modules/npm/man/man7/removing-npm.7.gz
537
lib/node_modules/npm/man/man7/semver.7.gz
538
lib/node_modules/npm/node_modules/.bin/mkdirp
539
lib/node_modules/npm/node_modules/.bin/node-gyp
540
lib/node_modules/npm/node_modules/.bin/nopt
541
lib/node_modules/npm/node_modules/.bin/opener
542
lib/node_modules/npm/node_modules/.bin/rimraf
543
lib/node_modules/npm/node_modules/.bin/semver
544
lib/node_modules/npm/node_modules/.bin/which
545
lib/node_modules/npm/node_modules/abbrev/CONTRIBUTING.md
546
lib/node_modules/npm/node_modules/abbrev/LICENSE
547
lib/node_modules/npm/node_modules/abbrev/README.md
548
lib/node_modules/npm/node_modules/abbrev/abbrev.js
549
lib/node_modules/npm/node_modules/abbrev/package.json
550
lib/node_modules/npm/node_modules/abbrev/test.js
551
lib/node_modules/npm/node_modules/ansi/.jshintrc
552
lib/node_modules/npm/node_modules/ansi/.npmignore
553
lib/node_modules/npm/node_modules/ansi/History.md
554
lib/node_modules/npm/node_modules/ansi/README.md
555
lib/node_modules/npm/node_modules/ansi/examples/beep/index.js
556
lib/node_modules/npm/node_modules/ansi/examples/clear/index.js
557
lib/node_modules/npm/node_modules/ansi/examples/cursorPosition.js
558
lib/node_modules/npm/node_modules/ansi/examples/progress/index.js
559
lib/node_modules/npm/node_modules/ansi/lib/ansi.js
560
lib/node_modules/npm/node_modules/ansi/lib/newlines.js
561
lib/node_modules/npm/node_modules/ansi/package.json
562
lib/node_modules/npm/node_modules/ansicolors/LICENSE
563
lib/node_modules/npm/node_modules/ansicolors/README.md
564
lib/node_modules/npm/node_modules/ansicolors/ansicolors.js
565
lib/node_modules/npm/node_modules/ansicolors/package.json
566
lib/node_modules/npm/node_modules/ansicolors/test/ansicolors.js
567
lib/node_modules/npm/node_modules/ansistyles/LICENSE
568
lib/node_modules/npm/node_modules/ansistyles/README.md
569
lib/node_modules/npm/node_modules/ansistyles/ansistyles.js
570
lib/node_modules/npm/node_modules/ansistyles/package.json
571
lib/node_modules/npm/node_modules/ansistyles/test/ansistyles.js
572
lib/node_modules/npm/node_modules/archy/LICENSE
573
lib/node_modules/npm/node_modules/archy/README.markdown
574
lib/node_modules/npm/node_modules/archy/examples/beep.js
575
lib/node_modules/npm/node_modules/archy/examples/multi_line.js
576
lib/node_modules/npm/node_modules/archy/index.js
577
lib/node_modules/npm/node_modules/archy/package.json
578
lib/node_modules/npm/node_modules/archy/test/beep.js
579
lib/node_modules/npm/node_modules/archy/test/multi_line.js
580
lib/node_modules/npm/node_modules/archy/test/non_unicode.js
581
lib/node_modules/npm/node_modules/async-some/.eslintrc
582
lib/node_modules/npm/node_modules/async-some/.npmignore
583
lib/node_modules/npm/node_modules/async-some/README.md
584
lib/node_modules/npm/node_modules/async-some/package.json
585
lib/node_modules/npm/node_modules/async-some/some.js
586
lib/node_modules/npm/node_modules/async-some/test/base-case.js
587
lib/node_modules/npm/node_modules/async-some/test/parameters.js
588
lib/node_modules/npm/node_modules/async-some/test/simple.js
589
lib/node_modules/npm/node_modules/block-stream/LICENCE
590
lib/node_modules/npm/node_modules/block-stream/README.md
591
lib/node_modules/npm/node_modules/block-stream/bench/block-stream-pause.js
592
lib/node_modules/npm/node_modules/block-stream/bench/block-stream.js
593
lib/node_modules/npm/node_modules/block-stream/bench/dropper-pause.js
594
lib/node_modules/npm/node_modules/block-stream/bench/dropper.js
595
lib/node_modules/npm/node_modules/block-stream/block-stream.js
596
lib/node_modules/npm/node_modules/block-stream/package.json
597
lib/node_modules/npm/node_modules/block-stream/test/basic.js
598
lib/node_modules/npm/node_modules/block-stream/test/nopad-thorough.js
599
lib/node_modules/npm/node_modules/block-stream/test/nopad.js
600
lib/node_modules/npm/node_modules/block-stream/test/pause-resume.js
601
lib/node_modules/npm/node_modules/block-stream/test/thorough.js
602
lib/node_modules/npm/node_modules/block-stream/test/two-stream.js
603
lib/node_modules/npm/node_modules/char-spinner/LICENSE
604
lib/node_modules/npm/node_modules/char-spinner/README.md
605
lib/node_modules/npm/node_modules/char-spinner/package.json
606
lib/node_modules/npm/node_modules/char-spinner/spin.js
607
lib/node_modules/npm/node_modules/char-spinner/test/basic.js
608
lib/node_modules/npm/node_modules/child-process-close/README.md
609
lib/node_modules/npm/node_modules/child-process-close/index.js
610
lib/node_modules/npm/node_modules/child-process-close/package.json
611
lib/node_modules/npm/node_modules/child-process-close/test/test-exec.js
612
lib/node_modules/npm/node_modules/child-process-close/test/test-fork.js
613
lib/node_modules/npm/node_modules/child-process-close/test/test-spawn-and-execfile.js
614
lib/node_modules/npm/node_modules/child-process-close/test/test.js
615
lib/node_modules/npm/node_modules/child-process-close/test/worker-fork.js
616
lib/node_modules/npm/node_modules/child-process-close/test/worker-spawn.js
617
lib/node_modules/npm/node_modules/chmodr/LICENSE
618
lib/node_modules/npm/node_modules/chmodr/README.md
619
lib/node_modules/npm/node_modules/chmodr/chmodr.js
620
lib/node_modules/npm/node_modules/chmodr/package.json
621
lib/node_modules/npm/node_modules/chmodr/test/basic.js
622
lib/node_modules/npm/node_modules/chmodr/test/sync.js
623
lib/node_modules/npm/node_modules/chownr/LICENCE
624
lib/node_modules/npm/node_modules/chownr/README.md
625
lib/node_modules/npm/node_modules/chownr/chownr.js
626
lib/node_modules/npm/node_modules/chownr/package.json
627
lib/node_modules/npm/node_modules/cmd-shim/.npmignore
628
lib/node_modules/npm/node_modules/cmd-shim/.travis.yml
629
lib/node_modules/npm/node_modules/cmd-shim/LICENSE
630
lib/node_modules/npm/node_modules/cmd-shim/README.md
631
lib/node_modules/npm/node_modules/cmd-shim/index.js
632
lib/node_modules/npm/node_modules/cmd-shim/package.json
633
lib/node_modules/npm/node_modules/cmd-shim/test/00-setup.js
634
lib/node_modules/npm/node_modules/cmd-shim/test/basic.js
635
lib/node_modules/npm/node_modules/cmd-shim/test/zz-cleanup.js
636
lib/node_modules/npm/node_modules/columnify/LICENSE
637
lib/node_modules/npm/node_modules/columnify/Makefile
638
lib/node_modules/npm/node_modules/columnify/Readme.md
639
lib/node_modules/npm/node_modules/columnify/columnify.js
640
lib/node_modules/npm/node_modules/columnify/index.js
641
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/cli.js
642
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js
643
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/index.js
644
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/package.json
645
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/readme.md
646
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json
647
lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/readme.md
648
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/.npmignore
649
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/LICENSE
650
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/Readme.md
651
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/combining.js
652
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/docs/index.md
653
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/index.js
654
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/.npmignore
655
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/README.md
656
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/index.js
657
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.npmignore
658
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.travis.yml
659
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/LICENSE
660
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/README.md
661
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/clone.js
662
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json
663
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/test.js
664
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
665
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/test.js
666
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/package.json
667
lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/test/index.js
668
lib/node_modules/npm/node_modules/columnify/package.json
669
lib/node_modules/npm/node_modules/columnify/utils.js
670
lib/node_modules/npm/node_modules/columnify/width.js
671
lib/node_modules/npm/node_modules/config-chain/.npmignore
672
lib/node_modules/npm/node_modules/config-chain/LICENCE
673
lib/node_modules/npm/node_modules/config-chain/index.js
674
lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/LICENSE
675
lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/README.md
676
lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/package.json
677
lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/proto-list.js
678
lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/test/basic.js
679
lib/node_modules/npm/node_modules/config-chain/package.json
680
lib/node_modules/npm/node_modules/config-chain/readme.markdown
681
lib/node_modules/npm/node_modules/config-chain/test/broken.js
682
lib/node_modules/npm/node_modules/config-chain/test/broken.json
683
lib/node_modules/npm/node_modules/config-chain/test/chain-class.js
684
lib/node_modules/npm/node_modules/config-chain/test/env.js
685
lib/node_modules/npm/node_modules/config-chain/test/find-file.js
686
lib/node_modules/npm/node_modules/config-chain/test/get.js
687
lib/node_modules/npm/node_modules/config-chain/test/ignore-unfound-file.js
688
lib/node_modules/npm/node_modules/config-chain/test/ini.js
689
lib/node_modules/npm/node_modules/config-chain/test/save.js
690
lib/node_modules/npm/node_modules/dezalgo/README.md
691
lib/node_modules/npm/node_modules/dezalgo/dezalgo.js
692
lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/LICENSE.md
693
lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/README.md
694
lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js
695
lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/package.json
696
lib/node_modules/npm/node_modules/dezalgo/package.json
697
lib/node_modules/npm/node_modules/dezalgo/test/basic.js
698
lib/node_modules/npm/node_modules/editor/LICENSE
699
lib/node_modules/npm/node_modules/editor/README.markdown
700
lib/node_modules/npm/node_modules/editor/example/beep.json
701
lib/node_modules/npm/node_modules/editor/example/edit.js
702
lib/node_modules/npm/node_modules/editor/index.js
703
lib/node_modules/npm/node_modules/editor/package.json
704
lib/node_modules/npm/node_modules/fs-vacuum/.eslintrc
705
lib/node_modules/npm/node_modules/fs-vacuum/.npmignore
706
lib/node_modules/npm/node_modules/fs-vacuum/README.md
707
lib/node_modules/npm/node_modules/fs-vacuum/package.json
708
lib/node_modules/npm/node_modules/fs-vacuum/test/arguments.js
709
lib/node_modules/npm/node_modules/fs-vacuum/test/base-leaf-mismatch.js
710
lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-file-no-purge.js
711
lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-link-no-purge.js
712
lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-no-purge.js
713
lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-link-purge.js
714
lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-purge.js
715
lib/node_modules/npm/node_modules/fs-vacuum/test/other-directories-no-purge.js
716
lib/node_modules/npm/node_modules/fs-vacuum/vacuum.js
717
lib/node_modules/npm/node_modules/fs-write-stream-atomic/LICENSE
718
lib/node_modules/npm/node_modules/fs-write-stream-atomic/README.md
719
lib/node_modules/npm/node_modules/fs-write-stream-atomic/index.js
720
lib/node_modules/npm/node_modules/fs-write-stream-atomic/package.json
721
lib/node_modules/npm/node_modules/fs-write-stream-atomic/test/basic.js
722
lib/node_modules/npm/node_modules/fstream-npm/.npmignore
723
lib/node_modules/npm/node_modules/fstream-npm/LICENSE
724
lib/node_modules/npm/node_modules/fstream-npm/README.md
725
lib/node_modules/npm/node_modules/fstream-npm/example/bundle.js
726
lib/node_modules/npm/node_modules/fstream-npm/example/dir-tar.js
727
lib/node_modules/npm/node_modules/fstream-npm/example/dir.js
728
lib/node_modules/npm/node_modules/fstream-npm/example/example.js
729
lib/node_modules/npm/node_modules/fstream-npm/example/ig-tar.js
730
lib/node_modules/npm/node_modules/fstream-npm/example/tar.js
731
lib/node_modules/npm/node_modules/fstream-npm/fstream-npm.js
732
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/.npmignore
733
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/LICENSE
734
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/README.md
735
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js
736
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js
737
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/package.json
738
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.ignore
739
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.npmignore
740
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/00-setup.js
741
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/basic.js
742
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/common.js
743
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/ignore-most.js
744
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/nested-ignores.js
745
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/read-file-order.js
746
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/unignore-child.js
747
lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/zz-cleanup.js
748
lib/node_modules/npm/node_modules/fstream-npm/package.json
749
lib/node_modules/npm/node_modules/fstream/.npmignore
750
lib/node_modules/npm/node_modules/fstream/.travis.yml
751
lib/node_modules/npm/node_modules/fstream/LICENSE
752
lib/node_modules/npm/node_modules/fstream/README.md
753
lib/node_modules/npm/node_modules/fstream/examples/filter-pipe.js
754
lib/node_modules/npm/node_modules/fstream/examples/pipe.js
755
lib/node_modules/npm/node_modules/fstream/examples/reader.js
756
lib/node_modules/npm/node_modules/fstream/examples/symlink-write.js
757
lib/node_modules/npm/node_modules/fstream/fstream.js
758
lib/node_modules/npm/node_modules/fstream/lib/abstract.js
759
lib/node_modules/npm/node_modules/fstream/lib/collect.js
760
lib/node_modules/npm/node_modules/fstream/lib/dir-reader.js
761
lib/node_modules/npm/node_modules/fstream/lib/dir-writer.js
762
lib/node_modules/npm/node_modules/fstream/lib/file-reader.js
763
lib/node_modules/npm/node_modules/fstream/lib/file-writer.js
764
lib/node_modules/npm/node_modules/fstream/lib/get-type.js
765
lib/node_modules/npm/node_modules/fstream/lib/link-reader.js
766
lib/node_modules/npm/node_modules/fstream/lib/link-writer.js
767
lib/node_modules/npm/node_modules/fstream/lib/proxy-reader.js
768
lib/node_modules/npm/node_modules/fstream/lib/proxy-writer.js
769
lib/node_modules/npm/node_modules/fstream/lib/reader.js
770
lib/node_modules/npm/node_modules/fstream/lib/socket-reader.js
771
lib/node_modules/npm/node_modules/fstream/lib/writer.js
772
lib/node_modules/npm/node_modules/fstream/package.json
773
lib/node_modules/npm/node_modules/github-url-from-git/.npmignore
774
lib/node_modules/npm/node_modules/github-url-from-git/LICENSE
775
lib/node_modules/npm/node_modules/github-url-from-git/Makefile
776
lib/node_modules/npm/node_modules/github-url-from-git/Readme.md
777
lib/node_modules/npm/node_modules/github-url-from-git/index.js
778
lib/node_modules/npm/node_modules/github-url-from-git/package.json
779
lib/node_modules/npm/node_modules/github-url-from-git/test.js
780
lib/node_modules/npm/node_modules/github-url-from-username-repo/.npmignore
781
lib/node_modules/npm/node_modules/github-url-from-username-repo/.travis.yml
782
lib/node_modules/npm/node_modules/github-url-from-username-repo/LICENSE
783
lib/node_modules/npm/node_modules/github-url-from-username-repo/README.md
784
lib/node_modules/npm/node_modules/github-url-from-username-repo/index.js
785
lib/node_modules/npm/node_modules/github-url-from-username-repo/package.json
786
lib/node_modules/npm/node_modules/github-url-from-username-repo/test/index.js
787
lib/node_modules/npm/node_modules/glob/LICENSE
788
lib/node_modules/npm/node_modules/glob/README.md
789
lib/node_modules/npm/node_modules/glob/common.js
790
lib/node_modules/npm/node_modules/glob/glob.js
791
lib/node_modules/npm/node_modules/glob/package.json
792
lib/node_modules/npm/node_modules/glob/sync.js
793
lib/node_modules/npm/node_modules/graceful-fs/.npmignore
794
lib/node_modules/npm/node_modules/graceful-fs/LICENSE
795
lib/node_modules/npm/node_modules/graceful-fs/README.md
796
lib/node_modules/npm/node_modules/graceful-fs/fs.js
797
lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js
798
lib/node_modules/npm/node_modules/graceful-fs/package.json
799
lib/node_modules/npm/node_modules/graceful-fs/polyfills.js
800
lib/node_modules/npm/node_modules/graceful-fs/test/max-open.js
801
lib/node_modules/npm/node_modules/graceful-fs/test/open.js
802
lib/node_modules/npm/node_modules/graceful-fs/test/readdir-sort.js
803
lib/node_modules/npm/node_modules/graceful-fs/test/write-then-read.js
804
lib/node_modules/npm/node_modules/inflight/LICENSE
805
lib/node_modules/npm/node_modules/inflight/README.md
806
lib/node_modules/npm/node_modules/inflight/inflight.js
807
lib/node_modules/npm/node_modules/inflight/package.json
808
lib/node_modules/npm/node_modules/inflight/test.js
809
lib/node_modules/npm/node_modules/inherits/LICENSE
810
lib/node_modules/npm/node_modules/inherits/README.md
811
lib/node_modules/npm/node_modules/inherits/inherits.js
812
lib/node_modules/npm/node_modules/inherits/inherits_browser.js
813
lib/node_modules/npm/node_modules/inherits/package.json
814
lib/node_modules/npm/node_modules/inherits/test.js
815
lib/node_modules/npm/node_modules/ini/.npmignore
816
lib/node_modules/npm/node_modules/ini/LICENSE
817
lib/node_modules/npm/node_modules/ini/README.md
818
lib/node_modules/npm/node_modules/ini/ini.js
819
lib/node_modules/npm/node_modules/ini/package.json
820
lib/node_modules/npm/node_modules/ini/test/bar.js
821
lib/node_modules/npm/node_modules/ini/test/fixtures/foo.ini
822
lib/node_modules/npm/node_modules/ini/test/foo.js
823
lib/node_modules/npm/node_modules/init-package-json/.npmignore
824
lib/node_modules/npm/node_modules/init-package-json/LICENSE
825
lib/node_modules/npm/node_modules/init-package-json/README.md
826
lib/node_modules/npm/node_modules/init-package-json/default-input.js
827
lib/node_modules/npm/node_modules/init-package-json/example/example-basic.js
828
lib/node_modules/npm/node_modules/init-package-json/example/example-default.js
829
lib/node_modules/npm/node_modules/init-package-json/example/example-npm.js
830
lib/node_modules/npm/node_modules/init-package-json/example/init/basic-init.js
831
lib/node_modules/npm/node_modules/init-package-json/init-package-json.js
832
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/.npmignore
833
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/LICENSE
834
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/README.md
835
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/index.js
836
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/README.md
837
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init-input.js
838
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init.js
839
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/package.json
840
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/substack-input.js
841
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/package.json
842
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/promzard.js
843
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/basic.js
844
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/exports.input
845
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/exports.js
846
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/fn.input
847
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/fn.js
848
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/simple.input
849
lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/simple.js
850
lib/node_modules/npm/node_modules/init-package-json/package.json
851
lib/node_modules/npm/node_modules/init-package-json/test/basic.input
852
lib/node_modules/npm/node_modules/init-package-json/test/basic.js
853
lib/node_modules/npm/node_modules/init-package-json/test/npm-defaults.js
854
lib/node_modules/npm/node_modules/lockfile/LICENSE
855
lib/node_modules/npm/node_modules/lockfile/README.md
856
lib/node_modules/npm/node_modules/lockfile/lockfile.js
857
lib/node_modules/npm/node_modules/lockfile/package.json
858
lib/node_modules/npm/node_modules/lockfile/test/basic.js
859
lib/node_modules/npm/node_modules/lockfile/test/fixtures/bad-child.js
860
lib/node_modules/npm/node_modules/lockfile/test/fixtures/child.js
861
lib/node_modules/npm/node_modules/lockfile/test/retry-time.js
862
lib/node_modules/npm/node_modules/lockfile/test/stale-contention.js
863
lib/node_modules/npm/node_modules/lru-cache/.npmignore
864
lib/node_modules/npm/node_modules/lru-cache/CONTRIBUTORS
865
lib/node_modules/npm/node_modules/lru-cache/LICENSE
866
lib/node_modules/npm/node_modules/lru-cache/README.md
867
lib/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js
868
lib/node_modules/npm/node_modules/lru-cache/package.json
869
lib/node_modules/npm/node_modules/lru-cache/test/basic.js
870
lib/node_modules/npm/node_modules/lru-cache/test/foreach.js
871
lib/node_modules/npm/node_modules/lru-cache/test/memory-leak.js
872
lib/node_modules/npm/node_modules/minimatch/.npmignore
873
lib/node_modules/npm/node_modules/minimatch/.travis.yml
874
lib/node_modules/npm/node_modules/minimatch/LICENSE
875
lib/node_modules/npm/node_modules/minimatch/README.md
876
lib/node_modules/npm/node_modules/minimatch/benchmark.js
877
lib/node_modules/npm/node_modules/minimatch/browser.js
878
lib/node_modules/npm/node_modules/minimatch/minimatch.js
879
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/.npmignore
880
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/.travis.yml
881
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/README.md
882
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/example.js
883
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/index.bak
884
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/index.js
885
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore
886
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml
887
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile
888
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md
889
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js
890
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js
891
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json
892
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js
893
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml
894
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown
895
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js
896
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js
897
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json
898
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js
899
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/package.json
900
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js
901
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt
902
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt
903
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js
904
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js
905
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh
906
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js
907
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js
908
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/order.js
909
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/pad.js
910
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js
911
lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js
912
lib/node_modules/npm/node_modules/minimatch/package.json
913
lib/node_modules/npm/node_modules/minimatch/test/basic.js
914
lib/node_modules/npm/node_modules/minimatch/test/brace-expand.js
915
lib/node_modules/npm/node_modules/minimatch/test/defaults.js
916
lib/node_modules/npm/node_modules/minimatch/test/extglob-ending-with-state-char.js
917
lib/node_modules/npm/node_modules/mkdirp/.npmignore
918
lib/node_modules/npm/node_modules/mkdirp/.travis.yml
919
lib/node_modules/npm/node_modules/mkdirp/LICENSE
920
lib/node_modules/npm/node_modules/mkdirp/README.markdown
921
lib/node_modules/npm/node_modules/mkdirp/bin/cmd.js
922
lib/node_modules/npm/node_modules/mkdirp/bin/usage.txt
923
lib/node_modules/npm/node_modules/mkdirp/examples/pow.js
924
lib/node_modules/npm/node_modules/mkdirp/index.js
925
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/.travis.yml
926
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/LICENSE
927
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/example/parse.js
928
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js
929
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/package.json
930
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/readme.markdown
931
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dash.js
932
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/default_bool.js
933
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dotted.js
934
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/long.js
935
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse.js
936
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js
937
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/short.js
938
lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/whitespace.js
939
lib/node_modules/npm/node_modules/mkdirp/package.json
940
lib/node_modules/npm/node_modules/mkdirp/test/chmod.js
941
lib/node_modules/npm/node_modules/mkdirp/test/clobber.js
942
lib/node_modules/npm/node_modules/mkdirp/test/mkdirp.js
943
lib/node_modules/npm/node_modules/mkdirp/test/opts_fs.js
944
lib/node_modules/npm/node_modules/mkdirp/test/opts_fs_sync.js
945
lib/node_modules/npm/node_modules/mkdirp/test/perm.js
946
lib/node_modules/npm/node_modules/mkdirp/test/perm_sync.js
947
lib/node_modules/npm/node_modules/mkdirp/test/race.js
948
lib/node_modules/npm/node_modules/mkdirp/test/rel.js
949
lib/node_modules/npm/node_modules/mkdirp/test/return.js
950
lib/node_modules/npm/node_modules/mkdirp/test/return_sync.js
951
lib/node_modules/npm/node_modules/mkdirp/test/root.js
952
lib/node_modules/npm/node_modules/mkdirp/test/sync.js
953
lib/node_modules/npm/node_modules/mkdirp/test/umask.js
954
lib/node_modules/npm/node_modules/mkdirp/test/umask_sync.js
955
lib/node_modules/npm/node_modules/node-gyp/.jshintrc
956
lib/node_modules/npm/node_modules/node-gyp/.npmignore
957
lib/node_modules/npm/node_modules/node-gyp/LICENSE
958
lib/node_modules/npm/node_modules/node-gyp/README.md
959
lib/node_modules/npm/node_modules/node-gyp/addon.gypi
960
lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js
961
lib/node_modules/npm/node_modules/node-gyp/gyp/.npmignore
962
lib/node_modules/npm/node_modules/node-gyp/gyp/AUTHORS
963
lib/node_modules/npm/node_modules/node-gyp/gyp/DEPS
964
lib/node_modules/npm/node_modules/node-gyp/gyp/LICENSE
965
lib/node_modules/npm/node_modules/node-gyp/gyp/OWNERS
966
lib/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py
967
lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py
968
lib/node_modules/npm/node_modules/node-gyp/gyp/codereview.settings
969
lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc
970
lib/node_modules/npm/node_modules/node-gyp/gyp/gyp
971
lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat
972
lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_dummy.c
973
lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py
974
lib/node_modules/npm/node_modules/node-gyp/gyp/gyptest.py
975
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py
976
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py
977
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py
978
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
979
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
980
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
981
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
982
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
983
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
984
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py
985
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py
986
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py
987
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py
988
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py
989
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py
990
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py
991
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py
992
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py
993
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py
994
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py
995
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py
996
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
997
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py
998
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py
999
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py
1000
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py
1001
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py
1002
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py
1003
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py
1004
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py
1005
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py
1006
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py
1007
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py
1008
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py
1009
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py
1010
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py
1011
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py
1012
lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py
1013
lib/node_modules/npm/node_modules/node-gyp/gyp/pylintrc
1014
lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples
1015
lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat
1016
lib/node_modules/npm/node_modules/node-gyp/gyp/setup.py
1017
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/README
1018
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/README
1019
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec
1020
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec
1021
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/README
1022
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp-tests.el
1023
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp.el
1024
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh
1025
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp
1026
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp.fontified
1027
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/graphviz.py
1028
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py
1029
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py
1030
lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
1031
lib/node_modules/npm/node_modules/node-gyp/lib/build.js
1032
lib/node_modules/npm/node_modules/node-gyp/lib/clean.js
1033
lib/node_modules/npm/node_modules/node-gyp/lib/configure.js
1034
lib/node_modules/npm/node_modules/node-gyp/lib/install.js
1035
lib/node_modules/npm/node_modules/node-gyp/lib/list.js
1036
lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js
1037
lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js
1038
lib/node_modules/npm/node_modules/node-gyp/lib/remove.js
1039
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/.npmignore
1040
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/.travis.yml
1041
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/LICENSE
1042
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/README.md
1043
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js
1044
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/LICENSE
1045
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/README.md
1046
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/bench.js
1047
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/package.json
1048
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/sigmund.js
1049
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/sigmund/test/basic.js
1050
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/package.json
1051
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/test/basic.js
1052
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/test/brace-expand.js
1053
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/test/caching.js
1054
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/test/defaults.js
1055
lib/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/test/extglob-ending-with-state-char.js
1056
lib/node_modules/npm/node_modules/node-gyp/package.json
1057
lib/node_modules/npm/node_modules/nopt/.npmignore
1058
lib/node_modules/npm/node_modules/nopt/LICENSE
1059
lib/node_modules/npm/node_modules/nopt/README.md
1060
lib/node_modules/npm/node_modules/nopt/bin/nopt.js
1061
lib/node_modules/npm/node_modules/nopt/examples/my-program.js
1062
lib/node_modules/npm/node_modules/nopt/lib/nopt.js
1063
lib/node_modules/npm/node_modules/nopt/package.json
1064
lib/node_modules/npm/node_modules/nopt/test/basic.js
1065
lib/node_modules/npm/node_modules/normalize-git-url/.npmignore
1066
lib/node_modules/npm/node_modules/normalize-git-url/CHANGELOG.md
1067
lib/node_modules/npm/node_modules/normalize-git-url/README.md
1068
lib/node_modules/npm/node_modules/normalize-git-url/normalize-git-url.js
1069
lib/node_modules/npm/node_modules/normalize-git-url/package.json
1070
lib/node_modules/npm/node_modules/normalize-git-url/test/basic.js
1071
lib/node_modules/npm/node_modules/normalize-package-data/.npmignore
1072
lib/node_modules/npm/node_modules/normalize-package-data/.travis.yml
1073
lib/node_modules/npm/node_modules/normalize-package-data/AUTHORS
1074
lib/node_modules/npm/node_modules/normalize-package-data/LICENSE
1075
lib/node_modules/npm/node_modules/normalize-package-data/README.md
1076
lib/node_modules/npm/node_modules/normalize-package-data/lib/core_module_names.json
1077
lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js
1078
lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js
1079
lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js
1080
lib/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js
1081
lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js
1082
lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json
1083
lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json
1084
lib/node_modules/npm/node_modules/normalize-package-data/package.json
1085
lib/node_modules/npm/node_modules/normalize-package-data/test/basic.js
1086
lib/node_modules/npm/node_modules/normalize-package-data/test/consistency.js
1087
lib/node_modules/npm/node_modules/normalize-package-data/test/dependencies.js
1088
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/async.json
1089
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/bcrypt.json
1090
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/coffee-script.json
1091
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/http-server.json
1092
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/movefile.json
1093
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/no-description.json
1094
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/node-module_exist.json
1095
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/npm.json
1096
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/read-package-json.json
1097
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/request.json
1098
lib/node_modules/npm/node_modules/normalize-package-data/test/fixtures/underscore.json
1099
lib/node_modules/npm/node_modules/normalize-package-data/test/github-urls.js
1100
lib/node_modules/npm/node_modules/normalize-package-data/test/normalize.js
1101
lib/node_modules/npm/node_modules/normalize-package-data/test/scoped.js
1102
lib/node_modules/npm/node_modules/normalize-package-data/test/strict.js
1103
lib/node_modules/npm/node_modules/normalize-package-data/test/typo.js
1104
lib/node_modules/npm/node_modules/npm-cache-filename/LICENSE
1105
lib/node_modules/npm/node_modules/npm-cache-filename/README.md
1106
lib/node_modules/npm/node_modules/npm-cache-filename/index.js
1107
lib/node_modules/npm/node_modules/npm-cache-filename/package.json
1108
lib/node_modules/npm/node_modules/npm-cache-filename/test.js
1109
lib/node_modules/npm/node_modules/npm-install-checks/LICENSE
1110
lib/node_modules/npm/node_modules/npm-install-checks/README.md
1111
lib/node_modules/npm/node_modules/npm-install-checks/index.js
1112
lib/node_modules/npm/node_modules/npm-install-checks/package.json
1113
lib/node_modules/npm/node_modules/npm-install-checks/test/check-engine.js
1114
lib/node_modules/npm/node_modules/npm-install-checks/test/check-git.js
1115
lib/node_modules/npm/node_modules/npm-install-checks/test/check-platform.js
1116
lib/node_modules/npm/node_modules/npm-package-arg/LICENSE
1117
lib/node_modules/npm/node_modules/npm-package-arg/README.md
1118
lib/node_modules/npm/node_modules/npm-package-arg/npa.js
1119
lib/node_modules/npm/node_modules/npm-package-arg/package.json
1120
lib/node_modules/npm/node_modules/npm-package-arg/test/basic.js
1121
lib/node_modules/npm/node_modules/npm-package-arg/test/windows.js
1122
lib/node_modules/npm/node_modules/npm-registry-client/.npmignore
1123
lib/node_modules/npm/node_modules/npm-registry-client/.travis.yml
1124
lib/node_modules/npm/node_modules/npm-registry-client/LICENSE
1125
lib/node_modules/npm/node_modules/npm-registry-client/README.md
1126
lib/node_modules/npm/node_modules/npm-registry-client/index.js
1127
lib/node_modules/npm/node_modules/npm-registry-client/lib/access.js
1128
lib/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js
1129
lib/node_modules/npm/node_modules/npm-registry-client/lib/attempt.js
1130
lib/node_modules/npm/node_modules/npm-registry-client/lib/authify.js
1131
lib/node_modules/npm/node_modules/npm-registry-client/lib/deprecate.js
1132
lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/add.js
1133
lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/fetch.js
1134
lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/rm.js
1135
lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/set.js
1136
lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/update.js
1137
lib/node_modules/npm/node_modules/npm-registry-client/lib/fetch.js
1138
lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js
1139
lib/node_modules/npm/node_modules/npm-registry-client/lib/initialize.js
1140
lib/node_modules/npm/node_modules/npm-registry-client/lib/logout.js
1141
lib/node_modules/npm/node_modules/npm-registry-client/lib/publish.js
1142
lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js
1143
lib/node_modules/npm/node_modules/npm-registry-client/lib/star.js
1144
lib/node_modules/npm/node_modules/npm-registry-client/lib/stars.js
1145
lib/node_modules/npm/node_modules/npm-registry-client/lib/tag.js
1146
lib/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js
1147
lib/node_modules/npm/node_modules/npm-registry-client/lib/whoami.js
1148
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/.npmignore
1149
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/LICENSE
1150
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/index.js
1151
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/.npmignore
1152
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/LICENSE
1153
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/README.md
1154
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/duplex.js
1155
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/float.patch
1156
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js
1157
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js
1158
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js
1159
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js
1160
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js
1161
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/README.md
1162
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/float.patch
1163
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/lib/util.js
1164
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/package.json
1165
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/util.js
1166
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/README.md
1167
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/build/build.js
1168
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/component.json
1169
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/index.js
1170
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/package.json
1171
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/.npmignore
1172
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/LICENSE
1173
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/README.md
1174
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/index.js
1175
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/package.json
1176
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/package.json
1177
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/passthrough.js
1178
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/readable.js
1179
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/transform.js
1180
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/writable.js
1181
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/.travis.yml
1182
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/LICENSE
1183
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/example/tarray.js
1184
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/index.js
1185
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/package.json
1186
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/readme.markdown
1187
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/test/server/undef_globals.js
1188
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/test/tarray.js
1189
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/package.json
1190
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/readme.md
1191
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/array.js
1192
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/buffer.js
1193
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/infer.js
1194
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/nothing.js
1195
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/objects.js
1196
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/server/ls.js
1197
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/string.js
1198
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/test/typedarray.js
1199
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/LICENSE
1200
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/README.md
1201
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/.npmignore
1202
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/.travis.yml
1203
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/README.md
1204
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/index.js
1205
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/package.json
1206
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/basic.js
1207
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/bitbucket.js
1208
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/gist.js
1209
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/github.js
1210
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/gitlab.js
1211
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/node_modules/hosted-git-info/test/lib/standard-tests.js
1212
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/npa.js
1213
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/package.json
1214
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/test/basic.js
1215
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/test/bitbucket.js
1216
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/test/github.js
1217
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/test/gitlab.js
1218
lib/node_modules/npm/node_modules/npm-registry-client/node_modules/npm-package-arg/test/windows.js
1219
lib/node_modules/npm/node_modules/npm-registry-client/package.json
1220
lib/node_modules/npm/node_modules/npm-registry-client/test/00-setup.js
1221
lib/node_modules/npm/node_modules/npm-registry-client/test/access.js
1222
lib/node_modules/npm/node_modules/npm-registry-client/test/adduser-new.js
1223
lib/node_modules/npm/node_modules/npm-registry-client/test/adduser-update.js
1224
lib/node_modules/npm/node_modules/npm-registry-client/test/adduser.js
1225
lib/node_modules/npm/node_modules/npm-registry-client/test/config-defaults.js
1226
lib/node_modules/npm/node_modules/npm-registry-client/test/config-override.js
1227
lib/node_modules/npm/node_modules/npm-registry-client/test/deprecate.js
1228
lib/node_modules/npm/node_modules/npm-registry-client/test/dist-tags-add.js
1229
lib/node_modules/npm/node_modules/npm-registry-client/test/dist-tags-fetch.js
1230
lib/node_modules/npm/node_modules/npm-registry-client/test/dist-tags-rm.js
1231
lib/node_modules/npm/node_modules/npm-registry-client/test/dist-tags-set.js
1232
lib/node_modules/npm/node_modules/npm-registry-client/test/dist-tags-update.js
1233
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-404.js
1234
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-408.js
1235
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-503.js
1236
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-authed.js
1237
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-basic.js
1238
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-github-api-json.js
1239
lib/node_modules/npm/node_modules/npm-registry-client/test/fetch-not-authed.js
1240
lib/node_modules/npm/node_modules/npm-registry-client/test/get-basic.js
1241
lib/node_modules/npm/node_modules/npm-registry-client/test/get-error-403.js
1242
lib/node_modules/npm/node_modules/npm-registry-client/test/initialize.js
1243
lib/node_modules/npm/node_modules/npm-registry-client/test/lib/common.js
1244
lib/node_modules/npm/node_modules/npm-registry-client/test/lib/server.js
1245
lib/node_modules/npm/node_modules/npm-registry-client/test/logout.js
1246
lib/node_modules/npm/node_modules/npm-registry-client/test/publish-again-scoped.js
1247
lib/node_modules/npm/node_modules/npm-registry-client/test/publish-again.js
1248
lib/node_modules/npm/node_modules/npm-registry-client/test/publish-failed-no-message.js
1249
lib/node_modules/npm/node_modules/npm-registry-client/test/publish-scoped-auth-token.js
1250
lib/node_modules/npm/node_modules/npm-registry-client/test/publish-scoped.js
1251
lib/node_modules/npm/node_modules/npm-registry-client/test/publish.js
1252
lib/node_modules/npm/node_modules/npm-registry-client/test/redirects.js
1253
lib/node_modules/npm/node_modules/npm-registry-client/test/request-gzip-content.js
1254
lib/node_modules/npm/node_modules/npm-registry-client/test/request.js
1255
lib/node_modules/npm/node_modules/npm-registry-client/test/retries.js
1256
lib/node_modules/npm/node_modules/npm-registry-client/test/star.js
1257
lib/node_modules/npm/node_modules/npm-registry-client/test/stars.js
1258
lib/node_modules/npm/node_modules/npm-registry-client/test/tag.js
1259
lib/node_modules/npm/node_modules/npm-registry-client/test/unpublish-scoped.js
1260
lib/node_modules/npm/node_modules/npm-registry-client/test/unpublish.js
1261
lib/node_modules/npm/node_modules/npm-registry-client/test/whoami.js
1262
lib/node_modules/npm/node_modules/npm-registry-client/test/zz-cleanup.js
1263
lib/node_modules/npm/node_modules/npm-user-validate/.npmignore
1264
lib/node_modules/npm/node_modules/npm-user-validate/.travis.yml
1265
lib/node_modules/npm/node_modules/npm-user-validate/LICENSE
1266
lib/node_modules/npm/node_modules/npm-user-validate/README.md
1267
lib/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js
1268
lib/node_modules/npm/node_modules/npm-user-validate/package.json
1269
lib/node_modules/npm/node_modules/npm-user-validate/test/email.test.js
1270
lib/node_modules/npm/node_modules/npm-user-validate/test/pw.test.js
1271
lib/node_modules/npm/node_modules/npm-user-validate/test/username.test.js
1272
lib/node_modules/npm/node_modules/npmlog/.npmrc
1273
lib/node_modules/npm/node_modules/npmlog/LICENSE
1274
lib/node_modules/npm/node_modules/npmlog/README.md
1275
lib/node_modules/npm/node_modules/npmlog/example.js
1276
lib/node_modules/npm/node_modules/npmlog/log.js
1277
lib/node_modules/npm/node_modules/npmlog/package.json
1278
lib/node_modules/npm/node_modules/npmlog/test/basic.js
1279
lib/node_modules/npm/node_modules/once/LICENSE
1280
lib/node_modules/npm/node_modules/once/README.md
1281
lib/node_modules/npm/node_modules/once/once.js
1282
lib/node_modules/npm/node_modules/once/package.json
1283
lib/node_modules/npm/node_modules/once/test/once.js
1284
lib/node_modules/npm/node_modules/opener/LICENSE.txt
1285
lib/node_modules/npm/node_modules/opener/README.md
1286
lib/node_modules/npm/node_modules/opener/opener.js
1287
lib/node_modules/npm/node_modules/opener/package.json
1288
lib/node_modules/npm/node_modules/osenv/LICENSE
1289
lib/node_modules/npm/node_modules/osenv/README.md
1290
lib/node_modules/npm/node_modules/osenv/osenv.js
1291
lib/node_modules/npm/node_modules/osenv/package.json
1292
lib/node_modules/npm/node_modules/osenv/test/unix.js
1293
lib/node_modules/npm/node_modules/osenv/test/windows.js
1294
lib/node_modules/npm/node_modules/path-is-inside/LICENSE.txt
1295
lib/node_modules/npm/node_modules/path-is-inside/README.md
1296
lib/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js
1297
lib/node_modules/npm/node_modules/path-is-inside/package.json
1298
lib/node_modules/npm/node_modules/read-installed/.npmignore
1299
lib/node_modules/npm/node_modules/read-installed/LICENSE
1300
lib/node_modules/npm/node_modules/read-installed/README.md
1301
lib/node_modules/npm/node_modules/read-installed/node_modules/debuglog/LICENSE
1302
lib/node_modules/npm/node_modules/read-installed/node_modules/debuglog/README.md
1303
lib/node_modules/npm/node_modules/read-installed/node_modules/debuglog/debuglog.js
1304
lib/node_modules/npm/node_modules/read-installed/node_modules/debuglog/package.json
1305
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/LICENSE
1306
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/README.md
1307
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/package.json
1308
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js
1309
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/basic.js
1310
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/@org/x/.keep
1311
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/@org/y/.keep
1312
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/@scope/x/.keep
1313
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/@scope/y/.keep
1314
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/a/x/.keep
1315
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/a/y/.keep
1316
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/b/x/.keep
1317
lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/test/fixtures/b/y/.keep
1318
lib/node_modules/npm/node_modules/read-installed/node_modules/util-extend/README.md
1319
lib/node_modules/npm/node_modules/read-installed/node_modules/util-extend/extend.js
1320
lib/node_modules/npm/node_modules/read-installed/node_modules/util-extend/package.json
1321
lib/node_modules/npm/node_modules/read-installed/node_modules/util-extend/test.js
1322
lib/node_modules/npm/node_modules/read-installed/package.json
1323
lib/node_modules/npm/node_modules/read-installed/read-installed.js
1324
lib/node_modules/npm/node_modules/read-installed/test/basic.js
1325
lib/node_modules/npm/node_modules/read-installed/test/cyclic-extraneous-peer-deps.js
1326
lib/node_modules/npm/node_modules/read-installed/test/depth-0.js
1327
lib/node_modules/npm/node_modules/read-installed/test/depth-1.js
1328
lib/node_modules/npm/node_modules/read-installed/test/dev.js
1329
lib/node_modules/npm/node_modules/read-installed/test/empty.js
1330
lib/node_modules/npm/node_modules/read-installed/test/extraneous-dev.js
1331
lib/node_modules/npm/node_modules/read-installed/test/extraneous.js
1332
lib/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-detected/package.json
1333
lib/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-dev-dep/package.json
1334
lib/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer-dev/package.json
1335
lib/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer/package.json
1336
lib/node_modules/npm/node_modules/read-installed/test/fixtures/package.json
1337
lib/node_modules/npm/node_modules/read-installed/test/grandparent-peer-dev.js
1338
lib/node_modules/npm/node_modules/read-installed/test/grandparent-peer.js
1339
lib/node_modules/npm/node_modules/read-installed/test/linked-dep-dev-deps-extraneous.js
1340
lib/node_modules/npm/node_modules/read-installed/test/noargs.js
1341
lib/node_modules/npm/node_modules/read-installed/test/peer-dep-at-latest.js
1342
lib/node_modules/npm/node_modules/read-package-json/.npmignore
1343
lib/node_modules/npm/node_modules/read-package-json/LICENSE
1344
lib/node_modules/npm/node_modules/read-package-json/README.md
1345
lib/node_modules/npm/node_modules/read-package-json/package.json
1346
lib/node_modules/npm/node_modules/read-package-json/read-json.js
1347
lib/node_modules/npm/node_modules/read-package-json/test/basic.js
1348
lib/node_modules/npm/node_modules/read-package-json/test/bin.js
1349
lib/node_modules/npm/node_modules/read-package-json/test/bom.js
1350
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/badbin.json
1351
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/bin.json
1352
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/bin/echo
1353
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/bom.json
1354
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/emptybin.json
1355
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/nobom.json
1356
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/not-json.css
1357
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/README
1358
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/README.md
1359
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/package.json
1360
lib/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/readmexxx.yz
1361
lib/node_modules/npm/node_modules/read-package-json/test/non-json.js
1362
lib/node_modules/npm/node_modules/read-package-json/test/readmes.js
1363
lib/node_modules/npm/node_modules/read/.npmignore
1364
lib/node_modules/npm/node_modules/read/LICENCE
1365
lib/node_modules/npm/node_modules/read/README.md
1366
lib/node_modules/npm/node_modules/read/example/example.js
1367
lib/node_modules/npm/node_modules/read/lib/read.js
1368
lib/node_modules/npm/node_modules/read/node_modules/mute-stream/LICENSE
1369
lib/node_modules/npm/node_modules/read/node_modules/mute-stream/README.md
1370
lib/node_modules/npm/node_modules/read/node_modules/mute-stream/mute.js
1371
lib/node_modules/npm/node_modules/read/node_modules/mute-stream/package.json
1372
lib/node_modules/npm/node_modules/read/node_modules/mute-stream/test/basic.js
1373
lib/node_modules/npm/node_modules/read/package.json
1374
lib/node_modules/npm/node_modules/read/rs.js
1375
lib/node_modules/npm/node_modules/read/test/basic.js
1376
lib/node_modules/npm/node_modules/read/test/defaults.js
1377
lib/node_modules/npm/node_modules/read/test/many.js
1378
lib/node_modules/npm/node_modules/readable-stream/.npmignore
1379
lib/node_modules/npm/node_modules/readable-stream/LICENSE
1380
lib/node_modules/npm/node_modules/readable-stream/README.md
1381
lib/node_modules/npm/node_modules/readable-stream/duplex.js
1382
lib/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js
1383
lib/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js
1384
lib/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js
1385
lib/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js
1386
lib/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js
1387
lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/README.md
1388
lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/float.patch
1389
lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/lib/util.js
1390
lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/package.json
1391
lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/util.js
1392
lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/README.md
1393
lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/build/build.js
1394
lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/component.json
1395
lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/index.js
1396
lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/package.json
1397
lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/.npmignore
1398
lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/LICENSE
1399
lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/README.md
1400
lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/index.js
1401
lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/package.json
1402
lib/node_modules/npm/node_modules/readable-stream/package.json
1403
lib/node_modules/npm/node_modules/readable-stream/passthrough.js
1404
lib/node_modules/npm/node_modules/readable-stream/readable.js
1405
lib/node_modules/npm/node_modules/readable-stream/transform.js
1406
lib/node_modules/npm/node_modules/readable-stream/writable.js
1407
lib/node_modules/npm/node_modules/realize-package-specifier/.npmignore
1408
lib/node_modules/npm/node_modules/realize-package-specifier/README.md
1409
lib/node_modules/npm/node_modules/realize-package-specifier/index.js
1410
lib/node_modules/npm/node_modules/realize-package-specifier/package.json
1411
lib/node_modules/npm/node_modules/realize-package-specifier/test/basic.js
1412
lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-basic.js
1413
lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-windows.js
1414
lib/node_modules/npm/node_modules/request/.npmignore
1415
lib/node_modules/npm/node_modules/request/.travis.yml
1416
lib/node_modules/npm/node_modules/request/CHANGELOG.md
1417
lib/node_modules/npm/node_modules/request/CONTRIBUTING.md
1418
lib/node_modules/npm/node_modules/request/LICENSE
1419
lib/node_modules/npm/node_modules/request/README.md
1420
lib/node_modules/npm/node_modules/request/disabled.appveyor.yml
1421
lib/node_modules/npm/node_modules/request/examples/README.md
1422
lib/node_modules/npm/node_modules/request/index.js
1423
lib/node_modules/npm/node_modules/request/lib/auth.js
1424
lib/node_modules/npm/node_modules/request/lib/cookies.js
1425
lib/node_modules/npm/node_modules/request/lib/copy.js
1426
lib/node_modules/npm/node_modules/request/lib/getProxyFromURI.js
1427
lib/node_modules/npm/node_modules/request/lib/helpers.js
1428
lib/node_modules/npm/node_modules/request/lib/oauth.js
1429
lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/LICENSE
1430
lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/README.md
1431
lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/index.js
1432
lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/package.json
1433
lib/node_modules/npm/node_modules/request/node_modules/bl/.npmignore
1434
lib/node_modules/npm/node_modules/request/node_modules/bl/.travis.yml
1435
lib/node_modules/npm/node_modules/request/node_modules/bl/LICENSE.md
1436
lib/node_modules/npm/node_modules/request/node_modules/bl/README.md
1437
lib/node_modules/npm/node_modules/request/node_modules/bl/bl.js
1438
lib/node_modules/npm/node_modules/request/node_modules/bl/package.json
1439
lib/node_modules/npm/node_modules/request/node_modules/bl/test/basic-test.js
1440
lib/node_modules/npm/node_modules/request/node_modules/bl/test/sauce.js
1441
lib/node_modules/npm/node_modules/request/node_modules/bl/test/test.js
1442
lib/node_modules/npm/node_modules/request/node_modules/caseless/README.md
1443
lib/node_modules/npm/node_modules/request/node_modules/caseless/index.js
1444
lib/node_modules/npm/node_modules/request/node_modules/caseless/package.json
1445
lib/node_modules/npm/node_modules/request/node_modules/caseless/test.js
1446
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/License
1447
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/Readme.md
1448
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/lib/combined_stream.js
1449
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/.npmignore
1450
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/License
1451
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/Makefile
1452
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/Readme.md
1453
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js
1454
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/package.json
1455
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/common.js
1456
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js
1457
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js
1458
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js
1459
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream.js
1460
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-handle-source-errors.js
1461
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-max-data-size.js
1462
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-pipe-resumes.js
1463
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-proxy-readable.js
1464
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/test/run.js
1465
lib/node_modules/npm/node_modules/request/node_modules/combined-stream/package.json
1466
lib/node_modules/npm/node_modules/request/node_modules/forever-agent/LICENSE
1467
lib/node_modules/npm/node_modules/request/node_modules/forever-agent/README.md
1468
lib/node_modules/npm/node_modules/request/node_modules/forever-agent/index.js
1469
lib/node_modules/npm/node_modules/request/node_modules/forever-agent/package.json
1470
lib/node_modules/npm/node_modules/request/node_modules/form-data/License
1471
lib/node_modules/npm/node_modules/request/node_modules/form-data/Readme.md
1472
lib/node_modules/npm/node_modules/request/node_modules/form-data/lib/form_data.js
1473
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/.travis.yml
1474
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/LICENSE
1475
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/README.md
1476
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/component.json
1477
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/lib/async.js
1478
lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/package.json
1479
lib/node_modules/npm/node_modules/request/node_modules/form-data/package.json
1480
lib/node_modules/npm/node_modules/request/node_modules/hawk/.npmignore
1481
lib/node_modules/npm/node_modules/request/node_modules/hawk/.travis.yml
1482
lib/node_modules/npm/node_modules/request/node_modules/hawk/LICENSE
1483
lib/node_modules/npm/node_modules/request/node_modules/hawk/Makefile
1484
lib/node_modules/npm/node_modules/request/node_modules/hawk/README.md
1485
lib/node_modules/npm/node_modules/request/node_modules/hawk/bower.json
1486
lib/node_modules/npm/node_modules/request/node_modules/hawk/component.json
1487
lib/node_modules/npm/node_modules/request/node_modules/hawk/example/usage.js
1488
lib/node_modules/npm/node_modules/request/node_modules/hawk/images/hawk.png
1489
lib/node_modules/npm/node_modules/request/node_modules/hawk/images/logo.png
1490
lib/node_modules/npm/node_modules/request/node_modules/hawk/index.js
1491
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/browser.js
1492
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/client.js
1493
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/crypto.js
1494
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/index.js
1495
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/server.js
1496
lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/utils.js
1497
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore
1498
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml
1499
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/CONTRIBUTING.md
1500
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/LICENSE
1501
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/Makefile
1502
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/README.md
1503
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png
1504
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/index.js
1505
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js
1506
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/package.json
1507
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/test/index.js
1508
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore
1509
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml
1510
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/LICENSE
1511
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile
1512
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md
1513
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js
1514
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js
1515
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/package.json
1516
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/test/index.js
1517
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore
1518
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml
1519
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/CONTRIBUTING.md
1520
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/LICENSE
1521
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile
1522
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/README.md
1523
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png
1524
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/index.js
1525
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js
1526
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js
1527
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/package.json
1528
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/escaper.js
1529
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/index.js
1530
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/ignore.txt
1531
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js
1532
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js
1533
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js
1534
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore
1535
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml
1536
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/LICENSE
1537
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile
1538
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/README.md
1539
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/examples/offset.js
1540
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/examples/time.js
1541
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/index.js
1542
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js
1543
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/package.json
1544
lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/test/index.js
1545
lib/node_modules/npm/node_modules/request/node_modules/hawk/package.json
1546
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/browser.js
1547
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/client.js
1548
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/crypto.js
1549
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/index.js
1550
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/message.js
1551
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/readme.js
1552
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/server.js
1553
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/uri.js
1554
lib/node_modules/npm/node_modules/request/node_modules/hawk/test/utils.js
1555
lib/node_modules/npm/node_modules/request/node_modules/http-signature/.dir-locals.el
1556
lib/node_modules/npm/node_modules/request/node_modules/http-signature/.npmignore
1557
lib/node_modules/npm/node_modules/request/node_modules/http-signature/LICENSE
1558
lib/node_modules/npm/node_modules/request/node_modules/http-signature/README.md
1559
lib/node_modules/npm/node_modules/request/node_modules/http-signature/http_signing.md
1560
lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/index.js
1561
lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/parser.js
1562
lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/signer.js
1563
lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/util.js
1564
lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/verify.js
1565
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore
1566
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/LICENSE
1567
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md
1568
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js
1569
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/index.js
1570
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/reader.js
1571
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/types.js
1572
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/writer.js
1573
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/index.js
1574
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/package.json
1575
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/reader.test.js
1576
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/writer.test.js
1577
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/README.md
1578
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js
1579
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/package.json
1580
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/.npmignore
1581
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/CHANGELOG
1582
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/LICENSE
1583
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/README
1584
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/README.old
1585
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctf.js
1586
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctio.js
1587
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctype.js
1588
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/man/man3ctype/ctio.3ctype
1589
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/package.json
1590
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsl.conf
1591
lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsstyle
1592
lib/node_modules/npm/node_modules/request/node_modules/http-signature/package.json
1593
lib/node_modules/npm/node_modules/request/node_modules/isstream/.npmignore
1594
lib/node_modules/npm/node_modules/request/node_modules/isstream/.travis.yml
1595
lib/node_modules/npm/node_modules/request/node_modules/isstream/LICENSE
1596
lib/node_modules/npm/node_modules/request/node_modules/isstream/README.md
1597
lib/node_modules/npm/node_modules/request/node_modules/isstream/isstream.js
1598
lib/node_modules/npm/node_modules/request/node_modules/isstream/package.json
1599
lib/node_modules/npm/node_modules/request/node_modules/isstream/test.js
1600
lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/LICENSE
1601
lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/README.md
1602
lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/package.json
1603
lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/stringify.js
1604
lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/test.js
1605
lib/node_modules/npm/node_modules/request/node_modules/mime-types/HISTORY.md
1606
lib/node_modules/npm/node_modules/request/node_modules/mime-types/LICENSE
1607
lib/node_modules/npm/node_modules/request/node_modules/mime-types/README.md
1608
lib/node_modules/npm/node_modules/request/node_modules/mime-types/index.js
1609
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/HISTORY.md
1610
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/LICENSE
1611
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/README.md
1612
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/db.json
1613
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/index.js
1614
lib/node_modules/npm/node_modules/request/node_modules/mime-types/node_modules/mime-db/package.json
1615
lib/node_modules/npm/node_modules/request/node_modules/mime-types/package.json
1616
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/.npmignore
1617
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/LICENSE.md
1618
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/README.md
1619
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/README.md
1620
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/bench.gnu
1621
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/bench.sh
1622
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark-native.c
1623
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js
1624
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/bin/uuid
1625
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/component.json
1626
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/package.json
1627
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/test/compare_v1.js
1628
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/test/test.html
1629
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/test/test.js
1630
lib/node_modules/npm/node_modules/request/node_modules/node-uuid/uuid.js
1631
lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/LICENSE
1632
lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/README.md
1633
lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/index.js
1634
lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/package.json
1635
lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/test.js
1636
lib/node_modules/npm/node_modules/request/node_modules/qs/.jshintignore
1637
lib/node_modules/npm/node_modules/request/node_modules/qs/.npmignore
1638
lib/node_modules/npm/node_modules/request/node_modules/qs/.travis.yml
1639
lib/node_modules/npm/node_modules/request/node_modules/qs/CHANGELOG.md
1640
lib/node_modules/npm/node_modules/request/node_modules/qs/CONTRIBUTING.md
1641
lib/node_modules/npm/node_modules/request/node_modules/qs/LICENSE
1642
lib/node_modules/npm/node_modules/request/node_modules/qs/Makefile
1643
lib/node_modules/npm/node_modules/request/node_modules/qs/Readme.md
1644
lib/node_modules/npm/node_modules/request/node_modules/qs/index.js
1645
lib/node_modules/npm/node_modules/request/node_modules/qs/lib/index.js
1646
lib/node_modules/npm/node_modules/request/node_modules/qs/lib/parse.js
1647
lib/node_modules/npm/node_modules/request/node_modules/qs/lib/stringify.js
1648
lib/node_modules/npm/node_modules/request/node_modules/qs/lib/utils.js
1649
lib/node_modules/npm/node_modules/request/node_modules/qs/package.json
1650
lib/node_modules/npm/node_modules/request/node_modules/qs/test/parse.js
1651
lib/node_modules/npm/node_modules/request/node_modules/qs/test/stringify.js
1652
lib/node_modules/npm/node_modules/request/node_modules/stringstream/.npmignore
1653
lib/node_modules/npm/node_modules/request/node_modules/stringstream/.travis.yml
1654
lib/node_modules/npm/node_modules/request/node_modules/stringstream/LICENSE.txt
1655
lib/node_modules/npm/node_modules/request/node_modules/stringstream/README.md
1656
lib/node_modules/npm/node_modules/request/node_modules/stringstream/example.js
1657
lib/node_modules/npm/node_modules/request/node_modules/stringstream/package.json
1658
lib/node_modules/npm/node_modules/request/node_modules/stringstream/stringstream.js
1659
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/.jshintrc
1660
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/.npmignore
1661
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/.travis.yml
1662
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/LICENSE
1663
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/README.md
1664
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/generate-pubsuffix.js
1665
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/cookie.js
1666
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/memstore.js
1667
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js
1668
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/store.js
1669
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/LICENSE-MIT.txt
1670
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/README.md
1671
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/package.json
1672
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/punycode.js
1673
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/package.json
1674
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/public-suffix.txt
1675
lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/test.js
1676
lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/LICENSE
1677
lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/README.md
1678
lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/index.js
1679
lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/package.json
1680
lib/node_modules/npm/node_modules/request/package.json
1681
lib/node_modules/npm/node_modules/request/release.sh
1682
lib/node_modules/npm/node_modules/request/request.js
1683
lib/node_modules/npm/node_modules/retry/.npmignore
1684
lib/node_modules/npm/node_modules/retry/License
1685
lib/node_modules/npm/node_modules/retry/Makefile
1686
lib/node_modules/npm/node_modules/retry/Readme.md
1687
lib/node_modules/npm/node_modules/retry/equation.gif
1688
lib/node_modules/npm/node_modules/retry/example/dns.js
1689
lib/node_modules/npm/node_modules/retry/index.js
1690
lib/node_modules/npm/node_modules/retry/lib/retry.js
1691
lib/node_modules/npm/node_modules/retry/lib/retry_operation.js
1692
lib/node_modules/npm/node_modules/retry/package.json
1693
lib/node_modules/npm/node_modules/retry/test/common.js
1694
lib/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js
1695
lib/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js
1696
lib/node_modules/npm/node_modules/retry/test/runner.js
1697
lib/node_modules/npm/node_modules/rimraf/AUTHORS
1698
lib/node_modules/npm/node_modules/rimraf/LICENSE
1699
lib/node_modules/npm/node_modules/rimraf/README.md
1700
lib/node_modules/npm/node_modules/rimraf/bin.js
1701
lib/node_modules/npm/node_modules/rimraf/package.json
1702
lib/node_modules/npm/node_modules/rimraf/rimraf.js
1703
lib/node_modules/npm/node_modules/rimraf/test/run.sh
1704
lib/node_modules/npm/node_modules/rimraf/test/setup.sh
1705
lib/node_modules/npm/node_modules/rimraf/test/test-async.js
1706
lib/node_modules/npm/node_modules/rimraf/test/test-sync.js
1707
lib/node_modules/npm/node_modules/semver/.npmignore
1708
lib/node_modules/npm/node_modules/semver/LICENSE
1709
lib/node_modules/npm/node_modules/semver/Makefile
1710
lib/node_modules/npm/node_modules/semver/README.md
1711
lib/node_modules/npm/node_modules/semver/bin/semver
1712
lib/node_modules/npm/node_modules/semver/foot.js.txt
1713
lib/node_modules/npm/node_modules/semver/head.js.txt
1714
lib/node_modules/npm/node_modules/semver/package.json
1715
lib/node_modules/npm/node_modules/semver/semver.browser.js
1716
lib/node_modules/npm/node_modules/semver/semver.browser.js.gz
1717
lib/node_modules/npm/node_modules/semver/semver.js
1718
lib/node_modules/npm/node_modules/semver/semver.min.js
1719
lib/node_modules/npm/node_modules/semver/semver.min.js.gz
1720
lib/node_modules/npm/node_modules/semver/test/amd.js
1721
lib/node_modules/npm/node_modules/semver/test/clean.js
1722
lib/node_modules/npm/node_modules/semver/test/gtr.js
1723
lib/node_modules/npm/node_modules/semver/test/index.js
1724
lib/node_modules/npm/node_modules/semver/test/ltr.js
1725
lib/node_modules/npm/node_modules/semver/test/major-minor-patch.js
1726
lib/node_modules/npm/node_modules/semver/test/no-module.js
1727
lib/node_modules/npm/node_modules/sha/.npmignore
1728
lib/node_modules/npm/node_modules/sha/LICENSE
1729
lib/node_modules/npm/node_modules/sha/README.md
1730
lib/node_modules/npm/node_modules/sha/index.js
1731
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/.npmignore
1732
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/LICENSE
1733
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/README.md
1734
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/duplex.js
1735
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/float.patch
1736
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_duplex.js
1737
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_passthrough.js
1738
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_readable.js
1739
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_transform.js
1740
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_writable.js
1741
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/README.md
1742
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/float.patch
1743
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/lib/util.js
1744
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/package.json
1745
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/util.js
1746
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/README.md
1747
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/build/build.js
1748
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/component.json
1749
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/index.js
1750
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/package.json
1751
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/.npmignore
1752
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/LICENSE
1753
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/README.md
1754
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/index.js
1755
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/package.json
1756
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/package.json
1757
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/passthrough.js
1758
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/readable.js
1759
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/transform.js
1760
lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/writable.js
1761
lib/node_modules/npm/node_modules/sha/package.json
1762
lib/node_modules/npm/node_modules/slide/LICENSE
1763
lib/node_modules/npm/node_modules/slide/README.md
1764
lib/node_modules/npm/node_modules/slide/index.js
1765
lib/node_modules/npm/node_modules/slide/lib/async-map-ordered.js
1766
lib/node_modules/npm/node_modules/slide/lib/async-map.js
1767
lib/node_modules/npm/node_modules/slide/lib/bind-actor.js
1768
lib/node_modules/npm/node_modules/slide/lib/chain.js
1769
lib/node_modules/npm/node_modules/slide/lib/slide.js
1770
lib/node_modules/npm/node_modules/slide/package.json
1771
lib/node_modules/npm/node_modules/sorted-object/LICENSE.txt
1772
lib/node_modules/npm/node_modules/sorted-object/README.md
1773
lib/node_modules/npm/node_modules/sorted-object/lib/sorted-object.js
1774
lib/node_modules/npm/node_modules/sorted-object/package.json
1775
lib/node_modules/npm/node_modules/tar/.npmignore
1776
lib/node_modules/npm/node_modules/tar/.travis.yml
1777
lib/node_modules/npm/node_modules/tar/LICENCE
1778
lib/node_modules/npm/node_modules/tar/README.md
1779
lib/node_modules/npm/node_modules/tar/examples/extracter.js
1780
lib/node_modules/npm/node_modules/tar/examples/packer.js
1781
lib/node_modules/npm/node_modules/tar/examples/reader.js
1782
lib/node_modules/npm/node_modules/tar/lib/buffer-entry.js
1783
lib/node_modules/npm/node_modules/tar/lib/entry-writer.js
1784
lib/node_modules/npm/node_modules/tar/lib/entry.js
1785
lib/node_modules/npm/node_modules/tar/lib/extended-header-writer.js
1786
lib/node_modules/npm/node_modules/tar/lib/extended-header.js
1787
lib/node_modules/npm/node_modules/tar/lib/extract.js
1788
lib/node_modules/npm/node_modules/tar/lib/global-header-writer.js
1789
lib/node_modules/npm/node_modules/tar/lib/header.js
1790
lib/node_modules/npm/node_modules/tar/lib/pack.js
1791
lib/node_modules/npm/node_modules/tar/lib/parse.js
1792
lib/node_modules/npm/node_modules/tar/package.json
1793
lib/node_modules/npm/node_modules/tar/tar.js
1794
lib/node_modules/npm/node_modules/tar/test/00-setup-fixtures.js
1795
lib/node_modules/npm/node_modules/tar/test/extract-move.js
1796
lib/node_modules/npm/node_modules/tar/test/extract.js
1797
lib/node_modules/npm/node_modules/tar/test/fixtures.tgz
1798
lib/node_modules/npm/node_modules/tar/test/header.js
1799
lib/node_modules/npm/node_modules/tar/test/pack-no-proprietary.js
1800
lib/node_modules/npm/node_modules/tar/test/pack.js
1801
lib/node_modules/npm/node_modules/tar/test/parse.js
1802
lib/node_modules/npm/node_modules/tar/test/zz-cleanup.js
1803
lib/node_modules/npm/node_modules/text-table/.travis.yml
1804
lib/node_modules/npm/node_modules/text-table/LICENSE
1805
lib/node_modules/npm/node_modules/text-table/example/align.js
1806
lib/node_modules/npm/node_modules/text-table/example/center.js
1807
lib/node_modules/npm/node_modules/text-table/example/dotalign.js
1808
lib/node_modules/npm/node_modules/text-table/example/doubledot.js
1809
lib/node_modules/npm/node_modules/text-table/example/table.js
1810
lib/node_modules/npm/node_modules/text-table/index.js
1811
lib/node_modules/npm/node_modules/text-table/package.json
1812
lib/node_modules/npm/node_modules/text-table/readme.markdown
1813
lib/node_modules/npm/node_modules/text-table/test/align.js
1814
lib/node_modules/npm/node_modules/text-table/test/ansi-colors.js
1815
lib/node_modules/npm/node_modules/text-table/test/center.js
1816
lib/node_modules/npm/node_modules/text-table/test/dotalign.js
1817
lib/node_modules/npm/node_modules/text-table/test/doubledot.js
1818
lib/node_modules/npm/node_modules/text-table/test/table.js
1819
lib/node_modules/npm/node_modules/uid-number/LICENSE
1820
lib/node_modules/npm/node_modules/uid-number/README.md
1821
lib/node_modules/npm/node_modules/uid-number/get-uid-gid.js
1822
lib/node_modules/npm/node_modules/uid-number/package.json
1823
lib/node_modules/npm/node_modules/uid-number/uid-number.js
1824
lib/node_modules/npm/node_modules/umask/.npmignore
1825
lib/node_modules/npm/node_modules/umask/ChangeLog
1826
lib/node_modules/npm/node_modules/umask/LICENSE
1827
lib/node_modules/npm/node_modules/umask/README.md
1828
lib/node_modules/npm/node_modules/umask/index.js
1829
lib/node_modules/npm/node_modules/umask/package.json
1830
lib/node_modules/npm/node_modules/umask/test/simple.js
1831
lib/node_modules/npm/node_modules/which/LICENSE
1832
lib/node_modules/npm/node_modules/which/README.md
1833
lib/node_modules/npm/node_modules/which/bin/which
1834
lib/node_modules/npm/node_modules/which/package.json
1835
lib/node_modules/npm/node_modules/which/which.js
1836
lib/node_modules/npm/node_modules/wrappy/LICENSE
1837
lib/node_modules/npm/node_modules/wrappy/README.md
1838
lib/node_modules/npm/node_modules/wrappy/package.json
1839
lib/node_modules/npm/node_modules/wrappy/test/basic.js
1840
lib/node_modules/npm/node_modules/wrappy/wrappy.js
1841
lib/node_modules/npm/node_modules/write-file-atomic/.npmignore
1842
lib/node_modules/npm/node_modules/write-file-atomic/README.md
1843
lib/node_modules/npm/node_modules/write-file-atomic/index.js
1844
lib/node_modules/npm/node_modules/write-file-atomic/package.json
1845
lib/node_modules/npm/node_modules/write-file-atomic/test/basic.js
1846
lib/node_modules/npm/npmrc
1847
lib/node_modules/npm/package.json
1848
lib/node_modules/npm/scripts/clean-old.sh
1849
lib/node_modules/npm/scripts/doc-build.sh
1850
lib/node_modules/npm/scripts/index-build.js
1851
lib/node_modules/npm/scripts/install.sh
1852
lib/node_modules/npm/scripts/publish-tag.js
1853
lib/node_modules/npm/scripts/release.sh
1854
lib/node_modules/npm/scripts/relocate.sh
1855
lib/node_modules/npm/scripts/update-authors.sh
1856
lib/node_modules/npm/test/common-tap.js
1857
lib/node_modules/npm/test/common.js
1858
lib/node_modules/npm/test/disabled/bundlerecurs/package.json
1859
lib/node_modules/npm/test/disabled/change-bin-1/bin/foo
1860
lib/node_modules/npm/test/disabled/change-bin-1/package.json
1861
lib/node_modules/npm/test/disabled/change-bin-2/bin/bar
1862
lib/node_modules/npm/test/disabled/change-bin-2/package.json
1863
lib/node_modules/npm/test/disabled/failer/package.json
1864
lib/node_modules/npm/test/disabled/fast/package.json
1865
lib/node_modules/npm/test/disabled/outdated-depth-integer.js
1866
lib/node_modules/npm/test/disabled/outdated-depth-integer/README.md
1867
lib/node_modules/npm/test/disabled/outdated-depth-integer/index.js
1868
lib/node_modules/npm/test/disabled/outdated-depth-integer/package.json
1869
lib/node_modules/npm/test/disabled/package-bar/package.json
1870
lib/node_modules/npm/test/disabled/package-config/package.json
1871
lib/node_modules/npm/test/disabled/package-config/test.js
1872
lib/node_modules/npm/test/disabled/package-foo/package.json
1873
lib/node_modules/npm/test/disabled/slow/package.json
1874
lib/node_modules/npm/test/fixtures/config/.npmrc
1875
lib/node_modules/npm/test/fixtures/config/builtin
1876
lib/node_modules/npm/test/fixtures/config/globalconfig
1877
lib/node_modules/npm/test/fixtures/config/malformed
1878
lib/node_modules/npm/test/fixtures/config/multi-ca
1879
lib/node_modules/npm/test/fixtures/config/package.json
1880
lib/node_modules/npm/test/fixtures/config/userconfig
1881
lib/node_modules/npm/test/fixtures/scoped-underscore-1.3.1.tgz
1882
lib/node_modules/npm/test/packages/npm-test-array-bin/README
1883
lib/node_modules/npm/test/packages/npm-test-array-bin/bin/array-bin
1884
lib/node_modules/npm/test/packages/npm-test-array-bin/package.json
1885
lib/node_modules/npm/test/packages/npm-test-array-bin/test.js
1886
lib/node_modules/npm/test/packages/npm-test-blerg/README
1887
lib/node_modules/npm/test/packages/npm-test-blerg/package.json
1888
lib/node_modules/npm/test/packages/npm-test-blerg/test.js
1889
lib/node_modules/npm/test/packages/npm-test-blerg3/README
1890
lib/node_modules/npm/test/packages/npm-test-blerg3/package.json
1891
lib/node_modules/npm/test/packages/npm-test-blerg3/test.js
1892
lib/node_modules/npm/test/packages/npm-test-bundled-git/README
1893
lib/node_modules/npm/test/packages/npm-test-bundled-git/minimatch-expected.json
1894
lib/node_modules/npm/test/packages/npm-test-bundled-git/package.json
1895
lib/node_modules/npm/test/packages/npm-test-bundled-git/test.js
1896
lib/node_modules/npm/test/packages/npm-test-dir-bin/README
1897
lib/node_modules/npm/test/packages/npm-test-dir-bin/bin/dir-bin
1898
lib/node_modules/npm/test/packages/npm-test-dir-bin/package.json
1899
lib/node_modules/npm/test/packages/npm-test-dir-bin/test.js
1900
lib/node_modules/npm/test/packages/npm-test-env-reader/README
1901
lib/node_modules/npm/test/packages/npm-test-env-reader/package.json
1902
lib/node_modules/npm/test/packages/npm-test-env-reader/test.js
1903
lib/node_modules/npm/test/packages/npm-test-files/.npmignore
1904
lib/node_modules/npm/test/packages/npm-test-files/include4
1905
lib/node_modules/npm/test/packages/npm-test-files/package.json
1906
lib/node_modules/npm/test/packages/npm-test-files/sub/include
1907
lib/node_modules/npm/test/packages/npm-test-files/sub/include2
1908
lib/node_modules/npm/test/packages/npm-test-files/sub/include4
1909
lib/node_modules/npm/test/packages/npm-test-files/test.sh
1910
lib/node_modules/npm/test/packages/npm-test-ignore-nested-nm/README
1911
lib/node_modules/npm/test/packages/npm-test-ignore-nested-nm/lib/node_modules/foo
1912
lib/node_modules/npm/test/packages/npm-test-ignore-nested-nm/package.json
1913
lib/node_modules/npm/test/packages/npm-test-ignore-nested-nm/test.js
1914
lib/node_modules/npm/test/packages/npm-test-ignore/.npmignore
1915
lib/node_modules/npm/test/packages/npm-test-ignore/README
1916
lib/node_modules/npm/test/packages/npm-test-ignore/include4
1917
lib/node_modules/npm/test/packages/npm-test-ignore/package.json
1918
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include
1919
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include2
1920
lib/node_modules/npm/test/packages/npm-test-ignore/sub/include4
1921
lib/node_modules/npm/test/packages/npm-test-ignore/test.sh
1922
lib/node_modules/npm/test/packages/npm-test-missing-bindir/README
1923
lib/node_modules/npm/test/packages/npm-test-missing-bindir/package.json
1924
lib/node_modules/npm/test/packages/npm-test-missing-bindir/test.js
1925
lib/node_modules/npm/test/packages/npm-test-optional-deps/README
1926
lib/node_modules/npm/test/packages/npm-test-optional-deps/package.json
1927
lib/node_modules/npm/test/packages/npm-test-optional-deps/test.js
1928
lib/node_modules/npm/test/packages/npm-test-platform-all/README
1929
lib/node_modules/npm/test/packages/npm-test-platform-all/package.json
1930
lib/node_modules/npm/test/packages/npm-test-platform/README
1931
lib/node_modules/npm/test/packages/npm-test-platform/package.json
1932
lib/node_modules/npm/test/packages/npm-test-private/README
1933
lib/node_modules/npm/test/packages/npm-test-private/package.json
1934
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/README
1935
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/npm-shrinkwrap.json
1936
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/package.json
1937
lib/node_modules/npm/test/packages/npm-test-shrinkwrap/test.js
1938
lib/node_modules/npm/test/packages/npm-test-test-package/README
1939
lib/node_modules/npm/test/packages/npm-test-test-package/package.json
1940
lib/node_modules/npm/test/packages/npm-test-url-dep/README
1941
lib/node_modules/npm/test/packages/npm-test-url-dep/package.json
1942
lib/node_modules/npm/test/run.js
1943
lib/node_modules/npm/test/tap/00-check-mock-dep.js
1944
lib/node_modules/npm/test/tap/00-config-setup.js
1945
lib/node_modules/npm/test/tap/00-verify-bundle-deps.js
1946
lib/node_modules/npm/test/tap/00-verify-ls-ok.js
1947
lib/node_modules/npm/test/tap/404-parent.js
1948
lib/node_modules/npm/test/tap/access.js
1949
lib/node_modules/npm/test/tap/add-remote-git-fake-windows.js
1950
lib/node_modules/npm/test/tap/add-remote-git.js
1951
lib/node_modules/npm/test/tap/adduser-always-auth.js
1952
lib/node_modules/npm/test/tap/adduser-legacy-auth.js
1953
lib/node_modules/npm/test/tap/bugs.js
1954
lib/node_modules/npm/test/tap/build-already-built.js
1955
lib/node_modules/npm/test/tap/builtin-config.js
1956
lib/node_modules/npm/test/tap/cache-add-localdir-fallback.js
1957
lib/node_modules/npm/test/tap/cache-add-unpublished.js
1958
lib/node_modules/npm/test/tap/cache-shasum-fork.js
1959
lib/node_modules/npm/test/tap/cache-shasum-fork/underscore-1.5.1.tgz
1960
lib/node_modules/npm/test/tap/cache-shasum.js
1961
lib/node_modules/npm/test/tap/circular-dep.js
1962
lib/node_modules/npm/test/tap/circular-dep/minimist/package.json
1963
lib/node_modules/npm/test/tap/config-basic.js
1964
lib/node_modules/npm/test/tap/config-builtin.js
1965
lib/node_modules/npm/test/tap/config-certfile.js
1966
lib/node_modules/npm/test/tap/config-credentials.js
1967
lib/node_modules/npm/test/tap/config-edit.js
1968
lib/node_modules/npm/test/tap/config-malformed.js
1969
lib/node_modules/npm/test/tap/config-meta.js
1970
lib/node_modules/npm/test/tap/config-private.js
1971
lib/node_modules/npm/test/tap/config-project.js
1972
lib/node_modules/npm/test/tap/config-save.js
1973
lib/node_modules/npm/test/tap/config-semver-tag.js
1974
lib/node_modules/npm/test/tap/dedupe.js
1975
lib/node_modules/npm/test/tap/dedupe/package.json
1976
lib/node_modules/npm/test/tap/dev-dep-duplicate/desired-ls-results.json
1977
lib/node_modules/npm/test/tap/dev-dep-duplicate/package.json
1978
lib/node_modules/npm/test/tap/dist-tag.js
1979
lib/node_modules/npm/test/tap/false_name.js
1980
lib/node_modules/npm/test/tap/false_name/index.js
1981
lib/node_modules/npm/test/tap/false_name/package.json
1982
lib/node_modules/npm/test/tap/gently-rm-overeager.js
1983
lib/node_modules/npm/test/tap/gently-rm-symlink.js
1984
lib/node_modules/npm/test/tap/get.js
1985
lib/node_modules/npm/test/tap/git-cache-locking.js
1986
lib/node_modules/npm/test/tap/git-cache-no-hooks.js
1987
lib/node_modules/npm/test/tap/git-npmignore.js
1988
lib/node_modules/npm/test/tap/global-prefix-set-in-userconfig.js
1989
lib/node_modules/npm/test/tap/ignore-install-link.js
1990
lib/node_modules/npm/test/tap/ignore-scripts.js
1991
lib/node_modules/npm/test/tap/ignore-scripts/binding.gyp
1992
lib/node_modules/npm/test/tap/ignore-scripts/package.json
1993
lib/node_modules/npm/test/tap/ignore-shrinkwrap.js
1994
lib/node_modules/npm/test/tap/ignore-shrinkwrap/npm-shrinkwrap.json
1995
lib/node_modules/npm/test/tap/ignore-shrinkwrap/package.json
1996
lib/node_modules/npm/test/tap/init-interrupt.js
1997
lib/node_modules/npm/test/tap/install-at-locally.js
1998
lib/node_modules/npm/test/tap/install-at-locally/package@1.2.3/package.json
1999
lib/node_modules/npm/test/tap/install-bad-man.js
2000
lib/node_modules/npm/test/tap/install-cli-production.js
2001
lib/node_modules/npm/test/tap/install-cli-production/dependency/package.json
2002
lib/node_modules/npm/test/tap/install-cli-production/dev-dependency/package.json
2003
lib/node_modules/npm/test/tap/install-cli-production/package.json
2004
lib/node_modules/npm/test/tap/install-cli-unicode.js
2005
lib/node_modules/npm/test/tap/install-cli/README.md
2006
lib/node_modules/npm/test/tap/install-cli/index.js
2007
lib/node_modules/npm/test/tap/install-cli/package.json
2008
lib/node_modules/npm/test/tap/install-from-local.js
2009
lib/node_modules/npm/test/tap/install-from-local/package-local-dependency/package.json
2010
lib/node_modules/npm/test/tap/install-from-local/package-local-dev-dependency/package.json
2011
lib/node_modules/npm/test/tap/install-from-local/package-scoped-dependency/package.json
2012
lib/node_modules/npm/test/tap/install-from-local/package-with-local-paths/package.json
2013
lib/node_modules/npm/test/tap/install-from-local/package-with-scoped-paths/package.json
2014
lib/node_modules/npm/test/tap/install-man.js
2015
lib/node_modules/npm/test/tap/install-save-exact.js
2016
lib/node_modules/npm/test/tap/install-save-exact/README.md
2017
lib/node_modules/npm/test/tap/install-save-exact/index.js
2018
lib/node_modules/npm/test/tap/install-save-exact/package.json
2019
lib/node_modules/npm/test/tap/install-save-local.js
2020
lib/node_modules/npm/test/tap/install-save-local/package-local-dependency/package.json
2021
lib/node_modules/npm/test/tap/install-save-local/package-local-dev-dependency/package.json
2022
lib/node_modules/npm/test/tap/install-save-local/package/package.json
2023
lib/node_modules/npm/test/tap/install-save-prefix.js
2024
lib/node_modules/npm/test/tap/install-save-prefix/README.md
2025
lib/node_modules/npm/test/tap/install-save-prefix/index.js
2026
lib/node_modules/npm/test/tap/install-save-prefix/package.json
2027
lib/node_modules/npm/test/tap/install-scoped-already-installed.js
2028
lib/node_modules/npm/test/tap/install-scoped-link.js
2029
lib/node_modules/npm/test/tap/install-scoped/package.json
2030
lib/node_modules/npm/test/tap/install-scoped/world.js
2031
lib/node_modules/npm/test/tap/install-with-dev-dep-duplicate.js
2032
lib/node_modules/npm/test/tap/invalid-cmd-exit-code.js
2033
lib/node_modules/npm/test/tap/lifecycle-path.js
2034
lib/node_modules/npm/test/tap/lifecycle-path/package.json
2035
lib/node_modules/npm/test/tap/lifecycle-path/print-path.js
2036
lib/node_modules/npm/test/tap/lifecycle-signal.js
2037
lib/node_modules/npm/test/tap/lifecycle-signal/package.json
2038
lib/node_modules/npm/test/tap/lifecycle.js
2039
lib/node_modules/npm/test/tap/locker.js
2040
lib/node_modules/npm/test/tap/logout.js
2041
lib/node_modules/npm/test/tap/ls-depth-cli.js
2042
lib/node_modules/npm/test/tap/ls-depth-unmet.js
2043
lib/node_modules/npm/test/tap/ls-depth-unmet/package.json
2044
lib/node_modules/npm/test/tap/ls-depth/package.json
2045
lib/node_modules/npm/test/tap/ls-l-depth-0.js
2046
lib/node_modules/npm/test/tap/ls-no-results.js
2047
lib/node_modules/npm/test/tap/map-to-registry.js
2048
lib/node_modules/npm/test/tap/maybe-github.js
2049
lib/node_modules/npm/test/tap/nerf-dart.js
2050
lib/node_modules/npm/test/tap/nested-extraneous.js
2051
lib/node_modules/npm/test/tap/noargs-install-config-save.js
2052
lib/node_modules/npm/test/tap/npm-api-not-loaded-error.js
2053
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision.js
2054
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/deps/d1/package.json
2055
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/deps/d2/blart.js
2056
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/deps/d2/package.json
2057
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/deps/opdep/bad-server.js
2058
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/deps/opdep/package.json
2059
lib/node_modules/npm/test/tap/optional-metadep-rollback-collision/package.json
2060
lib/node_modules/npm/test/tap/outdated-color.js
2061
lib/node_modules/npm/test/tap/outdated-depth-deep.js
2062
lib/node_modules/npm/test/tap/outdated-depth.js
2063
lib/node_modules/npm/test/tap/outdated-depth/README.md
2064
lib/node_modules/npm/test/tap/outdated-depth/index.js
2065
lib/node_modules/npm/test/tap/outdated-depth/package.json
2066
lib/node_modules/npm/test/tap/outdated-git.js
2067
lib/node_modules/npm/test/tap/outdated-git/README.md
2068
lib/node_modules/npm/test/tap/outdated-git/package.json
2069
lib/node_modules/npm/test/tap/outdated-include-devdependencies.js
2070
lib/node_modules/npm/test/tap/outdated-include-devdependencies/package.json
2071
lib/node_modules/npm/test/tap/outdated-json.js
2072
lib/node_modules/npm/test/tap/outdated-long.js
2073
lib/node_modules/npm/test/tap/outdated-new-versions.js
2074
lib/node_modules/npm/test/tap/outdated-new-versions/package.json
2075
lib/node_modules/npm/test/tap/outdated-notarget.js
2076
lib/node_modules/npm/test/tap/outdated-private.js
2077
lib/node_modules/npm/test/tap/outdated.js
2078
lib/node_modules/npm/test/tap/outdated/README.md
2079
lib/node_modules/npm/test/tap/outdated/index.js
2080
lib/node_modules/npm/test/tap/outdated/package.json
2081
lib/node_modules/npm/test/tap/owner.js
2082
lib/node_modules/npm/test/tap/pack-scoped.js
2083
lib/node_modules/npm/test/tap/package-with-peer-dep/package.json
2084
lib/node_modules/npm/test/tap/peer-deps-invalid.js
2085
lib/node_modules/npm/test/tap/peer-deps-invalid/file-fail.js
2086
lib/node_modules/npm/test/tap/peer-deps-invalid/file-ok.js
2087
lib/node_modules/npm/test/tap/peer-deps-invalid/package.json
2088
lib/node_modules/npm/test/tap/peer-deps-toplevel.js
2089
lib/node_modules/npm/test/tap/peer-deps-toplevel/desired-ls-results.json
2090
lib/node_modules/npm/test/tap/peer-deps-toplevel/package.json
2091
lib/node_modules/npm/test/tap/peer-deps-without-package-json.js
2092
lib/node_modules/npm/test/tap/peer-deps-without-package-json/.gitkeep
2093
lib/node_modules/npm/test/tap/peer-deps-without-package-json/file-js.js
2094
lib/node_modules/npm/test/tap/peer-deps.js
2095
lib/node_modules/npm/test/tap/peer-deps/desired-ls-results.json
2096
lib/node_modules/npm/test/tap/peer-deps/package.json
2097
lib/node_modules/npm/test/tap/prepublish.js
2098
lib/node_modules/npm/test/tap/prune.js
2099
lib/node_modules/npm/test/tap/prune/package.json
2100
lib/node_modules/npm/test/tap/publish-access-scoped.js
2101
lib/node_modules/npm/test/tap/publish-access-unscoped-restricted-fails.js
2102
lib/node_modules/npm/test/tap/publish-access-unscoped.js
2103
lib/node_modules/npm/test/tap/publish-config.js
2104
lib/node_modules/npm/test/tap/publish-scoped.js
2105
lib/node_modules/npm/test/tap/pwd-prefix.js
2106
lib/node_modules/npm/test/tap/referer.js
2107
lib/node_modules/npm/test/tap/registry.js
2108
lib/node_modules/npm/test/tap/repo.js
2109
lib/node_modules/npm/test/tap/run-script.js
2110
lib/node_modules/npm/test/tap/run-script/package.json
2111
lib/node_modules/npm/test/tap/scripts-whitespace-windows.js
2112
lib/node_modules/npm/test/tap/scripts-whitespace-windows/README.md
2113
lib/node_modules/npm/test/tap/scripts-whitespace-windows/dep/README.md
2114
lib/node_modules/npm/test/tap/scripts-whitespace-windows/dep/bin/foo
2115
lib/node_modules/npm/test/tap/scripts-whitespace-windows/dep/package.json
2116
lib/node_modules/npm/test/tap/scripts-whitespace-windows/package.json
2117
lib/node_modules/npm/test/tap/search.js
2118
lib/node_modules/npm/test/tap/semver-doc.js
2119
lib/node_modules/npm/test/tap/semver-tag.js
2120
lib/node_modules/npm/test/tap/shrinkwrap-dev-dependency.js
2121
lib/node_modules/npm/test/tap/shrinkwrap-dev-dependency/desired-shrinkwrap-results.json
2122
lib/node_modules/npm/test/tap/shrinkwrap-dev-dependency/package.json
2123
lib/node_modules/npm/test/tap/shrinkwrap-empty-deps.js
2124
lib/node_modules/npm/test/tap/shrinkwrap-empty-deps/package.json
2125
lib/node_modules/npm/test/tap/shrinkwrap-local-dependency.js
2126
lib/node_modules/npm/test/tap/shrinkwrap-scoped-auth.js
2127
lib/node_modules/npm/test/tap/shrinkwrap-shared-dev-dependency.js
2128
lib/node_modules/npm/test/tap/shrinkwrap-shared-dev-dependency/desired-shrinkwrap-results.json
2129
lib/node_modules/npm/test/tap/shrinkwrap-shared-dev-dependency/package.json
2130
lib/node_modules/npm/test/tap/sorted-package-json.js
2131
lib/node_modules/npm/test/tap/spawn-enoent-help.js
2132
lib/node_modules/npm/test/tap/spawn-enoent.js
2133
lib/node_modules/npm/test/tap/startstop.js
2134
lib/node_modules/npm/test/tap/startstop/package.json
2135
lib/node_modules/npm/test/tap/test-run-ls.js
2136
lib/node_modules/npm/test/tap/umask-lifecycle.js
2137
lib/node_modules/npm/test/tap/uninstall-package.js
2138
lib/node_modules/npm/test/tap/uninstall-package/package.json
2139
lib/node_modules/npm/test/tap/unpack-foreign-tarball.js
2140
lib/node_modules/npm/test/tap/unpack-foreign-tarball/gitignore-and-npmignore-2.tar
2141
lib/node_modules/npm/test/tap/unpack-foreign-tarball/gitignore-and-npmignore.tar
2142
lib/node_modules/npm/test/tap/unpack-foreign-tarball/gitignore-and-npmignore.tgz
2143
lib/node_modules/npm/test/tap/unpack-foreign-tarball/gitignore.tgz
2144
lib/node_modules/npm/test/tap/unpack-foreign-tarball/npmignore.tgz
2145
lib/node_modules/npm/test/tap/update-index.js
2146
lib/node_modules/npm/test/tap/update-save.js
2147
lib/node_modules/npm/test/tap/update-save/README.md
2148
lib/node_modules/npm/test/tap/update-save/index.js
2149
lib/node_modules/npm/test/tap/update-save/package.json
2150
lib/node_modules/npm/test/tap/url-dependencies.js
2151
lib/node_modules/npm/test/tap/url-dependencies/package.json
2152
lib/node_modules/npm/test/tap/version-git-not-clean.js
2153
lib/node_modules/npm/test/tap/version-no-git.js
2154
lib/node_modules/npm/test/tap/version-no-package.js
2155
lib/node_modules/npm/test/tap/version-no-tags.js
2156
lib/node_modules/npm/test/tap/version-update-shrinkwrap.js
2157
lib/node_modules/npm/test/tap/view.js
2158
lib/node_modules/npm/test/tap/whoami.js
2159
lib/node_modules/npm/test/tap/zz-cleanup.js
2160
lib/node_modules/npm/test/update-test.sh
2161
lib/node_modules/npm/wercker.yml
(-)www/tinymce/Makefile (+40 lines)
Line 0 Link Here
1
# Created by: Nick Hilliard <nick@foobar.org>
2
# $FreeBSD$
3
4
PORTNAME=	tinymce
5
PORTVERSION=	4.1.8
6
CATEGORIES=	www
7
MASTER_SITES=	http://download.moxiecode.com/${PORTNAME}/ \
8
		LOCAL/sunpoet
9
DISTNAME=	${PORTNAME}_${PORTVERSION}
10
11
MAINTAINER=	sunpoet@FreeBSD.org
12
COMMENT=	Open source JavaScript HTML WYSIWYG editor for web sites
13
14
LICENSE=	LGPL21
15
16
CONFLICTS_INSTALL=	tinymce-[0-35-9]* tinymce3-[0-9]*
17
18
NO_BUILD=	yes
19
WRKSRC=		${WRKDIR}/${PORTNAME}
20
USES=		zip
21
22
post-extract:
23
	@cd ${WRKSRC}/ && ${FIND} -s * -type d -empty | ${XARGS} -I % ${TOUCH} %/.keepme
24
25
do-install:
26
	cd ${WRKSRC}/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/
27
28
# maintainer section:
29
30
MS_PLIST=	${WRKDIR}/.ms-pkg-plist
31
32
genplist: do-clean extract
33
	${ECHO} "@owner www" > ${MS_PLIST}
34
	${ECHO} "@group www" >> ${MS_PLIST}
35
	cd ${WRKSRC}/ && ${FIND} -s * -type f | ${SED} 's|^|%%WWWDIR%%/|' >> ${MS_PLIST}
36
	${ECHO} "@owner" >> ${MS_PLIST}
37
	${ECHO} "@group" >> ${MS_PLIST}
38
	${INSTALL} -m 600 ${MS_PLIST} ${PLIST}
39
40
.include <bsd.port.mk>
(-)www/tinymce/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (tinymce_4.1.8.zip) = 8064503c47d6bec145ce5582cdd424398b88c8e30f9b04857e5cfaf88b68a86d
2
SIZE (tinymce_4.1.8.zip) = 306544
(-)www/tinymce/pkg-descr (+18 lines)
Line 0 Link Here
1
TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor
2
control released as Open Source under LGPL by Moxiecode Systems AB. It has
3
the ability to convert HTML TEXTAREA fields or other HTML elements to editor
4
instances. TinyMCE is very easy to integrate into other Content Management
5
Systems.
6
7
TinyMCE Features:
8
- Easy to integrate, takes only two lines of code.
9
- Customizable through themes and plugins.
10
- Customizable XHTML 1.0 output. Block invalid elements and force attributes.
11
- International language support (Language packs)
12
- Multiple browser support, Mozilla, MSIE, FireFox, Opera and Safari
13
  (experimental).
14
- PHP/.NET/JSP/Coldfusion GZip compressor, Makes TinyMCE 75% smaller and a lot
15
  faster to load.
16
- You can easily use AJAX to save and load content!
17
18
WWW: http://www.tinymce.com/
(-)www/tinymce/pkg-plist (+87 lines)
Line 0 Link Here
1
@owner www
2
@group www
3
%%WWWDIR%%/LICENSE.TXT
4
%%WWWDIR%%/changelog.txt
5
%%WWWDIR%%/js/tinymce/langs/readme.md
6
%%WWWDIR%%/js/tinymce/license.txt
7
%%WWWDIR%%/js/tinymce/plugins/advlist/plugin.min.js
8
%%WWWDIR%%/js/tinymce/plugins/anchor/plugin.min.js
9
%%WWWDIR%%/js/tinymce/plugins/autolink/plugin.min.js
10
%%WWWDIR%%/js/tinymce/plugins/autoresize/plugin.min.js
11
%%WWWDIR%%/js/tinymce/plugins/autosave/plugin.min.js
12
%%WWWDIR%%/js/tinymce/plugins/bbcode/plugin.min.js
13
%%WWWDIR%%/js/tinymce/plugins/charmap/plugin.min.js
14
%%WWWDIR%%/js/tinymce/plugins/code/plugin.min.js
15
%%WWWDIR%%/js/tinymce/plugins/colorpicker/plugin.min.js
16
%%WWWDIR%%/js/tinymce/plugins/contextmenu/plugin.min.js
17
%%WWWDIR%%/js/tinymce/plugins/directionality/plugin.min.js
18
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-cool.gif
19
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-cry.gif
20
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif
21
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif
22
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-frown.gif
23
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-innocent.gif
24
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-kiss.gif
25
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-laughing.gif
26
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif
27
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-sealed.gif
28
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-smile.gif
29
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-surprised.gif
30
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif
31
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-undecided.gif
32
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-wink.gif
33
%%WWWDIR%%/js/tinymce/plugins/emoticons/img/smiley-yell.gif
34
%%WWWDIR%%/js/tinymce/plugins/emoticons/plugin.min.js
35
%%WWWDIR%%/js/tinymce/plugins/example/dialog.html
36
%%WWWDIR%%/js/tinymce/plugins/example/plugin.min.js
37
%%WWWDIR%%/js/tinymce/plugins/example_dependency/plugin.min.js
38
%%WWWDIR%%/js/tinymce/plugins/fullpage/plugin.min.js
39
%%WWWDIR%%/js/tinymce/plugins/fullscreen/plugin.min.js
40
%%WWWDIR%%/js/tinymce/plugins/hr/plugin.min.js
41
%%WWWDIR%%/js/tinymce/plugins/image/plugin.min.js
42
%%WWWDIR%%/js/tinymce/plugins/importcss/plugin.min.js
43
%%WWWDIR%%/js/tinymce/plugins/insertdatetime/plugin.min.js
44
%%WWWDIR%%/js/tinymce/plugins/layer/plugin.min.js
45
%%WWWDIR%%/js/tinymce/plugins/legacyoutput/plugin.min.js
46
%%WWWDIR%%/js/tinymce/plugins/link/plugin.min.js
47
%%WWWDIR%%/js/tinymce/plugins/lists/plugin.min.js
48
%%WWWDIR%%/js/tinymce/plugins/media/moxieplayer.swf
49
%%WWWDIR%%/js/tinymce/plugins/media/plugin.min.js
50
%%WWWDIR%%/js/tinymce/plugins/nonbreaking/plugin.min.js
51
%%WWWDIR%%/js/tinymce/plugins/noneditable/plugin.min.js
52
%%WWWDIR%%/js/tinymce/plugins/pagebreak/plugin.min.js
53
%%WWWDIR%%/js/tinymce/plugins/paste/plugin.min.js
54
%%WWWDIR%%/js/tinymce/plugins/preview/plugin.min.js
55
%%WWWDIR%%/js/tinymce/plugins/print/plugin.min.js
56
%%WWWDIR%%/js/tinymce/plugins/save/plugin.min.js
57
%%WWWDIR%%/js/tinymce/plugins/searchreplace/plugin.min.js
58
%%WWWDIR%%/js/tinymce/plugins/spellchecker/plugin.min.js
59
%%WWWDIR%%/js/tinymce/plugins/tabfocus/plugin.min.js
60
%%WWWDIR%%/js/tinymce/plugins/table/plugin.min.js
61
%%WWWDIR%%/js/tinymce/plugins/template/plugin.min.js
62
%%WWWDIR%%/js/tinymce/plugins/textcolor/plugin.min.js
63
%%WWWDIR%%/js/tinymce/plugins/textpattern/plugin.min.js
64
%%WWWDIR%%/js/tinymce/plugins/visualblocks/css/visualblocks.css
65
%%WWWDIR%%/js/tinymce/plugins/visualblocks/plugin.min.js
66
%%WWWDIR%%/js/tinymce/plugins/visualchars/plugin.min.js
67
%%WWWDIR%%/js/tinymce/plugins/wordcount/plugin.min.js
68
%%WWWDIR%%/js/tinymce/skins/lightgray/content.inline.min.css
69
%%WWWDIR%%/js/tinymce/skins/lightgray/content.min.css
70
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce-small.eot
71
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce-small.svg
72
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf
73
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce-small.woff
74
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce.eot
75
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce.svg
76
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce.ttf
77
%%WWWDIR%%/js/tinymce/skins/lightgray/fonts/tinymce.woff
78
%%WWWDIR%%/js/tinymce/skins/lightgray/img/anchor.gif
79
%%WWWDIR%%/js/tinymce/skins/lightgray/img/loader.gif
80
%%WWWDIR%%/js/tinymce/skins/lightgray/img/object.gif
81
%%WWWDIR%%/js/tinymce/skins/lightgray/img/trans.gif
82
%%WWWDIR%%/js/tinymce/skins/lightgray/skin.ie7.min.css
83
%%WWWDIR%%/js/tinymce/skins/lightgray/skin.min.css
84
%%WWWDIR%%/js/tinymce/themes/modern/theme.min.js
85
%%WWWDIR%%/js/tinymce/tinymce.min.js
86
@owner
87
@group
(-)www/webkit-gtk2/Makefile (+113 lines)
Line 0 Link Here
1
# Created by: Michael Johnson <ahze@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	webkit
5
PORTVERSION=	2.4.8
6
PORTREVISION=	1
7
CATEGORIES=	www
8
MASTER_SITES=	http://webkitgtk.org/releases/
9
PKGNAMESUFFIX=	-gtk2
10
DISTNAME=	${PORTNAME}gtk-${PORTVERSION}
11
12
MAINTAINER=	gnome@FreeBSD.org
13
COMMENT=	Opensource browser engine using the GTK+ 2 toolkit
14
15
BUILD_DEPENDS=	gtkdoc-rebase:${PORTSDIR}/textproc/gtk-doc \
16
		geoclue>=0:${PORTSDIR}/net/geoclue
17
LIB_DEPENDS=	libenchant.so:${PORTSDIR}/textproc/enchant \
18
		libsecret-1.so:${PORTSDIR}/security/libsecret \
19
		libicutu.so:${PORTSDIR}/devel/icu \
20
		libharfbuzz.so:${PORTSDIR}/print/harfbuzz \
21
		libwebp.so:${PORTSDIR}/graphics/webp \
22
		libcurl.so:${PORTSDIR}/ftp/curl \
23
		libsoup-2.4.so:${PORTSDIR}/devel/libsoup
24
RUN_DEPENDS=	geoclue>=0:${PORTSDIR}/net/geoclue
25
26
PORTSCOUT=	limit:1.4.*$$
27
28
USE_GSTREAMER1=	yes
29
USE_XORG=	xt xdamage xcomposite
30
USES=		bison compiler:c++11-lib gettext gmake gperf libtool \
31
		perl5 pkgconfig shebangfix tar:xz
32
USE_RUBY=	yes
33
RUBY_NO_RUN_DEPENDS=yes
34
USE_GNOME=	cairo gtk20 introspection:build libxslt
35
USE_GL=		gl
36
USE_SQLITE=	3
37
USE_PERL5=	build
38
USE_LDCONFIG=	yes
39
GNU_CONFIGURE=	yes
40
CONFIGURE_ENV=	ac_cv_path_DOLT_BASH=""
41
CPPFLAGS+=	-I${LOCALBASE}/include
42
LDFLAGS+=	-L${LOCALBASE}/lib
43
INSTALL_TARGET=	install-strip
44
CONFIGURE_ARGS=	--with-gtk=2.0 \
45
		--enable-svg-fonts \
46
		--enable-geolocation \
47
		--enable-introspection \
48
		--disable-webkit2 \
49
		--with-html-dir=${PREFIX}/share/gtk-doc/html/webkit1
50
MAKEFILE=	GNUmakefile
51
MAKE_ENV=	XDG_CACHE_HOME=${WRKDIR}
52
53
CONFIGURE_ARGS+=--disable-egl \
54
		--disable-gles2
55
SHEBANG_FILES= \
56
	Source/JavaScriptCore/create_hash_table \
57
	Source/JavaScriptCore/inspector/scripts/xxd.pl \
58
	Source/WebCore/css/*.pl \
59
	Source/WebCore/dom/*.pl \
60
	Source/WebCore/make-hash-tools.pl \
61
	Source/WebCore/page/make_settings.pl \
62
	Source/WebCore/platform/text/mac/make-charset-table.pl \
63
	Source/WebKit2/Scripts/generate-forwarding-headers.pl \
64
	Source/WebCore/bindings/scripts/*.p[lm] \
65
	Source/JavaScriptCore/create_hash_table
66
67
BROWSER_PLUGINS_DIR?=  ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk2
68
#_BROWSER_PLUGINS_DIR=	${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}",
69
70
OPTIONS_DEFINE=	DEBUG FULLDEBUG
71
DEBUG_DESC=	Just enable debug symbols
72
FULLDEBUG_DESC=	Enable asserts and other debug support
73
74
FULLDEBUG_CONFIGURE_ENABLE=	debug
75
DEBUG_CONFIGURE_ON=	--enable-debug-symbols=yes
76
DEBUG_CONFIGURE_OFF=	--disable-debug-symbols
77
78
.include <bsd.port.options.mk>
79
80
# Shutup warning spam
81
CXXFLAGS+=	-Wno-c++11-extensions
82
83
.if ${ARCH} == powerpc64
84
CFLAGS+=	-mminimal-toc
85
.endif
86
87
.include <bsd.port.pre.mk>
88
89
.if ${PERL_LEVEL} >= 501400
90
BUILD_DEPENDS+=	p5-Switch>0:${PORTSDIR}/lang/p5-Switch
91
.endif
92
93
.if ${OSVERSION} < 1000033
94
BUILD_DEPENDS+=	flex>=0:${PORTSDIR}/textproc/flex
95
CONFIGURE_ENV+=	FLEX="${LOCALBASE}/bin/flex"
96
.endif
97
98
.if ${CHOSEN_COMPILER_TYPE} == clang
99
CXXFLAGS+=	-Qunused-arguments
100
.endif
101
102
103
post-patch:
104
	@${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \
105
		${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp
106
	@${FIND} ${WRKSRC} -name GNUmakefile.in | ${XARGS} ${REINPLACE_CMD} -e \
107
		's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g'
108
109
post-install:
110
	${INSTALL_PROGRAM} ${WRKSRC}/Programs/GtkLauncher \
111
		${STAGEDIR}${PREFIX}/bin/GtkLauncher-1
112
113
.include <bsd.port.post.mk>
(-)www/webkit-gtk2/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (webkitgtk-2.4.8.tar.xz) = 68f11559cb178679ca92acc9e3a3d7febede7acb7b98afd7fb761875bbc6bd23
2
SIZE (webkitgtk-2.4.8.tar.xz) = 9827632
(-)www/webkit-gtk2/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h (+11 lines)
Line 0 Link Here
1
--- Source/JavaScriptCore/assembler/ARMAssembler.h.orig	2015-01-19 21:25:28.000000000 +0000
2
+++ Source/JavaScriptCore/assembler/ARMAssembler.h	2015-01-19 21:25:57.000000000 +0000
3
@@ -1121,6 +1121,8 @@ namespace JSC {
4
             linuxPageFlush(current, end);
5
 #elif OS(WINCE)
6
             CacheRangeFlush(code, size, CACHE_SYNC_ALL);
7
+#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG)
8
+	__clear_cache(code, reinterpret_cast<char*>(code) + size);
9
 #else
10
 #error "The cacheFlush support is missing on this platform."
11
 #endif
(-)www/webkit-gtk2/files/patch-Source_WebCore_platform_graphics_gstreamer_MediaPlayerPrivateGStreamerBase.cpp (+29 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.orig	2015-02-12 01:22:34.449468000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2015-02-12 01:24:42.777620000 +0100
3
@@ -316,7 +316,7 @@ void MediaPlayerPrivateGStreamerBase::mu
4
 #if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER_GL) && !USE(COORDINATED_GRAPHICS)
5
 PassRefPtr<BitmapTexture> MediaPlayerPrivateGStreamerBase::updateTexture(TextureMapper* textureMapper)
6
 {
7
-    GMutexLocker lock(m_bufferMutex);
8
+    WebCore::GMutexLocker lock(m_bufferMutex);
9
     if (!m_buffer)
10
         return nullptr;
11
 
12
@@ -366,7 +366,7 @@ void MediaPlayerPrivateGStreamerBase::tr
13
     g_return_if_fail(GST_IS_BUFFER(buffer));
14
 
15
     {
16
-        GMutexLocker lock(m_bufferMutex);
17
+        WebCore::GMutexLocker lock(m_bufferMutex);
18
         gst_buffer_replace(&m_buffer, buffer);
19
     }
20
 
21
@@ -398,7 +398,7 @@ void MediaPlayerPrivateGStreamerBase::pa
22
     if (!m_player->visible())
23
         return;
24
 
25
-    GMutexLocker lock(m_bufferMutex);
26
+    WebCore::GMutexLocker lock(m_bufferMutex);
27
     if (!m_buffer)
28
         return;
29
 
(-)www/webkit-gtk2/files/patch-Source_WebCore_platform_graphics_gstreamer_VideoSinkGStreamer.cpp (+47 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.orig	2015-02-12 01:22:25.261692000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2015-02-12 01:24:34.127107000 +0100
3
@@ -118,7 +118,7 @@ static gboolean webkitVideoSinkTimeoutCa
4
     WebKitVideoSink* sink = reinterpret_cast<WebKitVideoSink*>(data);
5
     WebKitVideoSinkPrivate* priv = sink->priv;
6
 
7
-    GMutexLocker lock(priv->bufferMutex);
8
+    WebCore::GMutexLocker lock(priv->bufferMutex);
9
     GstBuffer* buffer = priv->buffer;
10
     priv->buffer = 0;
11
     priv->timeoutId = 0;
12
@@ -140,7 +140,7 @@ static GstFlowReturn webkitVideoSinkRend
13
     WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(baseSink);
14
     WebKitVideoSinkPrivate* priv = sink->priv;
15
 
16
-    GMutexLocker lock(priv->bufferMutex);
17
+    WebCore::GMutexLocker lock(priv->bufferMutex);
18
 
19
     if (priv->unlocked)
20
         return GST_FLOW_OK;
21
@@ -279,7 +279,7 @@ static void webkitVideoSinkGetProperty(G
22
 
23
 static void unlockBufferMutex(WebKitVideoSinkPrivate* priv)
24
 {
25
-    GMutexLocker lock(priv->bufferMutex);
26
+    WebCore::GMutexLocker lock(priv->bufferMutex);
27
 
28
     if (priv->buffer) {
29
         gst_buffer_unref(priv->buffer);
30
@@ -305,7 +305,7 @@ static gboolean webkitVideoSinkUnlockSto
31
     WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
32
 
33
     {
34
-        GMutexLocker lock(priv->bufferMutex);
35
+        WebCore::GMutexLocker lock(priv->bufferMutex);
36
         priv->unlocked = false;
37
     }
38
 
39
@@ -330,7 +330,7 @@ static gboolean webkitVideoSinkStart(Gst
40
 {
41
     WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
42
 
43
-    GMutexLocker lock(priv->bufferMutex);
44
+    WebCore::GMutexLocker lock(priv->bufferMutex);
45
     priv->unlocked = false;
46
     return TRUE;
47
 }
(-)www/webkit-gtk2/files/patch-Source_WebCore_platform_graphics_gstreamer_WebKitWebSourceGStreamer.cpp (+200 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.orig	2015-02-12 01:22:42.081133000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp	2015-02-12 01:25:08.298076000 +0100
3
@@ -346,7 +346,7 @@ static void webKitWebSrcSetProperty(GObj
4
 
5
     switch (propID) {
6
     case PROP_IRADIO_MODE: {
7
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
8
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
9
         priv->iradioMode = g_value_get_boolean(value);
10
         break;
11
     }
12
@@ -364,7 +364,7 @@ static void webKitWebSrcGetProperty(GObj
13
     WebKitWebSrc* src = WEBKIT_WEB_SRC(object);
14
     WebKitWebSrcPrivate* priv = src->priv;
15
 
16
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
17
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
18
     switch (propID) {
19
     case PROP_IRADIO_MODE:
20
         g_value_set_boolean(value, priv->iradioMode);
21
@@ -417,7 +417,7 @@ static gboolean webKitWebSrcStop(WebKitW
22
 
23
     ASSERT(isMainThread());
24
 
25
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
26
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
27
 
28
     bool seeking = priv->seekID;
29
 
30
@@ -476,7 +476,7 @@ static gboolean webKitWebSrcStart(WebKit
31
 
32
     ASSERT(isMainThread());
33
 
34
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
35
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
36
 
37
     priv->startID = 0;
38
     priv->corsAccessCheck = CORSNoCheck;
39
@@ -573,7 +573,7 @@ static GstStateChangeReturn webKitWebSrc
40
         return ret;
41
     }
42
 
43
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
44
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
45
     switch (transition) {
46
     case GST_STATE_CHANGE_READY_TO_PAUSED:
47
         GST_DEBUG_OBJECT(src, "READY->PAUSED");
48
@@ -604,7 +604,7 @@ static gboolean webKitWebSrcQueryWithPar
49
         gst_query_parse_duration(query, &format, NULL);
50
 
51
         GST_DEBUG_OBJECT(src, "duration query in format %s", gst_format_get_name(format));
52
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
53
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
54
         if (format == GST_FORMAT_BYTES && src->priv->size > 0) {
55
             gst_query_set_duration(query, format, src->priv->size);
56
             result = TRUE;
57
@@ -612,7 +612,7 @@ static gboolean webKitWebSrcQueryWithPar
58
         break;
59
     }
60
     case GST_QUERY_URI: {
61
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
62
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
63
         gst_query_set_uri(query, src->priv->uri);
64
         result = TRUE;
65
         break;
66
@@ -653,7 +653,7 @@ static gchar* webKitWebSrcGetUri(GstURIH
67
     WebKitWebSrc* src = WEBKIT_WEB_SRC(handler);
68
     gchar* ret;
69
 
70
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
71
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
72
     ret = g_strdup(src->priv->uri);
73
     return ret;
74
 }
75
@@ -668,7 +668,7 @@ static gboolean webKitWebSrcSetUri(GstUR
76
         return FALSE;
77
     }
78
 
79
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
80
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
81
 
82
     g_free(priv->uri);
83
     priv->uri = 0;
84
@@ -704,7 +704,7 @@ static gboolean webKitWebSrcNeedDataMain
85
 
86
     ASSERT(isMainThread());
87
 
88
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
89
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
90
     // already stopped
91
     if (!priv->needDataID)
92
         return FALSE;
93
@@ -725,7 +725,7 @@ static void webKitWebSrcNeedDataCb(GstAp
94
 
95
     GST_DEBUG_OBJECT(src, "Need more data: %u", length);
96
 
97
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
98
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
99
     if (priv->needDataID || !priv->paused) {
100
         return;
101
     }
102
@@ -739,7 +739,7 @@ static gboolean webKitWebSrcEnoughDataMa
103
 
104
     ASSERT(isMainThread());
105
 
106
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
107
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
108
     // already stopped
109
     if (!priv->enoughDataID)
110
         return FALSE;
111
@@ -760,7 +760,7 @@ static void webKitWebSrcEnoughDataCb(Gst
112
 
113
     GST_DEBUG_OBJECT(src, "Have enough data");
114
 
115
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
116
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
117
     if (priv->enoughDataID || priv->paused) {
118
         return;
119
     }
120
@@ -774,7 +774,7 @@ static gboolean webKitWebSrcSeekMainCb(W
121
 
122
     ASSERT(isMainThread());
123
 
124
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
125
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
126
     // already stopped
127
     if (!priv->seekID)
128
         return FALSE;
129
@@ -792,7 +792,7 @@ static gboolean webKitWebSrcSeekDataCb(G
130
     WebKitWebSrcPrivate* priv = src->priv;
131
 
132
     GST_DEBUG_OBJECT(src, "Seeking to offset: %" G_GUINT64_FORMAT, offset);
133
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
134
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
135
     if (offset == priv->offset && priv->requestedOffset == priv->offset)
136
         return TRUE;
137
 
138
@@ -811,7 +811,7 @@ static gboolean webKitWebSrcSeekDataCb(G
139
 void webKitWebSrcSetMediaPlayer(WebKitWebSrc* src, WebCore::MediaPlayer* player)
140
 {
141
     ASSERT(player);
142
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
143
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
144
     src->priv->player = player;
145
 }
146
 
147
@@ -841,7 +841,7 @@ char* StreamingClient::createReadBuffer(
148
 
149
     mapGstBuffer(buffer);
150
 
151
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
152
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
153
     priv->buffer = adoptGRef(buffer);
154
     locker.unlock();
155
 
156
@@ -867,7 +867,7 @@ void StreamingClient::handleResponseRece
157
         return;
158
     }
159
 
160
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
161
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
162
 
163
     priv->corsAccessCheck = corsAccessCheck;
164
 
165
@@ -966,7 +966,7 @@ void StreamingClient::handleDataReceived
166
     WebKitWebSrc* src = WEBKIT_WEB_SRC(m_src);
167
     WebKitWebSrcPrivate* priv = src->priv;
168
 
169
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
170
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
171
 
172
     GST_LOG_OBJECT(src, "Have %lld bytes of data", priv->buffer ? static_cast<long long>(gst_buffer_get_size(priv->buffer.get())) : length);
173
 
174
@@ -1035,7 +1035,7 @@ void StreamingClient::handleNotifyFinish
175
 
176
     GST_DEBUG_OBJECT(src, "Have EOS");
177
 
178
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
179
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
180
     if (!priv->seekID) {
181
         locker.unlock();
182
         gst_app_src_end_of_stream(priv->appsrc);
183
@@ -1194,7 +1194,7 @@ void ResourceHandleStreamingClient::wasB
184
 
185
     GST_ERROR_OBJECT(src, "Request was blocked");
186
 
187
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
188
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
189
     uri.reset(g_strdup(src->priv->uri));
190
     locker.unlock();
191
 
192
@@ -1208,7 +1208,7 @@ void ResourceHandleStreamingClient::cann
193
 
194
     GST_ERROR_OBJECT(src, "Cannot show URL");
195
 
196
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
197
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
198
     uri.reset(g_strdup(src->priv->uri));
199
     locker.unlock();
200
 
(-)www/webkit-gtk2/files/patch-Source_WebCore_plugins_PluginDatabase.cpp (+10 lines)
Line 0 Link Here
1
--- Source/WebCore/plugins/PluginDatabase.cpp.orig	2011-01-11 16:24:29.000000000 +0000
2
+++ Source/WebCore/plugins/PluginDatabase.cpp	2011-01-11 16:24:54.000000000 +0000
3
@@ -375,6 +375,7 @@ Vector<String> PluginDatabase::defaultPl
4
     userPluginPath.append(String("/.netscape/plugins"));
5
     paths.append(userPluginPath);
6
 
7
+    paths.append("%%BROWSER_PLUGINS_DIR%%");
8
     paths.append("/usr/lib/browser/plugins");
9
     paths.append("/usr/local/lib/mozilla/plugins");
10
     paths.append("/usr/lib/firefox/plugins");
(-)www/webkit-gtk2/pkg-descr (+5 lines)
Line 0 Link Here
1
WebKit is an open source web browser engine. It is able to display content
2
such as HTML, SVG, XML, and others. It also supports DOM, XMLHttpRequest,
3
XSLT, CSS, Javascript/ECMAscript and more.
4
5
WWW: http://webkit.org/
(-)www/webkit-gtk2/pkg-plist (+567 lines)
Line 0 Link Here
1
bin/GtkLauncher-1
2
bin/jsc-1
3
include/webkitgtk-1.0/JavaScriptCore/JSBase.h
4
include/webkitgtk-1.0/JavaScriptCore/JSContextRef.h
5
include/webkitgtk-1.0/JavaScriptCore/JSObjectRef.h
6
include/webkitgtk-1.0/JavaScriptCore/JSStringRef.h
7
include/webkitgtk-1.0/JavaScriptCore/JSValueRef.h
8
include/webkitgtk-1.0/JavaScriptCore/JavaScript.h
9
include/webkitgtk-1.0/JavaScriptCore/WebKitAvailability.h
10
include/webkitgtk-1.0/webkit/webkit.h
11
include/webkitgtk-1.0/webkit/webkitapplicationcache.h
12
include/webkitgtk-1.0/webkit/webkitdefines.h
13
include/webkitgtk-1.0/webkit/webkitdom.h
14
include/webkitgtk-1.0/webkit/webkitdownload.h
15
include/webkitgtk-1.0/webkit/webkitenumtypes.h
16
include/webkitgtk-1.0/webkit/webkiterror.h
17
include/webkitgtk-1.0/webkit/webkitfavicondatabase.h
18
include/webkitgtk-1.0/webkit/webkitfilechooserrequest.h
19
include/webkitgtk-1.0/webkit/webkitgeolocationpolicydecision.h
20
include/webkitgtk-1.0/webkit/webkitglobals.h
21
include/webkitgtk-1.0/webkit/webkithittestresult.h
22
include/webkitgtk-1.0/webkit/webkiticondatabase.h
23
include/webkitgtk-1.0/webkit/webkitnetworkrequest.h
24
include/webkitgtk-1.0/webkit/webkitnetworkresponse.h
25
include/webkitgtk-1.0/webkit/webkitsecurityorigin.h
26
include/webkitgtk-1.0/webkit/webkitsoupauthdialog.h
27
include/webkitgtk-1.0/webkit/webkitspellchecker.h
28
include/webkitgtk-1.0/webkit/webkitversion.h
29
include/webkitgtk-1.0/webkit/webkitviewportattributes.h
30
include/webkitgtk-1.0/webkit/webkitwebbackforwardlist.h
31
include/webkitgtk-1.0/webkit/webkitwebdatabase.h
32
include/webkitgtk-1.0/webkit/webkitwebdatasource.h
33
include/webkitgtk-1.0/webkit/webkitwebframe.h
34
include/webkitgtk-1.0/webkit/webkitwebhistoryitem.h
35
include/webkitgtk-1.0/webkit/webkitwebinspector.h
36
include/webkitgtk-1.0/webkit/webkitwebnavigationaction.h
37
include/webkitgtk-1.0/webkit/webkitwebplugin.h
38
include/webkitgtk-1.0/webkit/webkitwebplugindatabase.h
39
include/webkitgtk-1.0/webkit/webkitwebpolicydecision.h
40
include/webkitgtk-1.0/webkit/webkitwebresource.h
41
include/webkitgtk-1.0/webkit/webkitwebsettings.h
42
include/webkitgtk-1.0/webkit/webkitwebview.h
43
include/webkitgtk-1.0/webkit/webkitwebwindowfeatures.h
44
include/webkitgtk-1.0/webkit2/WebKitAuthenticationRequest.h
45
include/webkitgtk-1.0/webkit2/WebKitBackForwardList.h
46
include/webkitgtk-1.0/webkit2/WebKitBackForwardListItem.h
47
include/webkitgtk-1.0/webkit2/WebKitCertificateInfo.h
48
include/webkitgtk-1.0/webkit2/WebKitContextMenu.h
49
include/webkitgtk-1.0/webkit2/WebKitContextMenuActions.h
50
include/webkitgtk-1.0/webkit2/WebKitContextMenuItem.h
51
include/webkitgtk-1.0/webkit2/WebKitCookieManager.h
52
include/webkitgtk-1.0/webkit2/WebKitCredential.h
53
include/webkitgtk-1.0/webkit2/WebKitDefines.h
54
include/webkitgtk-1.0/webkit2/WebKitDownload.h
55
include/webkitgtk-1.0/webkit2/WebKitEditingCommands.h
56
include/webkitgtk-1.0/webkit2/WebKitEnumTypes.h
57
include/webkitgtk-1.0/webkit2/WebKitError.h
58
include/webkitgtk-1.0/webkit2/WebKitFaviconDatabase.h
59
include/webkitgtk-1.0/webkit2/WebKitFileChooserRequest.h
60
include/webkitgtk-1.0/webkit2/WebKitFindController.h
61
include/webkitgtk-1.0/webkit2/WebKitFormSubmissionRequest.h
62
include/webkitgtk-1.0/webkit2/WebKitForwardDeclarations.h
63
include/webkitgtk-1.0/webkit2/WebKitFrame.h
64
include/webkitgtk-1.0/webkit2/WebKitGeolocationPermissionRequest.h
65
include/webkitgtk-1.0/webkit2/WebKitHitTestResult.h
66
include/webkitgtk-1.0/webkit2/WebKitJavascriptResult.h
67
include/webkitgtk-1.0/webkit2/WebKitMimeInfo.h
68
include/webkitgtk-1.0/webkit2/WebKitNavigationPolicyDecision.h
69
include/webkitgtk-1.0/webkit2/WebKitPermissionRequest.h
70
include/webkitgtk-1.0/webkit2/WebKitPlugin.h
71
include/webkitgtk-1.0/webkit2/WebKitPolicyDecision.h
72
include/webkitgtk-1.0/webkit2/WebKitPrintOperation.h
73
include/webkitgtk-1.0/webkit2/WebKitResponsePolicyDecision.h
74
include/webkitgtk-1.0/webkit2/WebKitScriptDialog.h
75
include/webkitgtk-1.0/webkit2/WebKitScriptWorld.h
76
include/webkitgtk-1.0/webkit2/WebKitSecurityManager.h
77
include/webkitgtk-1.0/webkit2/WebKitSettings.h
78
include/webkitgtk-1.0/webkit2/WebKitURIRequest.h
79
include/webkitgtk-1.0/webkit2/WebKitURIResponse.h
80
include/webkitgtk-1.0/webkit2/WebKitURISchemeRequest.h
81
include/webkitgtk-1.0/webkit2/WebKitVersion.h
82
include/webkitgtk-1.0/webkit2/WebKitWebContext.h
83
include/webkitgtk-1.0/webkit2/WebKitWebExtension.h
84
include/webkitgtk-1.0/webkit2/WebKitWebInspector.h
85
include/webkitgtk-1.0/webkit2/WebKitWebPage.h
86
include/webkitgtk-1.0/webkit2/WebKitWebResource.h
87
include/webkitgtk-1.0/webkit2/WebKitWebView.h
88
include/webkitgtk-1.0/webkit2/WebKitWebViewBase.h
89
include/webkitgtk-1.0/webkit2/WebKitWebViewGroup.h
90
include/webkitgtk-1.0/webkit2/WebKitWindowProperties.h
91
include/webkitgtk-1.0/webkit2/webkit-web-extension.h
92
include/webkitgtk-1.0/webkit2/webkit2.h
93
include/webkitgtk-1.0/webkitdom/WebKitDOMAttr.h
94
include/webkitgtk-1.0/webkitdom/WebKitDOMAudioTrack.h
95
include/webkitgtk-1.0/webkitdom/WebKitDOMAudioTrackList.h
96
include/webkitgtk-1.0/webkitdom/WebKitDOMBarProp.h
97
include/webkitgtk-1.0/webkitdom/WebKitDOMBatteryManager.h
98
include/webkitgtk-1.0/webkitdom/WebKitDOMBlob.h
99
include/webkitgtk-1.0/webkitdom/WebKitDOMCDATASection.h
100
include/webkitgtk-1.0/webkitdom/WebKitDOMCSSRule.h
101
include/webkitgtk-1.0/webkitdom/WebKitDOMCSSRuleList.h
102
include/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleDeclaration.h
103
include/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleSheet.h
104
include/webkitgtk-1.0/webkitdom/WebKitDOMCSSValue.h
105
include/webkitgtk-1.0/webkitdom/WebKitDOMCharacterData.h
106
include/webkitgtk-1.0/webkitdom/WebKitDOMComment.h
107
include/webkitgtk-1.0/webkitdom/WebKitDOMConsole.h
108
include/webkitgtk-1.0/webkitdom/WebKitDOMCustom.h
109
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMApplicationCache.h
110
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMImplementation.h
111
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeType.h
112
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeTypeArray.h
113
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h
114
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMPlugin.h
115
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMPluginArray.h
116
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSecurityPolicy.h
117
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSelection.h
118
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSettableTokenList.h
119
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringList.h
120
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringMap.h
121
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMTokenList.h
122
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindow.h
123
include/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindowCSS.h
124
include/webkitgtk-1.0/webkitdom/WebKitDOMDatabase.h
125
include/webkitgtk-1.0/webkitdom/WebKitDOMDeprecated.h
126
include/webkitgtk-1.0/webkitdom/WebKitDOMDocument.h
127
include/webkitgtk-1.0/webkitdom/WebKitDOMDocumentFragment.h
128
include/webkitgtk-1.0/webkitdom/WebKitDOMDocumentType.h
129
include/webkitgtk-1.0/webkitdom/WebKitDOMElement.h
130
include/webkitgtk-1.0/webkitdom/WebKitDOMEntityReference.h
131
include/webkitgtk-1.0/webkitdom/WebKitDOMEvent.h
132
include/webkitgtk-1.0/webkitdom/WebKitDOMEventTarget.h
133
include/webkitgtk-1.0/webkitdom/WebKitDOMFile.h
134
include/webkitgtk-1.0/webkitdom/WebKitDOMFileList.h
135
include/webkitgtk-1.0/webkitdom/WebKitDOMGamepad.h
136
include/webkitgtk-1.0/webkitdom/WebKitDOMGamepadList.h
137
include/webkitgtk-1.0/webkitdom/WebKitDOMGeolocation.h
138
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAnchorElement.h
139
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAppletElement.h
140
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAreaElement.h
141
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAudioElement.h
142
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBRElement.h
143
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseElement.h
144
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseFontElement.h
145
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBodyElement.h
146
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLButtonElement.h
147
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCanvasElement.h
148
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCollection.h
149
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDListElement.h
150
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDetailsElement.h
151
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDirectoryElement.h
152
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDivElement.h
153
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDocument.h
154
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLElement.h
155
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLEmbedElement.h
156
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFieldSetElement.h
157
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFontElement.h
158
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFormElement.h
159
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameElement.h
160
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameSetElement.h
161
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHRElement.h
162
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadElement.h
163
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadingElement.h
164
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHtmlElement.h
165
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLIFrameElement.h
166
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLImageElement.h
167
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLInputElement.h
168
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLKeygenElement.h
169
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLIElement.h
170
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLabelElement.h
171
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLegendElement.h
172
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLinkElement.h
173
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMapElement.h
174
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMarqueeElement.h
175
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMediaElement.h
176
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMenuElement.h
177
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMetaElement.h
178
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLModElement.h
179
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOListElement.h
180
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLObjectElement.h
181
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptGroupElement.h
182
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionElement.h
183
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionsCollection.h
184
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParagraphElement.h
185
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParamElement.h
186
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLPreElement.h
187
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLQuoteElement.h
188
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLScriptElement.h
189
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLSelectElement.h
190
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLStyleElement.h
191
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h
192
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCellElement.h
193
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableColElement.h
194
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableElement.h
195
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableRowElement.h
196
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableSectionElement.h
197
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTextAreaElement.h
198
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTitleElement.h
199
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLUListElement.h
200
include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLVideoElement.h
201
include/webkitgtk-1.0/webkitdom/WebKitDOMHistory.h
202
include/webkitgtk-1.0/webkitdom/WebKitDOMKeyboardEvent.h
203
include/webkitgtk-1.0/webkitdom/WebKitDOMLocation.h
204
include/webkitgtk-1.0/webkitdom/WebKitDOMMediaController.h
205
include/webkitgtk-1.0/webkitdom/WebKitDOMMediaError.h
206
include/webkitgtk-1.0/webkitdom/WebKitDOMMediaList.h
207
include/webkitgtk-1.0/webkitdom/WebKitDOMMediaQueryList.h
208
include/webkitgtk-1.0/webkitdom/WebKitDOMMessagePort.h
209
include/webkitgtk-1.0/webkitdom/WebKitDOMMouseEvent.h
210
include/webkitgtk-1.0/webkitdom/WebKitDOMNamedNodeMap.h
211
include/webkitgtk-1.0/webkitdom/WebKitDOMNavigator.h
212
include/webkitgtk-1.0/webkitdom/WebKitDOMNode.h
213
include/webkitgtk-1.0/webkitdom/WebKitDOMNodeFilter.h
214
include/webkitgtk-1.0/webkitdom/WebKitDOMNodeIterator.h
215
include/webkitgtk-1.0/webkitdom/WebKitDOMNodeList.h
216
include/webkitgtk-1.0/webkitdom/WebKitDOMObject.h
217
include/webkitgtk-1.0/webkitdom/WebKitDOMPerformance.h
218
include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntry.h
219
include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntryList.h
220
include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceNavigation.h
221
include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceTiming.h
222
include/webkitgtk-1.0/webkitdom/WebKitDOMProcessingInstruction.h
223
include/webkitgtk-1.0/webkitdom/WebKitDOMRange.h
224
include/webkitgtk-1.0/webkitdom/WebKitDOMScreen.h
225
include/webkitgtk-1.0/webkitdom/WebKitDOMShadowRoot.h
226
include/webkitgtk-1.0/webkitdom/WebKitDOMStorage.h
227
include/webkitgtk-1.0/webkitdom/WebKitDOMStorageInfo.h
228
include/webkitgtk-1.0/webkitdom/WebKitDOMStorageQuota.h
229
include/webkitgtk-1.0/webkitdom/WebKitDOMStyleMedia.h
230
include/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheet.h
231
include/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheetList.h
232
include/webkitgtk-1.0/webkitdom/WebKitDOMText.h
233
include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrack.h
234
include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCue.h
235
include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCueList.h
236
include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackList.h
237
include/webkitgtk-1.0/webkitdom/WebKitDOMTimeRanges.h
238
include/webkitgtk-1.0/webkitdom/WebKitDOMTouch.h
239
include/webkitgtk-1.0/webkitdom/WebKitDOMTrackEvent.h
240
include/webkitgtk-1.0/webkitdom/WebKitDOMTreeWalker.h
241
include/webkitgtk-1.0/webkitdom/WebKitDOMUIEvent.h
242
include/webkitgtk-1.0/webkitdom/WebKitDOMValidityState.h
243
include/webkitgtk-1.0/webkitdom/WebKitDOMVideoPlaybackQuality.h
244
include/webkitgtk-1.0/webkitdom/WebKitDOMVideoTrack.h
245
include/webkitgtk-1.0/webkitdom/WebKitDOMVideoTrackList.h
246
include/webkitgtk-1.0/webkitdom/WebKitDOMWebKitNamedFlow.h
247
include/webkitgtk-1.0/webkitdom/WebKitDOMWebKitPoint.h
248
include/webkitgtk-1.0/webkitdom/WebKitDOMWheelEvent.h
249
include/webkitgtk-1.0/webkitdom/WebKitDOMXPathExpression.h
250
include/webkitgtk-1.0/webkitdom/WebKitDOMXPathNSResolver.h
251
include/webkitgtk-1.0/webkitdom/WebKitDOMXPathResult.h
252
include/webkitgtk-1.0/webkitdom/webkitdom.h
253
include/webkitgtk-1.0/webkitdom/webkitdomdefines.h
254
lib/girepository-1.0/JavaScriptCore-1.0.typelib
255
lib/girepository-1.0/WebKit-1.0.typelib
256
lib/libjavascriptcoregtk-1.0.so
257
lib/libjavascriptcoregtk-1.0.so.0
258
lib/libjavascriptcoregtk-1.0.so.0.16.16
259
lib/libwebkitgtk-1.0.so
260
lib/libwebkitgtk-1.0.so.0
261
lib/libwebkitgtk-1.0.so.0.22.14
262
libdata/pkgconfig/javascriptcoregtk-1.0.pc
263
libdata/pkgconfig/webkit-1.0.pc
264
share/gir-1.0/JavaScriptCore-1.0.gir
265
share/gir-1.0/WebKit-1.0.gir
266
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMAttr.html
267
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMAudioTrack.html
268
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMAudioTrackList.html
269
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMBarProp.html
270
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMBatteryManager.html
271
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMBlob.html
272
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCDATASection.html
273
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCSSRule.html
274
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCSSRuleList.html
275
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCSSStyleDeclaration.html
276
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCSSStyleSheet.html
277
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCSSValue.html
278
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMCharacterData.html
279
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMComment.html
280
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMConsole.html
281
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMApplicationCache.html
282
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMImplementation.html
283
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMMimeType.html
284
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMMimeTypeArray.html
285
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMNamedFlowCollection.html
286
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMPlugin.html
287
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMPluginArray.html
288
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMSecurityPolicy.html
289
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMSelection.html
290
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMSettableTokenList.html
291
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMStringList.html
292
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMStringMap.html
293
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMTokenList.html
294
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMWindow.html
295
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDOMWindowCSS.html
296
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDatabase.html
297
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDocument.html
298
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDocumentFragment.html
299
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMDocumentType.html
300
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMElement.html
301
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMEntityReference.html
302
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMEvent.html
303
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMEventTarget.html
304
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMFile.html
305
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMFileList.html
306
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMGamepad.html
307
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMGamepadList.html
308
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMGeolocation.html
309
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLAnchorElement.html
310
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLAppletElement.html
311
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLAreaElement.html
312
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLAudioElement.html
313
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLBRElement.html
314
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLBaseElement.html
315
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLBaseFontElement.html
316
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLBodyElement.html
317
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLButtonElement.html
318
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLCanvasElement.html
319
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLCollection.html
320
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLDListElement.html
321
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLDetailsElement.html
322
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLDirectoryElement.html
323
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLDivElement.html
324
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLDocument.html
325
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLElement.html
326
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLEmbedElement.html
327
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLFieldSetElement.html
328
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLFontElement.html
329
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLFormElement.html
330
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLFrameElement.html
331
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLFrameSetElement.html
332
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLHRElement.html
333
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLHeadElement.html
334
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLHeadingElement.html
335
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLHtmlElement.html
336
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLIFrameElement.html
337
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLImageElement.html
338
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLInputElement.html
339
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLKeygenElement.html
340
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLLIElement.html
341
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLLabelElement.html
342
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLLegendElement.html
343
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLLinkElement.html
344
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLMapElement.html
345
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLMarqueeElement.html
346
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLMediaElement.html
347
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLMenuElement.html
348
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLMetaElement.html
349
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLModElement.html
350
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLOListElement.html
351
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLObjectElement.html
352
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLOptGroupElement.html
353
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLOptionElement.html
354
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLOptionsCollection.html
355
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLParagraphElement.html
356
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLParamElement.html
357
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLPreElement.html
358
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLQuoteElement.html
359
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLScriptElement.html
360
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLSelectElement.html
361
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLStyleElement.html
362
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableCaptionElement.html
363
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableCellElement.html
364
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableColElement.html
365
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableElement.html
366
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableRowElement.html
367
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTableSectionElement.html
368
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTextAreaElement.html
369
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLTitleElement.html
370
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLUListElement.html
371
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHTMLVideoElement.html
372
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMHistory.html
373
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMKeyboardEvent.html
374
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMLocation.html
375
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMediaController.html
376
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMediaError.html
377
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMediaList.html
378
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMediaQueryList.html
379
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMessagePort.html
380
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMMouseEvent.html
381
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNamedNodeMap.html
382
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNavigator.html
383
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNode.html
384
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNodeFilter.html
385
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNodeIterator.html
386
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMNodeList.html
387
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMObject.html
388
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMPerformance.html
389
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMPerformanceEntry.html
390
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMPerformanceEntryList.html
391
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMPerformanceNavigation.html
392
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMPerformanceTiming.html
393
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMProcessingInstruction.html
394
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMRange.html
395
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMScreen.html
396
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMShadowRoot.html
397
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStorage.html
398
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStorageInfo.html
399
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStorageQuota.html
400
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStyleMedia.html
401
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStyleSheet.html
402
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMStyleSheetList.html
403
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMText.html
404
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTextTrack.html
405
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTextTrackCue.html
406
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTextTrackCueList.html
407
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTextTrackList.html
408
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTimeRanges.html
409
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTouch.html
410
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTrackEvent.html
411
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMTreeWalker.html
412
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMUIEvent.html
413
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMValidityState.html
414
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMVideoPlaybackQuality.html
415
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMVideoTrack.html
416
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMVideoTrackList.html
417
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMWebKitNamedFlow.html
418
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMWebKitPoint.html
419
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMWheelEvent.html
420
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMXPathExpression.html
421
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMXPathNSResolver.html
422
share/gtk-doc/html/webkit1/webkitdomgtk/WebKitDOMXPathResult.html
423
share/gtk-doc/html/webkit1/webkitdomgtk/annotation-glossary.html
424
share/gtk-doc/html/webkit1/webkitdomgtk/api-index-deprecated.html
425
share/gtk-doc/html/webkit1/webkitdomgtk/ch01.html
426
share/gtk-doc/html/webkit1/webkitdomgtk/home.png
427
share/gtk-doc/html/webkit1/webkitdomgtk/index-all.html
428
share/gtk-doc/html/webkit1/webkitdomgtk/index.html
429
share/gtk-doc/html/webkit1/webkitdomgtk/index.sgml
430
share/gtk-doc/html/webkit1/webkitdomgtk/left-insensitive.png
431
share/gtk-doc/html/webkit1/webkitdomgtk/left.png
432
share/gtk-doc/html/webkit1/webkitdomgtk/right-insensitive.png
433
share/gtk-doc/html/webkit1/webkitdomgtk/right.png
434
share/gtk-doc/html/webkit1/webkitdomgtk/style.css
435
share/gtk-doc/html/webkit1/webkitdomgtk/up-insensitive.png
436
share/gtk-doc/html/webkit1/webkitdomgtk/up.png
437
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMBarInfo.html
438
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMCustom.html
439
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html
440
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMMemoryInfo.html
441
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMMicroDataItemValue.html
442
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk-WebKitDOMPropertyNodeList.html
443
share/gtk-doc/html/webkit1/webkitdomgtk/webkitdomgtk.devhelp2
444
share/gtk-doc/html/webkit1/webkitgtk/WebKitFaviconDatabase.html
445
share/gtk-doc/html/webkit1/webkitgtk/WebKitFileChooserRequest.html
446
share/gtk-doc/html/webkit1/webkitgtk/WebKitGeolocationPolicyDecision.html
447
share/gtk-doc/html/webkit1/webkitgtk/WebKitHitTestResult.html
448
share/gtk-doc/html/webkit1/webkitgtk/WebKitIconDatabase.html
449
share/gtk-doc/html/webkit1/webkitgtk/WebKitNetworkRequest.html
450
share/gtk-doc/html/webkit1/webkitgtk/WebKitNetworkResponse.html
451
share/gtk-doc/html/webkit1/webkitgtk/WebKitSecurityOrigin.html
452
share/gtk-doc/html/webkit1/webkitgtk/WebKitSoupAuthDialog.html
453
share/gtk-doc/html/webkit1/webkitgtk/WebKitSpellChecker.html
454
share/gtk-doc/html/webkit1/webkitgtk/WebKitViewportAttributes.html
455
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebBackForwardList.html
456
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebDataSource.html
457
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebDatabase.html
458
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebFrame.html
459
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebHistoryItem.html
460
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebInspector.html
461
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebNavigationAction.html
462
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebPlugin.html
463
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebPluginDatabase.html
464
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebPolicyDecision.html
465
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebResource.html
466
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebSettings.html
467
share/gtk-doc/html/webkit1/webkitgtk/WebKitWebWindowFeatures.html
468
share/gtk-doc/html/webkit1/webkitgtk/annotation-glossary.html
469
share/gtk-doc/html/webkit1/webkitgtk/ch01.html
470
share/gtk-doc/html/webkit1/webkitgtk/ch02.html
471
share/gtk-doc/html/webkit1/webkitgtk/ch03.html
472
share/gtk-doc/html/webkit1/webkitgtk/home.png
473
share/gtk-doc/html/webkit1/webkitgtk/index-1.0.1.html
474
share/gtk-doc/html/webkit1/webkitgtk/index-1.0.2.html
475
share/gtk-doc/html/webkit1/webkitgtk/index-1.0.3.html
476
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.1.html
477
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.10.html
478
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.11.html
479
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.13.html
480
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.14.html
481
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.15.html
482
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.16.html
483
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.17.html
484
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.18.html
485
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.2.html
486
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.20.html
487
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.23.html
488
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.3.html
489
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.4.html
490
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.5.html
491
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.6.html
492
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.7.html
493
share/gtk-doc/html/webkit1/webkitgtk/index-1.1.8.html
494
share/gtk-doc/html/webkit1/webkitgtk/index-1.3.1.html
495
share/gtk-doc/html/webkit1/webkitgtk/index-1.3.2.html
496
share/gtk-doc/html/webkit1/webkitgtk/index-1.3.3.html
497
share/gtk-doc/html/webkit1/webkitgtk/index-1.3.4.html
498
share/gtk-doc/html/webkit1/webkitgtk/index-1.3.8.html
499
share/gtk-doc/html/webkit1/webkitgtk/index-all.html
500
share/gtk-doc/html/webkit1/webkitgtk/index-deprecated.html
501
share/gtk-doc/html/webkit1/webkitgtk/index.html
502
share/gtk-doc/html/webkit1/webkitgtk/index.sgml
503
share/gtk-doc/html/webkit1/webkitgtk/left-insensitive.png
504
share/gtk-doc/html/webkit1/webkitgtk/left.png
505
share/gtk-doc/html/webkit1/webkitgtk/right-insensitive.png
506
share/gtk-doc/html/webkit1/webkitgtk/right.png
507
share/gtk-doc/html/webkit1/webkitgtk/style.css
508
share/gtk-doc/html/webkit1/webkitgtk/up-insensitive.png
509
share/gtk-doc/html/webkit1/webkitgtk/up.png
510
share/gtk-doc/html/webkit1/webkitgtk/webkit-environment.html
511
share/gtk-doc/html/webkit1/webkitgtk/webkitgtk-Global-functions.html
512
share/gtk-doc/html/webkit1/webkitgtk/webkitgtk-webkitdownload.html
513
share/gtk-doc/html/webkit1/webkitgtk/webkitgtk-webkitwebview.html
514
share/gtk-doc/html/webkit1/webkitgtk/webkitgtk.devhelp2
515
share/locale/ar/LC_MESSAGES/WebKitGTK-2.0.mo
516
share/locale/as/LC_MESSAGES/WebKitGTK-2.0.mo
517
share/locale/bg/LC_MESSAGES/WebKitGTK-2.0.mo
518
share/locale/cs/LC_MESSAGES/WebKitGTK-2.0.mo
519
share/locale/de/LC_MESSAGES/WebKitGTK-2.0.mo
520
share/locale/el/LC_MESSAGES/WebKitGTK-2.0.mo
521
share/locale/en_CA/LC_MESSAGES/WebKitGTK-2.0.mo
522
share/locale/en_GB/LC_MESSAGES/WebKitGTK-2.0.mo
523
share/locale/eo/LC_MESSAGES/WebKitGTK-2.0.mo
524
share/locale/es/LC_MESSAGES/WebKitGTK-2.0.mo
525
share/locale/et/LC_MESSAGES/WebKitGTK-2.0.mo
526
share/locale/eu/LC_MESSAGES/WebKitGTK-2.0.mo
527
share/locale/fr/LC_MESSAGES/WebKitGTK-2.0.mo
528
share/locale/gl/LC_MESSAGES/WebKitGTK-2.0.mo
529
share/locale/gu/LC_MESSAGES/WebKitGTK-2.0.mo
530
share/locale/he/LC_MESSAGES/WebKitGTK-2.0.mo
531
share/locale/hi/LC_MESSAGES/WebKitGTK-2.0.mo
532
share/locale/hu/LC_MESSAGES/WebKitGTK-2.0.mo
533
share/locale/id/LC_MESSAGES/WebKitGTK-2.0.mo
534
share/locale/it/LC_MESSAGES/WebKitGTK-2.0.mo
535
share/locale/kn/LC_MESSAGES/WebKitGTK-2.0.mo
536
share/locale/ko/LC_MESSAGES/WebKitGTK-2.0.mo
537
share/locale/lt/LC_MESSAGES/WebKitGTK-2.0.mo
538
share/locale/lv/LC_MESSAGES/WebKitGTK-2.0.mo
539
share/locale/ml/LC_MESSAGES/WebKitGTK-2.0.mo
540
share/locale/mr/LC_MESSAGES/WebKitGTK-2.0.mo
541
share/locale/nb/LC_MESSAGES/WebKitGTK-2.0.mo
542
share/locale/nl/LC_MESSAGES/WebKitGTK-2.0.mo
543
share/locale/or/LC_MESSAGES/WebKitGTK-2.0.mo
544
share/locale/pa/LC_MESSAGES/WebKitGTK-2.0.mo
545
share/locale/pl/LC_MESSAGES/WebKitGTK-2.0.mo
546
share/locale/pt/LC_MESSAGES/WebKitGTK-2.0.mo
547
share/locale/pt_BR/LC_MESSAGES/WebKitGTK-2.0.mo
548
share/locale/ro/LC_MESSAGES/WebKitGTK-2.0.mo
549
share/locale/ru/LC_MESSAGES/WebKitGTK-2.0.mo
550
share/locale/sl/LC_MESSAGES/WebKitGTK-2.0.mo
551
share/locale/sr/LC_MESSAGES/WebKitGTK-2.0.mo
552
share/locale/sr@latin/LC_MESSAGES/WebKitGTK-2.0.mo
553
share/locale/sv/LC_MESSAGES/WebKitGTK-2.0.mo
554
share/locale/ta/LC_MESSAGES/WebKitGTK-2.0.mo
555
share/locale/te/LC_MESSAGES/WebKitGTK-2.0.mo
556
share/locale/uk/LC_MESSAGES/WebKitGTK-2.0.mo
557
share/locale/vi/LC_MESSAGES/WebKitGTK-2.0.mo
558
share/locale/zh_CN/LC_MESSAGES/WebKitGTK-2.0.mo
559
share/webkitgtk-1.0/images/deleteButton.png
560
share/webkitgtk-1.0/images/inputSpeech.png
561
share/webkitgtk-1.0/images/missingImage.png
562
share/webkitgtk-1.0/images/nullPlugin.png
563
share/webkitgtk-1.0/images/panIcon.png
564
share/webkitgtk-1.0/images/textAreaResizeCorner.png
565
share/webkitgtk-1.0/images/urlIcon.png
566
share/webkitgtk-1.0/resources/audio/Composite.wav
567
share/webkitgtk-1.0/resources/error.html
(-)www/webkit-gtk3/Makefile (+122 lines)
Line 0 Link Here
1
# Created by: Michael Johnson <ahze@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	webkit
5
PORTVERSION=	2.4.8
6
PORTREVISION=	1
7
CATEGORIES=	www
8
MASTER_SITES=	http://webkitgtk.org/releases/
9
PKGNAMESUFFIX=	-gtk3
10
DISTNAME=	${PORTNAME}gtk-${PORTVERSION}
11
12
MAINTAINER=	gnome@FreeBSD.org
13
COMMENT=	Opensource browser engine using the GTK+ 3 toolkit
14
15
BUILD_DEPENDS=	gtkdoc-rebase:${PORTSDIR}/textproc/gtk-doc \
16
		geoclue>=0:${PORTSDIR}/net/geoclue
17
LIB_DEPENDS=	libenchant.so:${PORTSDIR}/textproc/enchant \
18
		libsecret-1.so:${PORTSDIR}/security/libsecret \
19
		libicutu.so:${PORTSDIR}/devel/icu \
20
		libharfbuzz.so:${PORTSDIR}/print/harfbuzz \
21
		libwebp.so:${PORTSDIR}/graphics/webp \
22
		libcurl.so:${PORTSDIR}/ftp/curl \
23
		libsoup-2.4.so:${PORTSDIR}/devel/libsoup
24
RUN_DEPENDS=	geoclue>=0:${PORTSDIR}/net/geoclue 
25
26
PORTSCOUT=	limit:1.4.*$$
27
28
USE_GSTREAMER1=	yes
29
USE_XORG=	xt xdamage xcomposite
30
USES=		bison compiler:c++11-lib gettext gmake gperf libtool perl5 \
31
		pkgconfig shebangfix tar:xz
32
USE_RUBY=	yes
33
RUBY_NO_RUN_DEPENDS=yes
34
USE_GNOME=	cairo gtk20 gtk30 introspection:build libxslt
35
USE_GL=		gl
36
USE_SQLITE=	3
37
USE_PERL5=	build
38
USE_LDCONFIG=	yes
39
GNU_CONFIGURE=	yes
40
CONFIGURE_ENV=	ac_cv_path_DOLT_BASH=""
41
CPPFLAGS+=	-I${LOCALBASE}/include
42
LDFLAGS+=	-L${LOCALBASE}/lib
43
INSTALL_TARGET=	install-strip
44
CONFIGURE_ARGS=	--with-gtk=3.0 \
45
		--enable-svg-fonts \
46
		--enable-geolocation \
47
		--enable-webkit2 \
48
		--enable-introspection
49
MAKEFILE=	GNUmakefile
50
MAKE_ENV=	XDG_CACHE_HOME=${WRKDIR}
51
52
#CONFIGURE_ARGS+=--disable-silent-rules
53
CONFIGURE_ARGS+=--disable-egl \
54
		--disable-gles2
55
#		--with-acceleration-backend=opengl # clutter broken?
56
# opengl, clutter, none (clutter unsupported)
57
58
SHEBANG_FILES=	\
59
	Source/JavaScriptCore/create_hash_table \
60
	Source/JavaScriptCore/inspector/scripts/xxd.pl \
61
	Source/WebCore/css/*.pl \
62
	Source/WebCore/dom/*.pl \
63
	Source/WebCore/make-hash-tools.pl \
64
	Source/WebCore/page/make_settings.pl \
65
	Source/WebCore/platform/text/mac/make-charset-table.pl \
66
	Source/WebKit2/Scripts/generate-forwarding-headers.pl \
67
	Source/WebCore/bindings/scripts/*.p[lm] \
68
	Source/JavaScriptCore/create_hash_table
69
70
BROWSER_PLUGINS_DIR?=	${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk3
71
#_BROWSER_PLUGINS_DIR=	${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}",
72
73
OPTIONS_DEFINE=	DEBUG FULLDEBUG
74
DEBUG_DESC=	Just enable debug symbols
75
FULLDEBUG_DESC=	Enable asserts and other debug support
76
77
FULLDEBUG_CONFIGURE_ENABLE=	debug
78
DEBUG_CONFIGURE_ON=	--enable-debug-symbols=yes
79
DEBUG_CONFIGURE_OFF=	--disable-debug-symbols
80
81
.include <bsd.port.options.mk>
82
83
# Shutup warning spam
84
CXXFLAGS+=	-Wno-c++11-extensions
85
86
.if ${ARCH} == powerpc64
87
CFLAGS+=	-mminimal-toc
88
.endif
89
90
.include <bsd.port.pre.mk>
91
92
.if ${PERL_LEVEL} >= 501400
93
BUILD_DEPENDS+=	p5-Switch>0:${PORTSDIR}/lang/p5-Switch
94
.endif
95
96
.if ${OSVERSION} < 1000033
97
BUILD_DEPENDS+=	flex>=0:${PORTSDIR}/textproc/flex
98
CONFIGURE_ENV+=	FLEX="${LOCALBASE}/bin/flex"
99
.endif
100
101
.if ${ARCH} == i386 && ! ${CFLAGS:M-march=*}
102
# Needed for __atomic_fetch_add_8
103
CFLAGS+=	-march=i586
104
.endif
105
106
.if ${CHOSEN_COMPILER_TYPE} == clang
107
CXXFLAGS+=	-Qunused-arguments
108
.endif
109
110
post-patch:
111
	@${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \
112
		${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp
113
	@${FIND} ${WRKSRC} -name GNUmakefile.in | ${XARGS} ${REINPLACE_CMD} -e \
114
		's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g'
115
116
post-install:
117
	${INSTALL_PROGRAM} ${WRKSRC}/Programs/GtkLauncher \
118
		${STAGEDIR}${PREFIX}/bin/GtkLauncher-3
119
	${INSTALL_PROGRAM} ${WRKSRC}/Programs/MiniBrowser \
120
		${STAGEDIR}${PREFIX}/bin/MiniBrowser-3
121
122
.include <bsd.port.post.mk>
(-)www/webkit-gtk3/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (webkitgtk-2.4.8.tar.xz) = 68f11559cb178679ca92acc9e3a3d7febede7acb7b98afd7fb761875bbc6bd23
2
SIZE (webkitgtk-2.4.8.tar.xz) = 9827632
(-)www/webkit-gtk3/files/patch-Source_JavaScriptCore_jit_ExecutableAllocator_h (+16 lines)
Line 0 Link Here
1
$OpenBSD: patch-Source_JavaScriptCore_jit_ExecutableAllocator_h,v 1.1 2013/04/13 09:11:02 landry Exp $
2
3
https://bugs.webkit.org/show_bug.cgi?id=61137
4
5
--- Source/JavaScriptCore/jit/ExecutableAllocator.h.orig	2013-06-11 09:39:47.000000000 +0200
6
+++ Source/JavaScriptCore/jit/ExecutableAllocator.h	2013-08-07 09:25:56.000000000 +0200
7
@@ -105,7 +105,8 @@
8
 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED)
9
 #if CPU(ARM)
10
 static const size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024;
11
-#elif CPU(X86_64)
12
+// We don't want an initial allocation of 1GB, it's above the default ulimit
13
+#elif CPU(X86_64) && !defined(__OpenBSD__) && !defined(__FreeBSD__)
14
 static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;
15
 #else
16
 static const size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024;
(-)www/webkit-gtk3/files/patch-Source_WebCore_platform_graphics_gstreamer_MediaPlayerPrivateGStreamerBase.cpp (+29 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp.orig	2015-02-12 01:22:34.449468000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp	2015-02-12 01:24:42.777620000 +0100
3
@@ -316,7 +316,7 @@ void MediaPlayerPrivateGStreamerBase::mu
4
 #if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER_GL) && !USE(COORDINATED_GRAPHICS)
5
 PassRefPtr<BitmapTexture> MediaPlayerPrivateGStreamerBase::updateTexture(TextureMapper* textureMapper)
6
 {
7
-    GMutexLocker lock(m_bufferMutex);
8
+    WebCore::GMutexLocker lock(m_bufferMutex);
9
     if (!m_buffer)
10
         return nullptr;
11
 
12
@@ -366,7 +366,7 @@ void MediaPlayerPrivateGStreamerBase::tr
13
     g_return_if_fail(GST_IS_BUFFER(buffer));
14
 
15
     {
16
-        GMutexLocker lock(m_bufferMutex);
17
+        WebCore::GMutexLocker lock(m_bufferMutex);
18
         gst_buffer_replace(&m_buffer, buffer);
19
     }
20
 
21
@@ -398,7 +398,7 @@ void MediaPlayerPrivateGStreamerBase::pa
22
     if (!m_player->visible())
23
         return;
24
 
25
-    GMutexLocker lock(m_bufferMutex);
26
+    WebCore::GMutexLocker lock(m_bufferMutex);
27
     if (!m_buffer)
28
         return;
29
 
(-)www/webkit-gtk3/files/patch-Source_WebCore_platform_graphics_gstreamer_VideoSinkGStreamer.cpp (+47 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp.orig	2015-02-12 01:22:25.261692000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2015-02-12 01:24:34.127107000 +0100
3
@@ -118,7 +118,7 @@ static gboolean webkitVideoSinkTimeoutCa
4
     WebKitVideoSink* sink = reinterpret_cast<WebKitVideoSink*>(data);
5
     WebKitVideoSinkPrivate* priv = sink->priv;
6
 
7
-    GMutexLocker lock(priv->bufferMutex);
8
+    WebCore::GMutexLocker lock(priv->bufferMutex);
9
     GstBuffer* buffer = priv->buffer;
10
     priv->buffer = 0;
11
     priv->timeoutId = 0;
12
@@ -140,7 +140,7 @@ static GstFlowReturn webkitVideoSinkRend
13
     WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(baseSink);
14
     WebKitVideoSinkPrivate* priv = sink->priv;
15
 
16
-    GMutexLocker lock(priv->bufferMutex);
17
+    WebCore::GMutexLocker lock(priv->bufferMutex);
18
 
19
     if (priv->unlocked)
20
         return GST_FLOW_OK;
21
@@ -279,7 +279,7 @@ static void webkitVideoSinkGetProperty(G
22
 
23
 static void unlockBufferMutex(WebKitVideoSinkPrivate* priv)
24
 {
25
-    GMutexLocker lock(priv->bufferMutex);
26
+    WebCore::GMutexLocker lock(priv->bufferMutex);
27
 
28
     if (priv->buffer) {
29
         gst_buffer_unref(priv->buffer);
30
@@ -305,7 +305,7 @@ static gboolean webkitVideoSinkUnlockSto
31
     WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
32
 
33
     {
34
-        GMutexLocker lock(priv->bufferMutex);
35
+        WebCore::GMutexLocker lock(priv->bufferMutex);
36
         priv->unlocked = false;
37
     }
38
 
39
@@ -330,7 +330,7 @@ static gboolean webkitVideoSinkStart(Gst
40
 {
41
     WebKitVideoSinkPrivate* priv = WEBKIT_VIDEO_SINK(baseSink)->priv;
42
 
43
-    GMutexLocker lock(priv->bufferMutex);
44
+    WebCore::GMutexLocker lock(priv->bufferMutex);
45
     priv->unlocked = false;
46
     return TRUE;
47
 }
(-)www/webkit-gtk3/files/patch-Source_WebCore_platform_graphics_gstreamer_WebKitWebSourceGStreamer.cpp (+200 lines)
Line 0 Link Here
1
--- Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp.orig	2015-02-12 01:22:42.081133000 +0100
2
+++ Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp	2015-02-12 01:25:08.298076000 +0100
3
@@ -346,7 +346,7 @@ static void webKitWebSrcSetProperty(GObj
4
 
5
     switch (propID) {
6
     case PROP_IRADIO_MODE: {
7
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
8
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
9
         priv->iradioMode = g_value_get_boolean(value);
10
         break;
11
     }
12
@@ -364,7 +364,7 @@ static void webKitWebSrcGetProperty(GObj
13
     WebKitWebSrc* src = WEBKIT_WEB_SRC(object);
14
     WebKitWebSrcPrivate* priv = src->priv;
15
 
16
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
17
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
18
     switch (propID) {
19
     case PROP_IRADIO_MODE:
20
         g_value_set_boolean(value, priv->iradioMode);
21
@@ -417,7 +417,7 @@ static gboolean webKitWebSrcStop(WebKitW
22
 
23
     ASSERT(isMainThread());
24
 
25
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
26
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
27
 
28
     bool seeking = priv->seekID;
29
 
30
@@ -476,7 +476,7 @@ static gboolean webKitWebSrcStart(WebKit
31
 
32
     ASSERT(isMainThread());
33
 
34
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
35
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
36
 
37
     priv->startID = 0;
38
     priv->corsAccessCheck = CORSNoCheck;
39
@@ -573,7 +573,7 @@ static GstStateChangeReturn webKitWebSrc
40
         return ret;
41
     }
42
 
43
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
44
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
45
     switch (transition) {
46
     case GST_STATE_CHANGE_READY_TO_PAUSED:
47
         GST_DEBUG_OBJECT(src, "READY->PAUSED");
48
@@ -604,7 +604,7 @@ static gboolean webKitWebSrcQueryWithPar
49
         gst_query_parse_duration(query, &format, NULL);
50
 
51
         GST_DEBUG_OBJECT(src, "duration query in format %s", gst_format_get_name(format));
52
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
53
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
54
         if (format == GST_FORMAT_BYTES && src->priv->size > 0) {
55
             gst_query_set_duration(query, format, src->priv->size);
56
             result = TRUE;
57
@@ -612,7 +612,7 @@ static gboolean webKitWebSrcQueryWithPar
58
         break;
59
     }
60
     case GST_QUERY_URI: {
61
-        GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
62
+        WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
63
         gst_query_set_uri(query, src->priv->uri);
64
         result = TRUE;
65
         break;
66
@@ -653,7 +653,7 @@ static gchar* webKitWebSrcGetUri(GstURIH
67
     WebKitWebSrc* src = WEBKIT_WEB_SRC(handler);
68
     gchar* ret;
69
 
70
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
71
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
72
     ret = g_strdup(src->priv->uri);
73
     return ret;
74
 }
75
@@ -668,7 +668,7 @@ static gboolean webKitWebSrcSetUri(GstUR
76
         return FALSE;
77
     }
78
 
79
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
80
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
81
 
82
     g_free(priv->uri);
83
     priv->uri = 0;
84
@@ -704,7 +704,7 @@ static gboolean webKitWebSrcNeedDataMain
85
 
86
     ASSERT(isMainThread());
87
 
88
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
89
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
90
     // already stopped
91
     if (!priv->needDataID)
92
         return FALSE;
93
@@ -725,7 +725,7 @@ static void webKitWebSrcNeedDataCb(GstAp
94
 
95
     GST_DEBUG_OBJECT(src, "Need more data: %u", length);
96
 
97
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
98
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
99
     if (priv->needDataID || !priv->paused) {
100
         return;
101
     }
102
@@ -739,7 +739,7 @@ static gboolean webKitWebSrcEnoughDataMa
103
 
104
     ASSERT(isMainThread());
105
 
106
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
107
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
108
     // already stopped
109
     if (!priv->enoughDataID)
110
         return FALSE;
111
@@ -760,7 +760,7 @@ static void webKitWebSrcEnoughDataCb(Gst
112
 
113
     GST_DEBUG_OBJECT(src, "Have enough data");
114
 
115
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
116
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
117
     if (priv->enoughDataID || priv->paused) {
118
         return;
119
     }
120
@@ -774,7 +774,7 @@ static gboolean webKitWebSrcSeekMainCb(W
121
 
122
     ASSERT(isMainThread());
123
 
124
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
125
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
126
     // already stopped
127
     if (!priv->seekID)
128
         return FALSE;
129
@@ -792,7 +792,7 @@ static gboolean webKitWebSrcSeekDataCb(G
130
     WebKitWebSrcPrivate* priv = src->priv;
131
 
132
     GST_DEBUG_OBJECT(src, "Seeking to offset: %" G_GUINT64_FORMAT, offset);
133
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
134
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
135
     if (offset == priv->offset && priv->requestedOffset == priv->offset)
136
         return TRUE;
137
 
138
@@ -811,7 +811,7 @@ static gboolean webKitWebSrcSeekDataCb(G
139
 void webKitWebSrcSetMediaPlayer(WebKitWebSrc* src, WebCore::MediaPlayer* player)
140
 {
141
     ASSERT(player);
142
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
143
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
144
     src->priv->player = player;
145
 }
146
 
147
@@ -841,7 +841,7 @@ char* StreamingClient::createReadBuffer(
148
 
149
     mapGstBuffer(buffer);
150
 
151
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
152
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
153
     priv->buffer = adoptGRef(buffer);
154
     locker.unlock();
155
 
156
@@ -867,7 +867,7 @@ void StreamingClient::handleResponseRece
157
         return;
158
     }
159
 
160
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
161
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
162
 
163
     priv->corsAccessCheck = corsAccessCheck;
164
 
165
@@ -966,7 +966,7 @@ void StreamingClient::handleDataReceived
166
     WebKitWebSrc* src = WEBKIT_WEB_SRC(m_src);
167
     WebKitWebSrcPrivate* priv = src->priv;
168
 
169
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
170
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
171
 
172
     GST_LOG_OBJECT(src, "Have %lld bytes of data", priv->buffer ? static_cast<long long>(gst_buffer_get_size(priv->buffer.get())) : length);
173
 
174
@@ -1035,7 +1035,7 @@ void StreamingClient::handleNotifyFinish
175
 
176
     GST_DEBUG_OBJECT(src, "Have EOS");
177
 
178
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
179
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
180
     if (!priv->seekID) {
181
         locker.unlock();
182
         gst_app_src_end_of_stream(priv->appsrc);
183
@@ -1194,7 +1194,7 @@ void ResourceHandleStreamingClient::wasB
184
 
185
     GST_ERROR_OBJECT(src, "Request was blocked");
186
 
187
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
188
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
189
     uri.reset(g_strdup(src->priv->uri));
190
     locker.unlock();
191
 
192
@@ -1208,7 +1208,7 @@ void ResourceHandleStreamingClient::cann
193
 
194
     GST_ERROR_OBJECT(src, "Cannot show URL");
195
 
196
-    GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
197
+    WebCore::GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
198
     uri.reset(g_strdup(src->priv->uri));
199
     locker.unlock();
200
 
(-)www/webkit-gtk3/files/patch-Source_WebCore_plugins_PluginDatabase.cpp (+10 lines)
Line 0 Link Here
1
--- Source/WebCore/plugins/PluginDatabase.cpp.orig	2011-01-11 16:24:29.000000000 +0000
2
+++ Source/WebCore/plugins/PluginDatabase.cpp	2011-01-11 16:24:54.000000000 +0000
3
@@ -375,6 +375,7 @@ Vector<String> PluginDatabase::defaultPl
4
     userPluginPath.append(String("/.netscape/plugins"));
5
     paths.append(userPluginPath);
6
 
7
+    paths.append("%%BROWSER_PLUGINS_DIR%%");
8
     paths.append("/usr/lib/browser/plugins");
9
     paths.append("/usr/local/lib/mozilla/plugins");
10
     paths.append("/usr/lib/firefox/plugins");
(-)www/webkit-gtk3/files/patch-Source__JavaScriptCore__assembler__ARMAssembler.h (+11 lines)
Line 0 Link Here
1
--- Source/JavaScriptCore/assembler/ARMAssembler.h.orig	2014-12-15 04:13:43.336068961 +0000
2
+++ Source/JavaScriptCore/assembler/ARMAssembler.h	2014-12-15 04:13:49.213068201 +0000
3
@@ -1121,6 +1121,8 @@
4
             linuxPageFlush(current, end);
5
 #elif OS(WINCE)
6
             CacheRangeFlush(code, size, CACHE_SYNC_ALL);
7
+#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG)
8
+            __clear_cache(code, reinterpret_cast<char*>(code) + size);
9
 #else
10
 #error "The cacheFlush support is missing on this platform."
11
 #endif
(-)www/webkit-gtk3/pkg-descr (+5 lines)
Line 0 Link Here
1
WebKit is an open source web browser engine. It is able to display content
2
such as HTML, SVG, XML, and others. It also supports DOM, XMLHttpRequest,
3
XSLT, CSS, Javascript/ECMAscript and more.
4
5
WWW: http://webkit.org/
(-)www/webkit-gtk3/pkg-plist (+635 lines)
Line 0 Link Here
1
bin/GtkLauncher-3
2
bin/MiniBrowser-3
3
bin/jsc-3
4
include/webkitgtk-3.0/JavaScriptCore/JSBase.h
5
include/webkitgtk-3.0/JavaScriptCore/JSContextRef.h
6
include/webkitgtk-3.0/JavaScriptCore/JSObjectRef.h
7
include/webkitgtk-3.0/JavaScriptCore/JSStringRef.h
8
include/webkitgtk-3.0/JavaScriptCore/JSValueRef.h
9
include/webkitgtk-3.0/JavaScriptCore/JavaScript.h
10
include/webkitgtk-3.0/JavaScriptCore/WebKitAvailability.h
11
include/webkitgtk-3.0/webkit/webkit.h
12
include/webkitgtk-3.0/webkit/webkitapplicationcache.h
13
include/webkitgtk-3.0/webkit/webkitdefines.h
14
include/webkitgtk-3.0/webkit/webkitdom.h
15
include/webkitgtk-3.0/webkit/webkitdownload.h
16
include/webkitgtk-3.0/webkit/webkitenumtypes.h
17
include/webkitgtk-3.0/webkit/webkiterror.h
18
include/webkitgtk-3.0/webkit/webkitfavicondatabase.h
19
include/webkitgtk-3.0/webkit/webkitfilechooserrequest.h
20
include/webkitgtk-3.0/webkit/webkitgeolocationpolicydecision.h
21
include/webkitgtk-3.0/webkit/webkitglobals.h
22
include/webkitgtk-3.0/webkit/webkithittestresult.h
23
include/webkitgtk-3.0/webkit/webkiticondatabase.h
24
include/webkitgtk-3.0/webkit/webkitnetworkrequest.h
25
include/webkitgtk-3.0/webkit/webkitnetworkresponse.h
26
include/webkitgtk-3.0/webkit/webkitsecurityorigin.h
27
include/webkitgtk-3.0/webkit/webkitsoupauthdialog.h
28
include/webkitgtk-3.0/webkit/webkitspellchecker.h
29
include/webkitgtk-3.0/webkit/webkitversion.h
30
include/webkitgtk-3.0/webkit/webkitviewportattributes.h
31
include/webkitgtk-3.0/webkit/webkitwebbackforwardlist.h
32
include/webkitgtk-3.0/webkit/webkitwebdatabase.h
33
include/webkitgtk-3.0/webkit/webkitwebdatasource.h
34
include/webkitgtk-3.0/webkit/webkitwebframe.h
35
include/webkitgtk-3.0/webkit/webkitwebhistoryitem.h
36
include/webkitgtk-3.0/webkit/webkitwebinspector.h
37
include/webkitgtk-3.0/webkit/webkitwebnavigationaction.h
38
include/webkitgtk-3.0/webkit/webkitwebplugin.h
39
include/webkitgtk-3.0/webkit/webkitwebplugindatabase.h
40
include/webkitgtk-3.0/webkit/webkitwebpolicydecision.h
41
include/webkitgtk-3.0/webkit/webkitwebresource.h
42
include/webkitgtk-3.0/webkit/webkitwebsettings.h
43
include/webkitgtk-3.0/webkit/webkitwebview.h
44
include/webkitgtk-3.0/webkit/webkitwebwindowfeatures.h
45
include/webkitgtk-3.0/webkit2/WebKitAuthenticationRequest.h
46
include/webkitgtk-3.0/webkit2/WebKitBackForwardList.h
47
include/webkitgtk-3.0/webkit2/WebKitBackForwardListItem.h
48
include/webkitgtk-3.0/webkit2/WebKitCertificateInfo.h
49
include/webkitgtk-3.0/webkit2/WebKitContextMenu.h
50
include/webkitgtk-3.0/webkit2/WebKitContextMenuActions.h
51
include/webkitgtk-3.0/webkit2/WebKitContextMenuItem.h
52
include/webkitgtk-3.0/webkit2/WebKitCookieManager.h
53
include/webkitgtk-3.0/webkit2/WebKitCredential.h
54
include/webkitgtk-3.0/webkit2/WebKitDefines.h
55
include/webkitgtk-3.0/webkit2/WebKitDownload.h
56
include/webkitgtk-3.0/webkit2/WebKitEditingCommands.h
57
include/webkitgtk-3.0/webkit2/WebKitEnumTypes.h
58
include/webkitgtk-3.0/webkit2/WebKitError.h
59
include/webkitgtk-3.0/webkit2/WebKitFaviconDatabase.h
60
include/webkitgtk-3.0/webkit2/WebKitFileChooserRequest.h
61
include/webkitgtk-3.0/webkit2/WebKitFindController.h
62
include/webkitgtk-3.0/webkit2/WebKitFormSubmissionRequest.h
63
include/webkitgtk-3.0/webkit2/WebKitForwardDeclarations.h
64
include/webkitgtk-3.0/webkit2/WebKitFrame.h
65
include/webkitgtk-3.0/webkit2/WebKitGeolocationPermissionRequest.h
66
include/webkitgtk-3.0/webkit2/WebKitHitTestResult.h
67
include/webkitgtk-3.0/webkit2/WebKitJavascriptResult.h
68
include/webkitgtk-3.0/webkit2/WebKitMimeInfo.h
69
include/webkitgtk-3.0/webkit2/WebKitNavigationPolicyDecision.h
70
include/webkitgtk-3.0/webkit2/WebKitPermissionRequest.h
71
include/webkitgtk-3.0/webkit2/WebKitPlugin.h
72
include/webkitgtk-3.0/webkit2/WebKitPolicyDecision.h
73
include/webkitgtk-3.0/webkit2/WebKitPrintOperation.h
74
include/webkitgtk-3.0/webkit2/WebKitResponsePolicyDecision.h
75
include/webkitgtk-3.0/webkit2/WebKitScriptDialog.h
76
include/webkitgtk-3.0/webkit2/WebKitScriptWorld.h
77
include/webkitgtk-3.0/webkit2/WebKitSecurityManager.h
78
include/webkitgtk-3.0/webkit2/WebKitSettings.h
79
include/webkitgtk-3.0/webkit2/WebKitURIRequest.h
80
include/webkitgtk-3.0/webkit2/WebKitURIResponse.h
81
include/webkitgtk-3.0/webkit2/WebKitURISchemeRequest.h
82
include/webkitgtk-3.0/webkit2/WebKitVersion.h
83
include/webkitgtk-3.0/webkit2/WebKitWebContext.h
84
include/webkitgtk-3.0/webkit2/WebKitWebExtension.h
85
include/webkitgtk-3.0/webkit2/WebKitWebInspector.h
86
include/webkitgtk-3.0/webkit2/WebKitWebPage.h
87
include/webkitgtk-3.0/webkit2/WebKitWebResource.h
88
include/webkitgtk-3.0/webkit2/WebKitWebView.h
89
include/webkitgtk-3.0/webkit2/WebKitWebViewBase.h
90
include/webkitgtk-3.0/webkit2/WebKitWebViewGroup.h
91
include/webkitgtk-3.0/webkit2/WebKitWindowProperties.h
92
include/webkitgtk-3.0/webkit2/webkit-web-extension.h
93
include/webkitgtk-3.0/webkit2/webkit2.h
94
include/webkitgtk-3.0/webkitdom/WebKitDOMAttr.h
95
include/webkitgtk-3.0/webkitdom/WebKitDOMAudioTrack.h
96
include/webkitgtk-3.0/webkitdom/WebKitDOMAudioTrackList.h
97
include/webkitgtk-3.0/webkitdom/WebKitDOMBarProp.h
98
include/webkitgtk-3.0/webkitdom/WebKitDOMBatteryManager.h
99
include/webkitgtk-3.0/webkitdom/WebKitDOMBlob.h
100
include/webkitgtk-3.0/webkitdom/WebKitDOMCDATASection.h
101
include/webkitgtk-3.0/webkitdom/WebKitDOMCSSRule.h
102
include/webkitgtk-3.0/webkitdom/WebKitDOMCSSRuleList.h
103
include/webkitgtk-3.0/webkitdom/WebKitDOMCSSStyleDeclaration.h
104
include/webkitgtk-3.0/webkitdom/WebKitDOMCSSStyleSheet.h
105
include/webkitgtk-3.0/webkitdom/WebKitDOMCSSValue.h
106
include/webkitgtk-3.0/webkitdom/WebKitDOMCharacterData.h
107
include/webkitgtk-3.0/webkitdom/WebKitDOMComment.h
108
include/webkitgtk-3.0/webkitdom/WebKitDOMConsole.h
109
include/webkitgtk-3.0/webkitdom/WebKitDOMCustom.h
110
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMApplicationCache.h
111
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMImplementation.h
112
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMMimeType.h
113
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMMimeTypeArray.h
114
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h
115
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMPlugin.h
116
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMPluginArray.h
117
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMSecurityPolicy.h
118
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMSelection.h
119
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMSettableTokenList.h
120
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMStringList.h
121
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMStringMap.h
122
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMTokenList.h
123
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMWindow.h
124
include/webkitgtk-3.0/webkitdom/WebKitDOMDOMWindowCSS.h
125
include/webkitgtk-3.0/webkitdom/WebKitDOMDatabase.h
126
include/webkitgtk-3.0/webkitdom/WebKitDOMDeprecated.h
127
include/webkitgtk-3.0/webkitdom/WebKitDOMDocument.h
128
include/webkitgtk-3.0/webkitdom/WebKitDOMDocumentFragment.h
129
include/webkitgtk-3.0/webkitdom/WebKitDOMDocumentType.h
130
include/webkitgtk-3.0/webkitdom/WebKitDOMElement.h
131
include/webkitgtk-3.0/webkitdom/WebKitDOMEntityReference.h
132
include/webkitgtk-3.0/webkitdom/WebKitDOMEvent.h
133
include/webkitgtk-3.0/webkitdom/WebKitDOMEventTarget.h
134
include/webkitgtk-3.0/webkitdom/WebKitDOMFile.h
135
include/webkitgtk-3.0/webkitdom/WebKitDOMFileList.h
136
include/webkitgtk-3.0/webkitdom/WebKitDOMGamepad.h
137
include/webkitgtk-3.0/webkitdom/WebKitDOMGamepadList.h
138
include/webkitgtk-3.0/webkitdom/WebKitDOMGeolocation.h
139
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAnchorElement.h
140
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAppletElement.h
141
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAreaElement.h
142
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAudioElement.h
143
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBRElement.h
144
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBaseElement.h
145
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBaseFontElement.h
146
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBodyElement.h
147
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLButtonElement.h
148
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLCanvasElement.h
149
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLCollection.h
150
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDListElement.h
151
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDetailsElement.h
152
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDirectoryElement.h
153
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDivElement.h
154
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDocument.h
155
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLElement.h
156
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLEmbedElement.h
157
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFieldSetElement.h
158
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFontElement.h
159
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFormElement.h
160
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFrameElement.h
161
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFrameSetElement.h
162
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHRElement.h
163
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHeadElement.h
164
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHeadingElement.h
165
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHtmlElement.h
166
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLIFrameElement.h
167
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLImageElement.h
168
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLInputElement.h
169
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLKeygenElement.h
170
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLIElement.h
171
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLabelElement.h
172
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLegendElement.h
173
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLinkElement.h
174
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMapElement.h
175
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMarqueeElement.h
176
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMediaElement.h
177
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMenuElement.h
178
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMetaElement.h
179
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLModElement.h
180
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOListElement.h
181
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLObjectElement.h
182
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptGroupElement.h
183
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptionElement.h
184
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptionsCollection.h
185
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLParagraphElement.h
186
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLParamElement.h
187
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLPreElement.h
188
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLQuoteElement.h
189
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLScriptElement.h
190
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLSelectElement.h
191
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLStyleElement.h
192
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h
193
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableCellElement.h
194
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableColElement.h
195
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableElement.h
196
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableRowElement.h
197
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableSectionElement.h
198
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTextAreaElement.h
199
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTitleElement.h
200
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLUListElement.h
201
include/webkitgtk-3.0/webkitdom/WebKitDOMHTMLVideoElement.h
202
include/webkitgtk-3.0/webkitdom/WebKitDOMHistory.h
203
include/webkitgtk-3.0/webkitdom/WebKitDOMKeyboardEvent.h
204
include/webkitgtk-3.0/webkitdom/WebKitDOMLocation.h
205
include/webkitgtk-3.0/webkitdom/WebKitDOMMediaController.h
206
include/webkitgtk-3.0/webkitdom/WebKitDOMMediaError.h
207
include/webkitgtk-3.0/webkitdom/WebKitDOMMediaList.h
208
include/webkitgtk-3.0/webkitdom/WebKitDOMMediaQueryList.h
209
include/webkitgtk-3.0/webkitdom/WebKitDOMMessagePort.h
210
include/webkitgtk-3.0/webkitdom/WebKitDOMMouseEvent.h
211
include/webkitgtk-3.0/webkitdom/WebKitDOMNamedNodeMap.h
212
include/webkitgtk-3.0/webkitdom/WebKitDOMNavigator.h
213
include/webkitgtk-3.0/webkitdom/WebKitDOMNode.h
214
include/webkitgtk-3.0/webkitdom/WebKitDOMNodeFilter.h
215
include/webkitgtk-3.0/webkitdom/WebKitDOMNodeIterator.h
216
include/webkitgtk-3.0/webkitdom/WebKitDOMNodeList.h
217
include/webkitgtk-3.0/webkitdom/WebKitDOMObject.h
218
include/webkitgtk-3.0/webkitdom/WebKitDOMPerformance.h
219
include/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceEntry.h
220
include/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceEntryList.h
221
include/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceNavigation.h
222
include/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceTiming.h
223
include/webkitgtk-3.0/webkitdom/WebKitDOMProcessingInstruction.h
224
include/webkitgtk-3.0/webkitdom/WebKitDOMRange.h
225
include/webkitgtk-3.0/webkitdom/WebKitDOMScreen.h
226
include/webkitgtk-3.0/webkitdom/WebKitDOMShadowRoot.h
227
include/webkitgtk-3.0/webkitdom/WebKitDOMStorage.h
228
include/webkitgtk-3.0/webkitdom/WebKitDOMStorageInfo.h
229
include/webkitgtk-3.0/webkitdom/WebKitDOMStorageQuota.h
230
include/webkitgtk-3.0/webkitdom/WebKitDOMStyleMedia.h
231
include/webkitgtk-3.0/webkitdom/WebKitDOMStyleSheet.h
232
include/webkitgtk-3.0/webkitdom/WebKitDOMStyleSheetList.h
233
include/webkitgtk-3.0/webkitdom/WebKitDOMText.h
234
include/webkitgtk-3.0/webkitdom/WebKitDOMTextTrack.h
235
include/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackCue.h
236
include/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackCueList.h
237
include/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackList.h
238
include/webkitgtk-3.0/webkitdom/WebKitDOMTimeRanges.h
239
include/webkitgtk-3.0/webkitdom/WebKitDOMTouch.h
240
include/webkitgtk-3.0/webkitdom/WebKitDOMTrackEvent.h
241
include/webkitgtk-3.0/webkitdom/WebKitDOMTreeWalker.h
242
include/webkitgtk-3.0/webkitdom/WebKitDOMUIEvent.h
243
include/webkitgtk-3.0/webkitdom/WebKitDOMValidityState.h
244
include/webkitgtk-3.0/webkitdom/WebKitDOMVideoPlaybackQuality.h
245
include/webkitgtk-3.0/webkitdom/WebKitDOMVideoTrack.h
246
include/webkitgtk-3.0/webkitdom/WebKitDOMVideoTrackList.h
247
include/webkitgtk-3.0/webkitdom/WebKitDOMWebKitNamedFlow.h
248
include/webkitgtk-3.0/webkitdom/WebKitDOMWebKitPoint.h
249
include/webkitgtk-3.0/webkitdom/WebKitDOMWheelEvent.h
250
include/webkitgtk-3.0/webkitdom/WebKitDOMXPathExpression.h
251
include/webkitgtk-3.0/webkitdom/WebKitDOMXPathNSResolver.h
252
include/webkitgtk-3.0/webkitdom/WebKitDOMXPathResult.h
253
include/webkitgtk-3.0/webkitdom/webkitdom.h
254
include/webkitgtk-3.0/webkitdom/webkitdomdefines.h
255
lib/girepository-1.0/JavaScriptCore-3.0.typelib
256
lib/girepository-1.0/WebKit-3.0.typelib
257
lib/girepository-1.0/WebKit2-3.0.typelib
258
lib/girepository-1.0/WebKit2WebExtension-3.0.typelib
259
lib/libjavascriptcoregtk-3.0.so
260
lib/libjavascriptcoregtk-3.0.so.0
261
lib/libjavascriptcoregtk-3.0.so.0.16.16
262
lib/libwebkit2gtk-3.0.so
263
lib/libwebkit2gtk-3.0.so.25
264
lib/libwebkit2gtk-3.0.so.25.10.11
265
lib/libwebkitgtk-3.0.so
266
lib/libwebkitgtk-3.0.so.0
267
lib/libwebkitgtk-3.0.so.0.22.14
268
lib/webkit2gtk-3.0/injected-bundle/libwebkit2gtkinjectedbundle.so
269
libdata/pkgconfig/javascriptcoregtk-3.0.pc
270
libdata/pkgconfig/webkit2gtk-3.0.pc
271
libdata/pkgconfig/webkit2gtk-web-extension-3.0.pc
272
libdata/pkgconfig/webkitgtk-3.0.pc
273
libexec/WebKitPluginProcess
274
libexec/WebKitNetworkProcess
275
libexec/WebKitWebProcess
276
share/gir-1.0/JavaScriptCore-3.0.gir
277
share/gir-1.0/WebKit-3.0.gir
278
share/gir-1.0/WebKit2WebExtension-3.0.gir
279
share/gir-1.0/WebKit2-3.0.gir
280
share/gtk-doc/html/webkit2gtk/WebKitAuthenticationRequest.html
281
share/gtk-doc/html/webkit2gtk/WebKitBackForwardList.html
282
share/gtk-doc/html/webkit2gtk/WebKitBackForwardListItem.html
283
share/gtk-doc/html/webkit2gtk/WebKitCertificateInfo.html
284
share/gtk-doc/html/webkit2gtk/WebKitContextMenu.html
285
share/gtk-doc/html/webkit2gtk/WebKitContextMenuItem.html
286
share/gtk-doc/html/webkit2gtk/WebKitCookieManager.html
287
share/gtk-doc/html/webkit2gtk/WebKitDownload.html
288
share/gtk-doc/html/webkit2gtk/WebKitFaviconDatabase.html
289
share/gtk-doc/html/webkit2gtk/WebKitFileChooserRequest.html
290
share/gtk-doc/html/webkit2gtk/WebKitFindController.html
291
share/gtk-doc/html/webkit2gtk/WebKitFrame.html
292
share/gtk-doc/html/webkit2gtk/WebKitFormSubmissionRequest.html
293
share/gtk-doc/html/webkit2gtk/WebKitGeolocationPermissionRequest.html
294
share/gtk-doc/html/webkit2gtk/WebKitHitTestResult.html
295
share/gtk-doc/html/webkit2gtk/WebKitNavigationPolicyDecision.html
296
share/gtk-doc/html/webkit2gtk/WebKitPermissionRequest.html
297
share/gtk-doc/html/webkit2gtk/WebKitPlugin.html
298
share/gtk-doc/html/webkit2gtk/WebKitPolicyDecision.html
299
share/gtk-doc/html/webkit2gtk/WebKitPrintOperation.html
300
share/gtk-doc/html/webkit2gtk/WebKitResponsePolicyDecision.html
301
share/gtk-doc/html/webkit2gtk/WebKitSecurityManager.html
302
share/gtk-doc/html/webkit2gtk/WebKitSettings.html
303
share/gtk-doc/html/webkit2gtk/WebKitScriptWorld.html
304
share/gtk-doc/html/webkit2gtk/WebKitURIRequest.html
305
share/gtk-doc/html/webkit2gtk/WebKitURIResponse.html
306
share/gtk-doc/html/webkit2gtk/WebKitURISchemeRequest.html
307
share/gtk-doc/html/webkit2gtk/WebKitWebContext.html
308
share/gtk-doc/html/webkit2gtk/WebKitWebExtension.html
309
share/gtk-doc/html/webkit2gtk/WebKitWebInspector.html
310
share/gtk-doc/html/webkit2gtk/WebKitWebPage.html
311
share/gtk-doc/html/webkit2gtk/WebKitWebResource.html
312
share/gtk-doc/html/webkit2gtk/WebKitWebView.html
313
share/gtk-doc/html/webkit2gtk/WebKitWebViewGroup.html
314
share/gtk-doc/html/webkit2gtk/WebKitWindowProperties.html
315
share/gtk-doc/html/webkit2gtk/annotation-glossary.html
316
share/gtk-doc/html/webkit2gtk/api-index-2-2.html
317
share/gtk-doc/html/webkit2gtk/api-index-2-4.html
318
share/gtk-doc/html/webkit2gtk/ch01.html
319
share/gtk-doc/html/webkit2gtk/ch02.html
320
share/gtk-doc/html/webkit2gtk/home.png
321
share/gtk-doc/html/webkit2gtk/index-all.html
322
share/gtk-doc/html/webkit2gtk/index.html
323
share/gtk-doc/html/webkit2gtk/index.sgml
324
share/gtk-doc/html/webkit2gtk/left-insensitive.png
325
share/gtk-doc/html/webkit2gtk/left.png
326
share/gtk-doc/html/webkit2gtk/right-insensitive.png
327
share/gtk-doc/html/webkit2gtk/right.png
328
share/gtk-doc/html/webkit2gtk/style.css
329
share/gtk-doc/html/webkit2gtk/up-insensitive.png
330
share/gtk-doc/html/webkit2gtk/up.png
331
share/gtk-doc/html/webkit2gtk/webkit2gtk-WebKitError.html
332
share/gtk-doc/html/webkit2gtk/webkit2gtk-WebKitVersion.html
333
share/gtk-doc/html/webkit2gtk/webkit2gtk.devhelp2
334
share/gtk-doc/html/webkitdomgtk/WebKitDOMAttr.html
335
share/gtk-doc/html/webkitdomgtk/WebKitDOMAudioTrack.html
336
share/gtk-doc/html/webkitdomgtk/WebKitDOMAudioTrackList.html
337
share/gtk-doc/html/webkitdomgtk/WebKitDOMBarProp.html
338
share/gtk-doc/html/webkitdomgtk/WebKitDOMBatteryManager.html
339
share/gtk-doc/html/webkitdomgtk/WebKitDOMBlob.html
340
share/gtk-doc/html/webkitdomgtk/WebKitDOMCDATASection.html
341
share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSRule.html
342
share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSRuleList.html
343
share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSStyleDeclaration.html
344
share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSStyleSheet.html
345
share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSValue.html
346
share/gtk-doc/html/webkitdomgtk/WebKitDOMCharacterData.html
347
share/gtk-doc/html/webkitdomgtk/WebKitDOMComment.html
348
share/gtk-doc/html/webkitdomgtk/WebKitDOMConsole.html
349
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMApplicationCache.html
350
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMImplementation.html
351
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMMimeType.html
352
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMMimeTypeArray.html
353
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMNamedFlowCollection.html
354
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMPlugin.html
355
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMPluginArray.html
356
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSecurityPolicy.html
357
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSelection.html
358
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSettableTokenList.html
359
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMStringList.html
360
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMStringMap.html
361
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMTokenList.html
362
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMWindow.html
363
share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMWindowCSS.html
364
share/gtk-doc/html/webkitdomgtk/WebKitDOMDatabase.html
365
share/gtk-doc/html/webkitdomgtk/WebKitDOMDocument.html
366
share/gtk-doc/html/webkitdomgtk/WebKitDOMDocumentFragment.html
367
share/gtk-doc/html/webkitdomgtk/WebKitDOMDocumentType.html
368
share/gtk-doc/html/webkitdomgtk/WebKitDOMElement.html
369
share/gtk-doc/html/webkitdomgtk/WebKitDOMEntityReference.html
370
share/gtk-doc/html/webkitdomgtk/WebKitDOMEvent.html
371
share/gtk-doc/html/webkitdomgtk/WebKitDOMEventTarget.html
372
share/gtk-doc/html/webkitdomgtk/WebKitDOMFile.html
373
share/gtk-doc/html/webkitdomgtk/WebKitDOMFileList.html
374
share/gtk-doc/html/webkitdomgtk/WebKitDOMGamepad.html
375
share/gtk-doc/html/webkitdomgtk/WebKitDOMGamepadList.html
376
share/gtk-doc/html/webkitdomgtk/WebKitDOMGeolocation.html
377
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAnchorElement.html
378
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAppletElement.html
379
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAreaElement.html
380
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAudioElement.html
381
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBRElement.html
382
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBaseElement.html
383
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBaseFontElement.html
384
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBodyElement.html
385
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLButtonElement.html
386
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLCanvasElement.html
387
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLCollection.html
388
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDListElement.html
389
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDetailsElement.html
390
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDirectoryElement.html
391
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDivElement.html
392
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDocument.html
393
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLElement.html
394
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLEmbedElement.html
395
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFieldSetElement.html
396
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFontElement.html
397
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFormElement.html
398
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFrameElement.html
399
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFrameSetElement.html
400
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHRElement.html
401
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHeadElement.html
402
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHeadingElement.html
403
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHtmlElement.html
404
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLIFrameElement.html
405
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLImageElement.html
406
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLInputElement.html
407
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLKeygenElement.html
408
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLIElement.html
409
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLabelElement.html
410
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLegendElement.html
411
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLinkElement.html
412
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMapElement.html
413
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMarqueeElement.html
414
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMediaElement.html
415
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMenuElement.html
416
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMetaElement.html
417
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLModElement.html
418
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOListElement.html
419
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLObjectElement.html
420
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptGroupElement.html
421
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptionElement.html
422
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptionsCollection.html
423
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLParagraphElement.html
424
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLParamElement.html
425
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLPreElement.html
426
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLQuoteElement.html
427
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLScriptElement.html
428
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLSelectElement.html
429
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLStyleElement.html
430
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableCaptionElement.html
431
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableCellElement.html
432
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableColElement.html
433
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableElement.html
434
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableRowElement.html
435
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableSectionElement.html
436
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTextAreaElement.html
437
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTitleElement.html
438
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLUListElement.html
439
share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLVideoElement.html
440
share/gtk-doc/html/webkitdomgtk/WebKitDOMHistory.html
441
share/gtk-doc/html/webkitdomgtk/WebKitDOMKeyboardEvent.html
442
share/gtk-doc/html/webkitdomgtk/WebKitDOMLocation.html
443
share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaController.html
444
share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaError.html
445
share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaList.html
446
share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaQueryList.html
447
share/gtk-doc/html/webkitdomgtk/WebKitDOMMessagePort.html
448
share/gtk-doc/html/webkitdomgtk/WebKitDOMMouseEvent.html
449
share/gtk-doc/html/webkitdomgtk/WebKitDOMNamedNodeMap.html
450
share/gtk-doc/html/webkitdomgtk/WebKitDOMNavigator.html
451
share/gtk-doc/html/webkitdomgtk/WebKitDOMNode.html
452
share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeFilter.html
453
share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeIterator.html
454
share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeList.html
455
share/gtk-doc/html/webkitdomgtk/WebKitDOMObject.html
456
share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformance.html
457
share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceEntry.html
458
share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceEntryList.html
459
share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceNavigation.html
460
share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceTiming.html
461
share/gtk-doc/html/webkitdomgtk/WebKitDOMProcessingInstruction.html
462
share/gtk-doc/html/webkitdomgtk/WebKitDOMRange.html
463
share/gtk-doc/html/webkitdomgtk/WebKitDOMScreen.html
464
share/gtk-doc/html/webkitdomgtk/WebKitDOMShadowRoot.html
465
share/gtk-doc/html/webkitdomgtk/WebKitDOMStorage.html
466
share/gtk-doc/html/webkitdomgtk/WebKitDOMStorageInfo.html
467
share/gtk-doc/html/webkitdomgtk/WebKitDOMStorageQuota.html
468
share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleMedia.html
469
share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleSheet.html
470
share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleSheetList.html
471
share/gtk-doc/html/webkitdomgtk/WebKitDOMText.html
472
share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrack.html
473
share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackCue.html
474
share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackCueList.html
475
share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackList.html
476
share/gtk-doc/html/webkitdomgtk/WebKitDOMTimeRanges.html
477
share/gtk-doc/html/webkitdomgtk/WebKitDOMTouch.html
478
share/gtk-doc/html/webkitdomgtk/WebKitDOMTrackEvent.html
479
share/gtk-doc/html/webkitdomgtk/WebKitDOMTreeWalker.html
480
share/gtk-doc/html/webkitdomgtk/WebKitDOMUIEvent.html
481
share/gtk-doc/html/webkitdomgtk/WebKitDOMValidityState.html
482
share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoPlaybackQuality.html
483
share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoTrack.html
484
share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoTrackList.html
485
share/gtk-doc/html/webkitdomgtk/WebKitDOMWebKitNamedFlow.html
486
share/gtk-doc/html/webkitdomgtk/WebKitDOMWebKitPoint.html
487
share/gtk-doc/html/webkitdomgtk/WebKitDOMWheelEvent.html
488
share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathExpression.html
489
share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathNSResolver.html
490
share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathResult.html
491
share/gtk-doc/html/webkitdomgtk/annotation-glossary.html
492
share/gtk-doc/html/webkitdomgtk/api-index-deprecated.html
493
share/gtk-doc/html/webkitdomgtk/ch01.html
494
share/gtk-doc/html/webkitdomgtk/home.png
495
share/gtk-doc/html/webkitdomgtk/index-all.html
496
share/gtk-doc/html/webkitdomgtk/index.html
497
share/gtk-doc/html/webkitdomgtk/index.sgml
498
share/gtk-doc/html/webkitdomgtk/left-insensitive.png
499
share/gtk-doc/html/webkitdomgtk/left.png
500
share/gtk-doc/html/webkitdomgtk/right-insensitive.png
501
share/gtk-doc/html/webkitdomgtk/right.png
502
share/gtk-doc/html/webkitdomgtk/style.css
503
share/gtk-doc/html/webkitdomgtk/up-insensitive.png
504
share/gtk-doc/html/webkitdomgtk/up.png
505
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMBarInfo.html
506
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMCustom.html
507
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html
508
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMMemoryInfo.html
509
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMMicroDataItemValue.html
510
share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMPropertyNodeList.html
511
share/gtk-doc/html/webkitdomgtk/webkitdomgtk.devhelp2
512
share/gtk-doc/html/webkitgtk/WebKitFaviconDatabase.html
513
share/gtk-doc/html/webkitgtk/WebKitFileChooserRequest.html
514
share/gtk-doc/html/webkitgtk/WebKitGeolocationPolicyDecision.html
515
share/gtk-doc/html/webkitgtk/WebKitHitTestResult.html
516
share/gtk-doc/html/webkitgtk/WebKitIconDatabase.html
517
share/gtk-doc/html/webkitgtk/WebKitNetworkRequest.html
518
share/gtk-doc/html/webkitgtk/WebKitNetworkResponse.html
519
share/gtk-doc/html/webkitgtk/WebKitSecurityOrigin.html
520
share/gtk-doc/html/webkitgtk/WebKitSoupAuthDialog.html
521
share/gtk-doc/html/webkitgtk/WebKitSpellChecker.html
522
share/gtk-doc/html/webkitgtk/WebKitViewportAttributes.html
523
share/gtk-doc/html/webkitgtk/WebKitWebBackForwardList.html
524
share/gtk-doc/html/webkitgtk/WebKitWebDataSource.html
525
share/gtk-doc/html/webkitgtk/WebKitWebDatabase.html
526
share/gtk-doc/html/webkitgtk/WebKitWebFrame.html
527
share/gtk-doc/html/webkitgtk/WebKitWebHistoryItem.html
528
share/gtk-doc/html/webkitgtk/WebKitWebInspector.html
529
share/gtk-doc/html/webkitgtk/WebKitWebNavigationAction.html
530
share/gtk-doc/html/webkitgtk/WebKitWebPlugin.html
531
share/gtk-doc/html/webkitgtk/WebKitWebPluginDatabase.html
532
share/gtk-doc/html/webkitgtk/WebKitWebPolicyDecision.html
533
share/gtk-doc/html/webkitgtk/WebKitWebResource.html
534
share/gtk-doc/html/webkitgtk/WebKitWebSettings.html
535
share/gtk-doc/html/webkitgtk/WebKitWebWindowFeatures.html
536
share/gtk-doc/html/webkitgtk/annotation-glossary.html
537
share/gtk-doc/html/webkitgtk/ch01.html
538
share/gtk-doc/html/webkitgtk/ch02.html
539
share/gtk-doc/html/webkitgtk/ch03.html
540
share/gtk-doc/html/webkitgtk/home.png
541
share/gtk-doc/html/webkitgtk/index-1.0.1.html
542
share/gtk-doc/html/webkitgtk/index-1.0.2.html
543
share/gtk-doc/html/webkitgtk/index-1.0.3.html
544
share/gtk-doc/html/webkitgtk/index-1.1.1.html
545
share/gtk-doc/html/webkitgtk/index-1.1.10.html
546
share/gtk-doc/html/webkitgtk/index-1.1.11.html
547
share/gtk-doc/html/webkitgtk/index-1.1.13.html
548
share/gtk-doc/html/webkitgtk/index-1.1.14.html
549
share/gtk-doc/html/webkitgtk/index-1.1.15.html
550
share/gtk-doc/html/webkitgtk/index-1.1.16.html
551
share/gtk-doc/html/webkitgtk/index-1.1.17.html
552
share/gtk-doc/html/webkitgtk/index-1.1.18.html
553
share/gtk-doc/html/webkitgtk/index-1.1.2.html
554
share/gtk-doc/html/webkitgtk/index-1.1.20.html
555
share/gtk-doc/html/webkitgtk/index-1.1.23.html
556
share/gtk-doc/html/webkitgtk/index-1.1.3.html
557
share/gtk-doc/html/webkitgtk/index-1.1.4.html
558
share/gtk-doc/html/webkitgtk/index-1.1.5.html
559
share/gtk-doc/html/webkitgtk/index-1.1.6.html
560
share/gtk-doc/html/webkitgtk/index-1.1.7.html
561
share/gtk-doc/html/webkitgtk/index-1.1.8.html
562
share/gtk-doc/html/webkitgtk/index-1.3.1.html
563
share/gtk-doc/html/webkitgtk/index-1.3.2.html
564
share/gtk-doc/html/webkitgtk/index-1.3.3.html
565
share/gtk-doc/html/webkitgtk/index-1.3.4.html
566
share/gtk-doc/html/webkitgtk/index-1.3.8.html
567
share/gtk-doc/html/webkitgtk/index-all.html
568
share/gtk-doc/html/webkitgtk/index-deprecated.html
569
share/gtk-doc/html/webkitgtk/index.html
570
share/gtk-doc/html/webkitgtk/index.sgml
571
share/gtk-doc/html/webkitgtk/left-insensitive.png
572
share/gtk-doc/html/webkitgtk/left.png
573
share/gtk-doc/html/webkitgtk/right-insensitive.png
574
share/gtk-doc/html/webkitgtk/right.png
575
share/gtk-doc/html/webkitgtk/style.css
576
share/gtk-doc/html/webkitgtk/up-insensitive.png
577
share/gtk-doc/html/webkitgtk/up.png
578
share/gtk-doc/html/webkitgtk/webkit-environment.html
579
share/gtk-doc/html/webkitgtk/webkitgtk-Global-functions.html
580
share/gtk-doc/html/webkitgtk/webkitgtk-webkitdownload.html
581
share/gtk-doc/html/webkitgtk/webkitgtk-webkitwebview.html
582
share/gtk-doc/html/webkitgtk/webkitgtk.devhelp2
583
share/locale/ar/LC_MESSAGES/WebKitGTK-3.0.mo
584
share/locale/as/LC_MESSAGES/WebKitGTK-3.0.mo
585
share/locale/bg/LC_MESSAGES/WebKitGTK-3.0.mo
586
share/locale/cs/LC_MESSAGES/WebKitGTK-3.0.mo
587
share/locale/de/LC_MESSAGES/WebKitGTK-3.0.mo
588
share/locale/el/LC_MESSAGES/WebKitGTK-3.0.mo
589
share/locale/en_CA/LC_MESSAGES/WebKitGTK-3.0.mo
590
share/locale/en_GB/LC_MESSAGES/WebKitGTK-3.0.mo
591
share/locale/eo/LC_MESSAGES/WebKitGTK-3.0.mo
592
share/locale/es/LC_MESSAGES/WebKitGTK-3.0.mo
593
share/locale/et/LC_MESSAGES/WebKitGTK-3.0.mo
594
share/locale/eu/LC_MESSAGES/WebKitGTK-3.0.mo
595
share/locale/fr/LC_MESSAGES/WebKitGTK-3.0.mo
596
share/locale/gl/LC_MESSAGES/WebKitGTK-3.0.mo
597
share/locale/gu/LC_MESSAGES/WebKitGTK-3.0.mo
598
share/locale/he/LC_MESSAGES/WebKitGTK-3.0.mo
599
share/locale/hi/LC_MESSAGES/WebKitGTK-3.0.mo
600
share/locale/hu/LC_MESSAGES/WebKitGTK-3.0.mo
601
share/locale/id/LC_MESSAGES/WebKitGTK-3.0.mo
602
share/locale/it/LC_MESSAGES/WebKitGTK-3.0.mo
603
share/locale/kn/LC_MESSAGES/WebKitGTK-3.0.mo
604
share/locale/ko/LC_MESSAGES/WebKitGTK-3.0.mo
605
share/locale/lt/LC_MESSAGES/WebKitGTK-3.0.mo
606
share/locale/lv/LC_MESSAGES/WebKitGTK-3.0.mo
607
share/locale/ml/LC_MESSAGES/WebKitGTK-3.0.mo
608
share/locale/mr/LC_MESSAGES/WebKitGTK-3.0.mo
609
share/locale/nb/LC_MESSAGES/WebKitGTK-3.0.mo
610
share/locale/nl/LC_MESSAGES/WebKitGTK-3.0.mo
611
share/locale/or/LC_MESSAGES/WebKitGTK-3.0.mo
612
share/locale/pa/LC_MESSAGES/WebKitGTK-3.0.mo
613
share/locale/pl/LC_MESSAGES/WebKitGTK-3.0.mo
614
share/locale/pt/LC_MESSAGES/WebKitGTK-3.0.mo
615
share/locale/pt_BR/LC_MESSAGES/WebKitGTK-3.0.mo
616
share/locale/ro/LC_MESSAGES/WebKitGTK-3.0.mo
617
share/locale/ru/LC_MESSAGES/WebKitGTK-3.0.mo
618
share/locale/sl/LC_MESSAGES/WebKitGTK-3.0.mo
619
share/locale/sr/LC_MESSAGES/WebKitGTK-3.0.mo
620
share/locale/sr@latin/LC_MESSAGES/WebKitGTK-3.0.mo
621
share/locale/sv/LC_MESSAGES/WebKitGTK-3.0.mo
622
share/locale/ta/LC_MESSAGES/WebKitGTK-3.0.mo
623
share/locale/te/LC_MESSAGES/WebKitGTK-3.0.mo
624
share/locale/uk/LC_MESSAGES/WebKitGTK-3.0.mo
625
share/locale/vi/LC_MESSAGES/WebKitGTK-3.0.mo
626
share/locale/zh_CN/LC_MESSAGES/WebKitGTK-3.0.mo
627
share/webkitgtk-3.0/images/deleteButton.png
628
share/webkitgtk-3.0/images/inputSpeech.png
629
share/webkitgtk-3.0/images/missingImage.png
630
share/webkitgtk-3.0/images/nullPlugin.png
631
share/webkitgtk-3.0/images/panIcon.png
632
share/webkitgtk-3.0/images/textAreaResizeCorner.png
633
share/webkitgtk-3.0/images/urlIcon.png
634
share/webkitgtk-3.0/resources/audio/Composite.wav
635
share/webkitgtk-3.0/resources/error.html

Return to bug 198526