Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2013 04:39:22 GMT
From:      Joseph Mingrone <jrm@ftfl.ca>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/183646: Update www/xpi-conkeror to conkerror-20131026, add staging, other updates
Message-ID:  <201311040439.rA44dMxG002145@oldred.freebsd.org>
Resent-Message-ID: <201311040440.rA44e0Bi049034@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         183646
>Category:       ports
>Synopsis:       Update www/xpi-conkeror to conkerror-20131026, add staging, other updates
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 04 04:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Joseph Mingrone
>Release:        9.2-STABLE
>Organization:
>Environment:
>Description:
The attached patch was created with svn diff.

files/patch-contrib-man-conkeror.1 is quite extensive, but I've submitted it to the Conkeror project so hopefully it won't be necessary soon.  I've also submitted files/patch-conkeror--spawn--helper.c.

This is my first attempt to convert a port to use staging.  Hopefully what I've done is sensible.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: Makefile
===================================================================
--- Makefile	(revision 332664)
+++ Makefile	(working copy)
@@ -1,51 +1,75 @@
 # Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
 
-PORTNAME=	conkeror
-PORTVERSION=	20090821
-PORTREVISION=	6
-CATEGORIES=	www
-MASTER_SITES=	http://mirror.4bit.ws/ \
-		${MASTER_SITE_LOCAL} \
-		${MASTER_SITE_FREEBSD}
-MASTER_SITE_SUBDIR=	dhn
+PORTNAME=			conkeror
+PORTVERSION=			20131026
+CATEGORIES=			www
+MASTER_SITES=			${MASTER_SITE_LOCAL}
+MASTER_SITE_SUBDIR=		dhn
 
-MAINTAINER=	ashish@FreeBSD.org
-COMMENT=	A completely keyboard driven browser based on firefox
+MAINTAINER=			ashish@FreeBSD.org
+COMMENT=			Keyboard-oriented, customizable web browser based on Mozilla XULRunner
 
-WRKSRC=	${WRKDIR}/conkeror
-USE_GECKO=	libxul
+LICENSE=			GPLv1 GPLv2 MPL
+LICENSE_COMB=			multi
 
-BUILD_ID=echo -n `whoami`@`hostname`_`date +%s`
+USE_XZ=				yes
 
-NO_STAGE=	yes
+OPTIONS_SINGLE+=		XULRUNNER
+OPTIONS_SINGLE_XULRUNNER=	FIREFOX LIBXUL
+FIREFOX_DESC?=			Use XULRunner from Firefox port
+LIBXUL_DESC?=			Use XULRunner from LibXUL port
+OPTIONS_DEFAULT+=		LIBXUL
+
+WRKSRC=				${WRKDIR}/conkeror
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MLIBXUL}
+USE_GECKO=libxul
+.else
+USE_FIREFOX=25
+.endif
+
+USES=				desktop-file-utils
+
+BUILD_ID=			@{ECHO_CMD} -n `whoami`@`hostname`_`date +%s`
+
 post-patch:
 	cd ${WRKSRC} && \
-		${REINPLACE_CMD} -e "s/%%PREFIX%%/${PREFIX:S/\//\\\//g}/g" \
-			${WRKSRC}/conkeror && \
 		${MV} debian/conkeror.desktop . && \
-		${RM} -rf debian tests && \
+		${MV} contrib/man/conkeror.1 . && \
+		${RM} -rf contrib/debian contrib/man debian tests && \
+		${RM} -f contrib/build.sh contrib/install.sh contrib/mketags.sh \
+			contrib/testrun.sh contrib/run-conkeror && \
 		${MKDIR} share  && \
 		${MV} branding chrome components content \
-			contrib defaults locale modules search-engines help style share
+			contrib defaults locale modules search-engines help \
+			style share && \
+		${MV} COPYING CREDITS Info.plist chrome.manifest \
+			content-policy.manifest share
+.if ${PORT_OPTIONS:MFIREFOX}
+	${REINPLACE_CMD} -e "s/xulrunner/firefox/g" ${WRKSRC}/conkeror
+	${REINPLACE_CMD} -e "s/XULRUNNER/FIREFOX/g" ${WRKSRC}/conkeror
+	${REINPLACE_CMD} -e 's/exec $${FIREFOX}/exec $${FIREFOX} -app/' ${WRKSRC}/conkeror
+.endif
 
 do-build:
 	${MAKE} -C ${WRKSRC}
 
 do-install:
-	${MKDIR} ${PREFIX}/libexec/conkeror
-	${MKDIR} ${DESKTOPDIR}
-	cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${DATADIR}
+	${MKDIR} ${STAGEDIR}${PREFIX}/libexec/conkeror
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	${MKDIR} ${STAGEDIR}${DESKTOPDIR}
+	cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
 	${SED} -e "s/BuildID=git/BuildID=$$(${BUILD_ID})/g" \
 		-e "s/^Version=\(.*\)$$/Version=\1 (FreeBSD-${OSREL})/g" \
-		<${WRKSRC}/application.ini >${DATADIR}/application.ini
-	${REINPLACE_CMD} -e "s/\\\$$CONKEROR_VERSION\\$$/`${GREP} \
-		'^Version=' ${WRKSRC}/application.ini |${SED} \
-		-e 's/^Version=//'` (FreeBSD-${OSREL})/g" ${DATADIR}/components/application.js
-	${INSTALL_SCRIPT} ${WRKSRC}/conkeror ${PREFIX}/bin/
-	${INSTALL_DATA} ${WRKSRC}/conkeror.desktop ${DESKTOPDIR}
-	${INSTALL_PROGRAM} ${WRKSRC}/conkeror-spawn-helper ${PREFIX}/libexec/conkeror/
-	${LN} -sf ${PREFIX}/libexec/conkeror/conkeror-spawn-helper ${DATADIR}/
+		<${WRKSRC}/application.ini >${STAGEDIR}${DATADIR}/application.ini
+	${INSTALL_SCRIPT} ${WRKSRC}/conkeror ${STAGEDIR}${PREFIX}/bin/
+	${INSTALL_DATA} ${WRKSRC}/conkeror.desktop ${STAGEDIR}${DESKTOPDIR}
+	${INSTALL_PROGRAM} ${WRKSRC}/conkeror-spawn-helper ${STAGEDIR}${PREFIX}/libexec/conkeror/
+	${LN} -sf ${PREFIX}/libexec/conkeror/conkeror-spawn-helper ${STAGEDIR}${DATADIR}/
+	${INSTALL_MAN} ${WRKSRC}/conkeror.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
 
 post-install:
 	@-update-desktop-database
Index: distinfo
===================================================================
--- distinfo	(revision 332664)
+++ distinfo	(working copy)
@@ -1,2 +1,2 @@
-SHA256 (conkeror-20090821.tar.gz) = a6e5a66ee2f8997e2d4ea769a2d6df0226e8f4c726f20535b45bc75b0098feb9
-SIZE (conkeror-20090821.tar.gz) = 238630
+SHA256 (conkeror-20131026.tar.xz) = 4fe6e77fe3145761c2dfcd3011e85ecae2d0cba25aa0529194cefb73d6dbeffb
+SIZE (conkeror-20131026.tar.xz) = 236768
Index: files/chrome.manifest
===================================================================
--- files/chrome.manifest	(revision 332664)
+++ files/chrome.manifest	(working copy)
@@ -1,2 +0,0 @@
-
-content	conkeror	jar:chrome/conkeror.jar!/conkeror/content/
Index: files/patch-conkeror
===================================================================
--- files/patch-conkeror	(revision 332664)
+++ files/patch-conkeror	(working copy)
@@ -13,6 +13,6 @@
 +elif [ ! -x "${XULRUNNER}" ]; then
 +	echo ${XULRUNNER} is not executable.
 +else
-+	exec ${XULRUNNER} /usr/local/share/conkeror/application.ini
++	exec ${XULRUNNER} /usr/local/share/conkeror/application.ini "$@"
 +fi
 +
Index: files/patch-conkeror--spawn--helper.c
===================================================================
--- files/patch-conkeror--spawn--helper.c	(revision 0)
+++ files/patch-conkeror--spawn--helper.c	(working copy)
@@ -0,0 +1,10 @@
+--- conkeror/conkeror-spawn-helper.c.orig   2013-08-16 13:08:22.000000000 -0300
++++ conkeror-spawn-helper.c   2013-11-03 22:48:41.000000000 -0400
+@@ -5,6 +5,7 @@
+  * COPYING file.
+  **/
+ 
++#include <arpa/inet.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
+ #include <unistd.h>

Property changes on: files/patch-conkeror--spawn--helper.c
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: files/patch-contrib-man-conkeror.1
===================================================================
--- files/patch-contrib-man-conkeror.1	(revision 0)
+++ files/patch-contrib-man-conkeror.1	(working copy)
@@ -0,0 +1,274 @@
+--- contrib/man/conkeror.1.orig	2013-08-16 13:08:22.000000000 -0300
++++ contrib/man/conkeror.1 2013-11-03 21:24:47.000000000 -0400
+@@ -1,177 +1,96 @@
+-.\" -*- nroff -*-
+-.TH CONKEROR 1 "June 4, 2008"
+-.SH NAME
+-conkeror \(hy a web browser modeled after Emacs
+-.SH SYNOPSIS
+-.B conkeror
+-.RI [ options ]
+-.RI [ url ]
+-.RI ...
+-.SH DESCRIPTION
+-This manual page documents briefly
+-.B conkeror
+-.PP
+-\fBconkeror\fP is a web browser based on xulrunner, the Mozilla
+-application framework that also powers Mozilla Firefox. It can be
+-controlled completely with the keyboard. The key bindings are very
+-similar to those from Emacs, so Emacs users should immediately feel at
+-home.
+-.SH OPTIONS
+-This program has the same options as all other xulrunner applications.
+-A summary of more important options is included below. All options are
+-listed by calling \fBconkeror \-\-help\fP.
+-.TP
+-.B \-\-display=DISPLAY
++.\" This man page was created following the guidelines in GROFF_MDOC(7).
++.Dd $Mdocdate: Novermber 3, 2013 $
++.Dt CONKEROR 1
++.Os
++.Sh NAME
++.Nm Conkeror
++.Nd a keyboard-oriented, highly-customizable web browser
++.Sh SYNOPSIS
++.Nm conkeror
++.Op Ar options ...
++.Op Ar url
++.Sh DESCRIPTION
++.Nm
++is a keyboard-oriented, highly-customizable, highly-extensible web browser based
++on Mozilla XULRunner, written mainly in JavaScript, and inspired by Emacs and
++vi. 
++.Nm
++features a sophisticated keyboard system, allowing users to run
++commands and interact with content in powerful and novel ways. It is
++self-documenting, featuring a powerful interactive help system.
++.Pp
++The primary documentation is the inline manual.  To read the manual use the key
++combination C-h i (CTRL-h i).  The manual includes a tutorial for new users that
++can be accessed directly with C-h t (CTRL-h t).  The
++.Nm
++wiki, found at
++http://conkeror.org, is another resource.
++.Sh OPTIONS
++.Nm
++has the same options as all other XULRunner applications plus a few more.
++.Pp
++X11 options
++.Bl -tag -width indent
++.It \fB--display=DISPLAY\fR
+ X display to use
+-.TP
+-.B \-h, \-\-help
+-Show summary of options.
+-.TP
+-.B \-jsconsole
+-Open the Error console.
+-.TP
+-.B \-no\-remote
+-Open new instance, not a new window in running instance.
+-.TP
+-.B \-P <profile>
+-Start with profile <profile>
+-.TP
+-.B \-ProfileManager
+-Start with ProfileManager.
+-.TP
+-.B \-safe\-mode
+-Disables extensions and themes for this session.
+-.TP
+-.B \-UILocale <locale>
+-Start with <locale> resources as UI Locale.
+-.TP
+-.B \-v, \-\-version
+-Show version of program.
+-.SH CONCEPTS
+-Similar to Emacs Conkeror works with windows and buffers instead of
+-windows and tabs.
+-.PP
+-When changing buffers with \fBC\(hyx b\fP or killing buffers with \fBC\(hyx
+-k\fP, you can cut down the list of buffers by typing a few characters
+-which filters the list for buffers which match these characters and
+-then choosing them from the matching list of buffers with cursor keys.
+-.PP
+-The same idea is present with bookmarks: Bookmarks are looked up by
+-pressing \fBg\fP to go to a new page and then start typing parts of the
+-bookmarks title or URL.
+-.SH TIPS AND TRICKS
+-If you want to bookmark a page with \fBb\fP and the page has frames or
+-inline frames (e.g. advertisements) you will be asked which frame to
+-bookmark. If you want to bookmark the whole page with all frames,
+-press \fB0\fP.
+-.PP
+-If you want to copy the link of the current page, press \fBc\fP for
+-copy link and then type \fB0\fP for the current page instead of a link
+-on this page.
+-.PP
+-Instead of typing the link number when following or copying a link,
+-you can also type a part of the linked text. If don't type a number
+-and one links is already active (e.g. after going back one page in the
+-history) that link will be selected.
+-.SH KEYBINDINGS
+-.PP
+-When you start it up initially you see the help page with all
+-information and a tutorial on how to use Conkeror. You always come
+-back there by typing \fBC\(hyh i\fP which means pressing and holding the
+-Control key (on PCs this often is the Alt key) and then pressing
+-"i". The tutorial can be reached by pressing \fBC\(hyh t\fP.
+-.PP
+-This is a short list of the most important key bindings:
+-.TP
+-.B [[
+-Go to previous page (Backward) in site navigation (if present)
+-.TP
+-.B ]]
+-Go to next page (Forward) in site navigation (if present)
+-.TP
+-.B b
+-Bookmark page
+-.TP
+-.B B
+-Go to previous page (Backward) in page history
+-.TP
+-.B c
+-Copy a link to clipboard
+-.TP
+-.B f
+-Follow a link
+-.TP
+-.B C\(hyu f
+-Follow a link and open it in a new window
+-.TP
+-.B F
+-Go to next page (Forward) in page history
+-.TP
+-.B g
+-Go to another URL
+-.TP
+-.B r
+-Reload page
+-.TP
+-.B M\(hyn
+-Change to next buffer
+-.TP
+-.B M\(hyp
+-Change to previous buffer
+-.TP
+-.B C\(hyg
+-Stop (loading a the page, incremental search, etc.)
+-.TP
+-.B C\(hyr
+-Incremental search backward
+-.TP
+-.B C\(hys
+-Incremental search forward
+-.TP
+-.B C\(hyw
+-Cut
+-.TP
+-.B C\(hyy
+-Paste
+-.TP
+-.B C\(hyx b
+-Change buffer
+-.TP
+-.B C\(hyx k
+-Kill (close) buffer
+-.TP
+-.B C\(hyx C\(hyc
+-Exit the program
+-.TP
+-.B C\(hyx C\(hyf
+-Open an URL in a new buffer.
+-.TP
+-.B C\(hyx C\(hyv
+-Open an URL in the current buffer by editing the current URL.
+-.SH KNOWN BUGS
+-conkeror (respectively xulrunner) sometimes hangs at \-\-help (and
+-possibly other situations) if \fI/dev/random\fP does not provide
+-enough entropy.
+-
+-conkeror doesn't give feedback if a spawned external process crashes
+-or exits unsuccessfully.
+-.SH FILES
+-The default location of Conkeror's user configuration file is
+-\fI$HOME/.conkerorrc\fP.
+-
+-This can be changed by setting the preference
+-\fBconkeror.rcfile\fP. The rc can be an ordinary file or a
+-directory. If it is an ordinary file, Conkeror will evaluate that file
+-as javascript. If it is a directory, Conkeror will evaluate all files
+-in that directory that have the \fI.js\fP file extension.
+-
+-See \fIhttp://conkeror.org/ConkerorRC\fP for the details.
+-.SH SEE ALSO
+-\fBxulrunner\-1.9(1)\fP, the Conkeror wiki at \fIhttp://conkeror.org/\fP
+-.SH AUTHOR
+-Conkeror was written by Shawn Betts, John J. Foerch, Jeremy
+-Maitin-Shepard and other. See \fI/usr/share/doc/conkeror/CREDITS\fP
++.It \fB--sync\fR
++Make X calls synchronous
++.It \fB--g-fatal-warnings\fR
++Make all warnings fatal
++.El
++.Bl -tag -width indent
++.Pp
++.Nm
++options
++.It \fB-h\fR or \fB-help\fR
++Print this message
++.It \fB-v\fR or \fB-version\fR
++Print conkeror version
++.It \fB-P <profile>\fR
++Start with <profile>
++.It \fB-migration\fR
++Start with migration wizard
++.It \fB-ProfileManager\fR
++Start with ProfileManager
++.It \fB-no-remote\fR
++Do not accept or send remote commands; implies -new-instance
++.It \fB-new-instance\fR
++Open new instance, not a new window in running instance
++.It \fB-UILocale <locale>\fR
++Start with <locale> resources as UI Locale
++.It \fB-safe-mode\fR
++Disables extensions and themes for this session
++.It \fB-jsconsole\fR
++Open the Error console
++.It \fB-recording <file>\fR
++Record drawing for a given URL
++.It \fB-recording-output <file>\fR
++Specify destination file for a drawing recording
++.El
++.Sh KNOWN BUGS
++See http://bugs.conkeror.org/.
++.Sh FILES
++The default location of the user configuration file is \fI$HOME/.conkerorrc\fP.
++.Pp
++This can be changed by setting the preference \fBconkeror.rcfile\fP. The rc can
++be an ordinary file or a directory. If it is an ordinary file,
++.Nm
++will evaluate that file as javascript. If it is a directory,
++.Nm
++will evaluate all files in that directory that have the \fI.js\fP file
++extension.  See \fIhttp://conkeror.org/ConkerorRC\fP for the details.
++.Sh SEE ALSO
++The
++.Nm
++manual (C-h i), tutorial (C-h t) and wiki (http://conkeror.org).
++.Sh AUTHORS
++.Nm
++was written by Shawn Betts, John J. Foerch, Jeremy Maitin-Shepard and
++others. See the \fBCREDITS\fP file included with
++.Nm
+ for a full list of contributors.
+-.PP
+-This manual page was written by Axel Beckert <abe@deuxchevaux.org>,
+-for the Debian project (but may be used by others).
++.Pp
++The
++.Nm
++manual page was originally written by Axel Beckert <abe@deuxchevaux.org>
++and updated by Joseph Mingrone <jrm@ftfl.ca>.

Property changes on: files/patch-contrib-man-conkeror.1
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: pkg-descr
===================================================================
--- pkg-descr	(revision 332664)
+++ pkg-descr	(working copy)
@@ -1,8 +1,8 @@
-Conkeror is a mozilla based web browser designed to be
-completely keyboard driven, no compromises. It also
-strives to behave as much like Emacs as possible. This
-means all the keybindings and to-die-for features of
-Emacs that can be imitated by a javascript/XUL web
-browser Just Work.
+Conkeror is a keyboard-oriented, highly-customizable, highly-extensible web
+browser based on Mozilla XULRunner, written mainly in JavaScript, and inspired
+by exceptional software such as Emacs and vi. Conkeror features a sophisticated
+keyboard system, allowing users to run commands and interact with content in
+powerful and novel ways. It is self-documenting, featuring a powerful
+interactive help system.
 
 WWW: http://conkeror.org/
Index: pkg-plist
===================================================================
--- pkg-plist	(revision 332664)
+++ pkg-plist	(working copy)
@@ -1,32 +1,42 @@
 bin/conkeror
 libexec/conkeror/conkeror-spawn-helper
+man/man1/conkeror.1.gz
 share/applications/conkeror.desktop
+%%DATADIR%%/COPYING
+%%DATADIR%%/CREDITS
+%%DATADIR%%/Info.plist
+%%DATADIR%%/chrome.manifest
+%%DATADIR%%/content-policy.manifest
 %%DATADIR%%/application.ini
 %%DATADIR%%/branding/brand.dtd
 %%DATADIR%%/branding/brand.properties
+%%DATADIR%%/branding/content/about.png
 %%DATADIR%%/chrome/chrome.manifest
 %%DATADIR%%/components/.autoreg
 %%DATADIR%%/components/application.js
-%%DATADIR%%/components/application.js.bak
-%%DATADIR%%/components/commandline.js
+%%DATADIR%%/components/command-line.js
+%%DATADIR%%/components/content-policy.js
 %%DATADIR%%/components/download_helper.js
 %%DATADIR%%/components/download_manager_ui.js
 %%DATADIR%%/conkeror-spawn-helper
+%%DATADIR%%/content/annotated-textbox.xml
 %%DATADIR%%/content/blank.html
 %%DATADIR%%/content/conkeror.xul
 %%DATADIR%%/content/downloads.css
 %%DATADIR%%/content/help.css
 %%DATADIR%%/content/hints.css
-%%DATADIR%%/contrib/build.sh
-%%DATADIR%%/contrib/debian/nightlybuild.sh
-%%DATADIR%%/contrib/debian/update.sh
-%%DATADIR%%/contrib/install.sh
-%%DATADIR%%/contrib/man/conkeror.1
-%%DATADIR%%/contrib/mketags.sh
-%%DATADIR%%/contrib/run-conkeror
-%%DATADIR%%/contrib/testrun.sh
+%%DATADIR%%/content/minibuffer-annotation.css
+%%DATADIR%%/content/minibuffer.css
+%%DATADIR%%/content/minibuffer.xul
+%%DATADIR%%/contrib/art/conker.svg
+%%DATADIR%%/contrib/art/nut.svg
+%%DATADIR%%/contrib/art/outline.svg
+%%DATADIR%%/contrib/config/common.js
+%%DATADIR%%/contrib/list-xulrunner-versions
+%%DATADIR%%/contrib/modules/mode-line-buttons.js
 %%DATADIR%%/contrib/xrev/application.ini
 %%DATADIR%%/contrib/xrev/chrome/chrome.manifest
+%%DATADIR%%/contrib/xrev/chrome.manifest
 %%DATADIR%%/contrib/xrev/content/main.xul
 %%DATADIR%%/contrib/xrev/content/xrev.js
 %%DATADIR%%/contrib/xrev/defaults/preferences/prefs.js
@@ -33,6 +43,7 @@
 %%DATADIR%%/defaults/preferences/debug.js
 %%DATADIR%%/defaults/preferences/default-modules.js
 %%DATADIR%%/defaults/preferences/download-manager.js
+%%DATADIR%%/defaults/preferences/gui.js
 %%DATADIR%%/defaults/preferences/history-frecency.js
 %%DATADIR%%/defaults/preferences/javascript-restrictions.js
 %%DATADIR%%/defaults/preferences/prefs.js
@@ -42,17 +53,20 @@
 %%DATADIR%%/help/manual.css
 %%DATADIR%%/help/tutorial.html
 %%DATADIR%%/locale/en-US/gui_context_menu.properties
-%%DATADIR%%/locale/en-US/netError.dtd
+%%DATADIR%%/locale/en-US/netErrorApp.dtd
 %%DATADIR%%/locale/sv-SE/gui_context_menu.properties
-%%DATADIR%%/locale/sv-SE/netError.dtd
+%%DATADIR%%/locale/sv-SE/netErrorApp.dtd
+%%DATADIR%%/modules/array.js
 %%DATADIR%%/modules/bindings/default/basic-commands.js
 %%DATADIR%%/modules/bindings/default/bindings.js
-%%DATADIR%%/modules/bindings/default/content-buffer/caret.js
+%%DATADIR%%/modules/bindings/default/caret.js
+%%DATADIR%%/modules/bindings/default/content-buffer/anchor.js
+%%DATADIR%%/modules/bindings/default/content-buffer/button.js
 %%DATADIR%%/modules/bindings/default/content-buffer/checkbox.js
 %%DATADIR%%/modules/bindings/default/content-buffer/element.js
+%%DATADIR%%/modules/bindings/default/content-buffer/embed.js
 %%DATADIR%%/modules/bindings/default/content-buffer/form.js
 %%DATADIR%%/modules/bindings/default/content-buffer/normal.js
-%%DATADIR%%/modules/bindings/default/content-buffer/quote.js
 %%DATADIR%%/modules/bindings/default/content-buffer/richedit.js
 %%DATADIR%%/modules/bindings/default/content-buffer/select.js
 %%DATADIR%%/modules/bindings/default/content-buffer/text.js
@@ -59,46 +73,63 @@
 %%DATADIR%%/modules/bindings/default/content-buffer/textarea.js
 %%DATADIR%%/modules/bindings/default/content-buffer/zoom.js
 %%DATADIR%%/modules/bindings/default/download-buffer.js
+%%DATADIR%%/modules/bindings/default/formfill.js
 %%DATADIR%%/modules/bindings/default/global.js
 %%DATADIR%%/modules/bindings/default/help-buffer.js
 %%DATADIR%%/modules/bindings/default/hints.js
 %%DATADIR%%/modules/bindings/default/isearch.js
 %%DATADIR%%/modules/bindings/default/minibuffer.js
-%%DATADIR%%/modules/bindings/default/universal_argument.js
+%%DATADIR%%/modules/bindings/default/quote.js
+%%DATADIR%%/modules/bindings/default/special-buffer.js
+%%DATADIR%%/modules/bindings/default/text.js
+%%DATADIR%%/modules/bindings/default/universal-argument.js
+%%DATADIR%%/modules/block-content-focus-change.js
 %%DATADIR%%/modules/buffer.js
+%%DATADIR%%/modules/builtin-commands.js
 %%DATADIR%%/modules/cache.js
+%%DATADIR%%/modules/caret.js
+%%DATADIR%%/modules/casual-spelling.jsx
 %%DATADIR%%/modules/clicks-in-new-buffer.js
+%%DATADIR%%/modules/client-redirect.jsx
 %%DATADIR%%/modules/command-line.js
 %%DATADIR%%/modules/commands.js
 %%DATADIR%%/modules/conkeror.js
 %%DATADIR%%/modules/content-buffer-input.js
 %%DATADIR%%/modules/content-buffer.js
+%%DATADIR%%/modules/content-handler.js
+%%DATADIR%%/modules/content-policy.js
 %%DATADIR%%/modules/cookie.js
 %%DATADIR%%/modules/coroutine.js
 %%DATADIR%%/modules/daemon.js
 %%DATADIR%%/modules/debug.js
+%%DATADIR%%/modules/dom.js
 %%DATADIR%%/modules/download-manager.js
 %%DATADIR%%/modules/element.js
+%%DATADIR%%/modules/env.js
 %%DATADIR%%/modules/extensions/adblockplus.js
 %%DATADIR%%/modules/extensions/dom-inspector.js
 %%DATADIR%%/modules/extensions/noscript.js
+%%DATADIR%%/modules/extensions/venkman.js
 %%DATADIR%%/modules/external-editor.js
 %%DATADIR%%/modules/eye-guide.js
 %%DATADIR%%/modules/favicon.js
-%%DATADIR%%/modules/find.js
 %%DATADIR%%/modules/follow-relationship.js
-%%DATADIR%%/modules/gitweb-webjump.js
+%%DATADIR%%/modules/formfill.js
 %%DATADIR%%/modules/global-overlay-keymap.js
 %%DATADIR%%/modules/help.js
 %%DATADIR%%/modules/hints.js
 %%DATADIR%%/modules/history.js
 %%DATADIR%%/modules/hook.js
+%%DATADIR%%/modules/index-webjump.js
+%%DATADIR%%/modules/input.js
 %%DATADIR%%/modules/interactive.js
 %%DATADIR%%/modules/io.js
-%%DATADIR%%/modules/keyboard.js
+%%DATADIR%%/modules/isearch.js
+%%DATADIR%%/modules/keymap.js
 %%DATADIR%%/modules/keywords.js
 %%DATADIR%%/modules/labels.js
 %%DATADIR%%/modules/load-spec.js
+%%DATADIR%%/modules/login.js
 %%DATADIR%%/modules/media.js
 %%DATADIR%%/modules/mime-type-override.js
 %%DATADIR%%/modules/mime.js
@@ -111,58 +142,87 @@
 %%DATADIR%%/modules/mode-line.js
 %%DATADIR%%/modules/mode.js
 %%DATADIR%%/modules/new-tabs.js
+%%DATADIR%%/modules/opensearch.js
 %%DATADIR%%/modules/page-modes/dailymotion.js
+%%DATADIR%%/modules/page-modes/duckduckgo.js
+%%DATADIR%%/modules/page-modes/facebook.js
+%%DATADIR%%/modules/page-modes/github.js
 %%DATADIR%%/modules/page-modes/gmail.js
 %%DATADIR%%/modules/page-modes/gmane.js
 %%DATADIR%%/modules/page-modes/google-calendar.js
+%%DATADIR%%/modules/page-modes/google-gqueues.js
 %%DATADIR%%/modules/page-modes/google-images.js
 %%DATADIR%%/modules/page-modes/google-maps.js
 %%DATADIR%%/modules/page-modes/google-reader.js
 %%DATADIR%%/modules/page-modes/google-search-results.js
 %%DATADIR%%/modules/page-modes/google-video.js
+%%DATADIR%%/modules/page-modes/google-voice.js
+%%DATADIR%%/modules/page-modes/grooveshark.js
+%%DATADIR%%/modules/page-modes/key-kill.js
+%%DATADIR%%/modules/page-modes/newsblur.js
 %%DATADIR%%/modules/page-modes/reddit.js
-%%DATADIR%%/modules/page-modes/wikipedia-mode.js
+%%DATADIR%%/modules/page-modes/smbc.js
+%%DATADIR%%/modules/page-modes/stackexchange.js
+%%DATADIR%%/modules/page-modes/twitter.js
+%%DATADIR%%/modules/page-modes/wikipedia.js
 %%DATADIR%%/modules/page-modes/xkcd.js
-%%DATADIR%%/modules/page-modes/youporn.js
+%%DATADIR%%/modules/page-modes/youtube-player.js
 %%DATADIR%%/modules/page-modes/youtube.js
 %%DATADIR%%/modules/permission-manager.js
+%%DATADIR%%/modules/pref.js
+%%DATADIR%%/modules/pretty-print.js
+%%DATADIR%%/modules/quote.js
 %%DATADIR%%/modules/rc.js
 %%DATADIR%%/modules/save.js
 %%DATADIR%%/modules/scroll.js
-%%DATADIR%%/modules/search-engine.js
 %%DATADIR%%/modules/selectively-unstyle.js
+%%DATADIR%%/modules/services.js
 %%DATADIR%%/modules/session.js
+%%DATADIR%%/modules/source-code.js
 %%DATADIR%%/modules/spawn-process.js
 %%DATADIR%%/modules/special-buffer.js
 %%DATADIR%%/modules/ssl.js
+%%DATADIR%%/modules/string.js
+%%DATADIR%%/modules/stylesheet.js
 %%DATADIR%%/modules/suggest-file-name.js
 %%DATADIR%%/modules/tab-bar.js
+%%DATADIR%%/modules/text.js
 %%DATADIR%%/modules/theme.js
 %%DATADIR%%/modules/timer.js
 %%DATADIR%%/modules/universal-argument.js
+%%DATADIR%%/modules/user-agent.js
+%%DATADIR%%/modules/user-variable.js
 %%DATADIR%%/modules/utils.js
 %%DATADIR%%/modules/walnut.js
 %%DATADIR%%/modules/webjump.js
-%%DATADIR%%/modules/wikipedia-didyoumean.js
 %%DATADIR%%/modules/window.js
 %%DATADIR%%/modules/zoom.js
 %%DATADIR%%/search-engines/answers.xml
 %%DATADIR%%/search-engines/creativecommons.xml
+%%DATADIR%%/search-engines/duckduckgo.xml
 %%DATADIR%%/search-engines/eBay.xml
 %%DATADIR%%/search-engines/google.xml
 %%DATADIR%%/search-engines/mozilla-bugzilla.xml
 %%DATADIR%%/search-engines/wikipedia.xml
+%%DATADIR%%/search-engines/wiktionary.xml
 %%DATADIR%%/search-engines/yahoo.xml
 %%DATADIR%%/style/default/content-buffer-input.css
 %%DATADIR%%/style/default/eye-guide.css
-%%DATADIR%%/style/default/hints--url-panel.css
 %%DATADIR%%/style/default/minibuffer.css
 %%DATADIR%%/style/default/mode-line.css
 %%DATADIR%%/style/default/new-tabs.css
 %%DATADIR%%/style/default/tab-bar.css
 %%DATADIR%%/style/default/theme.json
-%%DATADIR%%/style/window.css
+%%DATADIR%%/style/default/window--panel.css
+%%DATADIR%%/style/gesso/mode-line--gesso.css
+%%DATADIR%%/style/gesso/new-tabs--gesso.css
+%%DATADIR%%/style/gesso/tab-bar--gesso.css
+%%DATADIR%%/style/gesso/theme.json
+%%DATADIR%%/style/mono/conkeror--mono.css
+%%DATADIR%%/style/mono/theme.json
 @dirrm %%DATADIR%%/style/default
+@dirrm %%DATADIR%%/style/gesso
+@dirrm %%DATADIR%%/style/mono
 @dirrm %%DATADIR%%/style
 @dirrm %%DATADIR%%/search-engines
 @dirrm %%DATADIR%%/modules/page-modes
@@ -177,17 +237,19 @@
 @dirrm %%DATADIR%%/help
 @dirrm %%DATADIR%%/defaults/preferences
 @dirrm %%DATADIR%%/defaults
+@dirrm %%DATADIR%%/contrib/art
+@dirrm %%DATADIR%%/contrib/config
+@dirrm %%DATADIR%%/contrib/modules
 @dirrm %%DATADIR%%/contrib/xrev/defaults/preferences
 @dirrm %%DATADIR%%/contrib/xrev/defaults
 @dirrm %%DATADIR%%/contrib/xrev/content
 @dirrm %%DATADIR%%/contrib/xrev/chrome
 @dirrm %%DATADIR%%/contrib/xrev
-@dirrm %%DATADIR%%/contrib/man
-@dirrm %%DATADIR%%/contrib/debian
 @dirrm %%DATADIR%%/contrib
 @dirrm %%DATADIR%%/content
 @dirrm %%DATADIR%%/components
 @dirrm %%DATADIR%%/chrome
+@dirrm %%DATADIR%%/branding/content
 @dirrm %%DATADIR%%/branding
 @dirrm %%DATADIR%%
 @dirrm libexec/conkeror


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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311040439.rA44dMxG002145>