diff -Nru xpdf-3.02/debian/changelog xpdf-3.02/debian/changelog --- xpdf-3.02/debian/changelog 2010-08-21 00:04:51.000000000 -0400 +++ xpdf-3.02/debian/changelog 2010-09-05 21:39:32.000000000 -0400 @@ -1,3 +1,12 @@ +xpdf (3.02-11) unstable; urgency=medium + + * Apply arrow key bindings only in the fullscreen context + (closes: #595547, #595075). + * Also remove xpdf-reader dangling symlink (closes: #595076). + * Fix Vcs-Git field. + + -- Michael Gilbert Sun, 05 Sep 2010 17:57:28 -0400 + xpdf (3.02-10) unstable; urgency=low [Michael Gilbert] diff -Nru xpdf-3.02/debian/control xpdf-3.02/debian/control --- xpdf-3.02/debian/control 2010-08-21 00:04:51.000000000 -0400 +++ xpdf-3.02/debian/control 2010-09-05 21:38:49.000000000 -0400 @@ -12,7 +12,7 @@ libpoppler-dev (>= 0.12.4) Homepage: http://www.foolabs.com/xpdf/ Vcs-Browser: http://git.debian.org/?p=collab-maint/xpdf.git -Vcs-Git: git://git.debian.org/collab-maint/xpdf.git +Vcs-Git: git://git.debian.org/git/collab-maint/xpdf.git Package: xpdf Architecture: any diff -Nru xpdf-3.02/debian/xpdf.preinst xpdf-3.02/debian/xpdf.preinst --- xpdf-3.02/debian/xpdf.preinst 2010-08-21 00:04:51.000000000 -0400 +++ xpdf-3.02/debian/xpdf.preinst 2010-09-05 17:54:58.000000000 -0400 @@ -4,5 +4,6 @@ # remove dangling symlink leftover by lenny xpdf package weirdness # (this 'fix' can be safely removed for squeeze+1) test -h /usr/share/doc/xpdf && rm -f /usr/share/doc/xpdf || true +test -h /usr/share/doc/xpdf-reader && rm -f /usr/share/doc/xpdf-reader || true #DEBHELPER# diff -Nru xpdf-3.02/debian/xpdfrc xpdf-3.02/debian/xpdfrc --- xpdf-3.02/debian/xpdfrc 2010-08-21 00:04:51.000000000 -0400 +++ xpdf-3.02/debian/xpdfrc 2010-09-05 17:52:22.000000000 -0400 @@ -90,11 +90,23 @@ urlCommand "sensible-browser '%s'" -# Bind arrow keys to next/prev page actions -bind down any nextPage -bind right any nextPage -bind up any prevPage -bind left any prevPage +# Unbind arrow keys so we can change fullscreen behavior +unbind down any +unbind right any +unbind up any +unbind left any + +# Rebind arrow keys to defaults in the windowed context +bind down window scrollDown(16) +bind right window scrollRight(16) +bind up window scrollUp(16) +bind left window scrollLeft(16) + +# Bind arrow keys to next/prev page actions in the fullscreen context +bind down fullScreen nextPage +bind right fullScreen nextPage +bind up fullScreen prevPage +bind left fullScreen prevPage # Include additional character maps (these are provided by the # poppler-data package). The /etc/xpdf/includes file is automatically