diff -Nru evince-2.22.1.1/aclocal.m4 evince-2.22.2/aclocal.m4 --- evince-2.22.1.1/aclocal.m4 2008-04-08 21:18:49.000000000 +0200 +++ evince-2.22.2/aclocal.m4 2008-05-28 23:20:33.000000000 +0200 @@ -530,7 +530,7 @@ AC_REQUIRE([AM_MAINTAINER_MODE]) if test $USE_MAINTAINER_MODE = yes; then - DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED" + DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" else DISABLE_DEPRECATED="" fi @@ -634,11 +634,11 @@ AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) warnCXXFLAGS= - if test "x$GCC" != xyes; then - enable_compile_warnings=no + if test "x$GXX" != xyes; then + enable_cxx_warnings=no fi if test "x$enable_cxx_warnings" != "xno"; then - if test "x$GCC" = "xyes"; then + if test "x$GXX" = "xyes"; then case " $CXXFLAGS " in *[\ \ ]-Wall[\ \ ]*) ;; *) warnCXXFLAGS="-Wall -Wno-unused" ;; @@ -661,7 +661,7 @@ AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) complCXXFLAGS= if test "x$enable_iso_cxx" != "xno"; then - if test "x$GCC" = "xyes"; then + if test "x$GXX" = "xyes"; then case " $CXXFLAGS " in *[\ \ ]-ansi[\ \ ]*) ;; *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; @@ -739,47 +739,33 @@ AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first dnl for overriding the documentation installation directory - AC_ARG_WITH(html-dir, - AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, + AC_ARG_WITH([html-dir], + AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, [with_html_dir='${datadir}/gtk-doc/html']) HTML_DIR="$with_html_dir" - AC_SUBST(HTML_DIR) + AC_SUBST([HTML_DIR]) dnl enable/disable documentation building - AC_ARG_ENABLE(gtk-doc, - AC_HELP_STRING([--enable-gtk-doc], - [use gtk-doc to build documentation [default=no]]),, - enable_gtk_doc=no) + AC_ARG_ENABLE([gtk-doc], + AS_HELP_STRING([--enable-gtk-doc], + [use gtk-doc to build documentation [[default=no]]]),, + [enable_gtk_doc=no]) - have_gtk_doc=no if test x$enable_gtk_doc = xyes; then - if test -z "$PKG_CONFIG"; then - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - fi - if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then - have_gtk_doc=yes - fi - - dnl do we want to do a version check? -ifelse([$1],[],, - [gtk_doc_min_version=$1 - if test "$have_gtk_doc" = yes; then - AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) - if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then - AC_MSG_RESULT(yes) - else - AC_MSG_RESULT(no) - have_gtk_doc=no - fi - fi -]) - if test "$have_gtk_doc" != yes; then - enable_gtk_doc=no - fi + ifelse([$1],[], + [PKG_CHECK_EXISTS([gtk-doc],, + AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], + [PKG_CHECK_EXISTS([gtk-doc >= $1],, + AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))]) fi - AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) - AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") + AC_MSG_CHECKING([whether to build gtk-doc documentation]) + AC_MSG_RESULT($enable_gtk_doc) + + AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,) + + AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) + AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) ]) @@ -848,20 +834,6 @@ AC_SUBST(INTLTOOL_SERVICE_RULE) AC_SUBST(INTLTOOL_POLICY_RULE) -# Check the gettext tools to make sure they are GNU -AC_PATH_PROG(XGETTEXT, xgettext) -AC_PATH_PROG(MSGMERGE, msgmerge) -AC_PATH_PROG(MSGFMT, msgfmt) -if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then - AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) -fi -xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" -mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" -mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" -if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then - AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) -fi - # Use the tools built into the package, not the ones that are installed. AC_SUBST(INTLTOOL_EXTRACT, '$(top_builddir)/intltool-extract') AC_SUBST(INTLTOOL_MERGE, '$(top_builddir)/intltool-merge') diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/comics/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/comics/Makefile.in --- evince-2.22.1.1/backend/comics/Makefile.in 2008-04-08 21:19:00.000000000 +0200 +++ evince-2.22.2/backend/comics/Makefile.in 2008-05-28 23:20:38.000000000 +0200 @@ -144,6 +144,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -192,7 +193,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/djvu/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/djvu/Makefile.in --- evince-2.22.1.1/backend/djvu/Makefile.in 2008-04-08 21:19:00.000000000 +0200 +++ evince-2.22.2/backend/djvu/Makefile.in 2008-05-28 23:20:38.000000000 +0200 @@ -145,6 +145,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -193,7 +194,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/dvi/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/dvi/Makefile.in --- evince-2.22.1.1/backend/dvi/Makefile.in 2008-04-08 21:19:01.000000000 +0200 +++ evince-2.22.2/backend/dvi/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -157,6 +157,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -205,7 +206,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/dvi/mdvi-lib/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/dvi/mdvi-lib/Makefile.in --- evince-2.22.1.1/backend/dvi/mdvi-lib/Makefile.in 2008-04-08 21:19:01.000000000 +0200 +++ evince-2.22.2/backend/dvi/mdvi-lib/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -130,6 +130,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -178,7 +179,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/impress/iksemel.c /tmp/nPPHdISZIK/evince-2.22.2/backend/impress/iksemel.c --- evince-2.22.1.1/backend/impress/iksemel.c 2008-04-07 23:05:29.000000000 +0200 +++ evince-2.22.2/backend/impress/iksemel.c 2008-05-28 23:13:57.000000000 +0200 @@ -761,11 +761,11 @@ if (prs->attcur >= (prs->attmax * 2)) { void *tmp; prs->attmax += 12; - tmp = iks_malloc (sizeof(char *) * 2 * prs->attmax); + tmp = iks_malloc (sizeof(char *) * (2 * prs->attmax + 1)); if (!tmp) return IKS_NOMEM; - memset (tmp, 0, sizeof(char *) * 2 * prs->attmax); + memset (tmp, 0, sizeof(char *) * (2 * prs->attmax + 1)); memcpy (tmp, prs->atts, sizeof(char *) * prs->attcur); - free (prs->atts); + iks_free (prs->atts); prs->atts = tmp; } } diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/impress/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/impress/Makefile.in --- evince-2.22.1.1/backend/impress/Makefile.in 2008-04-08 21:19:01.000000000 +0200 +++ evince-2.22.2/backend/impress/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -149,6 +149,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -197,7 +198,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/Makefile.in --- evince-2.22.1.1/backend/Makefile.in 2008-04-08 21:18:59.000000000 +0200 +++ evince-2.22.2/backend/Makefile.in 2008-05-28 23:20:38.000000000 +0200 @@ -130,6 +130,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -178,7 +179,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/pdf/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/pdf/Makefile.in --- evince-2.22.1.1/backend/pdf/Makefile.in 2008-04-08 21:19:02.000000000 +0200 +++ evince-2.22.2/backend/pdf/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -154,6 +154,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -202,7 +203,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/pixbuf/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/pixbuf/Makefile.in --- evince-2.22.1.1/backend/pixbuf/Makefile.in 2008-04-08 21:19:02.000000000 +0200 +++ evince-2.22.2/backend/pixbuf/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -144,6 +144,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -192,7 +193,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/ps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/ps/Makefile.in --- evince-2.22.1.1/backend/ps/Makefile.in 2008-04-08 21:19:02.000000000 +0200 +++ evince-2.22.2/backend/ps/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -153,6 +153,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -201,7 +202,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/backend/tiff/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/backend/tiff/Makefile.in --- evince-2.22.1.1/backend/tiff/Makefile.in 2008-04-08 21:19:02.000000000 +0200 +++ evince-2.22.2/backend/tiff/Makefile.in 2008-05-28 23:20:39.000000000 +0200 @@ -142,6 +142,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -190,7 +191,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/ChangeLog /tmp/nPPHdISZIK/evince-2.22.2/ChangeLog --- evince-2.22.1.1/ChangeLog 2008-04-08 21:03:32.000000000 +0200 +++ evince-2.22.2/ChangeLog 2008-05-28 23:19:46.000000000 +0200 @@ -1,3 +1,31 @@ +2008-05-29 Nickolay V. Shmyrev + + * NEWS: + * configure.ac: + + Update for release 2.22.2 + +2008-05-19 Matthias Drochner + + * properties/ev-properties-view.c (get_default_user_units): + Fixes check for default units string translation. Bug #533323. + +2008-05-01 Hans Petter Jansson + + * backend/impress/iksemel.c (sax_core): Fix a free() that should + be an iks_free(). Fix an array overflow in the XML parser that + would occur whenever the number of attributes in a tag was greater + than 0 and divisible by 6. Fixes GNOME bug #530852. + +2008-04-19 Carlos Garcia Campos + + * libdocument/ev-document-factory.c: (get_document_from_uri): + + Use the pixbuf backend only when the mime type is not supported by + any of the other backend so that tiff documents, for instance, are + handled by the tiff backend instead of the pixbuf backend. Fixes + bug #520290. + 2008-04-08 Nickolay V. Shmyrev * NEWS: diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/configure /tmp/nPPHdISZIK/evince-2.22.2/configure --- evince-2.22.1.1/configure 2008-04-08 21:18:56.000000000 +0200 +++ evince-2.22.2/configure 2008-05-28 23:20:37.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for Evince 2.22.1.1. +# Generated by GNU Autoconf 2.61 for Evince 2.22.2. # # Report bugs to . # @@ -728,8 +728,8 @@ # Identity of this package. PACKAGE_NAME='Evince' PACKAGE_TARNAME='evince' -PACKAGE_VERSION='2.22.1.1' -PACKAGE_STRING='Evince 2.22.1.1' +PACKAGE_VERSION='2.22.2' +PACKAGE_STRING='Evince 2.22.2' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=evince' # Factoring default headers for most tests. @@ -893,9 +893,6 @@ INTLTOOL_THEME_RULE INTLTOOL_SERVICE_RULE INTLTOOL_POLICY_RULE -XGETTEXT -MSGMERGE -MSGFMT INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE @@ -917,14 +914,17 @@ WARN_CFLAGS WARN_CXXFLAGS HTML_DIR +GTKDOC_CHECK ENABLE_GTK_DOC_TRUE ENABLE_GTK_DOC_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_USE_LIBTOOL_FALSE GETTEXT_PACKAGE USE_NLS +MSGFMT MSGFMT_OPTS GMSGFMT +XGETTEXT CATALOGS CATOBJEXT GMOFILES @@ -1557,7 +1557,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Evince 2.22.1.1 to adapt to many kinds of systems. +\`configure' configures Evince 2.22.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1627,7 +1627,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Evince 2.22.1.1:";; + short | recursive ) echo "Configuration of Evince 2.22.2:";; esac cat <<\_ACEOF @@ -1652,7 +1652,7 @@ --enable-iso-cxx Try to warn if code is not ISO C++ --enable-debug turn on debugging - --enable-gtk-doc use gtk-doc to build documentation default=no + --enable-gtk-doc use gtk-doc to build documentation [default=no] --enable-dbus Compile with support for dbus --enable-nautilus compile the nautilus plugin --disable-thumbnailer disable the GNOME thumbnailer @@ -1814,7 +1814,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Evince configure 2.22.1.1 +Evince configure 2.22.2 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1828,7 +1828,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Evince $as_me 2.22.1.1, which was +It was created by Evince $as_me 2.22.2, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2518,7 +2518,7 @@ # Define the identity of the package. PACKAGE='evince' - VERSION='2.22.1.1' + VERSION='2.22.2' cat >>confdefs.h <<_ACEOF @@ -21976,141 +21976,6 @@ -# Check the gettext tools to make sure they are GNU -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_XGETTEXT+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $XGETTEXT in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -XGETTEXT=$ac_cv_path_XGETTEXT -if test -n "$XGETTEXT"; then - { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 -echo "${ECHO_T}$XGETTEXT" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -# Extract the first word of "msgmerge", so it can be a program name with args. -set dummy msgmerge; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_MSGMERGE+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MSGMERGE in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -MSGMERGE=$ac_cv_path_MSGMERGE -if test -n "$MSGMERGE"; then - { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 -echo "${ECHO_T}$MSGMERGE" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -# Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_MSGFMT+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MSGFMT in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -MSGFMT=$ac_cv_path_MSGFMT -if test -n "$MSGFMT"; then - { echo "$as_me:$LINENO: result: $MSGFMT" >&5 -echo "${ECHO_T}$MSGFMT" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then - { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 -echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} - { (exit 1); exit 1; }; } -fi -xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" -mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" -mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" -if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then - { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 -echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} - { (exit 1); exit 1; }; } -fi - # Use the tools built into the package, not the ones that are installed. INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' @@ -22632,7 +22497,7 @@ if test $USE_MAINTAINER_MODE = yes; then - DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED" + DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" else DISABLE_DEPRECATED="" fi @@ -22782,11 +22647,11 @@ { echo "$as_me:$LINENO: checking what warning flags to pass to the C++ compiler" >&5 echo $ECHO_N "checking what warning flags to pass to the C++ compiler... $ECHO_C" >&6; } warnCXXFLAGS= - if test "x$GCC" != xyes; then - enable_compile_warnings=no + if test "x$GXX" != xyes; then + enable_cxx_warnings=no fi if test "x$enable_cxx_warnings" != "xno"; then - if test "x$GCC" = "xyes"; then + if test "x$GXX" = "xyes"; then case " $CXXFLAGS " in *\ \ -Wall\ \ *) ;; *) warnCXXFLAGS="-Wall -Wno-unused" ;; @@ -22814,7 +22679,7 @@ echo $ECHO_N "checking what language compliance flags to pass to the C++ compiler... $ECHO_C" >&6; } complCXXFLAGS= if test "x$enable_iso_cxx" != "xno"; then - if test "x$GCC" = "xyes"; then + if test "x$GXX" = "xyes"; then case " $CXXFLAGS " in *\ \ -ansi\ \ *) ;; *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; @@ -22870,19 +22735,38 @@ fi - have_gtk_doc=no if test x$enable_gtk_doc = xyes; then - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.0") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + : +else + { { echo "$as_me:$LINENO: error: You need to have gtk-doc >= 1.0 installed to build gtk-doc" >&5 +echo "$as_me: error: You need to have gtk-doc >= 1.0 installed to build gtk-doc" >&2;} + { (exit 1); exit 1; }; } +fi + fi + + { echo "$as_me:$LINENO: checking whether to build gtk-doc documentation" >&5 +echo $ECHO_N "checking whether to build gtk-doc documentation... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $enable_gtk_doc" >&5 +echo "${ECHO_T}$enable_gtk_doc" >&6; } + + for ac_prog in gtkdoc-check +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +if test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in + case $GTKDOC_CHECK in [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -22892,7 +22776,7 @@ test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi @@ -22900,43 +22784,22 @@ done IFS=$as_save_IFS - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6; } +GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK +if test -n "$GTKDOC_CHECK"; then + { echo "$as_me:$LINENO: result: $GTKDOC_CHECK" >&5 +echo "${ECHO_T}$GTKDOC_CHECK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi - fi - if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then - have_gtk_doc=yes - fi - - gtk_doc_min_version=1.0 - if test "$have_gtk_doc" = yes; then - { echo "$as_me:$LINENO: checking gtk-doc version >= $gtk_doc_min_version" >&5 -echo $ECHO_N "checking gtk-doc version >= $gtk_doc_min_version... $ECHO_C" >&6; } - if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } - have_gtk_doc=no - fi - fi + test -n "$GTKDOC_CHECK" && break +done - if test "$have_gtk_doc" != yes; then - enable_gtk_doc=no - fi - fi if test x$enable_gtk_doc = xyes; then ENABLE_GTK_DOC_TRUE= @@ -29966,7 +29829,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Evince $as_me 2.22.1.1, which was +This file was extended by Evince $as_me 2.22.2, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -30019,7 +29882,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -Evince config.status 2.22.1.1 +Evince config.status 2.22.2 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" @@ -30414,9 +30277,6 @@ INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim -XGETTEXT!$XGETTEXT$ac_delim -MSGMERGE!$MSGMERGE$ac_delim -MSGFMT!$MSGFMT$ac_delim INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim @@ -30438,14 +30298,17 @@ WARN_CFLAGS!$WARN_CFLAGS$ac_delim WARN_CXXFLAGS!$WARN_CXXFLAGS$ac_delim HTML_DIR!$HTML_DIR$ac_delim +GTKDOC_CHECK!$GTKDOC_CHECK$ac_delim ENABLE_GTK_DOC_TRUE!$ENABLE_GTK_DOC_TRUE$ac_delim ENABLE_GTK_DOC_FALSE!$ENABLE_GTK_DOC_FALSE$ac_delim GTK_DOC_USE_LIBTOOL_TRUE!$GTK_DOC_USE_LIBTOOL_TRUE$ac_delim GTK_DOC_USE_LIBTOOL_FALSE!$GTK_DOC_USE_LIBTOOL_FALSE$ac_delim GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim USE_NLS!$USE_NLS$ac_delim +MSGFMT!$MSGFMT$ac_delim MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim GMSGFMT!$GMSGFMT$ac_delim +XGETTEXT!$XGETTEXT$ac_delim CATALOGS!$CATALOGS$ac_delim CATOBJEXT!$CATOBJEXT$ac_delim GMOFILES!$GMOFILES$ac_delim diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/configure.ac /tmp/nPPHdISZIK/evince-2.22.2/configure.ac --- evince-2.22.1.1/configure.ac 2008-04-08 19:43:23.000000000 +0200 +++ evince-2.22.2/configure.ac 2008-05-28 23:14:35.000000000 +0200 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT([Evince],[2.22.1.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=evince],[evince]) +AC_INIT([Evince],[2.22.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=evince],[evince]) AM_INIT_AUTOMAKE([1.9 dist-bzip2 no-dist-gzip]) EV_API_VERSION=2.20 diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/cut-n-paste/gedit-message-area/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/cut-n-paste/gedit-message-area/Makefile.in --- evince-2.22.1.1/cut-n-paste/gedit-message-area/Makefile.in 2008-04-08 21:19:03.000000000 +0200 +++ evince-2.22.2/cut-n-paste/gedit-message-area/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -132,6 +132,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -180,7 +181,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/cut-n-paste/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/cut-n-paste/Makefile.in --- evince-2.22.1.1/cut-n-paste/Makefile.in 2008-04-08 21:19:03.000000000 +0200 +++ evince-2.22.2/cut-n-paste/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/cut-n-paste/toolbar-editor/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/cut-n-paste/toolbar-editor/Makefile.in --- evince-2.22.1.1/cut-n-paste/toolbar-editor/Makefile.in 2008-04-08 21:19:03.000000000 +0200 +++ evince-2.22.2/cut-n-paste/toolbar-editor/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -141,6 +141,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -189,7 +190,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/cut-n-paste/totem-screensaver/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/cut-n-paste/totem-screensaver/Makefile.in --- evince-2.22.1.1/cut-n-paste/totem-screensaver/Makefile.in 2008-04-08 21:19:04.000000000 +0200 +++ evince-2.22.2/cut-n-paste/totem-screensaver/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -132,6 +132,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -180,7 +181,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/cut-n-paste/zoom-control/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/cut-n-paste/zoom-control/Makefile.in --- evince-2.22.1.1/cut-n-paste/zoom-control/Makefile.in 2008-04-08 21:19:04.000000000 +0200 +++ evince-2.22.2/cut-n-paste/zoom-control/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -132,6 +132,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -180,7 +181,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/16x16/actions/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/16x16/actions/Makefile.in --- evince-2.22.1.1/data/icons/16x16/actions/Makefile.in 2008-04-08 21:19:05.000000000 +0200 +++ evince-2.22.2/data/icons/16x16/actions/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/16x16/apps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/16x16/apps/Makefile.in --- evince-2.22.1.1/data/icons/16x16/apps/Makefile.in 2008-04-08 21:19:05.000000000 +0200 +++ evince-2.22.2/data/icons/16x16/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/16x16/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/16x16/Makefile.in --- evince-2.22.1.1/data/icons/16x16/Makefile.in 2008-04-08 21:19:05.000000000 +0200 +++ evince-2.22.2/data/icons/16x16/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/22x22/actions/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/22x22/actions/Makefile.in --- evince-2.22.1.1/data/icons/22x22/actions/Makefile.in 2008-04-08 21:19:05.000000000 +0200 +++ evince-2.22.2/data/icons/22x22/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/22x22/apps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/22x22/apps/Makefile.in --- evince-2.22.1.1/data/icons/22x22/apps/Makefile.in 2008-04-08 21:19:06.000000000 +0200 +++ evince-2.22.2/data/icons/22x22/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/22x22/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/22x22/Makefile.in --- evince-2.22.1.1/data/icons/22x22/Makefile.in 2008-04-08 21:19:05.000000000 +0200 +++ evince-2.22.2/data/icons/22x22/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/24x24/actions/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/24x24/actions/Makefile.in --- evince-2.22.1.1/data/icons/24x24/actions/Makefile.in 2008-04-08 21:19:06.000000000 +0200 +++ evince-2.22.2/data/icons/24x24/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/24x24/apps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/24x24/apps/Makefile.in --- evince-2.22.1.1/data/icons/24x24/apps/Makefile.in 2008-04-08 21:19:06.000000000 +0200 +++ evince-2.22.2/data/icons/24x24/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/24x24/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/24x24/Makefile.in --- evince-2.22.1.1/data/icons/24x24/Makefile.in 2008-04-08 21:19:06.000000000 +0200 +++ evince-2.22.2/data/icons/24x24/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/32x32/actions/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/32x32/actions/Makefile.in --- evince-2.22.1.1/data/icons/32x32/actions/Makefile.in 2008-04-08 21:19:07.000000000 +0200 +++ evince-2.22.2/data/icons/32x32/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/32x32/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/32x32/Makefile.in --- evince-2.22.1.1/data/icons/32x32/Makefile.in 2008-04-08 21:19:07.000000000 +0200 +++ evince-2.22.2/data/icons/32x32/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/48x48/actions/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/48x48/actions/Makefile.in --- evince-2.22.1.1/data/icons/48x48/actions/Makefile.in 2008-04-08 21:19:07.000000000 +0200 +++ evince-2.22.2/data/icons/48x48/actions/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/48x48/apps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/48x48/apps/Makefile.in --- evince-2.22.1.1/data/icons/48x48/apps/Makefile.in 2008-04-08 21:19:07.000000000 +0200 +++ evince-2.22.2/data/icons/48x48/apps/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/48x48/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/48x48/Makefile.in --- evince-2.22.1.1/data/icons/48x48/Makefile.in 2008-04-08 21:19:07.000000000 +0200 +++ evince-2.22.2/data/icons/48x48/Makefile.in 2008-05-28 23:20:41.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/Makefile.in --- evince-2.22.1.1/data/icons/Makefile.in 2008-04-08 21:19:08.000000000 +0200 +++ evince-2.22.2/data/icons/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/scalable/apps/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/scalable/apps/Makefile.in --- evince-2.22.1.1/data/icons/scalable/apps/Makefile.in 2008-04-08 21:19:08.000000000 +0200 +++ evince-2.22.2/data/icons/scalable/apps/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/icons/scalable/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/icons/scalable/Makefile.in --- evince-2.22.1.1/data/icons/scalable/Makefile.in 2008-04-08 21:19:08.000000000 +0200 +++ evince-2.22.2/data/icons/scalable/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -120,6 +120,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -168,7 +169,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/data/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/data/Makefile.in --- evince-2.22.1.1/data/Makefile.in 2008-04-08 21:19:04.000000000 +0200 +++ evince-2.22.2/data/Makefile.in 2008-05-28 23:20:40.000000000 +0200 @@ -139,6 +139,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -187,7 +188,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/debian/changelog /tmp/nPPHdISZIK/evince-2.22.2/debian/changelog --- evince-2.22.1.1/debian/changelog 2008-05-29 09:39:54.000000000 +0200 +++ evince-2.22.2/debian/changelog 2008-05-29 09:39:54.000000000 +0200 @@ -1,3 +1,15 @@ +evince (2.22.2-0ubuntu1) hardy-proposed; urgency=low + + * New upstream version: + Bug fixes: + - Fixes warning with gtk-2.10 + - Fixes crash in impress backend + - Handle multipage tiff properly (lp: #201345) + * debian/patches/99_autoreconf.patch: + - new version update + + -- Sebastien Bacher Thu, 29 May 2008 09:24:23 +0200 + evince (2.22.1.1-0ubuntu1) hardy; urgency=low * New upstream version: diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/debian/control /tmp/nPPHdISZIK/evince-2.22.2/debian/control --- evince-2.22.1.1/debian/control 2008-05-29 09:39:54.000000000 +0200 +++ evince-2.22.2/debian/control 2008-05-29 09:39:54.000000000 +0200 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Ubuntu Desktop Team XSBC-Original-Maintainer: Marc 'HE' Brockschmidt -Uploaders: Debian GNOME Maintainers , Sebastian Dröge +Uploaders: Debian GNOME Maintainers Build-Depends: cdbs, debhelper (>= 5), intltool (>= 0.35.0), diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/debian/patches/99_autoreconf.patch /tmp/nPPHdISZIK/evince-2.22.2/debian/patches/99_autoreconf.patch --- evince-2.22.1.1/debian/patches/99_autoreconf.patch 2008-05-29 09:39:54.000000000 +0200 +++ evince-2.22.2/debian/patches/99_autoreconf.patch 2008-05-29 09:39:54.000000000 +0200 @@ -1,6 +1,6 @@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/aclocal.m4 evince-2.22.1.1.new/aclocal.m4 ---- evince-2.22.1.1/aclocal.m4 2008-04-08 21:18:49.000000000 +0200 -+++ evince-2.22.1.1.new/aclocal.m4 2008-04-08 23:59:06.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/aclocal.m4 evince-2.22.2.new/aclocal.m4 +--- evince-2.22.2/aclocal.m4 2008-05-28 23:20:33.000000000 +0200 ++++ evince-2.22.2.new/aclocal.m4 2008-05-29 09:27:03.000000000 +0200 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10 -*- Autoconf -*- +# generated automatically by aclocal 1.10.1 -*- Autoconf -*- @@ -29,39 +29,6 @@ dnl AM_GCONF_SOURCE_2 dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas -@@ -530,7 +533,7 @@ - AC_REQUIRE([AM_MAINTAINER_MODE]) - - if test $USE_MAINTAINER_MODE = yes; then -- DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED" -+ DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" - else - DISABLE_DEPRECATED="" - fi -@@ -634,11 +637,11 @@ - - AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) - warnCXXFLAGS= -- if test "x$GCC" != xyes; then -- enable_compile_warnings=no -+ if test "x$GXX" != xyes; then -+ enable_cxx_warnings=no - fi - if test "x$enable_cxx_warnings" != "xno"; then -- if test "x$GCC" = "xyes"; then -+ if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) warnCXXFLAGS="-Wall -Wno-unused" ;; -@@ -661,7 +664,7 @@ - AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) - complCXXFLAGS= - if test "x$enable_iso_cxx" != "xno"; then -- if test "x$GCC" = "xyes"; then -+ if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; @@ -707,6 +710,10 @@ enable_scrollkeeper=yes) AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"]) @@ -73,74 +40,28 @@ AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"]) ]) -@@ -739,47 +746,33 @@ - AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first - dnl for overriding the documentation installation directory -- AC_ARG_WITH(html-dir, -- AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, -+ AC_ARG_WITH([html-dir], -+ AS_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, - [with_html_dir='${datadir}/gtk-doc/html']) - HTML_DIR="$with_html_dir" -- AC_SUBST(HTML_DIR) -+ AC_SUBST([HTML_DIR]) - - dnl enable/disable documentation building -- AC_ARG_ENABLE(gtk-doc, -- AC_HELP_STRING([--enable-gtk-doc], -- [use gtk-doc to build documentation [default=no]]),, -- enable_gtk_doc=no) -+ AC_ARG_ENABLE([gtk-doc], -+ AS_HELP_STRING([--enable-gtk-doc], -+ [use gtk-doc to build documentation [[default=no]]]),, -+ [enable_gtk_doc=no]) - -- have_gtk_doc=no - if test x$enable_gtk_doc = xyes; then -- if test -z "$PKG_CONFIG"; then -- AC_PATH_PROG(PKG_CONFIG, pkg-config, no) -- fi -- if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then -- have_gtk_doc=yes -- fi -- -- dnl do we want to do a version check? --ifelse([$1],[],, -- [gtk_doc_min_version=$1 -- if test "$have_gtk_doc" = yes; then -- AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) -- if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then -- AC_MSG_RESULT(yes) -- else -- AC_MSG_RESULT(no) -- have_gtk_doc=no -- fi -- fi --]) -- if test "$have_gtk_doc" != yes; then -- enable_gtk_doc=no -- fi -+ ifelse([$1],[], -+ [PKG_CHECK_EXISTS([gtk-doc],, -+ AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))], -+ [PKG_CHECK_EXISTS([gtk-doc >= $1],, -+ AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build gtk-doc]))]) - fi - -- AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) -- AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") -+ AC_MSG_CHECKING([whether to build gtk-doc documentation]) -+ AC_MSG_RESULT($enable_gtk_doc) -+ -+ AC_PATH_PROGS(GTKDOC_CHECK,gtkdoc-check,) -+ -+ AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) -+ AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) - ]) - - -@@ -996,7 +989,7 @@ +@@ -834,6 +841,20 @@ + AC_SUBST(INTLTOOL_SERVICE_RULE) + AC_SUBST(INTLTOOL_POLICY_RULE) + ++# Check the gettext tools to make sure they are GNU ++AC_PATH_PROG(XGETTEXT, xgettext) ++AC_PATH_PROG(MSGMERGE, msgmerge) ++AC_PATH_PROG(MSGFMT, msgfmt) ++if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then ++ AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) ++fi ++xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" ++mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" ++mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" ++if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then ++ AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) ++fi ++ + # Use the tools built into the package, not the ones that are installed. + AC_SUBST(INTLTOOL_EXTRACT, '$(top_builddir)/intltool-extract') + AC_SUBST(INTLTOOL_MERGE, '$(top_builddir)/intltool-merge') +@@ -968,7 +989,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- @@ -149,7 +70,7 @@ # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -@@ -1084,7 +1077,6 @@ +@@ -1056,7 +1077,6 @@ AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl @@ -157,7 +78,7 @@ AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR -@@ -1186,6 +1178,8 @@ +@@ -1158,6 +1178,8 @@ ;; esac @@ -166,7 +87,7 @@ AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) -@@ -1265,9 +1259,80 @@ +@@ -1237,9 +1259,80 @@ echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` @@ -248,7 +169,7 @@ # _LT_AC_SYS_LIBPATH_AIX # ---------------------- -@@ -1548,7 +1613,6 @@ +@@ -1520,7 +1613,6 @@ esac ;; *64-bit*) @@ -256,7 +177,7 @@ case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" -@@ -1593,7 +1657,11 @@ +@@ -1565,7 +1657,11 @@ *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; @@ -269,7 +190,7 @@ esac ;; esac -@@ -1686,7 +1754,7 @@ +@@ -1658,7 +1754,7 @@ $2=yes fi fi @@ -278,7 +199,7 @@ LDFLAGS="$save_LDFLAGS" ]) -@@ -1957,7 +2025,7 @@ +@@ -1929,7 +2025,7 @@ AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], @@ -287,7 +208,7 @@ [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], -@@ -1965,7 +2033,7 @@ +@@ -1937,7 +2033,7 @@ [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], @@ -296,7 +217,7 @@ ]) ]) ]) -@@ -2282,7 +2350,7 @@ +@@ -2254,7 +2350,7 @@ soname_spec='${libname}${release}${shared_ext}$major' ;; @@ -305,7 +226,7 @@ version_type=linux need_lib_prefix=no need_version=no -@@ -2607,13 +2675,11 @@ +@@ -2579,13 +2675,11 @@ # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes @@ -320,7 +241,7 @@ fi # We used to test for /lib/ld.so.1 and disable shared libraries on -@@ -2625,6 +2691,18 @@ +@@ -2597,6 +2691,18 @@ dynamic_linker='GNU/Linux ld.so' ;; @@ -339,7 +260,7 @@ netbsd*) version_type=sunos need_lib_prefix=no -@@ -2805,6 +2883,13 @@ +@@ -2777,6 +2883,13 @@ AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no @@ -353,7 +274,7 @@ variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -@@ -3304,7 +3389,7 @@ +@@ -3276,7 +3389,7 @@ # whether `pass_all' will *always* work, you probably want this one. case $host_os in @@ -362,7 +283,7 @@ lt_cv_deplibs_check_method=pass_all ;; -@@ -3399,7 +3484,7 @@ +@@ -3371,7 +3484,7 @@ lt_cv_deplibs_check_method=pass_all ;; @@ -371,7 +292,7 @@ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else -@@ -3740,7 +3825,7 @@ +@@ -3712,7 +3825,7 @@ fi ;; @@ -380,7 +301,7 @@ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi -@@ -3797,6 +3882,7 @@ +@@ -3769,6 +3882,7 @@ _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= @@ -388,7 +309,7 @@ # Source file extension for C++ test sources. ac_ext=cpp -@@ -3906,7 +3992,7 @@ +@@ -3878,7 +3992,7 @@ # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; @@ -397,7 +318,7 @@ if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. -@@ -3919,7 +4005,7 @@ +@@ -3891,7 +4005,7 @@ # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. @@ -406,7 +327,7 @@ for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) -@@ -4065,51 +4151,23 @@ +@@ -4037,51 +4151,23 @@ fi ;; darwin* | rhapsody*) @@ -467,7 +388,7 @@ else case $cc_basename in xlc*) -@@ -4360,7 +4418,7 @@ +@@ -4332,7 +4418,7 @@ _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; @@ -476,7 +397,7 @@ # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' -@@ -4433,7 +4491,7 @@ +@@ -4405,7 +4491,7 @@ ;; esac ;; @@ -485,7 +406,7 @@ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= -@@ -4795,7 +4853,8 @@ +@@ -4767,7 +4853,8 @@ # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. @@ -495,7 +416,7 @@ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each -@@ -4920,6 +4979,11 @@ +@@ -4892,6 +4979,11 @@ $rm -f confest.$objext @@ -507,7 +428,7 @@ # PORTME: override above test on systems where it is broken ifelse([$1],[CXX], [case $host_os in -@@ -4976,7 +5040,6 @@ +@@ -4948,7 +5040,6 @@ ;; esac ]) @@ -515,7 +436,7 @@ case " $_LT_AC_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac -@@ -5061,7 +5124,7 @@ +@@ -5033,7 +5124,7 @@ postinstall_cmds='$RANLIB $lib' fi ;; @@ -524,7 +445,7 @@ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi -@@ -5238,6 +5301,7 @@ +@@ -5210,6 +5301,7 @@ _LT_AC_TAGVAR(predeps, $1) \ _LT_AC_TAGVAR(postdeps, $1) \ _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ @@ -532,7 +453,7 @@ _LT_AC_TAGVAR(archive_cmds, $1) \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ _LT_AC_TAGVAR(postinstall_cmds, $1) \ -@@ -5300,7 +5364,7 @@ +@@ -5272,7 +5364,7 @@ # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # @@ -541,7 +462,7 @@ # Free Software Foundation, Inc. # # This file is part of GNU Libtool: -@@ -5537,6 +5601,10 @@ +@@ -5509,6 +5601,10 @@ # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) @@ -552,7 +473,7 @@ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) -@@ -5886,7 +5954,7 @@ +@@ -5858,7 +5954,7 @@ echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi @@ -561,7 +482,7 @@ # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then -@@ -5943,7 +6011,8 @@ +@@ -5915,7 +6011,8 @@ # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries @@ -571,7 +492,7 @@ ;; darwin* | rhapsody*) # PIC is the default on this platform -@@ -5980,7 +6049,7 @@ +@@ -5952,7 +6049,7 @@ esac else case $host_os in @@ -580,7 +501,7 @@ # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor -@@ -6076,7 +6145,7 @@ +@@ -6048,7 +6145,7 @@ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; @@ -589,7 +510,7 @@ # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' -@@ -6114,7 +6183,7 @@ +@@ -6086,7 +6183,7 @@ ;; esac ;; @@ -598,7 +519,7 @@ ;; osf3* | osf4* | osf5*) case $cc_basename in -@@ -6227,7 +6296,8 @@ +@@ -6199,7 +6296,8 @@ # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries @@ -608,7 +529,7 @@ ;; darwin* | rhapsody*) -@@ -6297,7 +6367,8 @@ +@@ -6269,7 +6367,8 @@ mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). @@ -618,7 +539,7 @@ ;; hpux9* | hpux10* | hpux11*) -@@ -6434,7 +6505,7 @@ +@@ -6406,7 +6505,7 @@ # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], @@ -627,7 +548,7 @@ [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; -@@ -6458,7 +6529,7 @@ +@@ -6430,7 +6529,7 @@ # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], @@ -636,7 +557,7 @@ $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) -@@ -6474,7 +6545,7 @@ +@@ -6446,7 +6545,7 @@ ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in @@ -645,7 +566,7 @@ # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then -@@ -6489,10 +6560,14 @@ +@@ -6461,10 +6560,14 @@ cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' ;; @@ -660,7 +581,7 @@ ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= -@@ -6523,12 +6598,14 @@ +@@ -6495,12 +6598,14 @@ # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. @@ -676,7 +597,7 @@ extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) -@@ -6578,7 +6655,7 @@ +@@ -6550,7 +6655,7 @@ # See if GNU ld supports shared libraries. case $host_os in @@ -685,7 +606,7 @@ # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no -@@ -6694,12 +6771,13 @@ +@@ -6666,12 +6771,13 @@ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi @@ -700,7 +621,7 @@ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= -@@ -6797,7 +6875,7 @@ +@@ -6769,7 +6875,7 @@ fi ;; @@ -709,7 +630,7 @@ if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. -@@ -6817,7 +6895,7 @@ +@@ -6789,7 +6895,7 @@ # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. @@ -718,7 +639,7 @@ for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes -@@ -6977,11 +7055,10 @@ +@@ -6949,11 +7055,10 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' @@ -734,7 +655,7 @@ else case $cc_basename in xlc*) -@@ -7131,7 +7208,7 @@ +@@ -7103,7 +7208,7 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; @@ -743,7 +664,7 @@ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else -@@ -7720,7 +7797,7 @@ +@@ -7692,7 +7797,7 @@ fi[]dnl ])# PKG_CHECK_MODULES @@ -752,7 +673,7 @@ # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, -@@ -7735,7 +7812,7 @@ +@@ -7707,7 +7812,7 @@ [am__api_version='1.10' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. @@ -761,7 +682,7 @@ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) -@@ -7751,8 +7828,10 @@ +@@ -7723,8 +7828,10 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], @@ -774,7 +695,7 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -@@ -8047,7 +8126,7 @@ +@@ -8019,7 +8126,7 @@ # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. @@ -783,7 +704,7 @@ dirpart=`AS_DIRNAME("$mf")` else continue -@@ -8107,13 +8186,13 @@ +@@ -8079,13 +8186,13 @@ # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, @@ -799,7 +720,7 @@ # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. -@@ -8218,16 +8297,17 @@ +@@ -8190,16 +8297,17 @@ # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. @@ -819,7 +740,7 @@ # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # -@@ -8528,7 +8608,7 @@ +@@ -8500,7 +8608,7 @@ # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- @@ -828,9 +749,9 @@ # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/comics/Makefile.in evince-2.22.1.1.new/backend/comics/Makefile.in ---- evince-2.22.1.1/backend/comics/Makefile.in 2008-04-08 21:19:00.000000000 +0200 -+++ evince-2.22.1.1.new/backend/comics/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/comics/Makefile.in evince-2.22.2.new/backend/comics/Makefile.in +--- evince-2.22.2/backend/comics/Makefile.in 2008-05-28 23:20:38.000000000 +0200 ++++ evince-2.22.2.new/backend/comics/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -863,18 +784,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -144,7 +146,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -146,6 +148,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -196,6 +201,7 @@ +@@ -193,9 +197,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -942,9 +865,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/djvu/Makefile.in evince-2.22.1.1.new/backend/djvu/Makefile.in ---- evince-2.22.1.1/backend/djvu/Makefile.in 2008-04-08 21:19:00.000000000 +0200 -+++ evince-2.22.1.1.new/backend/djvu/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/djvu/Makefile.in evince-2.22.2.new/backend/djvu/Makefile.in +--- evince-2.22.2/backend/djvu/Makefile.in 2008-05-28 23:20:38.000000000 +0200 ++++ evince-2.22.2.new/backend/djvu/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -977,18 +900,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -145,7 +147,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -147,6 +149,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -197,6 +202,7 @@ +@@ -194,9 +198,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1056,9 +981,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/dvi/Makefile.in evince-2.22.1.1.new/backend/dvi/Makefile.in ---- evince-2.22.1.1/backend/dvi/Makefile.in 2008-04-08 21:19:01.000000000 +0200 -+++ evince-2.22.1.1.new/backend/dvi/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/dvi/Makefile.in evince-2.22.2.new/backend/dvi/Makefile.in +--- evince-2.22.2/backend/dvi/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/dvi/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1091,18 +1016,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -157,7 +159,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -159,6 +161,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -209,6 +214,7 @@ +@@ -206,9 +210,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1170,9 +1097,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/dvi/mdvi-lib/Makefile.in evince-2.22.1.1.new/backend/dvi/mdvi-lib/Makefile.in ---- evince-2.22.1.1/backend/dvi/mdvi-lib/Makefile.in 2008-04-08 21:19:01.000000000 +0200 -+++ evince-2.22.1.1.new/backend/dvi/mdvi-lib/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/dvi/mdvi-lib/Makefile.in evince-2.22.2.new/backend/dvi/mdvi-lib/Makefile.in +--- evince-2.22.2/backend/dvi/mdvi-lib/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/dvi/mdvi-lib/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1205,18 +1132,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -130,7 +132,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -132,6 +134,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -182,6 +187,7 @@ +@@ -179,9 +183,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1262,9 +1191,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/impress/Makefile.in evince-2.22.1.1.new/backend/impress/Makefile.in ---- evince-2.22.1.1/backend/impress/Makefile.in 2008-04-08 21:19:01.000000000 +0200 -+++ evince-2.22.1.1.new/backend/impress/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/impress/Makefile.in evince-2.22.2.new/backend/impress/Makefile.in +--- evince-2.22.2/backend/impress/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/impress/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1297,18 +1226,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -149,7 +151,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -151,6 +153,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -201,6 +206,7 @@ +@@ -198,9 +202,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1376,9 +1307,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/Makefile.in evince-2.22.1.1.new/backend/Makefile.in ---- evince-2.22.1.1/backend/Makefile.in 2008-04-08 21:18:59.000000000 +0200 -+++ evince-2.22.1.1.new/backend/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/Makefile.in evince-2.22.2.new/backend/Makefile.in +--- evince-2.22.2/backend/Makefile.in 2008-05-28 23:20:38.000000000 +0200 ++++ evince-2.22.2.new/backend/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1402,18 +1333,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -130,7 +132,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -132,6 +134,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -182,6 +187,7 @@ +@@ -179,9 +183,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1459,9 +1392,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/pdf/Makefile.in evince-2.22.1.1.new/backend/pdf/Makefile.in ---- evince-2.22.1.1/backend/pdf/Makefile.in 2008-04-08 21:19:02.000000000 +0200 -+++ evince-2.22.1.1.new/backend/pdf/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/pdf/Makefile.in evince-2.22.2.new/backend/pdf/Makefile.in +--- evince-2.22.2/backend/pdf/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/pdf/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1494,18 +1427,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -154,7 +156,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -156,6 +158,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -206,6 +211,7 @@ +@@ -203,9 +207,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1573,9 +1508,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/pixbuf/Makefile.in evince-2.22.1.1.new/backend/pixbuf/Makefile.in ---- evince-2.22.1.1/backend/pixbuf/Makefile.in 2008-04-08 21:19:02.000000000 +0200 -+++ evince-2.22.1.1.new/backend/pixbuf/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/pixbuf/Makefile.in evince-2.22.2.new/backend/pixbuf/Makefile.in +--- evince-2.22.2/backend/pixbuf/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/pixbuf/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1608,18 +1543,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -144,7 +146,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -146,6 +148,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -196,6 +201,7 @@ +@@ -193,9 +197,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1687,9 +1624,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/ps/Makefile.in evince-2.22.1.1.new/backend/ps/Makefile.in ---- evince-2.22.1.1/backend/ps/Makefile.in 2008-04-08 21:19:02.000000000 +0200 -+++ evince-2.22.1.1.new/backend/ps/Makefile.in 2008-04-08 23:59:13.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/ps/Makefile.in evince-2.22.2.new/backend/ps/Makefile.in +--- evince-2.22.2/backend/ps/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/ps/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1722,18 +1659,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -153,7 +155,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -155,6 +157,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -205,6 +210,7 @@ +@@ -202,9 +206,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1801,9 +1740,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/backend/tiff/Makefile.in evince-2.22.1.1.new/backend/tiff/Makefile.in ---- evince-2.22.1.1/backend/tiff/Makefile.in 2008-04-08 21:19:02.000000000 +0200 -+++ evince-2.22.1.1.new/backend/tiff/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/backend/tiff/Makefile.in evince-2.22.2.new/backend/tiff/Makefile.in +--- evince-2.22.2/backend/tiff/Makefile.in 2008-05-28 23:20:39.000000000 +0200 ++++ evince-2.22.2.new/backend/tiff/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -1836,18 +1775,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -142,7 +144,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -144,6 +146,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -194,6 +199,7 @@ +@@ -191,9 +195,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -1915,9 +1856,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/config.h.in evince-2.22.1.1.new/config.h.in ---- evince-2.22.1.1/config.h.in 2008-04-08 21:18:57.000000000 +0200 -+++ evince-2.22.1.1.new/config.h.in 2008-04-08 23:59:12.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/config.h.in evince-2.22.2.new/config.h.in +--- evince-2.22.2/config.h.in 2008-05-28 23:20:37.000000000 +0200 ++++ evince-2.22.2.new/config.h.in 2008-05-29 09:27:09.000000000 +0200 @@ -156,6 +156,9 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS @@ -1928,9 +1869,9 @@ /* Version number of package */ #undef VERSION -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/configure evince-2.22.1.1.new/configure ---- evince-2.22.1.1/configure 2008-04-08 21:18:56.000000000 +0200 -+++ evince-2.22.1.1.new/configure 2008-04-08 23:59:10.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/configure evince-2.22.2.new/configure +--- evince-2.22.2/configure 2008-05-28 23:20:37.000000000 +0200 ++++ evince-2.22.2.new/configure 2008-05-29 09:27:07.000000000 +0200 @@ -862,6 +862,8 @@ ECHO AR @@ -1940,7 +1881,17 @@ CPP CXX CXXFLAGS -@@ -911,12 +913,14 @@ +@@ -893,6 +895,9 @@ + INTLTOOL_THEME_RULE + INTLTOOL_SERVICE_RULE + INTLTOOL_POLICY_RULE ++XGETTEXT ++MSGMERGE ++MSGFMT + INTLTOOL_EXTRACT + INTLTOOL_MERGE + INTLTOOL_UPDATE +@@ -908,6 +913,7 @@ DOC_USER_FORMATS ENABLE_SK_TRUE ENABLE_SK_FALSE @@ -1948,13 +1899,17 @@ HAVE_GNOME_DOC_UTILS_TRUE HAVE_GNOME_DOC_UTILS_FALSE DISABLE_DEPRECATED - WARN_CFLAGS - WARN_CXXFLAGS - HTML_DIR -+GTKDOC_CHECK - ENABLE_GTK_DOC_TRUE - ENABLE_GTK_DOC_FALSE - GTK_DOC_USE_LIBTOOL_TRUE +@@ -921,10 +927,8 @@ + GTK_DOC_USE_LIBTOOL_FALSE + GETTEXT_PACKAGE + USE_NLS +-MSGFMT + MSGFMT_OPTS + GMSGFMT +-XGETTEXT + CATALOGS + CATOBJEXT + GMOFILES @@ -948,6 +952,10 @@ WITH_KEYRING_FALSE KEYRING_CFLAGS @@ -1975,12 +1930,10 @@ GNOME_CFLAGS GNOME_LIBS GNOMEUI_CFLAGS -@@ -1652,7 +1662,8 @@ - +@@ -1653,6 +1663,7 @@ --enable-iso-cxx Try to warn if code is not ISO C++ --enable-debug turn on debugging -- --enable-gtk-doc use gtk-doc to build documentation default=no -+ --enable-gtk-doc use gtk-doc to build documentation [default=no] + --enable-gtk-doc use gtk-doc to build documentation [default=no] + --enable-hildon Build with Maemo/Hildon support --enable-dbus Compile with support for dbus --enable-nautilus compile the nautilus plugin @@ -3311,12 +3264,14 @@ version_type=linux need_lib_prefix=no need_version=no -@@ -15807,13 +16177,11 @@ +@@ -15806,14 +16176,12 @@ + # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. - hardcode_into_libs=yes +- hardcode_into_libs=yes - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" ++ hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then @@ -3722,155 +3677,159 @@ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_RC -@@ -22618,6 +23054,9 @@ - fi +@@ -21976,6 +22412,141 @@ -+DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS" -+ -+ - if test "$gdu_cv_have_gdu" = "yes"; then - HAVE_GNOME_DOC_UTILS_TRUE= - HAVE_GNOME_DOC_UTILS_FALSE='#' -@@ -22632,7 +23071,7 @@ - - if test $USE_MAINTAINER_MODE = yes; then -- DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED" -+ DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED" - else - DISABLE_DEPRECATED="" - fi -@@ -22782,11 +23221,11 @@ - { echo "$as_me:$LINENO: checking what warning flags to pass to the C++ compiler" >&5 - echo $ECHO_N "checking what warning flags to pass to the C++ compiler... $ECHO_C" >&6; } - warnCXXFLAGS= -- if test "x$GCC" != xyes; then -- enable_compile_warnings=no -+ if test "x$GXX" != xyes; then -+ enable_cxx_warnings=no - fi - if test "x$enable_cxx_warnings" != "xno"; then -- if test "x$GCC" = "xyes"; then -+ if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *\ \ -Wall\ \ *) ;; - *) warnCXXFLAGS="-Wall -Wno-unused" ;; -@@ -22814,7 +23253,7 @@ - echo $ECHO_N "checking what language compliance flags to pass to the C++ compiler... $ECHO_C" >&6; } - complCXXFLAGS= - if test "x$enable_iso_cxx" != "xno"; then -- if test "x$GCC" = "xyes"; then -+ if test "x$GXX" = "xyes"; then - case " $CXXFLAGS " in - *\ \ -ansi\ \ *) ;; - *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; -@@ -22870,19 +23309,38 @@ - fi - - -- have_gtk_doc=no - if test x$enable_gtk_doc = xyes; then -- if test -z "$PKG_CONFIG"; then -- # Extract the first word of "pkg-config", so it can be a program name with args. --set dummy pkg-config; ac_word=$2 -+ if test -n "$PKG_CONFIG" && \ -+ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.0") 2>&5 -+ ac_status=$? -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ : ++# Check the gettext tools to make sure they are GNU ++# Extract the first word of "xgettext", so it can be a program name with args. ++set dummy xgettext; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_path_XGETTEXT+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 +else -+ { { echo "$as_me:$LINENO: error: You need to have gtk-doc >= 1.0 installed to build gtk-doc" >&5 -+echo "$as_me: error: You need to have gtk-doc >= 1.0 installed to build gtk-doc" >&2;} -+ { (exit 1); exit 1; }; } ++ case $XGETTEXT in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++fi ++XGETTEXT=$ac_cv_path_XGETTEXT ++if test -n "$XGETTEXT"; then ++ { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 ++echo "${ECHO_T}$XGETTEXT" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } +fi ++ ++ ++# Extract the first word of "msgmerge", so it can be a program name with args. ++set dummy msgmerge; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_path_MSGMERGE+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ case $MSGMERGE in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 + fi ++done ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++fi ++MSGMERGE=$ac_cv_path_MSGMERGE ++if test -n "$MSGMERGE"; then ++ { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 ++echo "${ECHO_T}$MSGMERGE" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi + -+ { echo "$as_me:$LINENO: checking whether to build gtk-doc documentation" >&5 -+echo $ECHO_N "checking whether to build gtk-doc documentation... $ECHO_C" >&6; } -+ { echo "$as_me:$LINENO: result: $enable_gtk_doc" >&5 -+echo "${ECHO_T}$enable_gtk_doc" >&6; } + -+ for ac_prog in gtkdoc-check ++# Extract the first word of "msgfmt", so it can be a program name with args. ++set dummy msgfmt; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_path_MSGFMT+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ case $MSGFMT in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH +do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 - { echo "$as_me:$LINENO: checking for $ac_word" >&5 - echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } --if test "${ac_cv_path_PKG_CONFIG+set}" = set; then -+if test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else -- case $PKG_CONFIG in -+ case $GTKDOC_CHECK in - [\\/]* | ?:[\\/]*) -- ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. -+ ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -@@ -22892,7 +23350,7 @@ - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then -- ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" -+ ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -@@ -22900,43 +23358,22 @@ - done - IFS=$as_save_IFS ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++fi ++MSGFMT=$ac_cv_path_MSGFMT ++if test -n "$MSGFMT"; then ++ { echo "$as_me:$LINENO: result: $MSGFMT" >&5 ++echo "${ECHO_T}$MSGFMT" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then ++ { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 ++echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" ++mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" ++mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" ++if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then ++ { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 ++echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ + # Use the tools built into the package, not the ones that are installed. + INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' -- test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; - esac - fi --PKG_CONFIG=$ac_cv_path_PKG_CONFIG --if test -n "$PKG_CONFIG"; then -- { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 --echo "${ECHO_T}$PKG_CONFIG" >&6; } -+GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK -+if test -n "$GTKDOC_CHECK"; then -+ { echo "$as_me:$LINENO: result: $GTKDOC_CHECK" >&5 -+echo "${ECHO_T}$GTKDOC_CHECK" >&6; } - else - { echo "$as_me:$LINENO: result: no" >&5 - echo "${ECHO_T}no" >&6; } +@@ -22483,6 +23054,9 @@ fi -- fi -- if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then -- have_gtk_doc=yes -- fi -- -- gtk_doc_min_version=1.0 -- if test "$have_gtk_doc" = yes; then -- { echo "$as_me:$LINENO: checking gtk-doc version >= $gtk_doc_min_version" >&5 --echo $ECHO_N "checking gtk-doc version >= $gtk_doc_min_version... $ECHO_C" >&6; } -- if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; } -- else -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; } -- have_gtk_doc=no -- fi -- fi -+ test -n "$GTKDOC_CHECK" && break -+done - -- if test "$have_gtk_doc" != yes; then -- enable_gtk_doc=no -- fi -- fi - - if test x$enable_gtk_doc = xyes; then - ENABLE_GTK_DOC_TRUE= -@@ -24851,12 +25288,12 @@ ++DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS" ++ ++ + if test "$gdu_cv_have_gdu" = "yes"; then + HAVE_GNOME_DOC_UTILS_TRUE= + HAVE_GNOME_DOC_UTILS_FALSE='#' +@@ -24714,12 +25288,12 @@ pkg_cv_SHELL_CORE_CFLAGS="$SHELL_CORE_CFLAGS" else if test -n "$PKG_CONFIG" && \ @@ -3886,7 +3845,7 @@ else pkg_failed=yes fi -@@ -24869,12 +25306,12 @@ +@@ -24732,12 +25306,12 @@ pkg_cv_SHELL_CORE_LIBS="$SHELL_CORE_LIBS" else if test -n "$PKG_CONFIG" && \ @@ -3902,7 +3861,7 @@ else pkg_failed=yes fi -@@ -24893,14 +25330,14 @@ +@@ -24756,14 +25330,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then @@ -3920,7 +3879,7 @@ $SHELL_CORE_PKG_ERRORS -@@ -24911,7 +25348,7 @@ +@@ -24774,7 +25348,7 @@ and SHELL_CORE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 @@ -3929,7 +3888,7 @@ $SHELL_CORE_PKG_ERRORS -@@ -25196,6 +25633,111 @@ +@@ -25059,6 +25633,111 @@ fi @@ -4041,7 +4000,7 @@ # Check whether --with-libgnome was given. if test "${with_libgnome+set}" = set; then withval=$with_libgnome; case "${withval}" in -@@ -29554,6 +30096,13 @@ +@@ -29417,6 +30096,13 @@ Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi @@ -4055,7 +4014,7 @@ if test -z "${WITH_GNOME_TRUE}" && test -z "${WITH_GNOME_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"WITH_GNOME\" was never defined. Usually this means the macro was only invoked conditionally." >&5 -@@ -30342,9 +30891,9 @@ +@@ -30205,9 +30891,9 @@ ECHO!$ECHO$ac_delim AR!$AR$ac_delim RANLIB!$RANLIB$ac_delim @@ -4067,7 +4026,7 @@ _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then -@@ -30386,6 +30935,8 @@ +@@ -30249,6 +30935,8 @@ ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF @@ -4076,7 +4035,17 @@ ac_ct_CXX!$ac_ct_CXX$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim -@@ -30432,12 +30983,14 @@ +@@ -30277,6 +30965,9 @@ + INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim + INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim + INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim ++XGETTEXT!$XGETTEXT$ac_delim ++MSGMERGE!$MSGMERGE$ac_delim ++MSGFMT!$MSGFMT$ac_delim + INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim + INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim + INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim +@@ -30292,6 +30983,7 @@ DOC_USER_FORMATS!$DOC_USER_FORMATS$ac_delim ENABLE_SK_TRUE!$ENABLE_SK_TRUE$ac_delim ENABLE_SK_FALSE!$ENABLE_SK_FALSE$ac_delim @@ -4084,14 +4053,18 @@ HAVE_GNOME_DOC_UTILS_TRUE!$HAVE_GNOME_DOC_UTILS_TRUE$ac_delim HAVE_GNOME_DOC_UTILS_FALSE!$HAVE_GNOME_DOC_UTILS_FALSE$ac_delim DISABLE_DEPRECATED!$DISABLE_DEPRECATED$ac_delim - WARN_CFLAGS!$WARN_CFLAGS$ac_delim - WARN_CXXFLAGS!$WARN_CXXFLAGS$ac_delim - HTML_DIR!$HTML_DIR$ac_delim -+GTKDOC_CHECK!$GTKDOC_CHECK$ac_delim - ENABLE_GTK_DOC_TRUE!$ENABLE_GTK_DOC_TRUE$ac_delim - ENABLE_GTK_DOC_FALSE!$ENABLE_GTK_DOC_FALSE$ac_delim - GTK_DOC_USE_LIBTOOL_TRUE!$GTK_DOC_USE_LIBTOOL_TRUE$ac_delim -@@ -30469,20 +31022,16 @@ +@@ -30305,10 +30997,8 @@ + GTK_DOC_USE_LIBTOOL_FALSE!$GTK_DOC_USE_LIBTOOL_FALSE$ac_delim + GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim + USE_NLS!$USE_NLS$ac_delim +-MSGFMT!$MSGFMT$ac_delim + MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim + GMSGFMT!$GMSGFMT$ac_delim +-XGETTEXT!$XGETTEXT$ac_delim + CATALOGS!$CATALOGS$ac_delim + CATOBJEXT!$CATOBJEXT$ac_delim + GMOFILES!$GMOFILES$ac_delim +@@ -30332,20 +31022,16 @@ WITH_KEYRING_FALSE!$WITH_KEYRING_FALSE$ac_delim KEYRING_CFLAGS!$KEYRING_CFLAGS$ac_delim KEYRING_LIBS!$KEYRING_LIBS$ac_delim @@ -4116,7 +4089,7 @@ _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then -@@ -30524,6 +31073,14 @@ +@@ -30387,6 +31073,14 @@ ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF @@ -4131,7 +4104,7 @@ ENABLE_DBUS_FALSE!$ENABLE_DBUS_FALSE$ac_delim DBUS_TOOL_NO_PREFIX_TRUE!$DBUS_TOOL_NO_PREFIX_TRUE$ac_delim DBUS_TOOL_NO_PREFIX_FALSE!$DBUS_TOOL_NO_PREFIX_FALSE$ac_delim -@@ -30574,7 +31131,7 @@ +@@ -30437,7 +31131,7 @@ LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF @@ -4140,7 +4113,7 @@ break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -@@ -30975,21 +31532,22 @@ +@@ -30838,21 +31532,22 @@ fi rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. @@ -4170,7 +4143,7 @@ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q -@@ -31026,7 +31584,7 @@ +@@ -30889,7 +31584,7 @@ # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. @@ -4179,7 +4152,7 @@ dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ -@@ -31219,6 +31777,7 @@ +@@ -31082,6 +31777,7 @@ echo " Configure summary: GNOME Support......: $WITH_GNOME @@ -4187,9 +4160,9 @@ Keyring Support....: $WITH_KEYRING DBUS Support.......: $enable_dbus Nautilus Plugin....: $HAVE_NAUTILUS -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/cut-n-paste/gedit-message-area/Makefile.in evince-2.22.1.1.new/cut-n-paste/gedit-message-area/Makefile.in ---- evince-2.22.1.1/cut-n-paste/gedit-message-area/Makefile.in 2008-04-08 21:19:03.000000000 +0200 -+++ evince-2.22.1.1.new/cut-n-paste/gedit-message-area/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/cut-n-paste/gedit-message-area/Makefile.in evince-2.22.2.new/cut-n-paste/gedit-message-area/Makefile.in +--- evince-2.22.2/cut-n-paste/gedit-message-area/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/cut-n-paste/gedit-message-area/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4222,18 +4195,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -132,7 +134,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -134,6 +136,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -184,6 +189,7 @@ +@@ -181,9 +185,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4279,9 +4254,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/cut-n-paste/Makefile.in evince-2.22.1.1.new/cut-n-paste/Makefile.in ---- evince-2.22.1.1/cut-n-paste/Makefile.in 2008-04-08 21:19:03.000000000 +0200 -+++ evince-2.22.1.1.new/cut-n-paste/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/cut-n-paste/Makefile.in evince-2.22.2.new/cut-n-paste/Makefile.in +--- evince-2.22.2/cut-n-paste/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/cut-n-paste/Makefile.in 2008-05-29 09:27:10.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4305,18 +4280,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4362,9 +4339,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/cut-n-paste/toolbar-editor/Makefile.in evince-2.22.1.1.new/cut-n-paste/toolbar-editor/Makefile.in ---- evince-2.22.1.1/cut-n-paste/toolbar-editor/Makefile.in 2008-04-08 21:19:03.000000000 +0200 -+++ evince-2.22.1.1.new/cut-n-paste/toolbar-editor/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/cut-n-paste/toolbar-editor/Makefile.in evince-2.22.2.new/cut-n-paste/toolbar-editor/Makefile.in +--- evince-2.22.2/cut-n-paste/toolbar-editor/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/cut-n-paste/toolbar-editor/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4397,18 +4374,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -141,7 +143,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -143,6 +145,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -193,6 +198,7 @@ +@@ -190,9 +194,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4454,9 +4433,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/cut-n-paste/totem-screensaver/Makefile.in evince-2.22.1.1.new/cut-n-paste/totem-screensaver/Makefile.in ---- evince-2.22.1.1/cut-n-paste/totem-screensaver/Makefile.in 2008-04-08 21:19:04.000000000 +0200 -+++ evince-2.22.1.1.new/cut-n-paste/totem-screensaver/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/cut-n-paste/totem-screensaver/Makefile.in evince-2.22.2.new/cut-n-paste/totem-screensaver/Makefile.in +--- evince-2.22.2/cut-n-paste/totem-screensaver/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/cut-n-paste/totem-screensaver/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4489,18 +4468,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -132,7 +134,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -134,6 +136,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -184,6 +189,7 @@ +@@ -181,9 +185,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4546,9 +4527,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/cut-n-paste/zoom-control/Makefile.in evince-2.22.1.1.new/cut-n-paste/zoom-control/Makefile.in ---- evince-2.22.1.1/cut-n-paste/zoom-control/Makefile.in 2008-04-08 21:19:04.000000000 +0200 -+++ evince-2.22.1.1.new/cut-n-paste/zoom-control/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/cut-n-paste/zoom-control/Makefile.in evince-2.22.2.new/cut-n-paste/zoom-control/Makefile.in +--- evince-2.22.2/cut-n-paste/zoom-control/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/cut-n-paste/zoom-control/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4581,18 +4562,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -132,7 +134,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -134,6 +136,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -184,6 +189,7 @@ +@@ -181,9 +185,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4638,9 +4621,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/16x16/actions/Makefile.in evince-2.22.1.1.new/data/icons/16x16/actions/Makefile.in ---- evince-2.22.1.1/data/icons/16x16/actions/Makefile.in 2008-04-08 21:19:05.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/16x16/actions/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/16x16/actions/Makefile.in evince-2.22.2.new/data/icons/16x16/actions/Makefile.in +--- evince-2.22.2/data/icons/16x16/actions/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/data/icons/16x16/actions/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4664,18 +4647,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4683,9 +4668,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/16x16/apps/Makefile.in evince-2.22.1.1.new/data/icons/16x16/apps/Makefile.in ---- evince-2.22.1.1/data/icons/16x16/apps/Makefile.in 2008-04-08 21:19:05.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/16x16/apps/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/16x16/apps/Makefile.in evince-2.22.2.new/data/icons/16x16/apps/Makefile.in +--- evince-2.22.2/data/icons/16x16/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/16x16/apps/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4709,18 +4694,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4728,9 +4715,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/16x16/Makefile.in evince-2.22.1.1.new/data/icons/16x16/Makefile.in ---- evince-2.22.1.1/data/icons/16x16/Makefile.in 2008-04-08 21:19:05.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/16x16/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/16x16/Makefile.in evince-2.22.2.new/data/icons/16x16/Makefile.in +--- evince-2.22.2/data/icons/16x16/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/data/icons/16x16/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4754,18 +4741,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4811,9 +4800,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/22x22/actions/Makefile.in evince-2.22.1.1.new/data/icons/22x22/actions/Makefile.in ---- evince-2.22.1.1/data/icons/22x22/actions/Makefile.in 2008-04-08 21:19:05.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/22x22/actions/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/22x22/actions/Makefile.in evince-2.22.2.new/data/icons/22x22/actions/Makefile.in +--- evince-2.22.2/data/icons/22x22/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/22x22/actions/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4837,18 +4826,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4856,9 +4847,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/22x22/apps/Makefile.in evince-2.22.1.1.new/data/icons/22x22/apps/Makefile.in ---- evince-2.22.1.1/data/icons/22x22/apps/Makefile.in 2008-04-08 21:19:06.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/22x22/apps/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/22x22/apps/Makefile.in evince-2.22.2.new/data/icons/22x22/apps/Makefile.in +--- evince-2.22.2/data/icons/22x22/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/22x22/apps/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4882,18 +4873,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4901,9 +4894,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/22x22/Makefile.in evince-2.22.1.1.new/data/icons/22x22/Makefile.in ---- evince-2.22.1.1/data/icons/22x22/Makefile.in 2008-04-08 21:19:05.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/22x22/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/22x22/Makefile.in evince-2.22.2.new/data/icons/22x22/Makefile.in +--- evince-2.22.2/data/icons/22x22/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/22x22/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -4927,18 +4920,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -4984,9 +4979,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/24x24/actions/Makefile.in evince-2.22.1.1.new/data/icons/24x24/actions/Makefile.in ---- evince-2.22.1.1/data/icons/24x24/actions/Makefile.in 2008-04-08 21:19:06.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/24x24/actions/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/24x24/actions/Makefile.in evince-2.22.2.new/data/icons/24x24/actions/Makefile.in +--- evince-2.22.2/data/icons/24x24/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/24x24/actions/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5010,18 +5005,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5029,9 +5026,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/24x24/apps/Makefile.in evince-2.22.1.1.new/data/icons/24x24/apps/Makefile.in ---- evince-2.22.1.1/data/icons/24x24/apps/Makefile.in 2008-04-08 21:19:06.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/24x24/apps/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/24x24/apps/Makefile.in evince-2.22.2.new/data/icons/24x24/apps/Makefile.in +--- evince-2.22.2/data/icons/24x24/apps/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/24x24/apps/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5055,18 +5052,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5074,9 +5073,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/24x24/Makefile.in evince-2.22.1.1.new/data/icons/24x24/Makefile.in ---- evince-2.22.1.1/data/icons/24x24/Makefile.in 2008-04-08 21:19:06.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/24x24/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/24x24/Makefile.in evince-2.22.2.new/data/icons/24x24/Makefile.in +--- evince-2.22.2/data/icons/24x24/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/24x24/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5100,18 +5099,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5157,9 +5158,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/32x32/actions/Makefile.in evince-2.22.1.1.new/data/icons/32x32/actions/Makefile.in ---- evince-2.22.1.1/data/icons/32x32/actions/Makefile.in 2008-04-08 21:19:07.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/32x32/actions/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/32x32/actions/Makefile.in evince-2.22.2.new/data/icons/32x32/actions/Makefile.in +--- evince-2.22.2/data/icons/32x32/actions/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/32x32/actions/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5183,18 +5184,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5202,9 +5205,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/32x32/Makefile.in evince-2.22.1.1.new/data/icons/32x32/Makefile.in ---- evince-2.22.1.1/data/icons/32x32/Makefile.in 2008-04-08 21:19:07.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/32x32/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/32x32/Makefile.in evince-2.22.2.new/data/icons/32x32/Makefile.in +--- evince-2.22.2/data/icons/32x32/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/32x32/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5228,18 +5231,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5285,9 +5290,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/48x48/actions/Makefile.in evince-2.22.1.1.new/data/icons/48x48/actions/Makefile.in ---- evince-2.22.1.1/data/icons/48x48/actions/Makefile.in 2008-04-08 21:19:07.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/48x48/actions/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/48x48/actions/Makefile.in evince-2.22.2.new/data/icons/48x48/actions/Makefile.in +--- evince-2.22.2/data/icons/48x48/actions/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/data/icons/48x48/actions/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5311,18 +5316,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5330,9 +5337,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/48x48/apps/Makefile.in evince-2.22.1.1.new/data/icons/48x48/apps/Makefile.in ---- evince-2.22.1.1/data/icons/48x48/apps/Makefile.in 2008-04-08 21:19:07.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/48x48/apps/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/48x48/apps/Makefile.in evince-2.22.2.new/data/icons/48x48/apps/Makefile.in +--- evince-2.22.2/data/icons/48x48/apps/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/data/icons/48x48/apps/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5356,18 +5363,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5375,9 +5384,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/48x48/Makefile.in evince-2.22.1.1.new/data/icons/48x48/Makefile.in ---- evince-2.22.1.1/data/icons/48x48/Makefile.in 2008-04-08 21:19:07.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/48x48/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/48x48/Makefile.in evince-2.22.2.new/data/icons/48x48/Makefile.in +--- evince-2.22.2/data/icons/48x48/Makefile.in 2008-05-28 23:20:41.000000000 +0200 ++++ evince-2.22.2.new/data/icons/48x48/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5401,18 +5410,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5458,9 +5469,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/Makefile.in evince-2.22.1.1.new/data/icons/Makefile.in ---- evince-2.22.1.1/data/icons/Makefile.in 2008-04-08 21:19:08.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/Makefile.in evince-2.22.2.new/data/icons/Makefile.in +--- evince-2.22.2/data/icons/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/data/icons/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5484,18 +5495,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5541,9 +5554,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/scalable/apps/Makefile.in evince-2.22.1.1.new/data/icons/scalable/apps/Makefile.in ---- evince-2.22.1.1/data/icons/scalable/apps/Makefile.in 2008-04-08 21:19:08.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/scalable/apps/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/scalable/apps/Makefile.in evince-2.22.2.new/data/icons/scalable/apps/Makefile.in +--- evince-2.22.2/data/icons/scalable/apps/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/data/icons/scalable/apps/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5567,18 +5580,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5586,9 +5601,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/icons/scalable/Makefile.in evince-2.22.1.1.new/data/icons/scalable/Makefile.in ---- evince-2.22.1.1/data/icons/scalable/Makefile.in 2008-04-08 21:19:08.000000000 +0200 -+++ evince-2.22.1.1.new/data/icons/scalable/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/icons/scalable/Makefile.in evince-2.22.2.new/data/icons/scalable/Makefile.in +--- evince-2.22.2/data/icons/scalable/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/data/icons/scalable/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5612,18 +5627,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -120,7 +122,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -122,6 +124,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -172,6 +177,7 @@ +@@ -169,9 +173,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5669,9 +5686,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/data/Makefile.in evince-2.22.1.1.new/data/Makefile.in ---- evince-2.22.1.1/data/Makefile.in 2008-04-08 21:19:04.000000000 +0200 -+++ evince-2.22.1.1.new/data/Makefile.in 2008-04-08 23:59:14.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/data/Makefile.in evince-2.22.2.new/data/Makefile.in +--- evince-2.22.2/data/Makefile.in 2008-05-28 23:20:40.000000000 +0200 ++++ evince-2.22.2.new/data/Makefile.in 2008-05-29 09:27:11.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5720,18 +5737,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -139,7 +144,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -141,6 +146,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -191,6 +199,7 @@ +@@ -188,9 +195,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5910,9 +5929,9 @@ uninstall-gladeDATA uninstall-hook uninstall-local \ uninstall-man uninstall-man1 uninstall-schemaDATA \ uninstall-uiDATA -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/help/Makefile.in evince-2.22.1.1.new/help/Makefile.in ---- evince-2.22.1.1/help/Makefile.in 2008-04-08 21:19:08.000000000 +0200 -+++ evince-2.22.1.1.new/help/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/help/Makefile.in evince-2.22.2.new/help/Makefile.in +--- evince-2.22.2/help/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/help/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -5936,18 +5955,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -145,7 +147,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -147,6 +149,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -197,6 +202,7 @@ +@@ -194,9 +198,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -5993,9 +6014,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/help/reference/Makefile.in evince-2.22.1.1.new/help/reference/Makefile.in ---- evince-2.22.1.1/help/reference/Makefile.in 2008-04-08 21:19:09.000000000 +0200 -+++ evince-2.22.1.1.new/help/reference/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/help/reference/Makefile.in evince-2.22.2.new/help/reference/Makefile.in +--- evince-2.22.2/help/reference/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/help/reference/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6019,18 +6040,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -118,7 +120,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -120,6 +122,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -170,6 +175,7 @@ +@@ -167,9 +171,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6038,9 +6061,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/libdocument/Makefile.in evince-2.22.1.1.new/libdocument/Makefile.in ---- evince-2.22.1.1/libdocument/Makefile.in 2008-04-08 21:19:09.000000000 +0200 -+++ evince-2.22.1.1.new/libdocument/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/libdocument/Makefile.in evince-2.22.2.new/libdocument/Makefile.in +--- evince-2.22.2/libdocument/Makefile.in 2008-05-28 23:20:42.000000000 +0200 ++++ evince-2.22.2.new/libdocument/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6073,18 +6096,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -153,7 +155,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -155,6 +157,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -205,6 +210,7 @@ +@@ -202,9 +206,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6152,9 +6177,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/Makefile.in evince-2.22.1.1.new/Makefile.in ---- evince-2.22.1.1/Makefile.in 2008-04-08 21:19:10.000000000 +0200 -+++ evince-2.22.1.1.new/Makefile.in 2008-04-08 23:59:16.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/Makefile.in evince-2.22.2.new/Makefile.in +--- evince-2.22.2/Makefile.in 2008-05-28 23:20:43.000000000 +0200 ++++ evince-2.22.2.new/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6178,18 +6203,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -137,7 +139,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -139,6 +141,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -189,6 +194,7 @@ +@@ -186,9 +190,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6274,9 +6301,9 @@ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/properties/Makefile.in evince-2.22.1.1.new/properties/Makefile.in ---- evince-2.22.1.1/properties/Makefile.in 2008-04-08 21:19:09.000000000 +0200 -+++ evince-2.22.1.1.new/properties/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/properties/Makefile.in evince-2.22.2.new/properties/Makefile.in +--- evince-2.22.2/properties/Makefile.in 2008-05-28 23:20:43.000000000 +0200 ++++ evince-2.22.2.new/properties/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6309,18 +6336,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -151,7 +153,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -153,6 +155,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -203,6 +208,7 @@ +@@ -200,9 +204,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6388,9 +6417,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/shell/Makefile.in evince-2.22.1.1.new/shell/Makefile.in ---- evince-2.22.1.1/shell/Makefile.in 2008-04-08 21:19:09.000000000 +0200 -+++ evince-2.22.1.1.new/shell/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/shell/Makefile.in evince-2.22.2.new/shell/Makefile.in +--- evince-2.22.2/shell/Makefile.in 2008-05-28 23:20:43.000000000 +0200 ++++ evince-2.22.2.new/shell/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6425,18 +6454,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -155,7 +157,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -157,6 +159,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -207,6 +212,7 @@ +@@ -204,9 +208,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6513,9 +6544,9 @@ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/test/Makefile.in evince-2.22.1.1.new/test/Makefile.in ---- evince-2.22.1.1/test/Makefile.in 2008-04-08 21:19:10.000000000 +0200 -+++ evince-2.22.1.1.new/test/Makefile.in 2008-04-08 23:59:15.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/test/Makefile.in evince-2.22.2.new/test/Makefile.in +--- evince-2.22.2/test/Makefile.in 2008-05-28 23:20:43.000000000 +0200 ++++ evince-2.22.2.new/test/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6539,18 +6570,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -109,7 +111,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -111,6 +113,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -161,6 +166,7 @@ +@@ -158,9 +162,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -6558,9 +6591,9 @@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ -diff -Nur -x '*.orig' -x '*~' evince-2.22.1.1/thumbnailer/Makefile.in evince-2.22.1.1.new/thumbnailer/Makefile.in ---- evince-2.22.1.1/thumbnailer/Makefile.in 2008-04-08 21:19:10.000000000 +0200 -+++ evince-2.22.1.1.new/thumbnailer/Makefile.in 2008-04-08 23:59:16.000000000 +0200 +diff -Nur -x '*.orig' -x '*~' evince-2.22.2/thumbnailer/Makefile.in evince-2.22.2.new/thumbnailer/Makefile.in +--- evince-2.22.2/thumbnailer/Makefile.in 2008-05-28 23:20:43.000000000 +0200 ++++ evince-2.22.2.new/thumbnailer/Makefile.in 2008-05-29 09:27:12.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.10.1 from Makefile.am. @@ -6593,18 +6626,20 @@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ -@@ -147,7 +149,10 @@ - GNOME_CFLAGS = @GNOME_CFLAGS@ - GNOME_LIBS = @GNOME_LIBS@ +@@ -149,6 +151,8 @@ GREP = @GREP@ -+GTKDOC_CHECK = @GTKDOC_CHECK@ + GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ +HILDON_CFLAGS = @HILDON_CFLAGS@ +HILDON_LIBS = @HILDON_LIBS@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -@@ -199,6 +204,7 @@ +@@ -196,9 +200,11 @@ + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MSGFMT_OPTS = @MSGFMT_OPTS@ ++MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/gtk-doc.make /tmp/nPPHdISZIK/evince-2.22.2/gtk-doc.make --- evince-2.22.1.1/gtk-doc.make 2008-04-08 21:18:32.000000000 +0200 +++ evince-2.22.2/gtk-doc.make 2008-05-28 23:20:28.000000000 +0200 @@ -38,7 +38,12 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals -CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) +REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) if ENABLE_GTK_DOC all-local: html-build.stamp @@ -79,6 +84,10 @@ tmpl.stamp: tmpl-build.stamp @true +tmpl/*.sgml: + @true + + #### xml #### sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) @@ -96,11 +105,11 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo 'gtk-doc: Building HTML' @-chmod -R u+w $(srcdir) - rm -rf $(srcdir)/html + rm -rf $(srcdir)/html mkdir $(srcdir)/html cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) - @echo 'gtk-doc: Fixing cross-references' + @echo 'gtk-doc: Fixing cross-references' cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) touch html-build.stamp @@ -110,8 +119,13 @@ rm -f *~ *.bak rm -rf .libs +distclean-local: + cd $(srcdir) && \ + rm -rf xml $(REPORT_FILES) \ + $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + maintainer-clean-local: clean - cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + cd $(srcdir) && rm -rf xml html install-data-local: installfiles=`echo $(srcdir)/html/*`; \ @@ -125,7 +139,10 @@ done; \ echo '-- Installing $(srcdir)/html/index.sgml' ; \ $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ + (which gtkdoc-rebase >& /dev/null && \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR)) || : ; \ fi + uninstall-local: rm -f $(DESTDIR)$(TARGET_DIR)/* @@ -148,8 +165,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml cp $(srcdir)/html/* $(distdir)/html - if test -f $(srcdir)/$(DOC_MODULE).types; then \ - cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ - fi + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) + -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/help/Makefile.in --- evince-2.22.1.1/help/Makefile.in 2008-04-08 21:19:08.000000000 +0200 +++ evince-2.22.2/help/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -145,6 +145,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -193,7 +194,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/evince-sections.txt /tmp/nPPHdISZIK/evince-2.22.2/help/reference/evince-sections.txt --- evince-2.22.1.1/help/reference/evince-sections.txt 2008-04-08 21:23:18.000000000 +0200 +++ evince-2.22.2/help/reference/evince-sections.txt 2008-05-28 23:28:14.000000000 +0200 @@ -1,17 +1,18 @@
-ev-sidebar-attachments -EvSidebarAttachmentsPrivate -EvSidebarAttachments -EvSidebarAttachments -ev_sidebar_attachments_new +ev-sidebar-page +EV_SIDEBAR_PAGE_IFACE +EV_IS_SIDEBAR_PAGE_IFACE +EvSidebarPage +EvSidebarPageIface +ev_sidebar_page_support_document +ev_sidebar_page_set_document +ev_sidebar_page_get_label -EV_SIDEBAR_ATTACHMENTS -EV_IS_SIDEBAR_ATTACHMENTS -EV_TYPE_SIDEBAR_ATTACHMENTS -ev_sidebar_attachments_get_type -EV_SIDEBAR_ATTACHMENTS_CLASS -EV_IS_SIDEBAR_ATTACHMENTS_CLASS -EV_SIDEBAR_ATTACHMENTS_GET_CLASS +EV_SIDEBAR_PAGE +EV_IS_SIDEBAR_PAGE +EV_TYPE_SIDEBAR_PAGE +ev_sidebar_page_get_type +EV_SIDEBAR_PAGE_GET_IFACE
@@ -34,20 +35,277 @@
-ev-sidebar-page -EV_SIDEBAR_PAGE_IFACE -EV_IS_SIDEBAR_PAGE_IFACE -EvSidebarPage -EvSidebarPageIface -ev_sidebar_page_support_document -ev_sidebar_page_set_document -ev_sidebar_page_get_label +ev-transition-animation +EvTransitionAnimation +EvTransitionAnimationClass +ev_transition_animation_new +ev_transition_animation_set_origin_surface +ev_transition_animation_set_dest_surface +ev_transition_animation_get_page_from +ev_transition_animation_get_page_to +ev_transition_animation_paint +ev_transition_animation_ready -EV_SIDEBAR_PAGE -EV_IS_SIDEBAR_PAGE -EV_TYPE_SIDEBAR_PAGE -ev_sidebar_page_get_type -EV_SIDEBAR_PAGE_GET_IFACE +EV_TRANSITION_ANIMATION +EV_IS_TRANSITION_ANIMATION +EV_TYPE_TRANSITION_ANIMATION +ev_transition_animation_get_type +EV_TRANSITION_ANIMATION_CLASS +EV_IS_TRANSITION_ANIMATION_CLASS +EV_TRANSITION_ANIMATION_GET_CLASS +
+ +
+ev-page-cache +ev_page_cache_new +ev_page_cache_get_n_pages +ev_page_cache_get_title +ev_page_cache_get_size +ev_page_cache_get_max_width +ev_page_cache_get_max_height +ev_page_cache_get_height_to_page +ev_page_cache_get_thumbnail_size +ev_page_cache_get_max_label_chars +ev_page_cache_get_page_label +ev_page_cache_has_nonnumeric_page_labels +ev_page_cache_get_info +ev_page_cache_get_dual_even_left +ev_page_cache_get_current_page +ev_page_cache_set_current_page +ev_page_cache_set_current_page_history +ev_page_cache_set_page_label +ev_page_cache_get + +EV_PAGE_CACHE +EV_IS_PAGE_CACHE +EV_TYPE_PAGE_CACHE +ev_page_cache_get_type +
+ +
+ev-history +EvHistoryPrivate +EvHistory +EvHistory +ev_history_new +ev_history_add_link +ev_history_get_link_nth +ev_history_get_n_links + +EV_HISTORY +EV_IS_HISTORY +EV_TYPE_HISTORY +ev_history_get_type +EV_HISTORY_CLASS +EV_IS_HISTORY_CLASS +EV_HISTORY_GET_CLASS +
+ +
+ev-password +EvPasswordDialogPrivate +EvPasswordDialog +EvPasswordDialog +ev_password_dialog_get_password +ev_password_dialog_set_bad_pass +ev_password_dialog_save_password + +EV_PASSWORD_DIALOG +EV_IS_PASSWORD_DIALOG +EV_TYPE_PASSWORD_DIALOG +ev_password_dialog_get_type +EV_PASSWORD_DIALOG_CLASS +EV_IS_PASSWORD_DIALOG_CLASS +EV_PASSWORD_DIALOG_GET_CLASS +
+ +
+ev-tooltip +EvTooltipPrivate +EvTooltip +EvTooltip +ev_tooltip_new +ev_tooltip_set_text +ev_tooltip_set_position +ev_tooltip_activate +ev_tooltip_deactivate + +EV_TOOLTIP +EV_IS_TOOLTIP +EV_TYPE_TOOLTIP +ev_tooltip_get_type +EV_TOOLTIP_CLASS +EV_IS_TOOLTIP_CLASS +EV_TOOLTIP_GET_CLASS +
+ +
+ev-timeline +EvTimeline +EvTimelineClass +start +started +finished +paused +frame +ev_timeline_new +ev_timeline_start +ev_timeline_pause +ev_timeline_rewind +ev_timeline_is_running +ev_timeline_get_fps +ev_timeline_set_fps +ev_timeline_get_loop +ev_timeline_set_loop +ev_timeline_get_duration +ev_timeline_set_duration +ev_timeline_get_progress + +EV_TIMELINE +EV_IS_TIMELINE +EV_TYPE_TIMELINE +ev_timeline_get_type +EV_TIMELINE_CLASS +EV_IS_TIMELINE_CLASS +EV_TIMELINE_GET_CLASS +
+ +
+ev-password-view +EvPasswordViewPrivate +EvPasswordView +EvPasswordView +ev_password_view_new +ev_password_view_set_file_name + +EV_PASSWORD_VIEW +EV_IS_PASSWORD_VIEW +EV_TYPE_PASSWORD_VIEW +ev_password_view_get_type +
+ +
+ev-view +EV_TYPE_SIZING_MODE +EV_SIZING_MODE_CLASS +EV_TYPE_SCROLL_TYPE +EV_SCROLL_TYPE_CLASS +EvView +EvViewClass +EvSizingMode +EvViewSelectionMode +EvScrollType +ev_sizing_mode_get_type +ev_scroll_type_get_type +ev_view_new +ev_view_set_document +ev_view_set_loading +ev_view_copy +ev_view_select_all +ev_view_get_has_selection +ev_view_get_continuous +ev_view_set_continuous +ev_view_get_dual_page +ev_view_set_dual_page +ev_view_set_fullscreen +ev_view_get_fullscreen +ev_view_set_presentation +ev_view_get_presentation +ev_view_set_sizing_mode +ev_view_get_sizing_mode +ev_view_can_zoom_in +ev_view_zoom_in +ev_view_can_zoom_out +ev_view_zoom_out +ev_view_set_zoom +ev_view_get_zoom +ev_view_set_screen_dpi +ev_view_rotate_left +ev_view_rotate_right +ev_view_set_rotation +ev_view_get_rotation +ev_view_can_find_next +ev_view_find_next +ev_view_can_find_previous +ev_view_find_previous +ev_view_search_changed +ev_view_set_highlight_search +ev_view_find_cancel +ev_view_get_status +ev_view_get_find_status +ev_view_hide_cursor +ev_view_show_cursor +ev_view_scroll +ev_view_handle_link +ev_view_next_page +ev_view_previous_page +ev_view_page_label_from_dest +ev_view_update_view_size +ev_view_autoscroll_start +ev_view_autoscroll_stop + +EV_VIEW +EV_IS_VIEW +EV_TYPE_VIEW +ev_view_get_type +
+ +
+ev-sidebar-thumbnails +EvSidebarThumbnailsPrivate +EvSidebarThumbnails +EvSidebarThumbnails +ev_sidebar_thumbnails_new +ev_sidebar_thumbnails_refresh + +EV_SIDEBAR_THUMBNAILS +EV_IS_SIDEBAR_THUMBNAILS +EV_TYPE_SIDEBAR_THUMBNAILS +ev_sidebar_thumbnails_get_type +EV_SIDEBAR_THUMBNAILS_CLASS +EV_IS_SIDEBAR_THUMBNAILS_CLASS +EV_SIDEBAR_THUMBNAILS_GET_CLASS +
+ +
+ev-sidebar-links +EvSidebarLinksPrivate +EvSidebarLinks +EvSidebarLinks +ev_sidebar_links_new + +EV_SIDEBAR_LINKS +EV_IS_SIDEBAR_LINKS +EV_TYPE_SIDEBAR_LINKS +ev_sidebar_links_get_type +EV_SIDEBAR_LINKS_CLASS +EV_IS_SIDEBAR_LINKS_CLASS +EV_SIDEBAR_LINKS_GET_CLASS +
+ +
+ev-pixbuf-cache +EvViewSelection +EvPixbufCache +EvPixbufCacheClass +ev_pixbuf_cache_new +ev_pixbuf_cache_set_page_range +ev_pixbuf_cache_get_surface +ev_pixbuf_cache_get_link_mapping +ev_pixbuf_cache_get_image_mapping +ev_pixbuf_cache_get_text_mapping +ev_pixbuf_cache_get_form_field_mapping +ev_pixbuf_cache_clear +ev_pixbuf_cache_style_changed +ev_pixbuf_cache_reload_page +ev_pixbuf_cache_get_selection_surface +ev_pixbuf_cache_set_selection_list +ev_pixbuf_cache_get_selection_list + +EV_PIXBUF_CACHE +EV_IS_PIXBUF_CACHE +EV_TYPE_PIXBUF_CACHE +ev_pixbuf_cache_get_type
@@ -70,92 +328,83 @@
-ev-application -EvApplication -EvApplicationClass -EV_APP -ev_application_get_instance -ev_application_register_service -ev_application_shutdown -ev_application_open_window -ev_application_open_uri -ev_application_open_uri_at_dest -ev_application_open_uri_list -ev_application_get_windows -ev_application_get_toolbars_model -ev_application_save_toolbars_model -ev_application_set_chooser_uri -ev_application_get_chooser_uri -ev_application_screensaver_enable -ev_application_screensaver_disable -ev_application_get_print_settings -ev_application_set_print_settings +ev-open-recent-action +EvOpenRecentAction +EvOpenRecentAction -EV_APPLICATION -EV_IS_APPLICATION -EV_TYPE_APPLICATION -ev_application_get_type -EV_APPLICATION_CLASS -EV_IS_APPLICATION_CLASS -EV_APPLICATION_GET_CLASS +EV_OPEN_RECENT_ACTION +EV_IS_OPEN_RECENT_ACTION +EV_TYPE_OPEN_RECENT_ACTION +ev_open_recent_action_get_type +EV_OPEN_RECENT_ACTION_CLASS +EV_IS_OPEN_RECENT_ACTION_CLASS +EV_OPEN_RECENT_ACTION_GET_CLASS
-ev-window -EvWindowRunMode -EvPrintRange -EvPrintPageSet -EvWindowPrivate -EvWindow -EvWindow -ev_window_new -ev_window_get_uri -ev_window_open_uri -ev_window_is_empty -ev_window_print_range +ev-properties-dialog +EvPropertiesDialog +EvPropertiesDialogClass +EvPropertiesDialogPrivate +ev_properties_dialog_new +ev_properties_dialog_set_document -EV_WINDOW -EV_IS_WINDOW -EV_TYPE_WINDOW -ev_window_get_type -EV_WINDOW_CLASS -EV_IS_WINDOW_CLASS -EV_WINDOW_GET_CLASS +EV_PROPERTIES_DIALOG +EV_IS_PROPERTIES_DIALOG +EV_TYPE_PROPERTIES_DIALOG +ev_properties_dialog_get_type +EV_PROPERTIES_DIALOG_CLASS +EV_IS_PROPERTIES_DIALOG_CLASS +EV_PROPERTIES_DIALOG_GET_CLASS
-ev-sidebar-thumbnails -EvSidebarThumbnailsPrivate -EvSidebarThumbnails -EvSidebarThumbnails -ev_sidebar_thumbnails_new -ev_sidebar_thumbnails_refresh +ev-properties-fonts +EvPropertiesFonts +EvPropertiesFontsClass +EvPropertiesFontsPrivate +EV_TYPE_PROPERTIES_FONTS +EV_PROPERTIES_FONTS +EV_PROPERTIES_FONTS_CLASS +EV_PROPERTIES_FONTS_GET_CLASS +ev_properties_fonts_new +ev_properties_fonts_set_document -EV_SIDEBAR_THUMBNAILS -EV_IS_SIDEBAR_THUMBNAILS -EV_TYPE_SIDEBAR_THUMBNAILS -ev_sidebar_thumbnails_get_type -EV_SIDEBAR_THUMBNAILS_CLASS -EV_IS_SIDEBAR_THUMBNAILS_CLASS -EV_SIDEBAR_THUMBNAILS_GET_CLASS +EV_IS_PROPERTIES +ev_properties_fonts_get_type +EV_IS_PROPERTIES_CLASS
-ev-password -EvPasswordDialogPrivate -EvPasswordDialog -EvPasswordDialog -ev_password_dialog_get_password -ev_password_dialog_set_bad_pass -ev_password_dialog_save_password +ev-sidebar-attachments +EvSidebarAttachmentsPrivate +EvSidebarAttachments +EvSidebarAttachments +ev_sidebar_attachments_new -EV_PASSWORD_DIALOG -EV_IS_PASSWORD_DIALOG -EV_TYPE_PASSWORD_DIALOG -ev_password_dialog_get_type -EV_PASSWORD_DIALOG_CLASS -EV_IS_PASSWORD_DIALOG_CLASS -EV_PASSWORD_DIALOG_GET_CLASS +EV_SIDEBAR_ATTACHMENTS +EV_IS_SIDEBAR_ATTACHMENTS +EV_TYPE_SIDEBAR_ATTACHMENTS +ev_sidebar_attachments_get_type +EV_SIDEBAR_ATTACHMENTS_CLASS +EV_IS_SIDEBAR_ATTACHMENTS_CLASS +EV_SIDEBAR_ATTACHMENTS_GET_CLASS +
+ +
+ev-navigation-action +EvNavigationActionPrivate +EvNavigationAction +EvNavigationAction +ev_navigation_action_set_history + +EV_NAVIGATION_ACTION +EV_IS_NAVIGATION_ACTION +EV_TYPE_NAVIGATION_ACTION +ev_navigation_action_get_type +EV_NAVIGATION_ACTION_CLASS +EV_IS_NAVIGATION_ACTION_CLASS +EV_NAVIGATION_ACTION_GET_CLASS
@@ -237,170 +486,6 @@
-ev-navigation-action -EvNavigationActionPrivate -EvNavigationAction -EvNavigationAction -ev_navigation_action_set_history - -EV_NAVIGATION_ACTION -EV_IS_NAVIGATION_ACTION -EV_TYPE_NAVIGATION_ACTION -ev_navigation_action_get_type -EV_NAVIGATION_ACTION_CLASS -EV_IS_NAVIGATION_ACTION_CLASS -EV_NAVIGATION_ACTION_GET_CLASS -
- -
-ev-properties-fonts -EvPropertiesFonts -EvPropertiesFontsClass -EvPropertiesFontsPrivate -EV_TYPE_PROPERTIES_FONTS -EV_PROPERTIES_FONTS -EV_PROPERTIES_FONTS_CLASS -EV_PROPERTIES_FONTS_GET_CLASS -ev_properties_fonts_new -ev_properties_fonts_set_document - -EV_IS_PROPERTIES -ev_properties_fonts_get_type -EV_IS_PROPERTIES_CLASS -
- -
-ev-timeline -EvTimeline -EvTimeline -ev_timeline_new -ev_timeline_start -ev_timeline_pause -ev_timeline_rewind -ev_timeline_is_running -ev_timeline_get_fps -ev_timeline_set_fps -ev_timeline_get_loop -ev_timeline_set_loop -ev_timeline_get_duration -ev_timeline_set_duration -ev_timeline_get_progress - -EV_TIMELINE -EV_IS_TIMELINE -EV_TYPE_TIMELINE -ev_timeline_get_type -EV_TIMELINE_CLASS -EV_IS_TIMELINE_CLASS -EV_TIMELINE_GET_CLASS -
- -
-ev-view -EV_TYPE_SIZING_MODE -EV_SIZING_MODE_CLASS -EV_TYPE_SCROLL_TYPE -EV_SCROLL_TYPE_CLASS -EvView -EvViewClass -EvSizingMode -EvViewSelectionMode -EvScrollType -ev_sizing_mode_get_type -ev_scroll_type_get_type -ev_view_new -ev_view_set_document -ev_view_set_loading -ev_view_copy -ev_view_select_all -ev_view_get_has_selection -ev_view_get_continuous -ev_view_set_continuous -ev_view_get_dual_page -ev_view_set_dual_page -ev_view_set_fullscreen -ev_view_get_fullscreen -ev_view_set_presentation -ev_view_get_presentation -ev_view_set_sizing_mode -ev_view_get_sizing_mode -ev_view_can_zoom_in -ev_view_zoom_in -ev_view_can_zoom_out -ev_view_zoom_out -ev_view_set_zoom -ev_view_get_zoom -ev_view_set_screen_dpi -ev_view_rotate_left -ev_view_rotate_right -ev_view_set_rotation -ev_view_get_rotation -ev_view_can_find_next -ev_view_find_next -ev_view_can_find_previous -ev_view_find_previous -ev_view_search_changed -ev_view_set_highlight_search -ev_view_find_cancel -ev_view_get_status -ev_view_get_find_status -ev_view_hide_cursor -ev_view_show_cursor -ev_view_scroll -ev_view_handle_link -ev_view_next_page -ev_view_previous_page -ev_view_page_label_from_dest -ev_view_update_view_size -ev_view_autoscroll_start -ev_view_autoscroll_stop - -EV_VIEW -EV_IS_VIEW -EV_TYPE_VIEW -ev_view_get_type -
- -
-ev-pixbuf-cache -EvViewSelection -EvPixbufCache -EvPixbufCacheClass -ev_pixbuf_cache_new -ev_pixbuf_cache_set_page_range -ev_pixbuf_cache_get_surface -ev_pixbuf_cache_get_link_mapping -ev_pixbuf_cache_get_image_mapping -ev_pixbuf_cache_get_text_mapping -ev_pixbuf_cache_get_form_field_mapping -ev_pixbuf_cache_clear -ev_pixbuf_cache_style_changed -ev_pixbuf_cache_reload_page -ev_pixbuf_cache_get_selection_surface -ev_pixbuf_cache_set_selection_list -ev_pixbuf_cache_get_selection_list - -EV_PIXBUF_CACHE -EV_IS_PIXBUF_CACHE -EV_TYPE_PIXBUF_CACHE -ev_pixbuf_cache_get_type -
- -
-ev-password-view -EvPasswordViewPrivate -EvPasswordView -EvPasswordView -ev_password_view_new -ev_password_view_set_file_name - -EV_PASSWORD_VIEW -EV_IS_PASSWORD_VIEW -EV_TYPE_PASSWORD_VIEW -ev_password_view_get_type -
- -
eggfindbar EggFindBarPrivate EggFindBar @@ -424,99 +509,57 @@
-ev-page-cache -ev_page_cache_new -ev_page_cache_get_n_pages -ev_page_cache_get_title -ev_page_cache_get_size -ev_page_cache_get_max_width -ev_page_cache_get_max_height -ev_page_cache_get_height_to_page -ev_page_cache_get_thumbnail_size -ev_page_cache_get_max_label_chars -ev_page_cache_get_page_label -ev_page_cache_has_nonnumeric_page_labels -ev_page_cache_get_info -ev_page_cache_get_dual_even_left -ev_page_cache_get_current_page -ev_page_cache_set_current_page -ev_page_cache_set_current_page_history -ev_page_cache_set_page_label -ev_page_cache_get - -EV_PAGE_CACHE -EV_IS_PAGE_CACHE -EV_TYPE_PAGE_CACHE -ev_page_cache_get_type -
- -
-ev-tooltip -EvTooltipPrivate -EvTooltip -EvTooltip -ev_tooltip_new -ev_tooltip_set_text -ev_tooltip_set_position -ev_tooltip_activate -ev_tooltip_deactivate - -EV_TOOLTIP -EV_IS_TOOLTIP -EV_TYPE_TOOLTIP -ev_tooltip_get_type -EV_TOOLTIP_CLASS -EV_IS_TOOLTIP_CLASS -EV_TOOLTIP_GET_CLASS -
- -
-ev-history -EvHistoryPrivate -EvHistory -EvHistory -ev_history_new -ev_history_add_link -ev_history_get_link_nth -ev_history_get_n_links - -EV_HISTORY -EV_IS_HISTORY -EV_TYPE_HISTORY -ev_history_get_type -EV_HISTORY_CLASS -EV_IS_HISTORY_CLASS -EV_HISTORY_GET_CLASS -
- -
-ev-open-recent-action -EvOpenRecentAction -EvOpenRecentAction +ev-application +EvApplication +EvApplicationClass +EV_APP +ev_application_get_instance +ev_application_register_service +ev_application_shutdown +ev_application_open_window +ev_application_open_uri +ev_application_open_uri_at_dest +ev_application_open_uri_list +ev_application_get_windows +ev_application_get_toolbars_model +ev_application_save_toolbars_model +ev_application_set_chooser_uri +ev_application_get_chooser_uri +ev_application_screensaver_enable +ev_application_screensaver_disable +ev_application_get_print_settings +ev_application_set_print_settings -EV_OPEN_RECENT_ACTION -EV_IS_OPEN_RECENT_ACTION -EV_TYPE_OPEN_RECENT_ACTION -ev_open_recent_action_get_type -EV_OPEN_RECENT_ACTION_CLASS -EV_IS_OPEN_RECENT_ACTION_CLASS -EV_OPEN_RECENT_ACTION_GET_CLASS +EV_APPLICATION +EV_IS_APPLICATION +EV_TYPE_APPLICATION +ev_application_get_type +EV_APPLICATION_CLASS +EV_IS_APPLICATION_CLASS +EV_APPLICATION_GET_CLASS
-ev-sidebar-links -EvSidebarLinksPrivate -EvSidebarLinks -EvSidebarLinks -ev_sidebar_links_new +ev-window +EvWindowRunMode +EvPrintRange +EvPrintPageSet +EvWindowPrivate +EvWindow +EvWindow +ev_window_new +ev_window_get_uri +ev_window_open_uri +ev_window_is_empty +ev_window_print_range -EV_SIDEBAR_LINKS -EV_IS_SIDEBAR_LINKS -EV_TYPE_SIDEBAR_LINKS -ev_sidebar_links_get_type -EV_SIDEBAR_LINKS_CLASS -EV_IS_SIDEBAR_LINKS_CLASS -EV_SIDEBAR_LINKS_GET_CLASS +EV_WINDOW +EV_IS_WINDOW +EV_TYPE_WINDOW +ev_window_get_type +EV_WINDOW_CLASS +EV_IS_WINDOW_CLASS +EV_WINDOW_GET_CLASS
@@ -538,41 +581,61 @@
-ev-properties-dialog -EvPropertiesDialog -EvPropertiesDialogClass -EvPropertiesDialogPrivate -ev_properties_dialog_new -ev_properties_dialog_set_document +ev-document-images +EV_DOCUMENT_IMAGES_IFACE +EV_IS_DOCUMENT_IMAGES_IFACE +EvDocumentImages +EvDocumentImagesIface +ev_document_images_get_image_mapping +ev_document_images_get_image -EV_PROPERTIES_DIALOG -EV_IS_PROPERTIES_DIALOG -EV_TYPE_PROPERTIES_DIALOG -ev_properties_dialog_get_type -EV_PROPERTIES_DIALOG_CLASS -EV_IS_PROPERTIES_DIALOG_CLASS -EV_PROPERTIES_DIALOG_GET_CLASS +EV_DOCUMENT_IMAGES +EV_IS_DOCUMENT_IMAGES +EV_TYPE_DOCUMENT_IMAGES +ev_document_images_get_type +EV_DOCUMENT_IMAGES_GET_IFACE
-ev-transition-animation -EvTransitionAnimation -EvTransitionAnimation -ev_transition_animation_new -ev_transition_animation_set_origin_surface -ev_transition_animation_set_dest_surface -ev_transition_animation_get_page_from -ev_transition_animation_get_page_to -ev_transition_animation_paint -ev_transition_animation_ready +ev-document +EV_DOCUMENT_IFACE +EV_IS_DOCUMENT_IFACE +EvDocument +EvDocumentIface +EvPageCache +EvPageCacheClass +EV_DOCUMENT_ERROR +EV_DOC_MUTEX_LOCK +EV_DOC_MUTEX_UNLOCK +EvDocumentError +EvPoint +EvRectangle +ev_document_error_quark +ev_document_get_doc_mutex +ev_document_doc_mutex_lock +ev_document_doc_mutex_unlock +ev_document_get_fc_mutex +ev_document_fc_mutex_lock +ev_document_fc_mutex_unlock +ev_document_get_info +ev_document_load +ev_document_save +ev_document_get_n_pages +ev_document_get_page_size +ev_document_get_page_label +ev_document_has_attachments +ev_document_get_attachments +ev_document_render +ev_rect_cmp +EV_BACKEND_IMPLEMENT_INTERFACE +EV_BACKEND_REGISTER_WITH_CODE +EV_BACKEND_REGISTER -EV_TRANSITION_ANIMATION -EV_IS_TRANSITION_ANIMATION -EV_TYPE_TRANSITION_ANIMATION -ev_transition_animation_get_type -EV_TRANSITION_ANIMATION_CLASS -EV_IS_TRANSITION_ANIMATION_CLASS -EV_TRANSITION_ANIMATION_GET_CLASS +EV_DOCUMENT +EV_IS_DOCUMENT +EV_TYPE_DOCUMENT +ev_document_get_type +EV_DOCUMENT_GET_IFACE
@@ -594,79 +657,44 @@
-ev-document-forms -EV_DOCUMENT_FORMS_IFACE -EV_IS_DOCUMENT_FORMS_IFACE -EvDocumentForms -EvDocumentFormsIface -ev_document_forms_get_form_fields -ev_document_forms_form_field_text_get_text -ev_document_forms_form_field_text_set_text -ev_document_forms_form_field_button_get_state -ev_document_forms_form_field_button_set_state -ev_document_forms_form_field_choice_get_item -ev_document_forms_form_field_choice_get_n_items -ev_document_forms_form_field_choice_is_item_selected -ev_document_forms_form_field_choice_select_item -ev_document_forms_form_field_choice_toggle_item -ev_document_forms_form_field_choice_unselect_all -ev_document_forms_form_field_choice_set_text -ev_document_forms_form_field_choice_get_text - -EV_DOCUMENT_FORMS -EV_IS_DOCUMENT_FORMS -EV_TYPE_DOCUMENT_FORMS -ev_document_forms_get_type -EV_DOCUMENT_FORMS_GET_IFACE -
- -
-ev-image -EvImagePrivate -EvImage -EvImage -ev_image_new -ev_image_new_from_pixbuf -ev_image_get_id -ev_image_get_page -ev_image_get_pixbuf -ev_image_save_tmp -ev_image_get_tmp_uri -EvImageMapping -ev_image_mapping_free -ev_image_mapping_find +ev-document-thumbnails +EV_DOCUMENT_THUMBNAILS_IFACE +EV_IS_DOCUMENT_THUMBNAILS_IFACE +EvDocumentThumbnails +EvDocumentThumbnailsIface +ev_document_thumbnails_get_thumbnail +ev_document_thumbnails_get_dimensions -EV_IMAGE -EV_IS_IMAGE -EV_TYPE_IMAGE -ev_image_get_type -EV_IMAGE_CLASS -EV_IS_IMAGE_CLASS -EV_IMAGE_GET_CLASS +EV_DOCUMENT_THUMBNAILS +EV_IS_DOCUMENT_THUMBNAILS +EV_TYPE_DOCUMENT_THUMBNAILS +ev_document_thumbnails_get_type +EV_DOCUMENT_THUMBNAILS_GET_IFACE
-ev-transition-effect -EV_TYPE_TRANSITION_EFFECT_TYPE -EV_TYPE_TRANSITION_EFFECT_ALIGNMENT -EV_TYPE_TRANSITION_EFFECT_DIRECTION -EvTransitionEffectType -EvTransitionEffectAlignment -EvTransitionEffectDirection -EvTransitionEffect -EvTransitionEffect -ev_transition_effect_type_get_type -ev_transition_effect_alignment_get_type -ev_transition_effect_direction_get_type -ev_transition_effect_new +ev-attachment +EvAttachmentPrivate +EV_ATTACHMENT_ERROR +EvAttachment +EvAttachment +ev_attachment_error_quark +ev_attachment_new +ev_attachment_get_name +ev_attachment_get_description +ev_attachment_get_modification_date +ev_attachment_get_creation_date +ev_attachment_get_mime_type +ev_attachment_save +ev_attachment_open -EV_TRANSITION_EFFECT -EV_IS_TRANSITION_EFFECT -EV_TYPE_TRANSITION_EFFECT -ev_transition_effect_get_type -EV_TRANSITION_EFFECT_CLASS -EV_IS_TRANSITION_EFFECT_CLASS -EV_TRANSITION_EFFECT_GET_CLASS +EV_ATTACHMENT +EV_IS_ATTACHMENT +EV_TYPE_ATTACHMENT +ev_attachment_get_type +EV_ATTACHMENT_CLASS +EV_IS_ATTACHMENT_CLASS +EV_ATTACHMENT_GET_CLASS
@@ -686,86 +714,70 @@
-ev-attachment -EvAttachmentPrivate -EV_ATTACHMENT_ERROR -EvAttachment -EvAttachment -ev_attachment_error_quark -ev_attachment_new -ev_attachment_get_name -ev_attachment_get_description -ev_attachment_get_modification_date -ev_attachment_get_creation_date -ev_attachment_get_mime_type -ev_attachment_save -ev_attachment_open +ev-link-action +EvLinkAction +EvLinkActionClass +EvLinkActionPrivate +EV_TYPE_LINK_ACTION_TYPE +EvLinkActionType +ev_link_action_get_type +ev_link_action_get_action_type +ev_link_action_get_dest +ev_link_action_get_uri +ev_link_action_get_filename +ev_link_action_get_params +ev_link_action_get_name +ev_link_action_new_dest +ev_link_action_new_remote +ev_link_action_new_external_uri +ev_link_action_new_launch +ev_link_action_new_named -EV_ATTACHMENT -EV_IS_ATTACHMENT -EV_TYPE_ATTACHMENT -ev_attachment_get_type -EV_ATTACHMENT_CLASS -EV_IS_ATTACHMENT_CLASS -EV_ATTACHMENT_GET_CLASS +EV_LINK_ACTION +EV_IS_LINK_ACTION +EV_TYPE_LINK_ACTION +ev_link_action_type_get_type +EV_LINK_ACTION_CLASS +EV_IS_LINK_ACTION_CLASS +EV_LINK_ACTION_GET_CLASS
-ev-document-transition -EV_DOCUMENT_TRANSITION_IFACE -EV_IS_DOCUMENT_TRANSITION_IFACE -EvDocumentTransition -EvDocumentTransitionIface -ev_document_transition_get_page_duration -ev_document_transition_get_effect +ev-document-fonts +EV_DOCUMENT_FONTS_IFACE +EV_IS_DOCUMENT_FONTS_IFACE +EvDocumentFonts +EvDocumentFontsIface +ev_document_fonts_scan +ev_document_fonts_get_progress +ev_document_fonts_fill_model -EV_DOCUMENT_TRANSITION -EV_IS_DOCUMENT_TRANSITION -EV_TYPE_DOCUMENT_TRANSITION -ev_document_transition_get_type -EV_DOCUMENT_TRANSITION_GET_IFACE +EV_DOCUMENT_FONTS +EV_IS_DOCUMENT_FONTS +EV_TYPE_DOCUMENT_FONTS +ev_document_fonts_get_type +EV_DOCUMENT_FONTS_GET_IFACE
-ev-document -EV_DOCUMENT_IFACE -EV_IS_DOCUMENT_IFACE -EvDocument -EvDocumentIface -EvPageCache -EvPageCacheClass -EV_DOCUMENT_ERROR -EV_DOC_MUTEX_LOCK -EV_DOC_MUTEX_UNLOCK -EvDocumentError -EvPoint -EvRectangle -ev_document_error_quark -ev_document_get_doc_mutex -ev_document_doc_mutex_lock -ev_document_doc_mutex_unlock -ev_document_get_fc_mutex -ev_document_fc_mutex_lock -ev_document_fc_mutex_unlock -ev_document_get_info -ev_document_load -ev_document_save -ev_document_get_n_pages -ev_document_get_page_size -ev_document_get_page_label -ev_document_has_attachments -ev_document_get_attachments -ev_document_render -ev_rect_cmp -EV_BACKEND_IMPLEMENT_INTERFACE -EV_BACKEND_REGISTER_WITH_CODE -EV_BACKEND_REGISTER +ev-document-find +EV_DOCUMENT_FIND_IFACE +EV_IS_DOCUMENT_FIND_IFACE +EvDocumentFind +EvDocumentFindIface +ev_document_find_begin +ev_document_find_cancel +ev_document_find_page_has_results +ev_document_find_get_n_results +ev_document_find_get_result +ev_document_find_get_progress +ev_document_find_changed -EV_DOCUMENT -EV_IS_DOCUMENT -EV_TYPE_DOCUMENT -ev_document_get_type -EV_DOCUMENT_GET_IFACE +EV_DOCUMENT_FIND +EV_IS_DOCUMENT_FIND +EV_TYPE_DOCUMENT_FIND +ev_document_find_get_type +EV_DOCUMENT_FIND_GET_IFACE
@@ -788,6 +800,44 @@
+ev-link +EvLink +EvLinkClass +EvLinkPrivate +ev_link_new +ev_link_get_title +ev_link_get_action +ev_link_get_page +EvLinkMapping +ev_link_mapping_free +ev_link_mapping_find +ev_link_mapping_get_area + +EV_LINK +EV_IS_LINK +EV_TYPE_LINK +ev_link_get_type +EV_LINK_CLASS +EV_IS_LINK_CLASS +EV_LINK_GET_CLASS +
+ +
+ev-async-renderer +EV_ASYNC_RENDERER_IFACE +EV_IS_ASYNC_RENDERER_IFACE +EvAsyncRenderer +EvAsyncRendererIface +ev_async_renderer_render_pixbuf + +EV_ASYNC_RENDERER +EV_IS_ASYNC_RENDERER +EV_TYPE_ASYNC_RENDERER +ev_async_renderer_get_type +EV_ASYNC_RENDERER_GET_IFACE +
+ +
ev-render-context EvRenderContext EvRenderContext @@ -804,34 +854,70 @@
-ev-async-renderer -EV_ASYNC_RENDERER_IFACE -EV_IS_ASYNC_RENDERER_IFACE -EvAsyncRenderer -EvAsyncRendererIface -ev_async_renderer_render_pixbuf +ev-document-transition +EV_DOCUMENT_TRANSITION_IFACE +EV_IS_DOCUMENT_TRANSITION_IFACE +EvDocumentTransition +EvDocumentTransitionIface +ev_document_transition_get_page_duration +ev_document_transition_get_effect -EV_ASYNC_RENDERER -EV_IS_ASYNC_RENDERER -EV_TYPE_ASYNC_RENDERER -ev_async_renderer_get_type -EV_ASYNC_RENDERER_GET_IFACE +EV_DOCUMENT_TRANSITION +EV_IS_DOCUMENT_TRANSITION +EV_TYPE_DOCUMENT_TRANSITION +ev_document_transition_get_type +EV_DOCUMENT_TRANSITION_GET_IFACE
-ev-document-images -EV_DOCUMENT_IMAGES_IFACE -EV_IS_DOCUMENT_IMAGES_IFACE -EvDocumentImages -EvDocumentImagesIface -ev_document_images_get_image_mapping -ev_document_images_get_image +ev-transition-effect +EV_TYPE_TRANSITION_EFFECT_TYPE +EV_TYPE_TRANSITION_EFFECT_ALIGNMENT +EV_TYPE_TRANSITION_EFFECT_DIRECTION +EvTransitionEffectType +EvTransitionEffectAlignment +EvTransitionEffectDirection +EvTransitionEffect +EvTransitionEffectClass +ev_transition_effect_type_get_type +ev_transition_effect_alignment_get_type +ev_transition_effect_direction_get_type +ev_transition_effect_new -EV_DOCUMENT_IMAGES -EV_IS_DOCUMENT_IMAGES -EV_TYPE_DOCUMENT_IMAGES -ev_document_images_get_type -EV_DOCUMENT_IMAGES_GET_IFACE +EV_TRANSITION_EFFECT +EV_IS_TRANSITION_EFFECT +EV_TYPE_TRANSITION_EFFECT +ev_transition_effect_get_type +EV_TRANSITION_EFFECT_CLASS +EV_IS_TRANSITION_EFFECT_CLASS +EV_TRANSITION_EFFECT_GET_CLASS +
+ +
+ev-document-forms +EV_DOCUMENT_FORMS_IFACE +EV_IS_DOCUMENT_FORMS_IFACE +EvDocumentForms +EvDocumentFormsIface +ev_document_forms_get_form_fields +ev_document_forms_form_field_text_get_text +ev_document_forms_form_field_text_set_text +ev_document_forms_form_field_button_get_state +ev_document_forms_form_field_button_set_state +ev_document_forms_form_field_choice_get_item +ev_document_forms_form_field_choice_get_n_items +ev_document_forms_form_field_choice_is_item_selected +ev_document_forms_form_field_choice_select_item +ev_document_forms_form_field_choice_toggle_item +ev_document_forms_form_field_choice_unselect_all +ev_document_forms_form_field_choice_set_text +ev_document_forms_form_field_choice_get_text + +EV_DOCUMENT_FORMS +EV_IS_DOCUMENT_FORMS +EV_TYPE_DOCUMENT_FORMS +ev_document_forms_get_type +EV_DOCUMENT_FORMS_GET_IFACE
@@ -852,26 +938,28 @@
-ev-file-exporter -EvFileExporterFormat -EvFileExporterCapabilities -EvFileExporterContext -EV_FILE_EXPORTER_IFACE -EV_IS_FILE_EXPORTER_IFACE -EvFileExporter -EvFileExporterIface -ev_file_exporter_begin -ev_file_exporter_begin_page -ev_file_exporter_do_page -ev_file_exporter_end_page -ev_file_exporter_end -ev_file_exporter_get_capabilities +ev-image +EvImagePrivate +EvImage +EvImage +ev_image_new +ev_image_new_from_pixbuf +ev_image_get_id +ev_image_get_page +ev_image_get_pixbuf +ev_image_save_tmp +ev_image_get_tmp_uri +EvImageMapping +ev_image_mapping_free +ev_image_mapping_find -EV_FILE_EXPORTER -EV_IS_FILE_EXPORTER -EV_TYPE_FILE_EXPORTER -ev_file_exporter_get_type -EV_FILE_EXPORTER_GET_IFACE +EV_IMAGE +EV_IS_IMAGE +EV_TYPE_IMAGE +ev_image_get_type +EV_IMAGE_CLASS +EV_IS_IMAGE_CLASS +EV_IMAGE_GET_CLASS
@@ -937,29 +1025,6 @@
-ev-link -EvLink -EvLinkClass -EvLinkPrivate -ev_link_new -ev_link_get_title -ev_link_get_action -ev_link_get_page -EvLinkMapping -ev_link_mapping_free -ev_link_mapping_find -ev_link_mapping_get_area - -EV_LINK -EV_IS_LINK -EV_TYPE_LINK -ev_link_get_type -EV_LINK_CLASS -EV_IS_LINK_CLASS -EV_LINK_GET_CLASS -
- -
ev-link-dest EvLinkDest EvLinkDestClass @@ -995,101 +1060,37 @@
-ev-document-find -EV_DOCUMENT_FIND_IFACE -EV_IS_DOCUMENT_FIND_IFACE -EvDocumentFind -EvDocumentFindIface -ev_document_find_begin -ev_document_find_cancel -ev_document_find_page_has_results -ev_document_find_get_n_results -ev_document_find_get_result -ev_document_find_get_progress -ev_document_find_changed - -EV_DOCUMENT_FIND -EV_IS_DOCUMENT_FIND -EV_TYPE_DOCUMENT_FIND -ev_document_find_get_type -EV_DOCUMENT_FIND_GET_IFACE -
- -
-ev-link-action -EvLinkAction -EvLinkActionClass -EvLinkActionPrivate -EV_TYPE_LINK_ACTION_TYPE -EvLinkActionType -ev_link_action_get_type -ev_link_action_get_action_type -ev_link_action_get_dest -ev_link_action_get_uri -ev_link_action_get_filename -ev_link_action_get_params -ev_link_action_get_name -ev_link_action_new_dest -ev_link_action_new_remote -ev_link_action_new_external_uri -ev_link_action_new_launch -ev_link_action_new_named - -EV_LINK_ACTION -EV_IS_LINK_ACTION -EV_TYPE_LINK_ACTION -ev_link_action_type_get_type -EV_LINK_ACTION_CLASS -EV_IS_LINK_ACTION_CLASS -EV_LINK_ACTION_GET_CLASS -
- -
-ev-document-thumbnails -EV_DOCUMENT_THUMBNAILS_IFACE -EV_IS_DOCUMENT_THUMBNAILS_IFACE -EvDocumentThumbnails -EvDocumentThumbnailsIface -ev_document_thumbnails_get_thumbnail -ev_document_thumbnails_get_dimensions - -EV_DOCUMENT_THUMBNAILS -EV_IS_DOCUMENT_THUMBNAILS -EV_TYPE_DOCUMENT_THUMBNAILS -ev_document_thumbnails_get_type -EV_DOCUMENT_THUMBNAILS_GET_IFACE -
- -
-ev-document-fonts -EV_DOCUMENT_FONTS_IFACE -EV_IS_DOCUMENT_FONTS_IFACE -EvDocumentFonts -EvDocumentFontsIface -ev_document_fonts_scan -ev_document_fonts_get_progress -ev_document_fonts_fill_model +ev-file-exporter +EvFileExporterFormat +EvFileExporterCapabilities +EvFileExporterContext +EV_FILE_EXPORTER_IFACE +EV_IS_FILE_EXPORTER_IFACE +EvFileExporter +EvFileExporterIface +ev_file_exporter_begin +ev_file_exporter_begin_page +ev_file_exporter_do_page +ev_file_exporter_end_page +ev_file_exporter_end +ev_file_exporter_get_capabilities -EV_DOCUMENT_FONTS -EV_IS_DOCUMENT_FONTS -EV_TYPE_DOCUMENT_FONTS -ev_document_fonts_get_type -EV_DOCUMENT_FONTS_GET_IFACE -
- -
-ev-navigation-action-widget -EV_TYPE_NAVIGATION_ACTION_WIDGET -EV_NAVIGATION_ACTION_WIDGET -EvNavigationActionWidget -EvNavigationActionWidget -ev_navigation_action_widget_get_type -ev_navigation_action_widget_set_menu +EV_FILE_EXPORTER +EV_IS_FILE_EXPORTER +EV_TYPE_FILE_EXPORTER +ev_file_exporter_get_type +EV_FILE_EXPORTER_GET_IFACE
-ev-view-accessible -ev_view_accessible_factory_get_type +ev-utils +ev_pixbuf_add_shadow +ev_print_region_contents +ev_gui_menu_position_tree_selection +get_num_monitors +get_screen_dpi +file_chooser_dialog_add_writable_pixbuf_formats +get_gdk_pixbuf_format_by_extension
@@ -1104,24 +1105,13 @@
-ev-stock-icons -EV_STOCK_ZOOM -EV_STOCK_ZOOM_PAGE -EV_STOCK_ZOOM_WIDTH -EV_STOCK_VIEW_DUAL -EV_STOCK_VIEW_CONTINUOUS -EV_STOCK_ROTATE_LEFT -EV_STOCK_ROTATE_RIGHT -EV_STOCK_RUN_PRESENTATION -ev_stock_icons_init -
- -
-ev-job-queue -ev_job_queue_init -ev_job_queue_add_job -ev_job_queue_update_job -ev_job_queue_remove_job +ev-navigation-action-widget +EV_TYPE_NAVIGATION_ACTION_WIDGET +EV_NAVIGATION_ACTION_WIDGET +EvNavigationActionWidget +EvNavigationActionWidget +ev_navigation_action_widget_get_type +ev_navigation_action_widget_set_menu
@@ -1149,18 +1139,6 @@
-ev-metadata-manager -ev_metadata_manager_init -ev_metadata_manager_get -ev_metadata_manager_set -ev_metadata_manager_set_int -ev_metadata_manager_set_double -ev_metadata_manager_set_string -ev_metadata_manager_set_boolean -ev_metadata_manager_shutdown -
- -
ev-page-action-widget EV_TYPE_PAGE_ACTION_WIDGET EV_PAGE_ACTION_WIDGET @@ -1186,14 +1164,58 @@
-ev-utils -ev_pixbuf_add_shadow -ev_print_region_contents -ev_gui_menu_position_tree_selection -get_num_monitors -get_screen_dpi -file_chooser_dialog_add_writable_pixbuf_formats -get_gdk_pixbuf_format_by_extension +ev-job-queue +ev_job_queue_init +ev_job_queue_add_job +ev_job_queue_update_job +ev_job_queue_remove_job +
+ +
+ev-metadata-manager +ev_metadata_manager_init +ev_metadata_manager_get +ev_metadata_manager_set +ev_metadata_manager_set_int +ev_metadata_manager_set_double +ev_metadata_manager_set_string +ev_metadata_manager_set_boolean +ev_metadata_manager_shutdown +
+ +
+ev-view-accessible +ev_view_accessible_factory_get_type +
+ +
+ev-stock-icons +EV_STOCK_ZOOM +EV_STOCK_ZOOM_PAGE +EV_STOCK_ZOOM_WIDTH +EV_STOCK_VIEW_DUAL +EV_STOCK_VIEW_CONTINUOUS +EV_STOCK_ROTATE_LEFT +EV_STOCK_ROTATE_RIGHT +EV_STOCK_RUN_PRESENTATION +ev_stock_icons_init +
+ +
+ev-document-info +EvDocumentInfo +EvDocumentLayout +EvDocumentMode +EvDocumentUIHints +EvDocumentPermissions +EvDocumentInfoFields +ev_document_info_free +
+ +
+ev-document-factory +ev_document_factory_get_document +ev_document_factory_add_filters
@@ -1234,20 +1256,3 @@ ev_document_misc_surface_rotate_and_scale
-
-ev-document-factory -ev_document_factory_get_document -ev_document_factory_add_filters -
- -
-ev-document-info -EvDocumentInfo -EvDocumentLayout -EvDocumentMode -EvDocumentUIHints -EvDocumentPermissions -EvDocumentInfoFields -ev_document_info_free -
- diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvAttachment.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvAttachment.html --- evince-2.22.1.1/help/reference/html/EvAttachment.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvAttachment.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Properties + Properties
@@ -108,7 +108,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Properties

+

Properties

 
   "ctime"                    
 
-

Description

+

Description

-

Details

+

Details

-

+

EvAttachmentPrivate

-
typedef struct _EvAttachmentPrivate EvAttachmentPrivate;
+
typedef struct _EvAttachmentPrivate EvAttachmentPrivate;


-

+

EV_ATTACHMENT_ERROR

-
#define EV_ATTACHMENT_ERROR (ev_attachment_error_quark ())
+
#define EV_ATTACHMENT_ERROR (ev_attachment_error_quark ())
 

@@ -169,18 +169,18 @@


-

+

EvAttachment

-
typedef struct _EvAttachment EvAttachment;
+
typedef struct _EvAttachment EvAttachment;


-

+

ev_attachment_error_quark ()

-
GQuark              ev_attachment_error_quark           (void);

@@ -199,9 +199,9 @@


-

+

ev_attachment_new ()

-
EvAttachment*       ev_attachment_new                   (const 
EvAttachment*       ev_attachment_new                   (const gchar *name,
                                                          const 
 
-

+

ev_attachment_get_name ()

-
const 
const gchar*        ev_attachment_get_name              (EvAttachment *attachment);

@@ -295,9 +295,9 @@


-

+

ev_attachment_get_description ()

-
const 
const gchar*        ev_attachment_get_description       (EvAttachment *attachment);

@@ -323,9 +323,9 @@


-

+

ev_attachment_get_modification_date ()

-
GTime               ev_attachment_get_modification_date (EvAttachment *attachment);

@@ -351,9 +351,9 @@


-

+

ev_attachment_get_creation_date ()

-
GTime               ev_attachment_get_creation_date     (EvAttachment *attachment);

@@ -379,9 +379,9 @@


-

+

ev_attachment_get_mime_type ()

-
const 
const gchar*        ev_attachment_get_mime_type         (EvAttachment *attachment);

@@ -407,9 +407,9 @@


-

+

ev_attachment_save ()

-
gboolean            ev_attachment_save                  (EvAttachment *attachment,
                                                          
 
-

+

ev_attachment_open ()

-
gboolean            ev_attachment_open                  (EvAttachment *attachment,
                                                          
 
-

Property Details

+

Property Details

-

-The "ctime" property

-
  "ctime"                    

+The "ctime" property

+
  "ctime"                    gulong                : Write / Construct Only

The attachment creation date.


-

-The "data" property

-
  "data"                     

+The "data" property

+
  "data"                     gpointer              : Write / Construct Only

The attachment data.


-

-The "description" property

-
  "description"              

+The "description" property

+
  "description"              gchararray            : Write / Construct Only

The attachment description.

@@ -517,18 +517,18 @@

-

-The "mtime" property

-
  "mtime"                    

+The "mtime" property

+
  "mtime"                    gulong                : Write / Construct Only

The attachment modification date.


-

-The "name" property

-
  "name"                     

+The "name" property

+
  "name"                     gchararray            : Write / Construct Only

The attachment name.

@@ -536,15 +536,20 @@

-

-The "size" property

-
  "size"                     

+The "size" property

+
  "size"                     guint                 : Write / Construct Only

The attachment size.

Default value: 0

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince.devhelp /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince.devhelp --- evince-2.22.1.1/help/reference/html/evince.devhelp 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince.devhelp 2008-05-28 23:28:14.000000000 +0200 @@ -62,6 +62,8 @@ + + @@ -96,6 +98,8 @@ + + @@ -108,6 +112,8 @@ + + @@ -115,12 +121,16 @@ + + + + @@ -128,6 +138,8 @@ + + @@ -136,30 +148,40 @@ + + + + + + + + + + @@ -178,6 +200,8 @@ + + @@ -189,6 +213,8 @@ + + @@ -212,6 +238,8 @@ + + @@ -245,6 +273,8 @@ + + @@ -257,11 +287,15 @@ + + + + @@ -271,12 +305,16 @@ + + + + @@ -290,6 +328,8 @@ + + @@ -303,16 +343,22 @@ + + + + + + @@ -374,6 +420,8 @@ + + @@ -382,10 +430,14 @@ + + + + @@ -393,6 +445,8 @@ + + @@ -401,6 +455,8 @@ + + @@ -409,6 +465,8 @@ + + @@ -427,15 +485,21 @@ + + + + + + @@ -452,11 +516,15 @@ + + + + @@ -466,12 +534,18 @@ + + + + + + @@ -479,16 +553,22 @@ + + + + + + @@ -498,6 +578,8 @@ + + @@ -505,6 +587,8 @@ + + @@ -512,7 +596,11 @@ + + + + @@ -584,6 +672,8 @@ + + @@ -591,6 +681,8 @@ + + @@ -601,5 +693,7 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince.devhelp2 /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince.devhelp2 --- evince-2.22.1.1/help/reference/html/evince.devhelp2 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince.devhelp2 2008-05-28 23:28:14.000000000 +0200 @@ -62,6 +62,8 @@ + + @@ -96,6 +98,8 @@ + + @@ -108,6 +112,8 @@ + + @@ -115,12 +121,16 @@ + + + + @@ -128,6 +138,8 @@ + + @@ -136,30 +148,40 @@ + + + + + + + + + + @@ -178,6 +200,8 @@ + + @@ -189,6 +213,8 @@ + + @@ -212,6 +238,8 @@ + + @@ -245,6 +273,8 @@ + + @@ -257,11 +287,15 @@ + + + + @@ -271,12 +305,16 @@ + + + + @@ -290,6 +328,8 @@ + + @@ -303,16 +343,22 @@ + + + + + + @@ -374,6 +420,8 @@ + + @@ -382,10 +430,14 @@ + + + + @@ -393,6 +445,8 @@ + + @@ -401,6 +455,8 @@ + + @@ -409,6 +465,8 @@ + + @@ -427,15 +485,21 @@ + + + + + + @@ -452,11 +516,15 @@ + + + + @@ -466,12 +534,18 @@ + + + + + + @@ -479,16 +553,22 @@ + + + + + + @@ -498,6 +578,8 @@ + + @@ -505,6 +587,8 @@ + + @@ -512,7 +596,11 @@ + + + + @@ -584,6 +672,8 @@ + + @@ -591,6 +681,8 @@ + + @@ -601,5 +693,7 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-async-renderer.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-async-renderer.html --- evince-2.22.1.1/help/reference/html/evince-ev-async-renderer.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-async-renderer.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@
- + Signals

-EvAttachment +EvAttachment

EvAttachment

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Signals
@@ -62,7 +62,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   GInterface
@@ -70,24 +70,24 @@
 
-

Signals

+

Signals

 
   "render-finished"                                : Run Last
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_ASYNC_RENDERER_IFACE()

-
#define EV_ASYNC_RENDERER_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_ASYNC_RENDERER, EvAsyncRendererIface))
+
#define EV_ASYNC_RENDERER_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_ASYNC_RENDERER, EvAsyncRendererIface))
 

@@ -105,9 +105,9 @@


-

+

EV_IS_ASYNC_RENDERER_IFACE()

-
#define EV_IS_ASYNC_RENDERER_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_ASYNC_RENDERER))
+
#define EV_IS_ASYNC_RENDERER_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_ASYNC_RENDERER))
 

@@ -125,18 +125,18 @@


-

+

EvAsyncRenderer

-
typedef struct _EvAsyncRenderer EvAsyncRenderer;
+
typedef struct _EvAsyncRenderer EvAsyncRenderer;


-

+

EvAsyncRendererIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	void	    (* render_finished) (EvAsyncRenderer *renderer,
@@ -154,9 +154,9 @@
 

-

+

ev_async_renderer_render_pixbuf ()

-
void                ev_async_renderer_render_pixbuf     (EvAsyncRenderer *renderer,
+
void                ev_async_renderer_render_pixbuf     (EvAsyncRenderer *renderer,
                                                          int page,
                                                          double scale,
                                                          int rotation);
@@ -193,11 +193,11 @@
-

Signal Details

+

Signal Details

-

-The "render-finished" signal

-
void                user_function                      (EvAsyncRenderer *evasyncrenderer,
+

+The "render-finished" signal

+
void                user_function                      (EvAsyncRenderer *evasyncrenderer,
                                                         GdkPixbuf       *arg1,
@@ -229,6 +229,11 @@
 

-ev-async-renderer +ev-async-renderer

ev-async-renderer

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-factory.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-factory.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-factory.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-factory.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -57,17 +57,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_document_factory_get_document ()

-
EvDocument*         ev_document_factory_get_document    (const char *uri,
+
EvDocument*         ev_document_factory_get_document    (const char *uri,
                                                          GError **error);
@@ -99,9 +99,9 @@

-

+

ev_document_factory_add_filters ()

-
void                ev_document_factory_add_filters     (
void                ev_document_factory_add_filters     (GtkWidget *chooser,
                                                          EvDocument *document);
@@ -127,6 +127,11 @@

-ev-document-factory +ev-document-factory

ev-document-factory

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-find.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-find.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-find.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-find.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Signals + Signals
@@ -78,7 +78,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   GInterface
@@ -86,24 +86,24 @@
 
-

Signals

+

Signals

 
   "find-changed"                                   : Run Last
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_FIND_IFACE()

-
#define EV_DOCUMENT_FIND_IFACE(k)	    (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FIND, EvDocumentFindIface))
+
#define EV_DOCUMENT_FIND_IFACE(k)	    (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FIND, EvDocumentFindIface))
 

@@ -121,9 +121,9 @@


-

+

EV_IS_DOCUMENT_FIND_IFACE()

-
#define EV_IS_DOCUMENT_FIND_IFACE(k)	    (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FIND))
+
#define EV_IS_DOCUMENT_FIND_IFACE(k)	    (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FIND))
 

@@ -141,18 +141,18 @@


-

+

EvDocumentFind

-
typedef struct _EvDocumentFind EvDocumentFind;
+
typedef struct _EvDocumentFind EvDocumentFind;


-

+

EvDocumentFindIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
         /* Methods */
@@ -184,9 +184,9 @@
 

-

+

ev_document_find_begin ()

-
void                ev_document_find_begin              (EvDocumentFind *document_find,
+
void                ev_document_find_begin              (EvDocumentFind *document_find,
                                                          int page,
                                                          const char *search_string,
                                                          
 
-

+

ev_document_find_cancel ()

-
void                ev_document_find_cancel             (EvDocumentFind *document_find);
+
void                ev_document_find_cancel             (EvDocumentFind *document_find);

@@ -244,9 +244,9 @@

-

+

ev_document_find_page_has_results ()

-
int                 ev_document_find_page_has_results   (EvDocumentFind *document_find,
+
int                 ev_document_find_page_has_results   (EvDocumentFind *document_find,
                                                          int page);

@@ -276,9 +276,9 @@


-

+

ev_document_find_get_n_results ()

-
int                 ev_document_find_get_n_results      (EvDocumentFind *document_find,
+
int                 ev_document_find_get_n_results      (EvDocumentFind *document_find,
                                                          int page);

@@ -308,9 +308,9 @@


-

+

ev_document_find_get_result ()

-
gboolean            ev_document_find_get_result         (EvDocumentFind *document_find,
                                                          int page,
@@ -354,9 +354,9 @@
 

-

+

ev_document_find_get_progress ()

-
double              ev_document_find_get_progress       (EvDocumentFind *document_find);
+
double              ev_document_find_get_progress       (EvDocumentFind *document_find);

@@ -380,9 +380,9 @@

-

+

ev_document_find_changed ()

-
void                ev_document_find_changed            (EvDocumentFind *document_find,
+
void                ev_document_find_changed            (EvDocumentFind *document_find,
                                                          int page);

@@ -407,11 +407,11 @@

-

Signal Details

+

Signal Details

-

-The "find-changed" signal

-
void                user_function                      (EvDocumentFind *evdocumentfind,
+

+The "find-changed" signal

+
void                user_function                      (EvDocumentFind *evdocumentfind,
                                                         gint            arg1,
@@ -443,6 +443,11 @@
 

-ev-document-find +ev-document-find

ev-document-find

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-fonts.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-fonts.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-fonts.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-fonts.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -63,17 +63,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_FONTS_IFACE()

-
#define EV_DOCUMENT_FONTS_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FONTS, EvDocumentFontsIface))
+
#define EV_DOCUMENT_FONTS_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FONTS, EvDocumentFontsIface))
 

@@ -91,9 +91,9 @@


-

+

EV_IS_DOCUMENT_FONTS_IFACE()

-
#define EV_IS_DOCUMENT_FONTS_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FONTS))
+
#define EV_IS_DOCUMENT_FONTS_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FONTS))
 

@@ -111,18 +111,18 @@


-

+

EvDocumentFonts

-
typedef struct _EvDocumentFonts EvDocumentFonts;
+
typedef struct _EvDocumentFonts EvDocumentFonts;


-

+

EvDocumentFontsIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	/* Methods */
@@ -139,9 +139,9 @@
 

-

+

ev_document_fonts_scan ()

-
gboolean            ev_document_fonts_scan              (EvDocumentFonts *document_fonts,
                                                          int n_pages);
@@ -173,9 +173,9 @@

-

+

ev_document_fonts_get_progress ()

-
double              ev_document_fonts_get_progress      (EvDocumentFonts *document_fonts);
+
double              ev_document_fonts_get_progress      (EvDocumentFonts *document_fonts);

@@ -199,9 +199,9 @@

-

+

ev_document_fonts_fill_model ()

-
void                ev_document_fonts_fill_model        (EvDocumentFonts *document_fonts,
+
void                ev_document_fonts_fill_model        (EvDocumentFonts *document_fonts,
                                                          GtkTreeModel *model);
@@ -227,6 +227,11 @@

-ev-document-fonts +ev-document-fonts

ev-document-fonts

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document.html --- evince-2.22.1.1/help/reference/html/evince-ev-document.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Signals + Signals
@@ -118,7 +118,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   GInterface
@@ -133,7 +133,7 @@
 
-

Signals

+

Signals

 
   "history-changed"                                : Run Last
@@ -141,17 +141,17 @@
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_IFACE()

-
#define EV_DOCUMENT_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT, EvDocumentIface))
+
#define EV_DOCUMENT_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT, EvDocumentIface))
 

@@ -169,9 +169,9 @@


-

+

EV_IS_DOCUMENT_IFACE()

-
#define EV_IS_DOCUMENT_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT))
+
#define EV_IS_DOCUMENT_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT))
 

@@ -189,18 +189,18 @@


-

+

EvDocument

-
typedef struct _EvDocument EvDocument;
+
typedef struct _EvDocument EvDocument;


-

+

EvDocumentIface

-
typedef struct {
+
typedef struct {
         GTypeInterface base_iface;
 
         /* Methods  */
@@ -230,27 +230,27 @@
 

-

+

EvPageCache

-
typedef struct _EvPageCache EvPageCache;
+
typedef struct _EvPageCache EvPageCache;


-

+

EvPageCacheClass

-
typedef struct _EvPageCacheClass EvPageCacheClass;
+
typedef struct _EvPageCacheClass EvPageCacheClass;


-

+

EV_DOCUMENT_ERROR

-
#define EV_DOCUMENT_ERROR ev_document_error_quark ()
+
#define EV_DOCUMENT_ERROR ev_document_error_quark ()
 

@@ -258,9 +258,9 @@


-

+

EV_DOC_MUTEX_LOCK

-
#define EV_DOC_MUTEX_LOCK (ev_document_doc_mutex_lock ())
+
#define EV_DOC_MUTEX_LOCK (ev_document_doc_mutex_lock ())
 

@@ -268,9 +268,9 @@


-

+

EV_DOC_MUTEX_UNLOCK

-
#define EV_DOC_MUTEX_UNLOCK (ev_document_doc_mutex_unlock ())
+
#define EV_DOC_MUTEX_UNLOCK (ev_document_doc_mutex_unlock ())
 

@@ -278,9 +278,9 @@


-

+

enum EvDocumentError

-
typedef enum
+
typedef enum
 {
         EV_DOCUMENT_ERROR_INVALID,
         EV_DOCUMENT_ERROR_ENCRYPTED
@@ -292,9 +292,9 @@
 

-

+

EvPoint

-
typedef struct {
+
typedef struct {
         double x;
         double y;
 } EvPoint;
@@ -305,9 +305,9 @@
 

-

+

EvRectangle

-
typedef struct {
+
typedef struct {
         double x1;
         double y1;
         double x2;
@@ -320,9 +320,9 @@
 

-

+

ev_document_error_quark ()

-
GQuark              ev_document_error_quark             (void);

@@ -341,9 +341,9 @@


-

+

ev_document_get_doc_mutex ()

-
GMutex*             ev_document_get_doc_mutex           (void);

@@ -362,27 +362,27 @@


-

+

ev_document_doc_mutex_lock ()

-
void                ev_document_doc_mutex_lock          (void);
+
void                ev_document_doc_mutex_lock          (void);


-

+

ev_document_doc_mutex_unlock ()

-
void                ev_document_doc_mutex_unlock        (void);
+
void                ev_document_doc_mutex_unlock        (void);


-

+

ev_document_get_fc_mutex ()

-
GMutex*             ev_document_get_fc_mutex            (void);

@@ -401,27 +401,27 @@


-

+

ev_document_fc_mutex_lock ()

-
void                ev_document_fc_mutex_lock           (void);
+
void                ev_document_fc_mutex_lock           (void);


-

+

ev_document_fc_mutex_unlock ()

-
void                ev_document_fc_mutex_unlock         (void);
+
void                ev_document_fc_mutex_unlock         (void);


-

+

ev_document_get_info ()

-
EvDocumentInfo*     ev_document_get_info                (EvDocument *document);
+
EvDocumentInfo*     ev_document_get_info                (EvDocument *document);

@@ -445,9 +445,9 @@

-

+

ev_document_load ()

-
gboolean            ev_document_load                    (EvDocument *document,
                                                          const char *uri,
@@ -487,9 +487,9 @@
 

-

+

ev_document_save ()

-
gboolean            ev_document_save                    (EvDocument *document,
                                                          const char *uri,
@@ -529,9 +529,9 @@
 

-

+

ev_document_get_n_pages ()

-
int                 ev_document_get_n_pages             (EvDocument *document);
+
int                 ev_document_get_n_pages             (EvDocument *document);

@@ -555,9 +555,9 @@

-

+

ev_document_get_page_size ()

-
void                ev_document_get_page_size           (EvDocument *document,
+
void                ev_document_get_page_size           (EvDocument *document,
                                                          int page,
                                                          double *width,
                                                          double *height);
@@ -594,9 +594,9 @@

-

+

ev_document_get_page_label ()

-
char*               ev_document_get_page_label          (EvDocument *document,
+
char*               ev_document_get_page_label          (EvDocument *document,
                                                          int page);

@@ -626,9 +626,9 @@


-

+

ev_document_has_attachments ()

-
gboolean            ev_document_has_attachments         (EvDocument *document);

@@ -654,9 +654,9 @@


-

+

ev_document_get_attachments ()

-
GList*              ev_document_get_attachments         (EvDocument *document);

@@ -682,9 +682,9 @@


-

+

ev_document_render ()

-
cairo_surface_t*    ev_document_render                  (EvDocument *document,
                                                          EvRenderContext *rc);
@@ -716,9 +716,9 @@

-

+

ev_rect_cmp ()

-
gint                ev_rect_cmp                         (EvRectangle *a,
                                                          EvRectangle *b);
@@ -750,9 +750,9 @@

-

+

EV_BACKEND_IMPLEMENT_INTERFACE()

-
#define             EV_BACKEND_IMPLEMENT_INTERFACE(TYPE_IFACE, iface_init)
+
#define             EV_BACKEND_IMPLEMENT_INTERFACE(TYPE_IFACE, iface_init)

@@ -776,9 +776,9 @@

-

+

EV_BACKEND_REGISTER_WITH_CODE()

-
#define             EV_BACKEND_REGISTER_WITH_CODE(BackendName, backend_name, CODE)
+
#define             EV_BACKEND_REGISTER_WITH_CODE(BackendName, backend_name, CODE)

@@ -807,9 +807,9 @@

-

+

EV_BACKEND_REGISTER()

-
#define             EV_BACKEND_REGISTER(BackendName, backend_name)
+
#define             EV_BACKEND_REGISTER(BackendName, backend_name)

@@ -833,11 +833,11 @@
-

Signal Details

+

Signal Details

-

-The "history-changed" signal

-
void                user_function                      (EvPageCache *evpagecache,
+

+The "history-changed" signal

+
void                user_function                      (EvPageCache *evpagecache,
                                                         gint         arg1,
@@ -870,9 +870,9 @@
 

-

-The "page-changed" signal

-
void                user_function                      (EvPageCache *evpagecache,
+

+The "page-changed" signal

+
void                user_function                      (EvPageCache *evpagecache,
                                                         gint         arg1,
@@ -904,6 +904,11 @@
 

-ev-document +ev-document

ev-document

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-images.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-images.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-images.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-images.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -65,17 +65,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_IMAGES_IFACE()

-
#define EV_DOCUMENT_IMAGES_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_IMAGES, EvDocumentImagesIface))
+
#define EV_DOCUMENT_IMAGES_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_IMAGES, EvDocumentImagesIface))
 

@@ -93,9 +93,9 @@


-

+

EV_IS_DOCUMENT_IMAGES_IFACE()

-
#define EV_IS_DOCUMENT_IMAGES_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_IMAGES))
+
#define EV_IS_DOCUMENT_IMAGES_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_IMAGES))
 

@@ -113,18 +113,18 @@


-

+

EvDocumentImages

-
typedef struct _EvDocumentImages EvDocumentImages;
+
typedef struct _EvDocumentImages EvDocumentImages;


-

+

EvDocumentImagesIface

-
typedef struct {
+
typedef struct {
         GTypeInterface base_iface;
 
         /* Methods  */
@@ -140,9 +140,9 @@
 

-

+

ev_document_images_get_image_mapping ()

-
GList*              ev_document_images_get_image_mapping
                                                         (EvDocumentImages *document_images,
@@ -177,9 +177,9 @@
 

-

+

ev_document_images_get_image ()

-
GdkPixbuf*          ev_document_images_get_image        (EvDocumentImages *document_images,
                                                          EvImage *image);
@@ -210,6 +210,11 @@

-ev-document-images +ev-document-images

ev-document-images

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-info.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-info.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-info.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-info.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -56,17 +56,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvDocumentInfo

-
typedef struct {
+
typedef struct {
 	char *title;
 	char *format; /* eg, "pdf-1.5" */
 	char *author;
@@ -96,9 +96,9 @@
 

-

+

enum EvDocumentLayout

-
typedef enum
+
typedef enum
 {
 	EV_DOCUMENT_LAYOUT_SINGLE_PAGE,
 	EV_DOCUMENT_LAYOUT_ONE_COLUMN,
@@ -114,9 +114,9 @@
 

-

+

enum EvDocumentMode

-
typedef enum
+
typedef enum
 {
 	EV_DOCUMENT_MODE_NONE,
 	EV_DOCUMENT_MODE_USE_OC,
@@ -132,9 +132,9 @@
 

-

+

enum EvDocumentUIHints

-
typedef enum
+
typedef enum
 {
 	EV_DOCUMENT_UI_HINT_HIDE_TOOLBAR = 1 << 0,
 	EV_DOCUMENT_UI_HINT_HIDE_MENUBAR = 1 << 1,
@@ -151,9 +151,9 @@
 

-

+

enum EvDocumentPermissions

-
typedef enum
+
typedef enum
 {
 	EV_DOCUMENT_PERMISSIONS_OK_TO_PRINT = 1 << 0,
 	EV_DOCUMENT_PERMISSIONS_OK_TO_MODIFY = 1 << 1,
@@ -171,9 +171,9 @@
 

-

+

enum EvDocumentInfoFields

-
typedef enum
+
typedef enum
 {
 	EV_DOCUMENT_INFO_TITLE = 1 << 0,
 	EV_DOCUMENT_INFO_FORMAT = 1 << 1,
@@ -200,9 +200,9 @@
 

-

+

ev_document_info_free ()

-
void                ev_document_info_free               (EvDocumentInfo *info);
+
void                ev_document_info_free               (EvDocumentInfo *info);

@@ -218,6 +218,11 @@

-ev-document-info +ev-document-info

ev-document-info

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-links.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-links.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-links.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-links.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,18 +25,18 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy
@@ -73,7 +73,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   GInterface
@@ -81,17 +81,17 @@
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_LINKS_IFACE()

-
#define EV_DOCUMENT_LINKS_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinksIface))
+
#define EV_DOCUMENT_LINKS_IFACE(k)	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinksIface))
 

@@ -109,9 +109,9 @@


-

+

EV_IS_DOCUMENT_LINKS_IFACE()

-
#define EV_IS_DOCUMENT_LINKS_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_LINKS))
+
#define EV_IS_DOCUMENT_LINKS_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_LINKS))
 

@@ -129,18 +129,18 @@


-

+

EvDocumentLinks

-
typedef struct _EvDocumentLinks EvDocumentLinks;
+
typedef struct _EvDocumentLinks EvDocumentLinks;


-

+

EvDocumentLinksIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	/* Methods  */
@@ -158,9 +158,9 @@
 

-

+

ev_document_links_has_document_links ()

-
gboolean            ev_document_links_has_document_links
                                                         (EvDocumentLinks *document_links);
@@ -187,9 +187,9 @@

-

+

ev_document_links_get_links_model ()

-
GtkTreeModel*       ev_document_links_get_links_model   (EvDocumentLinks *document_links);

@@ -215,9 +215,9 @@


-

+

ev_document_links_get_links ()

-
GList*              ev_document_links_get_links         (EvDocumentLinks *document_links,
                                                          
 
-

+

ev_document_links_find_link_dest ()

-
EvLinkDest*         ev_document_links_find_link_dest    (EvDocumentLinks *document_links,
+
EvLinkDest*         ev_document_links_find_link_dest    (EvDocumentLinks *document_links,
                                                          const gchar *link_name);
@@ -284,6 +284,11 @@

-ev-document-links +ev-document-links

ev-document-links

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-misc.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-misc.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-misc.html 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-misc.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -109,17 +109,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_document_misc_get_thumbnail_frame ()

-
GdkPixbuf*          ev_document_misc_get_thumbnail_frame
                                                         (int width,
@@ -160,9 +160,9 @@
 

-

+

ev_document_misc_get_page_border_size ()

-
void                ev_document_misc_get_page_border_size
+
void                ev_document_misc_get_page_border_size
                                                         (gint page_width,
@@ -200,9 +200,9 @@
 

-

+

ev_document_misc_paint_one_page ()

-
void                ev_document_misc_paint_one_page     (
void                ev_document_misc_paint_one_page     (GdkDrawable *drawable,
                                                          
 
-

+

ev_document_misc_surface_from_pixbuf ()

-
cairo_surface_t*    ev_document_misc_surface_from_pixbuf
                                                         (
 
-

+

ev_document_misc_pixbuf_from_surface ()

-
GdkPixbuf*          ev_document_misc_pixbuf_from_surface
                                                         (
 
-

+

ev_document_misc_surface_rotate_and_scale ()

-
cairo_surface_t*    ev_document_misc_surface_rotate_and_scale
                                                         (
+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-security.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-security.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-security.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-security.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@
- + Description

-ev-document-misc +ev-document-misc

ev-document-misc

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -60,17 +60,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_SECURITY_IFACE()

-
#define EV_DOCUMENT_SECURITY_IFACE(k)	  	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityIface))
+
#define EV_DOCUMENT_SECURITY_IFACE(k)	  	  (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityIface))
 

@@ -88,9 +88,9 @@


-

+

EV_IS_DOCUMENT_SECURITY_IFACE()

-
#define EV_IS_DOCUMENT_SECURITY_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_SECURITY))
+
#define EV_IS_DOCUMENT_SECURITY_IFACE(k)	  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_SECURITY))
 

@@ -108,18 +108,18 @@


-

+

EvDocumentSecurity

-
typedef struct _EvDocumentSecurity EvDocumentSecurity;
+
typedef struct _EvDocumentSecurity EvDocumentSecurity;


-

+

EvDocumentSecurityIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	/* Methods  */
@@ -134,9 +134,9 @@
 

-

+

ev_document_security_has_document_security ()

-
gboolean            ev_document_security_has_document_security
                                                         (EvDocumentSecurity *document_security);
@@ -163,9 +163,9 @@

-

+

ev_document_security_set_password ()

-
void                ev_document_security_set_password   (EvDocumentSecurity *document_security,
+
void                ev_document_security_set_password   (EvDocumentSecurity *document_security,
                                                          const char *password);

@@ -189,6 +189,11 @@

-ev-document-security +ev-document-security

ev-document-security

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-thumbnails.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-thumbnails.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-thumbnails.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-thumbnails.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -71,17 +71,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_THUMBNAILS_IFACE()

-
#define EV_DOCUMENT_THUMBNAILS_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_THUMBNAILS, EvDocumentThumbnailsIface))
+
#define EV_DOCUMENT_THUMBNAILS_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_THUMBNAILS, EvDocumentThumbnailsIface))
 

@@ -99,9 +99,9 @@


-

+

EV_IS_DOCUMENT_THUMBNAILS_IFACE()

-
#define EV_IS_DOCUMENT_THUMBNAILS_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_THUMBNAILS))
+
#define EV_IS_DOCUMENT_THUMBNAILS_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_THUMBNAILS))
 

@@ -119,18 +119,18 @@


-

+

EvDocumentThumbnails

-
typedef struct _EvDocumentThumbnails EvDocumentThumbnails;
+
typedef struct _EvDocumentThumbnails EvDocumentThumbnails;


-

+

EvDocumentThumbnailsIface

-
typedef struct {
+
typedef struct {
         GTypeInterface base_iface;
 
         /* Methods  */
@@ -149,9 +149,9 @@
 

-

+

ev_document_thumbnails_get_thumbnail ()

-
GdkPixbuf*          ev_document_thumbnails_get_thumbnail
                                                         (EvDocumentThumbnails *document,
@@ -192,9 +192,9 @@
 

-

+

ev_document_thumbnails_get_dimensions ()

-
void                ev_document_thumbnails_get_dimensions
+
void                ev_document_thumbnails_get_dimensions
                                                         (EvDocumentThumbnails *document,
                                                          EvRenderContext *rc,
                                                          
+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-document-transition.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-document-transition.html --- evince-2.22.1.1/help/reference/html/evince-ev-document-transition.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-document-transition.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ - + Description

-ev-document-thumbnails +ev-document-thumbnails

ev-document-thumbnails

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -65,17 +65,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_DOCUMENT_TRANSITION_IFACE()

-
#define EV_DOCUMENT_TRANSITION_IFACE(k)	       (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_TRANSITION, EvDocumentTransitionIface))
+
#define EV_DOCUMENT_TRANSITION_IFACE(k)	       (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_TRANSITION, EvDocumentTransitionIface))
 

@@ -93,9 +93,9 @@


-

+

EV_IS_DOCUMENT_TRANSITION_IFACE()

-
#define EV_IS_DOCUMENT_TRANSITION_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_TRANSITION))
+
#define EV_IS_DOCUMENT_TRANSITION_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_TRANSITION))
 

@@ -113,18 +113,18 @@


-

+

EvDocumentTransition

-
typedef struct _EvDocumentTransition EvDocumentTransition;
+
typedef struct _EvDocumentTransition EvDocumentTransition;


-

+

EvDocumentTransitionIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	/* Methods  */
@@ -140,9 +140,9 @@
 

-

+

ev_document_transition_get_page_duration ()

-
gdouble             ev_document_transition_get_page_duration
                                                         (EvDocumentTransition *document_trans,
@@ -177,9 +177,9 @@
 

-

+

ev_document_transition_get_effect ()

-
EvTransitionEffect* ev_document_transition_get_effect   (EvDocumentTransition *document_trans,
+
EvTransitionEffect* ev_document_transition_get_effect   (EvDocumentTransition *document_trans,
                                                          gint page);
@@ -210,6 +210,11 @@

-ev-document-transition +ev-document-transition

ev-document-transition

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-file-exporter.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-file-exporter.html --- evince-2.22.1.1/help/reference/html/evince-ev-file-exporter.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-file-exporter.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -66,17 +66,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

enum EvFileExporterFormat

-
typedef enum {
+
typedef enum {
 	EV_FILE_FORMAT_UNKNOWN,
 	EV_FILE_FORMAT_PS,
 	EV_FILE_FORMAT_PDF
@@ -88,9 +88,9 @@
 

-

+

enum EvFileExporterCapabilities

-
typedef enum {
+
typedef enum {
 	EV_FILE_EXPORTER_CAN_PAGE_SET     = 1 << 0,
 	EV_FILE_EXPORTER_CAN_COPIES       = 1 << 1,
 	EV_FILE_EXPORTER_CAN_COLLATE      = 1 << 2,
@@ -108,9 +108,9 @@
 

-

+

EvFileExporterContext

-
typedef struct {
+
typedef struct {
 	EvFileExporterFormat format;
 	const gchar         *filename;
 	gint                 first_page;
@@ -127,9 +127,9 @@
 

-

+

EV_FILE_EXPORTER_IFACE()

-
#define EV_FILE_EXPORTER_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_FILE_EXPORTER, EvFileExporterIface))
+
#define EV_FILE_EXPORTER_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_FILE_EXPORTER, EvFileExporterIface))
 

@@ -147,9 +147,9 @@


-

+

EV_IS_FILE_EXPORTER_IFACE()

-
#define EV_IS_FILE_EXPORTER_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_FILE_EXPORTER))
+
#define EV_IS_FILE_EXPORTER_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_FILE_EXPORTER))
 

@@ -167,18 +167,18 @@


-

+

EvFileExporter

-
typedef struct _EvFileExporter EvFileExporter;
+
typedef struct _EvFileExporter EvFileExporter;


-

+

EvFileExporterIface

-
typedef struct {
+
typedef struct {
         GTypeInterface base_iface;
 
         /* Methods  */
@@ -198,9 +198,9 @@
 

-

+

ev_file_exporter_begin ()

-
void                ev_file_exporter_begin              (EvFileExporter *exporter,
+
void                ev_file_exporter_begin              (EvFileExporter *exporter,
                                                          EvFileExporterContext *fc);

@@ -225,9 +225,9 @@


-

+

ev_file_exporter_begin_page ()

-
void                ev_file_exporter_begin_page         (EvFileExporter *exporter);
+
void                ev_file_exporter_begin_page         (EvFileExporter *exporter);

@@ -244,9 +244,9 @@

-

+

ev_file_exporter_do_page ()

-
void                ev_file_exporter_do_page            (EvFileExporter *exporter,
+
void                ev_file_exporter_do_page            (EvFileExporter *exporter,
                                                          EvRenderContext *rc);

@@ -271,9 +271,9 @@


-

+

ev_file_exporter_end_page ()

-
void                ev_file_exporter_end_page           (EvFileExporter *exporter);
+
void                ev_file_exporter_end_page           (EvFileExporter *exporter);

@@ -290,9 +290,9 @@

-

+

ev_file_exporter_end ()

-
void                ev_file_exporter_end                (EvFileExporter *exporter);
+
void                ev_file_exporter_end                (EvFileExporter *exporter);

@@ -309,9 +309,9 @@

-

+

ev_file_exporter_get_capabilities ()

-
EvFileExporterCapabilities ev_file_exporter_get_capabilities
+
EvFileExporterCapabilities ev_file_exporter_get_capabilities
                                                         (EvFileExporter *exporter);

@@ -335,6 +335,11 @@

-ev-file-exporter +ev-file-exporter

ev-file-exporter

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-file-helpers.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-file-helpers.html --- evince-2.22.1.1/help/reference/html/evince-ev-file-helpers.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-file-helpers.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -100,17 +100,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

enum EvCompressionType

-
typedef enum {
+
typedef enum {
 	EV_COMPRESSION_NONE,
 	EV_COMPRESSION_BZIP2,
 	EV_COMPRESSION_GZIP
@@ -122,9 +122,9 @@
 

-

+

ev_dot_dir ()

-
const 
const gchar*        ev_dot_dir                          (void);

@@ -143,9 +143,9 @@


-

+

ev_tmp_dir ()

-
const 
const gchar*        ev_tmp_dir                          (void);

@@ -164,27 +164,27 @@


-

+

ev_file_helpers_init ()

-
void                ev_file_helpers_init                (void);
+
void                ev_file_helpers_init                (void);


-

+

ev_file_helpers_shutdown ()

-
void                ev_file_helpers_shutdown            (void);
+
void                ev_file_helpers_shutdown            (void);


-

+

ev_tmp_file_get ()

-
GFile*              ev_tmp_file_get                     (const 
 
-

+

ev_tmp_filename ()

-
gchar*              ev_tmp_filename                     (const char *prefix);

@@ -240,9 +240,9 @@


-

+

ev_tmp_filename_unlink ()

-
void                ev_tmp_filename_unlink              (const 
void                ev_tmp_filename_unlink              (const gchar *filename);

@@ -261,9 +261,9 @@


-

+

ev_tmp_file_unlink ()

-
void                ev_tmp_file_unlink                  (
void                ev_tmp_file_unlink                  (GFile *file);

@@ -282,9 +282,9 @@


-

+

ev_tmp_uri_unlink ()

-
void                ev_tmp_uri_unlink                   (const 
void                ev_tmp_uri_unlink                   (const gchar *uri);

@@ -303,9 +303,9 @@


-

+

ev_xfer_uri_simple ()

-
gboolean            ev_xfer_uri_simple                  (const char *from,
                                                          const char *to,
@@ -345,9 +345,9 @@
 

-

+

ev_file_uncompress ()

-
gchar*              ev_file_uncompress                  (const 
 
-

+

ev_file_compress ()

-
gchar*              ev_file_compress                    (const 
+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvHistory.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvHistory.html --- evince-2.22.1.1/help/reference/html/evince-EvHistory.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvHistory.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ - + Description

-ev-file-helpers +ev-file-helpers

ev-file-helpers

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -58,26 +58,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvHistoryPrivate

-
typedef struct _EvHistoryPrivate EvHistoryPrivate;
+
typedef struct _EvHistoryPrivate EvHistoryPrivate;


-

+

EvHistory

-
typedef struct {
+
typedef struct {
 	GObject parent;
 } EvHistory;
 
@@ -87,9 +87,9 @@

-

+

ev_history_new ()

-
EvHistory*          ev_history_new                      (void);
+
EvHistory*          ev_history_new                      (void);

@@ -106,9 +106,9 @@

-

+

ev_history_add_link ()

-
void                ev_history_add_link                 (EvHistory *history,
+
void                ev_history_add_link                 (EvHistory *history,
                                                          EvLink *linkk);

@@ -133,9 +133,9 @@


-

+

ev_history_get_link_nth ()

-
EvLink*             ev_history_get_link_nth             (EvHistory *history,
+
EvLink*             ev_history_get_link_nth             (EvHistory *history,
                                                          int index);

@@ -165,9 +165,9 @@


-

+

ev_history_get_n_links ()

-
int                 ev_history_get_n_links              (EvHistory *history);
+
int                 ev_history_get_n_links              (EvHistory *history);

@@ -190,6 +190,11 @@

-EvHistory +EvHistory

EvHistory

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvImage.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvImage.html --- evince-2.22.1.1/help/reference/html/evince-EvImage.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvImage.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -92,26 +92,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvImagePrivate

-
typedef struct _EvImagePrivate EvImagePrivate;
+
typedef struct _EvImagePrivate EvImagePrivate;


-

+

EvImage

-
typedef struct {
+
typedef struct {
 	GObject base_instance;
 	
 	EvImagePrivate *priv;
@@ -123,9 +123,9 @@
 

-

+

ev_image_new ()

-
EvImage*            ev_image_new                        (
EvImage*            ev_image_new                        (gint page,
                                                          
 
-

+

ev_image_new_from_pixbuf ()

-
EvImage*            ev_image_new_from_pixbuf            (
EvImage*            ev_image_new_from_pixbuf            (GdkPixbuf *pixbuf);

@@ -187,9 +187,9 @@


-

+

ev_image_get_id ()

-
gint                ev_image_get_id                     (EvImage *image);

@@ -215,9 +215,9 @@


-

+

ev_image_get_page ()

-
gint                ev_image_get_page                   (EvImage *image);

@@ -243,9 +243,9 @@


-

+

ev_image_get_pixbuf ()

-
GdkPixbuf*          ev_image_get_pixbuf                 (EvImage *image);

@@ -271,9 +271,9 @@


-

+

ev_image_save_tmp ()

-
const 
const gchar*        ev_image_save_tmp                   (EvImage *image,
                                                          
 
-

+

ev_image_get_tmp_uri ()

-
const 
const gchar*        ev_image_get_tmp_uri                (EvImage *image);

@@ -335,9 +335,9 @@


-

+

EvImageMapping

-
typedef struct {
+
typedef struct {
 	EvImage *image;
 	gdouble x1;
 	gdouble y1;
@@ -351,9 +351,9 @@
 

-

+

ev_image_mapping_free ()

-
void                ev_image_mapping_free               (
void                ev_image_mapping_free               (GList *image_mapping);

@@ -372,9 +372,9 @@


-

+

ev_image_mapping_find ()

-
EvImage*            ev_image_mapping_find               (
EvImage*            ev_image_mapping_find               (GList *image_mapping,
                                                          
+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-job-queue.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-job-queue.html --- evince-2.22.1.1/help/reference/html/evince-ev-job-queue.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-job-queue.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ - + Description

-EvImage +EvImage

EvImage

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -59,17 +59,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_job_queue_init ()

-
void                ev_job_queue_init                   (void);
+
void                ev_job_queue_init                   (void);

Creates a new cond, new mutex, a thread for evince job handling and inits every queue.

@@ -79,9 +79,9 @@

-

+

ev_job_queue_add_job ()

-
void                ev_job_queue_add_job                (EvJob *job,
+
void                ev_job_queue_add_job                (EvJob *job,
                                                          EvJobPriority priority);

@@ -106,9 +106,9 @@


-

+

ev_job_queue_update_job ()

-
gboolean            ev_job_queue_update_job             (EvJob *job,
                                                          EvJobPriority new_priority);
@@ -140,9 +140,9 @@

-

+

ev_job_queue_remove_job ()

-
gboolean            ev_job_queue_remove_job             (EvJob *job);

@@ -167,6 +167,11 @@

-ev-job-queue +ev-job-queue

ev-job-queue

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-link-action.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-link-action.html --- evince-2.22.1.1/help/reference/html/evince-ev-link-action.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-link-action.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Properties + Properties
@@ -93,7 +93,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Properties

+

Properties

 
   "dest"                     
 
-

Description

+

Description

-

Details

+

Details

-

+

EvLinkAction

-
typedef struct _EvLinkAction EvLinkAction;
+
typedef struct _EvLinkAction EvLinkAction;


-

+

EvLinkActionClass

-
typedef struct _EvLinkActionClass EvLinkActionClass;
+
typedef struct _EvLinkActionClass EvLinkActionClass;


-

+

EvLinkActionPrivate

-
typedef struct _EvLinkActionPrivate EvLinkActionPrivate;
+
typedef struct _EvLinkActionPrivate EvLinkActionPrivate;


-

+

EV_TYPE_LINK_ACTION_TYPE

-
#define EV_TYPE_LINK_ACTION_TYPE         (ev_link_action_type_get_type ())
+
#define EV_TYPE_LINK_ACTION_TYPE         (ev_link_action_type_get_type ())
 

@@ -170,9 +170,9 @@


-

+

enum EvLinkActionType

-
typedef enum {
+
typedef enum {
 	EV_LINK_ACTION_TYPE_GOTO_DEST,
 	EV_LINK_ACTION_TYPE_GOTO_REMOTE,
 	EV_LINK_ACTION_TYPE_EXTERNAL_URI,
@@ -188,9 +188,9 @@
 

-

+

ev_link_action_get_type ()

-
GType               ev_link_action_get_type             (void);

@@ -209,9 +209,9 @@


-

+

ev_link_action_get_action_type ()

-
EvLinkActionType    ev_link_action_get_action_type      (EvLinkAction *self);
+
EvLinkActionType    ev_link_action_get_action_type      (EvLinkAction *self);

@@ -235,9 +235,9 @@

-

+

ev_link_action_get_dest ()

-
EvLinkDest*         ev_link_action_get_dest             (EvLinkAction *self);
+
EvLinkDest*         ev_link_action_get_dest             (EvLinkAction *self);

@@ -261,9 +261,9 @@

-

+

ev_link_action_get_uri ()

-
const 
const gchar*        ev_link_action_get_uri              (EvLinkAction *self);

@@ -289,9 +289,9 @@


-

+

ev_link_action_get_filename ()

-
const 
const gchar*        ev_link_action_get_filename         (EvLinkAction *self);

@@ -317,9 +317,9 @@


-

+

ev_link_action_get_params ()

-
const 
const gchar*        ev_link_action_get_params           (EvLinkAction *self);

@@ -345,9 +345,9 @@


-

+

ev_link_action_get_name ()

-
const 
const gchar*        ev_link_action_get_name             (EvLinkAction *self);

@@ -373,9 +373,9 @@


-

+

ev_link_action_new_dest ()

-
EvLinkAction*       ev_link_action_new_dest             (EvLinkDest *dest);
+
EvLinkAction*       ev_link_action_new_dest             (EvLinkDest *dest);

@@ -399,9 +399,9 @@

-

+

ev_link_action_new_remote ()

-
EvLinkAction*       ev_link_action_new_remote           (EvLinkDest *dest,
+
EvLinkAction*       ev_link_action_new_remote           (EvLinkDest *dest,
                                                          const gchar *filename);
@@ -433,9 +433,9 @@

-

+

ev_link_action_new_external_uri ()

-
EvLinkAction*       ev_link_action_new_external_uri     (const 
EvLinkAction*       ev_link_action_new_external_uri     (const gchar *uri);

@@ -461,9 +461,9 @@


-

+

ev_link_action_new_launch ()

-
EvLinkAction*       ev_link_action_new_launch           (const 
EvLinkAction*       ev_link_action_new_launch           (const gchar *filename,
                                                          const 
 
-

+

ev_link_action_new_named ()

-
EvLinkAction*       ev_link_action_new_named            (const 
EvLinkAction*       ev_link_action_new_named            (const gchar *name);

@@ -525,20 +525,20 @@

-

Property Details

+

Property Details

-

-The "dest" property

-
  "dest"                     

+The "dest" property

+
  "dest"                     gpointer              : Read / Write / Construct Only

The link action destination.


-

-The "filename" property

-
  "filename"                 

+The "filename" property

+
  "filename"                 gchararray            : Read / Write / Construct Only

The link action filename.

@@ -546,9 +546,9 @@

-

-The "name" property

-
  "name"                     

+The "name" property

+
  "name"                     gchararray            : Read / Write / Construct Only

The link action name.

@@ -556,9 +556,9 @@

-

-The "params" property

-
  "params"                   

+The "params" property

+
  "params"                   gchararray            : Read / Write / Construct Only

The link action params.

@@ -566,23 +566,28 @@

-

-The "type" property

-
  "type"                     EvLinkActionType      : Read / Write / Construct Only
+

+The "type" property

+
  "type"                     EvLinkActionType      : Read / Write / Construct Only

The link action type.

Default value: EV_LINK_ACTION_TYPE_GOTO_DEST


-

-The "uri" property

-
  "uri"                      

+The "uri" property

+
  "uri"                      gchararray            : Read / Write / Construct Only

The link action URI.

Default value: NULL

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-link-dest.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-link-dest.html --- evince-2.22.1.1/help/reference/html/evince-ev-link-dest.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-link-dest.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ - + Properties

-ev-link-action +ev-link-action

ev-link-action

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Properties
@@ -162,7 +162,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Properties

+

Properties

 
   "bottom"                   
 
-

Description

+

Description

-

Details

+

Details

-

+

EvLinkDest

-
typedef struct _EvLinkDest EvLinkDest;
+
typedef struct _EvLinkDest EvLinkDest;


-

+

EvLinkDestClass

-
typedef struct _EvLinkDestClass EvLinkDestClass;
+
typedef struct _EvLinkDestClass EvLinkDestClass;


-

+

EvLinkDestPrivate

-
typedef struct _EvLinkDestPrivate EvLinkDestPrivate;
+
typedef struct _EvLinkDestPrivate EvLinkDestPrivate;


-

+

EV_TYPE_LINK_DEST_TYPE

-
#define EV_TYPE_LINK_DEST_TYPE         (ev_link_dest_type_get_type ())
+
#define EV_TYPE_LINK_DEST_TYPE         (ev_link_dest_type_get_type ())
 

@@ -251,9 +251,9 @@


-

+

enum EvLinkDestType

-
typedef enum {
+
typedef enum {
 	EV_LINK_DEST_TYPE_PAGE,
 	EV_LINK_DEST_TYPE_XYZ,
 	EV_LINK_DEST_TYPE_FIT,
@@ -271,9 +271,9 @@
 

-

+

ev_link_dest_get_type ()

-
GType               ev_link_dest_get_type               (void);

@@ -292,9 +292,9 @@


-

+

ev_link_dest_get_dest_type ()

-
EvLinkDestType      ev_link_dest_get_dest_type          (EvLinkDest *self);
+
EvLinkDestType      ev_link_dest_get_dest_type          (EvLinkDest *self);

@@ -318,9 +318,9 @@

-

+

ev_link_dest_get_page ()

-
gint                ev_link_dest_get_page               (EvLinkDest *self);

@@ -346,9 +346,9 @@


-

+

ev_link_dest_get_top ()

-
gdouble             ev_link_dest_get_top                (EvLinkDest *self,
                                                          
 
-

+

ev_link_dest_get_left ()

-
gdouble             ev_link_dest_get_left               (EvLinkDest *self,
                                                          
 
-

+

ev_link_dest_get_bottom ()

-
gdouble             ev_link_dest_get_bottom             (EvLinkDest *self);

@@ -446,9 +446,9 @@


-

+

ev_link_dest_get_right ()

-
gdouble             ev_link_dest_get_right              (EvLinkDest *self);

@@ -474,9 +474,9 @@


-

+

ev_link_dest_get_zoom ()

-
gdouble             ev_link_dest_get_zoom               (EvLinkDest *self,
                                                          
 
-

+

ev_link_dest_get_named_dest ()

-
const 
const gchar*        ev_link_dest_get_named_dest         (EvLinkDest *self);

@@ -538,9 +538,9 @@


-

+

ev_link_dest_get_page_label ()

-
const 
const gchar*        ev_link_dest_get_page_label         (EvLinkDest *self);

@@ -566,9 +566,9 @@


-

+

ev_link_dest_new_page ()

-
EvLinkDest*         ev_link_dest_new_page               (
EvLinkDest*         ev_link_dest_new_page               (gint page);

@@ -594,9 +594,9 @@


-

+

ev_link_dest_new_xyz ()

-
EvLinkDest*         ev_link_dest_new_xyz                (
EvLinkDest*         ev_link_dest_new_xyz                (gint page,
                                                          
 
-

+

ev_link_dest_new_fit ()

-
EvLinkDest*         ev_link_dest_new_fit                (
EvLinkDest*         ev_link_dest_new_fit                (gint page);

@@ -698,9 +698,9 @@


-

+

ev_link_dest_new_fith ()

-
EvLinkDest*         ev_link_dest_new_fith               (
EvLinkDest*         ev_link_dest_new_fith               (gint page,
                                                          
 
-

+

ev_link_dest_new_fitv ()

-
EvLinkDest*         ev_link_dest_new_fitv               (
EvLinkDest*         ev_link_dest_new_fitv               (gint page,
                                                          
 
-

+

ev_link_dest_new_fitr ()

-
EvLinkDest*         ev_link_dest_new_fitr               (
EvLinkDest*         ev_link_dest_new_fitr               (gint page,
                                                          
 
-

+

ev_link_dest_new_named ()

-
EvLinkDest*         ev_link_dest_new_named              (const 
EvLinkDest*         ev_link_dest_new_named              (const gchar *named_dest);

@@ -874,9 +874,9 @@


-

+

ev_link_dest_new_page_label ()

-
EvLinkDest*         ev_link_dest_new_page_label         (const 
EvLinkDest*         ev_link_dest_new_page_label         (const gchar *page_label);

@@ -902,11 +902,11 @@

-

Property Details

+

Property Details

-

-The "bottom" property

-
  "bottom"                   

+The "bottom" property

+
  "bottom"                   gdouble               : Read / Write / Construct Only

The bottom coordinate.

@@ -914,9 +914,9 @@

-

-The "change" property

-
  "change"                   

+The "change" property

+
  "change"                   guint                 : Read / Write / Construct Only

Wether top, left, and zoom should be changed.

@@ -924,9 +924,9 @@

-

-The "left" property

-
  "left"                     

+The "left" property

+
  "left"                     gdouble               : Read / Write / Construct Only

The left coordinate.

@@ -934,9 +934,9 @@

-

-The "named" property

-
  "named"                    

+The "named" property

+
  "named"                    gchararray            : Read / Write / Construct Only

The named destination.

@@ -944,9 +944,9 @@

-

-The "page" property

-
  "page"                     

+The "page" property

+
  "page"                     gint                  : Read / Write / Construct Only

The destination page.

@@ -955,9 +955,9 @@

-

-The "page-label" property

-
  "page-label"               

+The "page-label" property

+
  "page-label"               gchararray            : Read / Write / Construct Only

The label of the destination page.

@@ -965,9 +965,9 @@

-

-The "right" property

-
  "right"                    

+The "right" property

+
  "right"                    gdouble               : Read / Write / Construct Only

The right coordinate.

@@ -975,9 +975,9 @@

-

-The "top" property

-
  "top"                      

+The "top" property

+
  "top"                      gdouble               : Read / Write / Construct Only

The top coordinate.

@@ -985,17 +985,17 @@

-

-The "type" property

-
  "type"                     EvLinkDestType        : Read / Write / Construct Only
+

+The "type" property

+
  "type"                     EvLinkDestType        : Read / Write / Construct Only

The destination type.

Default value: EV_LINK_DEST_TYPE_UNKNOWN


-

-The "zoom" property

-
  "zoom"                     

+The "zoom" property

+
  "zoom"                     gdouble               : Read / Write / Construct Only

Zoom.

@@ -1003,6 +1003,11 @@

Default value: 0

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-link.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-link.html --- evince-2.22.1.1/help/reference/html/evince-ev-link.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-link.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@
- + Description

-ev-link-dest +ev-link-dest

ev-link-dest

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -82,44 +82,44 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvLink

-
typedef struct _EvLink EvLink;
+
typedef struct _EvLink EvLink;


-

+

EvLinkClass

-
typedef struct _EvLinkClass EvLinkClass;
+
typedef struct _EvLinkClass EvLinkClass;


-

+

EvLinkPrivate

-
typedef struct _EvLinkPrivate EvLinkPrivate;
+
typedef struct _EvLinkPrivate EvLinkPrivate;


-

+

ev_link_new ()

-
EvLink*             ev_link_new                         (const 
EvLink*             ev_link_new                         (const gchar *title,
                                                          EvLinkAction *action);
@@ -151,9 +151,9 @@

-

+

ev_link_get_title ()

-
const 
const gchar*        ev_link_get_title                   (EvLink *self);

@@ -179,9 +179,9 @@


-

+

ev_link_get_action ()

-
EvLinkAction*       ev_link_get_action                  (EvLink *self);
+
EvLinkAction*       ev_link_get_action                  (EvLink *self);

@@ -205,9 +205,9 @@

-

+

ev_link_get_page ()

-
gint                ev_link_get_page                    (EvLink *link);

@@ -233,9 +233,9 @@


-

+

EvLinkMapping

-
typedef struct {
+
typedef struct {
 	EvLink *link;
 	gdouble x1;
 	gdouble y1;
@@ -249,9 +249,9 @@
 

-

+

ev_link_mapping_free ()

-
void                ev_link_mapping_free                (
void                ev_link_mapping_free                (GList *link_mapping);

@@ -270,9 +270,9 @@


-

+

ev_link_mapping_find ()

-
EvLink*             ev_link_mapping_find                (
EvLink*             ev_link_mapping_find                (GList *link_mapping,
                                                          
 
-

+

ev_link_mapping_get_area ()

-
void                ev_link_mapping_get_area            (
void                ev_link_mapping_get_area            (GList *link_mapping,
                                                          EvLink *link,
@@ -348,6 +348,11 @@
 

-ev-link +ev-link

ev-link

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-metadata-manager.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-metadata-manager.html --- evince-2.22.1.1/help/reference/html/evince-ev-metadata-manager.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-metadata-manager.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -106,17 +106,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_metadata_manager_init ()

-
void                ev_metadata_manager_init            (void);
+
void                ev_metadata_manager_init            (void);

Creates an EvMetadataManager with default values.

@@ -134,9 +134,9 @@

-

+

ev_metadata_manager_get ()

-
gboolean            ev_metadata_manager_get             (const 
 
-

+

ev_metadata_manager_set ()

-
void                ev_metadata_manager_set             (const 
void                ev_metadata_manager_set             (const gchar *uri,
                                                          const 
 
-

+

ev_metadata_manager_set_int ()

-
void                ev_metadata_manager_set_int         (const 
void                ev_metadata_manager_set_int         (const gchar *uri,
                                                          const 
 
-

+

ev_metadata_manager_set_double ()

-
void                ev_metadata_manager_set_double      (const 
void                ev_metadata_manager_set_double      (const gchar *uri,
                                                          const 
 
-

+

ev_metadata_manager_set_string ()

-
void                ev_metadata_manager_set_string      (const 
void                ev_metadata_manager_set_string      (const gchar *uri,
                                                          const 
 
-

+

ev_metadata_manager_set_boolean ()

-
void                ev_metadata_manager_set_boolean     (const 
void                ev_metadata_manager_set_boolean     (const gchar *uri,
                                                          const 
 
-

+

ev_metadata_manager_shutdown ()

-
void                ev_metadata_manager_shutdown        (void);
+
void                ev_metadata_manager_shutdown        (void);

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-page-cache.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-page-cache.html --- evince-2.22.1.1/help/reference/html/evince-ev-page-cache.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-page-cache.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@
- + Description

-ev-metadata-manager +ev-metadata-manager

ev-metadata-manager

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -148,17 +148,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_page_cache_new ()

-
EvPageCache*        ev_page_cache_new                   (EvDocument *document);
+
EvPageCache*        ev_page_cache_new                   (EvDocument *document);

@@ -182,9 +182,9 @@

-

+

ev_page_cache_get_n_pages ()

-
gint                ev_page_cache_get_n_pages           (EvPageCache *page_cache);

@@ -210,9 +210,9 @@


-

+

ev_page_cache_get_title ()

-
const char*         ev_page_cache_get_title             (EvPageCache *page_cache);
+
const char*         ev_page_cache_get_title             (EvPageCache *page_cache);

@@ -236,9 +236,9 @@

-

+

ev_page_cache_get_size ()

-
void                ev_page_cache_get_size              (EvPageCache *page_cache,
+
void                ev_page_cache_get_size              (EvPageCache *page_cache,
                                                          gint page,
@@ -297,9 +297,9 @@
 

-

+

ev_page_cache_get_max_width ()

-
void                ev_page_cache_get_max_width         (EvPageCache *page_cache,
+
void                ev_page_cache_get_max_width         (EvPageCache *page_cache,
                                                          gint rotation,
@@ -342,9 +342,9 @@
 

-

+

ev_page_cache_get_max_height ()

-
void                ev_page_cache_get_max_height        (EvPageCache *page_cache,
+
void                ev_page_cache_get_max_height        (EvPageCache *page_cache,
                                                          gint rotation,
@@ -387,9 +387,9 @@
 

-

+

ev_page_cache_get_height_to_page ()

-
void                ev_page_cache_get_height_to_page    (EvPageCache *page_cache,
+
void                ev_page_cache_get_height_to_page    (EvPageCache *page_cache,
                                                          gint page,
@@ -448,9 +448,9 @@
 

-

+

ev_page_cache_get_thumbnail_size ()

-
void                ev_page_cache_get_thumbnail_size    (EvPageCache *page_cache,
+
void                ev_page_cache_get_thumbnail_size    (EvPageCache *page_cache,
                                                          gint page,
@@ -501,9 +501,9 @@
 

-

+

ev_page_cache_get_max_label_chars ()

-
gint                ev_page_cache_get_max_label_chars   (EvPageCache *page_cache);

@@ -529,9 +529,9 @@


-

+

ev_page_cache_get_page_label ()

-
char*               ev_page_cache_get_page_label        (EvPageCache *page_cache,
+
char*               ev_page_cache_get_page_label        (EvPageCache *page_cache,
                                                          gint page);
@@ -563,9 +563,9 @@

-

+

ev_page_cache_has_nonnumeric_page_labels ()

-
gboolean            ev_page_cache_has_nonnumeric_page_labels
                                                         (EvPageCache *page_cache);
@@ -592,9 +592,9 @@

-

+

ev_page_cache_get_info ()

-
const EvDocumentInfo* ev_page_cache_get_info            (EvPageCache *page_cache);
+
const EvDocumentInfo* ev_page_cache_get_info            (EvPageCache *page_cache);

@@ -618,9 +618,9 @@

-

+

ev_page_cache_get_dual_even_left ()

-
gboolean            ev_page_cache_get_dual_even_left    (EvPageCache *page_cache);

@@ -646,9 +646,9 @@


-

+

ev_page_cache_get_current_page ()

-
gint                ev_page_cache_get_current_page      (EvPageCache *page_cache);

@@ -674,9 +674,9 @@


-

+

ev_page_cache_set_current_page ()

-
void                ev_page_cache_set_current_page      (EvPageCache *page_cache,
+
void                ev_page_cache_set_current_page      (EvPageCache *page_cache,
                                                          int page);

@@ -701,9 +701,9 @@


-

+

ev_page_cache_set_current_page_history ()

-
void                ev_page_cache_set_current_page_history
+
void                ev_page_cache_set_current_page_history
                                                         (EvPageCache *page_cache,
                                                          int page);

@@ -729,9 +729,9 @@


-

+

ev_page_cache_set_page_label ()

-
gboolean            ev_page_cache_set_page_label        (EvPageCache *page_cache,
                                                          const char *page_label);
@@ -763,9 +763,9 @@

-

+

ev_page_cache_get ()

-
EvPageCache*        ev_page_cache_get                   (EvDocument *document);
+
EvPageCache*        ev_page_cache_get                   (EvDocument *document);

@@ -788,6 +788,11 @@

-ev-page-cache +ev-page-cache

ev-page-cache

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvPasswordDialog.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvPasswordDialog.html --- evince-2.22.1.1/help/reference/html/evince-EvPasswordDialog.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvPasswordDialog.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -55,26 +55,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvPasswordDialogPrivate

-
typedef struct _EvPasswordDialogPrivate EvPasswordDialogPrivate;
+
typedef struct _EvPasswordDialogPrivate EvPasswordDialogPrivate;


-

+

EvPasswordDialog

-
typedef struct {
+
typedef struct {
   GtkDialog parent_instance;
 
   EvPasswordDialogPrivate* priv;
@@ -86,9 +86,9 @@
 

-

+

ev_password_dialog_get_password ()

-
char*               ev_password_dialog_get_password     (EvPasswordDialog *dialog);
+
char*               ev_password_dialog_get_password     (EvPasswordDialog *dialog);

@@ -112,9 +112,9 @@

-

+

ev_password_dialog_set_bad_pass ()

-
void                ev_password_dialog_set_bad_pass     (EvPasswordDialog *dialog);
+
void                ev_password_dialog_set_bad_pass     (EvPasswordDialog *dialog);

@@ -131,9 +131,9 @@

-

+

ev_password_dialog_save_password ()

-
void                ev_password_dialog_save_password    (EvPasswordDialog *dialog);
+
void                ev_password_dialog_save_password    (EvPasswordDialog *dialog);

@@ -149,6 +149,11 @@

-EvPasswordDialog +EvPasswordDialog

EvPasswordDialog

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvPasswordView.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvPasswordView.html --- evince-2.22.1.1/help/reference/html/evince-EvPasswordView.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvPasswordView.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -57,26 +57,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvPasswordViewPrivate

-
typedef struct _EvPasswordViewPrivate EvPasswordViewPrivate;
+
typedef struct _EvPasswordViewPrivate EvPasswordViewPrivate;


-

+

EvPasswordView

-
typedef struct {
+
typedef struct {
 	GtkViewport parent_instance;
 	EvPasswordViewPrivate *priv;
 } EvPasswordView;
@@ -87,9 +87,9 @@
 

-

+

ev_password_view_new ()

-
GtkWidget*          ev_password_view_new                (void);

@@ -108,9 +108,9 @@


-

+

ev_password_view_set_file_name ()

-
void                ev_password_view_set_file_name      (EvPasswordView *password_view,
+
void                ev_password_view_set_file_name      (EvPasswordView *password_view,
                                                          const char *file_name);

@@ -134,6 +134,11 @@

-EvPasswordView +EvPasswordView

EvPasswordView

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-pixbuf-cache.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-pixbuf-cache.html --- evince-2.22.1.1/help/reference/html/evince-ev-pixbuf-cache.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-pixbuf-cache.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -139,17 +139,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvViewSelection

-
typedef struct {
+
typedef struct {
 	int page;
 	EvRectangle rect;
 	GdkRegion *covered_region;
@@ -162,27 +162,27 @@
 

-

+

EvPixbufCache

-
typedef struct _EvPixbufCache EvPixbufCache;
+
typedef struct _EvPixbufCache EvPixbufCache;


-

+

EvPixbufCacheClass

-
typedef struct _EvPixbufCacheClass EvPixbufCacheClass;
+
typedef struct _EvPixbufCacheClass EvPixbufCacheClass;


-

+

ev_pixbuf_cache_new ()

-
EvPixbufCache*      ev_pixbuf_cache_new                 (
EvPixbufCache*      ev_pixbuf_cache_new                 (GtkWidget *view,
                                                          EvDocument *document);
@@ -214,9 +214,9 @@

-

+

ev_pixbuf_cache_set_page_range ()

-
void                ev_pixbuf_cache_set_page_range      (EvPixbufCache *pixbuf_cache,
+
void                ev_pixbuf_cache_set_page_range      (EvPixbufCache *pixbuf_cache,
                                                          gint start_page,
@@ -275,9 +275,9 @@
 

-

+

ev_pixbuf_cache_get_surface ()

-
cairo_surface_t*    ev_pixbuf_cache_get_surface         (EvPixbufCache *pixbuf_cache,
                                                          
 
-

+

ev_pixbuf_cache_get_link_mapping ()

-
GList*              ev_pixbuf_cache_get_link_mapping    (EvPixbufCache *pixbuf_cache,
                                                          
 
-

+

ev_pixbuf_cache_get_image_mapping ()

-
GList*              ev_pixbuf_cache_get_image_mapping   (EvPixbufCache *pixbuf_cache,
                                                          
 
-

+

ev_pixbuf_cache_get_text_mapping ()

-
GdkRegion*          ev_pixbuf_cache_get_text_mapping    (EvPixbufCache *pixbuf_cache,
                                                          
 
-

+

ev_pixbuf_cache_get_form_field_mapping ()

-
GList*              ev_pixbuf_cache_get_form_field_mapping
                                                         (EvPixbufCache *pixbuf_cache,
@@ -456,9 +456,9 @@
 

-

+

ev_pixbuf_cache_clear ()

-
void                ev_pixbuf_cache_clear               (EvPixbufCache *pixbuf_cache);
+
void                ev_pixbuf_cache_clear               (EvPixbufCache *pixbuf_cache);

@@ -475,9 +475,9 @@

-

+

ev_pixbuf_cache_style_changed ()

-
void                ev_pixbuf_cache_style_changed       (EvPixbufCache *pixbuf_cache);
+
void                ev_pixbuf_cache_style_changed       (EvPixbufCache *pixbuf_cache);

@@ -494,9 +494,9 @@

-

+

ev_pixbuf_cache_reload_page ()

-
void                ev_pixbuf_cache_reload_page         (EvPixbufCache *pixbuf_cache,
+
void                ev_pixbuf_cache_reload_page         (EvPixbufCache *pixbuf_cache,
                                                          GdkRegion *region,
@@ -547,9 +547,9 @@
 

-

+

ev_pixbuf_cache_get_selection_surface ()

-
cairo_surface_t*    ev_pixbuf_cache_get_selection_surface
                                                         (EvPixbufCache *pixbuf_cache,
@@ -600,9 +600,9 @@
 

-

+

ev_pixbuf_cache_set_selection_list ()

-
void                ev_pixbuf_cache_set_selection_list  (EvPixbufCache *pixbuf_cache,
+
void                ev_pixbuf_cache_set_selection_list  (EvPixbufCache *pixbuf_cache,
                                                          GList *selection_list);
@@ -629,9 +629,9 @@

-

+

ev_pixbuf_cache_get_selection_list ()

-
GList*              ev_pixbuf_cache_get_selection_list  (EvPixbufCache *pixbuf_cache);

@@ -656,6 +656,11 @@

-ev-pixbuf-cache +ev-pixbuf-cache

ev-pixbuf-cache

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-properties-dialog.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-properties-dialog.html --- evince-2.22.1.1/help/reference/html/evince-ev-properties-dialog.html 2008-04-08 22:09:49.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-properties-dialog.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -58,44 +58,44 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvPropertiesDialog

-
typedef struct _EvPropertiesDialog EvPropertiesDialog;
+
typedef struct _EvPropertiesDialog EvPropertiesDialog;


-

+

EvPropertiesDialogClass

-
typedef struct _EvPropertiesDialogClass EvPropertiesDialogClass;
+
typedef struct _EvPropertiesDialogClass EvPropertiesDialogClass;


-

+

EvPropertiesDialogPrivate

-
typedef struct _EvPropertiesDialogPrivate EvPropertiesDialogPrivate;
+
typedef struct _EvPropertiesDialogPrivate EvPropertiesDialogPrivate;


-

+

ev_properties_dialog_new ()

-
GtkWidget*          ev_properties_dialog_new            (void);

@@ -114,9 +114,9 @@


-

+

ev_properties_dialog_set_document ()

-
void                ev_properties_dialog_set_document   (EvPropertiesDialog *properties,
+
void                ev_properties_dialog_set_document   (EvPropertiesDialog *properties,
                                                          EvDocument *document);

@@ -140,6 +140,11 @@

-ev-properties-dialog +ev-properties-dialog

ev-properties-dialog

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-properties-fonts.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-properties-fonts.html --- evince-2.22.1.1/help/reference/html/evince-ev-properties-fonts.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-properties-fonts.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -62,44 +62,44 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvPropertiesFonts

-
typedef struct _EvPropertiesFonts EvPropertiesFonts;
+
typedef struct _EvPropertiesFonts EvPropertiesFonts;


-

+

EvPropertiesFontsClass

-
typedef struct _EvPropertiesFontsClass EvPropertiesFontsClass;
+
typedef struct _EvPropertiesFontsClass EvPropertiesFontsClass;


-

+

EvPropertiesFontsPrivate

-
typedef struct _EvPropertiesFontsPrivate EvPropertiesFontsPrivate;
+
typedef struct _EvPropertiesFontsPrivate EvPropertiesFontsPrivate;


-

+

EV_TYPE_PROPERTIES_FONTS

-
#define EV_TYPE_PROPERTIES_FONTS		(ev_properties_fonts_get_type())
+
#define EV_TYPE_PROPERTIES_FONTS		(ev_properties_fonts_get_type())
 

@@ -107,9 +107,9 @@


-

+

EV_PROPERTIES_FONTS()

-
#define EV_PROPERTIES_FONTS(object)	        (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFonts))
+
#define EV_PROPERTIES_FONTS(object)	        (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFonts))
 

@@ -127,9 +127,9 @@


-

+

EV_PROPERTIES_FONTS_CLASS()

-
#define EV_PROPERTIES_FONTS_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFontsClass))
+
#define EV_PROPERTIES_FONTS_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFontsClass))
 

@@ -147,9 +147,9 @@


-

+

EV_PROPERTIES_FONTS_GET_CLASS()

-
#define EV_PROPERTIES_FONTS_GET_CLASS(object)	(G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFontsClass))
+
#define EV_PROPERTIES_FONTS_GET_CLASS(object)	(G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_PROPERTIES_FONTS, EvPropertiesFontsClass))
 

@@ -167,9 +167,9 @@


-

+

ev_properties_fonts_new ()

-
GtkWidget*          ev_properties_fonts_new             (void);

@@ -188,9 +188,9 @@


-

+

ev_properties_fonts_set_document ()

-
void                ev_properties_fonts_set_document    (EvPropertiesFonts *properties,
+
void                ev_properties_fonts_set_document    (EvPropertiesFonts *properties,
                                                          EvDocument *document);

@@ -214,6 +214,11 @@

-ev-properties-fonts +ev-properties-fonts

ev-properties-fonts

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvRenderContext.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvRenderContext.html --- evince-2.22.1.1/help/reference/html/evince-EvRenderContext.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvRenderContext.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -68,17 +68,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvRenderContext

-
typedef struct {
+
typedef struct {
 	GObject parent;
 	int rotation;
 	gint page;
@@ -94,9 +94,9 @@
 

-

+

ev_render_context_new ()

-
EvRenderContext*    ev_render_context_new               (int rotation,
+
EvRenderContext*    ev_render_context_new               (int rotation,
                                                          gint page,
@@ -136,9 +136,9 @@
 

-

+

ev_render_context_set_page ()

-
void                ev_render_context_set_page          (EvRenderContext *rc,
+
void                ev_render_context_set_page          (EvRenderContext *rc,
                                                          gint page);
@@ -165,9 +165,9 @@

-

+

ev_render_context_set_rotation ()

-
void                ev_render_context_set_rotation      (EvRenderContext *rc,
+
void                ev_render_context_set_rotation      (EvRenderContext *rc,
                                                          int rotation);

@@ -192,9 +192,9 @@


-

+

ev_render_context_set_scale ()

-
void                ev_render_context_set_scale         (EvRenderContext *rc,
+
void                ev_render_context_set_scale         (EvRenderContext *rc,
                                                          gdouble scale);
@@ -220,6 +220,11 @@

-EvRenderContext +EvRenderContext

EvRenderContext

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-selection.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-selection.html --- evince-2.22.1.1/help/reference/html/evince-ev-selection.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-selection.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -85,17 +85,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_SELECTION_IFACE()

-
#define EV_SELECTION_IFACE(k)	     (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SELECTION, EvSelectionIface))
+
#define EV_SELECTION_IFACE(k)	     (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SELECTION, EvSelectionIface))
 

@@ -113,9 +113,9 @@


-

+

EV_IS_SELECTION_IFACE()

-
#define EV_IS_SELECTION_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SELECTION))
+
#define EV_IS_SELECTION_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SELECTION))
 

@@ -133,9 +133,9 @@


-

+

enum EvSelectionStyle

-
typedef enum {
+
typedef enum {
 	EV_SELECTION_STYLE_GLYPH,
 	EV_SELECTION_STYLE_WORD,
 	EV_SELECTION_STYLE_LINE
@@ -147,18 +147,18 @@
 

-

+

EvSelection

-
typedef struct _EvSelection EvSelection;
+
typedef struct _EvSelection EvSelection;


-

+

EvSelectionIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	void        (* render_selection)     (EvSelection      *selection,
@@ -187,9 +187,9 @@
 

-

+

ev_selection_render_selection ()

-
void                ev_selection_render_selection       (EvSelection *selection,
+
void                ev_selection_render_selection       (EvSelection *selection,
                                                          EvRenderContext *rc,
                                                          
 
-

+

ev_selection_get_selected_text ()

-
gchar*              ev_selection_get_selected_text      (EvSelection *selection,
                                                          EvRenderContext *rc,
@@ -302,9 +302,9 @@
 

-

+

ev_selection_get_selection_map ()

-
GdkRegion*          ev_selection_get_selection_map      (EvSelection *selection,
                                                          EvRenderContext *rc);
@@ -336,9 +336,9 @@

-

+

ev_selection_get_selection_region ()

-
GdkRegion*          ev_selection_get_selection_region   (EvSelection *selection,
                                                          EvRenderContext *rc,
@@ -381,6 +381,11 @@
 

-ev-selection +ev-selection

ev-selection

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvSidebarAttachments.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvSidebarAttachments.html --- evince-2.22.1.1/help/reference/html/evince-EvSidebarAttachments.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvSidebarAttachments.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -55,26 +55,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvSidebarAttachmentsPrivate

-
typedef struct _EvSidebarAttachmentsPrivate EvSidebarAttachmentsPrivate;
+
typedef struct _EvSidebarAttachmentsPrivate EvSidebarAttachmentsPrivate;


-

+

EvSidebarAttachments

-
typedef struct {
+
typedef struct {
 	GtkVBox base_instance;
 
 	EvSidebarAttachmentsPrivate *priv;
@@ -86,9 +86,9 @@
 

-

+

ev_sidebar_attachments_new ()

-
GtkWidget*          ev_sidebar_attachments_new          (void);

@@ -106,6 +106,11 @@

-EvSidebarAttachments +EvSidebarAttachments

EvSidebarAttachments

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvSidebar.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvSidebar.html --- evince-2.22.1.1/help/reference/html/evince-EvSidebar.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvSidebar.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -65,26 +65,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvSidebarPrivate

-
typedef struct _EvSidebarPrivate EvSidebarPrivate;
+
typedef struct _EvSidebarPrivate EvSidebarPrivate;


-

+

EvSidebar

-
typedef struct {
+
typedef struct {
 	GtkVBox base_instance;
 
 	EvSidebarPrivate *priv;
@@ -96,9 +96,9 @@
 

-

+

ev_sidebar_new ()

-
GtkWidget*          ev_sidebar_new                      (void);

@@ -117,9 +117,9 @@


-

+

ev_sidebar_add_page ()

-
void                ev_sidebar_add_page                 (EvSidebar *ev_sidebar,
+
void                ev_sidebar_add_page                 (EvSidebar *ev_sidebar,
                                                          GtkWidget *main_widget);
@@ -146,9 +146,9 @@

-

+

ev_sidebar_set_page ()

-
void                ev_sidebar_set_page                 (EvSidebar *ev_sidebar,
+
void                ev_sidebar_set_page                 (EvSidebar *ev_sidebar,
                                                          GtkWidget *main_widget);
@@ -175,9 +175,9 @@

-

+

ev_sidebar_set_document ()

-
void                ev_sidebar_set_document             (EvSidebar *ev_sidebar,
+
void                ev_sidebar_set_document             (EvSidebar *ev_sidebar,
                                                          EvDocument *document);

@@ -201,6 +201,11 @@

-EvSidebar +EvSidebar

EvSidebar

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvSidebarLinks.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvSidebarLinks.html --- evince-2.22.1.1/help/reference/html/evince-EvSidebarLinks.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvSidebarLinks.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -55,26 +55,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvSidebarLinksPrivate

-
typedef struct _EvSidebarLinksPrivate EvSidebarLinksPrivate;
+
typedef struct _EvSidebarLinksPrivate EvSidebarLinksPrivate;


-

+

EvSidebarLinks

-
typedef struct {
+
typedef struct {
 	GtkVBox base_instance;
 
 	EvSidebarLinksPrivate *priv;
@@ -86,9 +86,9 @@
 

-

+

ev_sidebar_links_new ()

-
GtkWidget*          ev_sidebar_links_new                (void);

@@ -106,6 +106,11 @@

-EvSidebarLinks +EvSidebarLinks

EvSidebarLinks

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-sidebar-page.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-sidebar-page.html --- evince-2.22.1.1/help/reference/html/evince-ev-sidebar-page.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-sidebar-page.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -63,17 +63,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_SIDEBAR_PAGE_IFACE()

-
#define EV_SIDEBAR_PAGE_IFACE(k)	(G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SIDEBAR_PAGE, EvSidebarPageIface))
+
#define EV_SIDEBAR_PAGE_IFACE(k)	(G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SIDEBAR_PAGE, EvSidebarPageIface))
 

@@ -91,9 +91,9 @@


-

+

EV_IS_SIDEBAR_PAGE_IFACE()

-
#define EV_IS_SIDEBAR_PAGE_IFACE(k)	(G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SIDEBAR_PAGE))
+
#define EV_IS_SIDEBAR_PAGE_IFACE(k)	(G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SIDEBAR_PAGE))
 

@@ -111,18 +111,18 @@


-

+

EvSidebarPage

-
typedef struct _EvSidebarPage EvSidebarPage;
+
typedef struct _EvSidebarPage EvSidebarPage;


-

+

EvSidebarPageIface

-
typedef struct {
+
typedef struct {
 	GTypeInterface base_iface;
 
 	/* Methods  */
@@ -139,9 +139,9 @@
 

-

+

ev_sidebar_page_support_document ()

-
gboolean            ev_sidebar_page_support_document    (EvSidebarPage *sidebar_page,
                                                          EvDocument *document);
@@ -173,9 +173,9 @@

-

+

ev_sidebar_page_set_document ()

-
void                ev_sidebar_page_set_document        (EvSidebarPage *sidebar_page,
+
void                ev_sidebar_page_set_document        (EvSidebarPage *sidebar_page,
                                                          EvDocument *document);

@@ -200,9 +200,9 @@


-

+

ev_sidebar_page_get_label ()

-
const 
const gchar*        ev_sidebar_page_get_label           (EvSidebarPage *page);

@@ -227,6 +227,11 @@

-ev-sidebar-page +ev-sidebar-page

ev-sidebar-page

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvSidebarThumbnails.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvSidebarThumbnails.html --- evince-2.22.1.1/help/reference/html/evince-EvSidebarThumbnails.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvSidebarThumbnails.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -57,26 +57,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvSidebarThumbnailsPrivate

-
typedef struct _EvSidebarThumbnailsPrivate EvSidebarThumbnailsPrivate;
+
typedef struct _EvSidebarThumbnailsPrivate EvSidebarThumbnailsPrivate;


-

+

EvSidebarThumbnails

-
typedef struct {
+
typedef struct {
 	GtkVBox base_instance;
 
 	EvSidebarThumbnailsPrivate *priv;
@@ -88,9 +88,9 @@
 

-

+

ev_sidebar_thumbnails_new ()

-
GtkWidget*          ev_sidebar_thumbnails_new           (void);

@@ -109,9 +109,9 @@


-

+

ev_sidebar_thumbnails_refresh ()

-
void                ev_sidebar_thumbnails_refresh       (EvSidebarThumbnails *sidebar_thumbnails,
+
void                ev_sidebar_thumbnails_refresh       (EvSidebarThumbnails *sidebar_thumbnails,
                                                          int rotation);

@@ -135,6 +135,11 @@

-EvSidebarThumbnails +EvSidebarThumbnails

EvSidebarThumbnails

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-stock-icons.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-stock-icons.html --- evince-2.22.1.1/help/reference/html/evince-ev-stock-icons.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-stock-icons.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -58,17 +58,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

EV_STOCK_ZOOM

-
#define EV_STOCK_ZOOM	                "zoom"
+
#define EV_STOCK_ZOOM	                "zoom"
 

@@ -76,9 +76,9 @@


-

+

EV_STOCK_ZOOM_PAGE

-
#define EV_STOCK_ZOOM_PAGE              "zoom-fit-page" 
+
#define EV_STOCK_ZOOM_PAGE              "zoom-fit-page" 
 

@@ -86,9 +86,9 @@


-

+

EV_STOCK_ZOOM_WIDTH

-
#define EV_STOCK_ZOOM_WIDTH             "zoom-fit-width" 
+
#define EV_STOCK_ZOOM_WIDTH             "zoom-fit-width" 
 

@@ -96,9 +96,9 @@


-

+

EV_STOCK_VIEW_DUAL

-
#define EV_STOCK_VIEW_DUAL       	"view-page-facing"
+
#define EV_STOCK_VIEW_DUAL       	"view-page-facing"
 

@@ -106,9 +106,9 @@


-

+

EV_STOCK_VIEW_CONTINUOUS

-
#define EV_STOCK_VIEW_CONTINUOUS        "view-page-continuous"
+
#define EV_STOCK_VIEW_CONTINUOUS        "view-page-continuous"
 

@@ -116,9 +116,9 @@


-

+

EV_STOCK_ROTATE_LEFT

-
#define EV_STOCK_ROTATE_LEFT            "object-rotate-left"
+
#define EV_STOCK_ROTATE_LEFT            "object-rotate-left"
 

@@ -126,9 +126,9 @@


-

+

EV_STOCK_ROTATE_RIGHT

-
#define EV_STOCK_ROTATE_RIGHT           "object-rotate-right"
+
#define EV_STOCK_ROTATE_RIGHT           "object-rotate-right"
 

@@ -136,9 +136,9 @@


-

+

EV_STOCK_RUN_PRESENTATION

-
#define EV_STOCK_RUN_PRESENTATION       "x-office-presentation"
+
#define EV_STOCK_RUN_PRESENTATION       "x-office-presentation"
 

@@ -146,9 +146,9 @@


-

+

ev_stock_icons_init ()

-
void                ev_stock_icons_init                 (void);
+
void                ev_stock_icons_init                 (void);

Creates a new icon factory, adding the base stock icons to it.

@@ -156,6 +156,11 @@

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-EvTooltip.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-EvTooltip.html --- evince-2.22.1.1/help/reference/html/evince-EvTooltip.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-EvTooltip.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ - + Description

-ev-stock-icons +ev-stock-icons

ev-stock-icons

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -64,26 +64,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvTooltipPrivate

-
typedef struct _EvTooltipPrivate EvTooltipPrivate;
+
typedef struct _EvTooltipPrivate EvTooltipPrivate;


-

+

EvTooltip

-
typedef struct {
+
typedef struct {
 	GtkWindow base_instance;
 
 	GtkWidget *parent;
@@ -97,9 +97,9 @@
 

-

+

ev_tooltip_new ()

-
GtkWidget*          ev_tooltip_new                      (
 
-

+

ev_tooltip_set_text ()

-
void                ev_tooltip_set_text                 (EvTooltip *tooltip,
+
void                ev_tooltip_set_text                 (EvTooltip *tooltip,
                                                          const char *text);

@@ -154,9 +154,9 @@


-

+

ev_tooltip_set_position ()

-
void                ev_tooltip_set_position             (EvTooltip *tooltip,
+
void                ev_tooltip_set_position             (EvTooltip *tooltip,
                                                          int x,
                                                          int y);

@@ -187,9 +187,9 @@


-

+

ev_tooltip_activate ()

-
void                ev_tooltip_activate                 (EvTooltip *tooltip);
+
void                ev_tooltip_activate                 (EvTooltip *tooltip);

@@ -206,9 +206,9 @@

-

+

ev_tooltip_deactivate ()

-
void                ev_tooltip_deactivate               (EvTooltip *tooltip);
+
void                ev_tooltip_deactivate               (EvTooltip *tooltip);

@@ -224,6 +224,11 @@

-EvTooltip +EvTooltip

EvTooltip

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-utils.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-utils.html --- evince-2.22.1.1/help/reference/html/evince-ev-utils.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-utils.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -95,17 +95,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_pixbuf_add_shadow ()

-
GdkPixbuf*          ev_pixbuf_add_shadow                (
 
-

+

ev_print_region_contents ()

-
void                ev_print_region_contents            (
void                ev_print_region_contents            (GdkRegion *region);

@@ -178,9 +178,9 @@


-

+

ev_gui_menu_position_tree_selection ()

-
void                ev_gui_menu_position_tree_selection (
void                ev_gui_menu_position_tree_selection (GtkMenu *menu,
                                                          
 
-

+

get_num_monitors ()

-
gint                get_num_monitors                    (
 
-

+

get_screen_dpi ()

-
gdouble             get_screen_dpi                      (
 
-

+

file_chooser_dialog_add_writable_pixbuf_formats ()

-
void                file_chooser_dialog_add_writable_pixbuf_formats
+
void                file_chooser_dialog_add_writable_pixbuf_formats
                                                         (GtkFileChooser *chooser);
@@ -315,9 +315,9 @@

-

+

get_gdk_pixbuf_format_by_extension ()

-
GdkPixbufFormat*    get_gdk_pixbuf_format_by_extension  (
+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-view-accessible.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-view-accessible.html --- evince-2.22.1.1/help/reference/html/evince-ev-view-accessible.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-view-accessible.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@
- + Description

-ev-utils +ev-utils

ev-utils

Evince Programmer's Reference Manual Next
Top +
Top  |  - Description
@@ -52,17 +52,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

ev_view_accessible_factory_get_type ()

-
GType               ev_view_accessible_factory_get_type (void);

@@ -80,6 +80,11 @@

-ev-view-accessible +ev-view-accessible

ev-view-accessible

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-view.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-view.html --- evince-2.22.1.1/help/reference/html/evince-ev-view.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-view.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,24 +25,24 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces  |  - Properties + Properties  |  - Signals + Signals
@@ -182,7 +182,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvView implements GtkBuildable and AtkImplementorIface.

-

Properties

+

Properties

 
   "continuous"               
 
-

Signals

+

Signals

 
   "binding-activated"                              : Run Last / Action
@@ -257,17 +257,17 @@
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_TYPE_SIZING_MODE

-
#define EV_TYPE_SIZING_MODE     (ev_sizing_mode_get_type())
+
#define EV_TYPE_SIZING_MODE     (ev_sizing_mode_get_type())
 

@@ -275,9 +275,9 @@


-

+

EV_SIZING_MODE_CLASS

-
#define EV_SIZING_MODE_CLASS    (g_type_class_peek (EV_TYPE_SIZING_MODE))
+
#define EV_SIZING_MODE_CLASS    (g_type_class_peek (EV_TYPE_SIZING_MODE))
 

@@ -285,9 +285,9 @@


-

+

EV_TYPE_SCROLL_TYPE

-
#define EV_TYPE_SCROLL_TYPE     (ev_scroll_type_get_type())
+
#define EV_TYPE_SCROLL_TYPE     (ev_scroll_type_get_type())
 

@@ -295,9 +295,9 @@


-

+

EV_SCROLL_TYPE_CLASS

-
#define EV_SCROLL_TYPE_CLASS    (g_type_class_peek (EV_TYPE_SCROLL_TYPE))
+
#define EV_SCROLL_TYPE_CLASS    (g_type_class_peek (EV_TYPE_SCROLL_TYPE))
 

@@ -305,18 +305,18 @@


-

+

EvView

-
typedef struct _EvView EvView;
+
typedef struct _EvView EvView;


-

+

EvViewClass

-
typedef struct {
+
typedef struct {
 	GtkLayoutClass parent_class;
 
 	void    (*binding_activated)	  (EvView         *view,
@@ -337,9 +337,9 @@
 

-

+

enum EvSizingMode

-
typedef enum {
+
typedef enum {
 	EV_SIZING_BEST_FIT,
 	EV_SIZING_FIT_WIDTH,
 	EV_SIZING_FREE,
@@ -351,9 +351,9 @@
 

-

+

enum EvViewSelectionMode

-
typedef enum {
+
typedef enum {
 	EV_VIEW_SELECTION_TEXT,
 	EV_VIEW_SELECTION_RECTANGLE,
 } EvViewSelectionMode;
@@ -364,9 +364,9 @@
 

-

+

enum EvScrollType

-
typedef enum {
+
typedef enum {
 	EV_SCROLL_PAGE_FORWARD,
 	EV_SCROLL_PAGE_BACKWARD,
 	EV_SCROLL_STEP_BACKWARD,
@@ -381,9 +381,9 @@
 

-

+

ev_sizing_mode_get_type ()

-
GType               ev_sizing_mode_get_type             (void);

@@ -402,9 +402,9 @@


-

+

ev_scroll_type_get_type ()

-
GType               ev_scroll_type_get_type             (void);

@@ -423,9 +423,9 @@


-

+

ev_view_new ()

-
GtkWidget*          ev_view_new                         (void);

@@ -444,9 +444,9 @@


-

+

ev_view_set_document ()

-
void                ev_view_set_document                (EvView *view,
+
void                ev_view_set_document                (EvView *view,
                                                          EvDocument *document);

@@ -471,9 +471,9 @@


-

+

ev_view_set_loading ()

-
void                ev_view_set_loading                 (EvView *view,
+
void                ev_view_set_loading                 (EvView *view,
                                                          gboolean loading);
@@ -500,9 +500,9 @@

-

+

ev_view_copy ()

-
void                ev_view_copy                        (EvView *view);
+
void                ev_view_copy                        (EvView *view);

@@ -519,9 +519,9 @@

-

+

ev_view_select_all ()

-
void                ev_view_select_all                  (EvView *view);
+
void                ev_view_select_all                  (EvView *view);

@@ -538,9 +538,9 @@

-

+

ev_view_get_has_selection ()

-
gboolean            ev_view_get_has_selection           (EvView *view);

@@ -566,9 +566,9 @@


-

+

ev_view_get_continuous ()

-
gboolean            ev_view_get_continuous              (EvView *view);

@@ -594,9 +594,9 @@


-

+

ev_view_set_continuous ()

-
void                ev_view_set_continuous              (EvView *view,
+
void                ev_view_set_continuous              (EvView *view,
                                                          gboolean continuous);
@@ -623,9 +623,9 @@

-

+

ev_view_get_dual_page ()

-
gboolean            ev_view_get_dual_page               (EvView *view);

@@ -651,9 +651,9 @@


-

+

ev_view_set_dual_page ()

-
void                ev_view_set_dual_page               (EvView *view,
+
void                ev_view_set_dual_page               (EvView *view,
                                                          gboolean dual_page);
@@ -680,9 +680,9 @@

-

+

ev_view_set_fullscreen ()

-
void                ev_view_set_fullscreen              (EvView *view,
+
void                ev_view_set_fullscreen              (EvView *view,
                                                          gboolean fullscreen);
@@ -709,9 +709,9 @@

-

+

ev_view_get_fullscreen ()

-
gboolean            ev_view_get_fullscreen              (EvView *view);

@@ -737,9 +737,9 @@


-

+

ev_view_set_presentation ()

-
void                ev_view_set_presentation            (EvView *view,
+
void                ev_view_set_presentation            (EvView *view,
                                                          gboolean presentation);
@@ -766,9 +766,9 @@

-

+

ev_view_get_presentation ()

-
gboolean            ev_view_get_presentation            (EvView *view);

@@ -794,9 +794,9 @@


-

+

ev_view_set_sizing_mode ()

-
void                ev_view_set_sizing_mode             (EvView *view,
+
void                ev_view_set_sizing_mode             (EvView *view,
                                                          EvSizingMode mode);

@@ -821,9 +821,9 @@


-

+

ev_view_get_sizing_mode ()

-
EvSizingMode        ev_view_get_sizing_mode             (EvView *view);
+
EvSizingMode        ev_view_get_sizing_mode             (EvView *view);

@@ -847,9 +847,9 @@

-

+

ev_view_can_zoom_in ()

-
gboolean            ev_view_can_zoom_in                 (EvView *view);

@@ -875,9 +875,9 @@


-

+

ev_view_zoom_in ()

-
void                ev_view_zoom_in                     (EvView *view);
+
void                ev_view_zoom_in                     (EvView *view);

@@ -894,9 +894,9 @@

-

+

ev_view_can_zoom_out ()

-
gboolean            ev_view_can_zoom_out                (EvView *view);

@@ -922,9 +922,9 @@


-

+

ev_view_zoom_out ()

-
void                ev_view_zoom_out                    (EvView *view);
+
void                ev_view_zoom_out                    (EvView *view);

@@ -941,9 +941,9 @@

-

+

ev_view_set_zoom ()

-
void                ev_view_set_zoom                    (EvView *view,
+
void                ev_view_set_zoom                    (EvView *view,
                                                          double factor,
                                                          
 
-

+

ev_view_get_zoom ()

-
double              ev_view_get_zoom                    (EvView *view);
+
double              ev_view_get_zoom                    (EvView *view);

@@ -1002,9 +1002,9 @@

-

+

ev_view_set_screen_dpi ()

-
void                ev_view_set_screen_dpi              (EvView *view,
+
void                ev_view_set_screen_dpi              (EvView *view,
                                                          gdouble dpi);
@@ -1031,9 +1031,9 @@

-

+

ev_view_rotate_left ()

-
void                ev_view_rotate_left                 (EvView *view);
+
void                ev_view_rotate_left                 (EvView *view);

@@ -1050,9 +1050,9 @@

-

+

ev_view_rotate_right ()

-
void                ev_view_rotate_right                (EvView *view);
+
void                ev_view_rotate_right                (EvView *view);

@@ -1069,9 +1069,9 @@

-

+

ev_view_set_rotation ()

-
void                ev_view_set_rotation                (EvView *view,
+
void                ev_view_set_rotation                (EvView *view,
                                                          int rotation);

@@ -1096,9 +1096,9 @@


-

+

ev_view_get_rotation ()

-
int                 ev_view_get_rotation                (EvView *view);
+
int                 ev_view_get_rotation                (EvView *view);

@@ -1122,9 +1122,9 @@

-

+

ev_view_can_find_next ()

-
gboolean            ev_view_can_find_next               (EvView *view);

@@ -1150,9 +1150,9 @@


-

+

ev_view_find_next ()

-
void                ev_view_find_next                   (EvView *view);
+
void                ev_view_find_next                   (EvView *view);

@@ -1169,9 +1169,9 @@

-

+

ev_view_can_find_previous ()

-
gboolean            ev_view_can_find_previous           (EvView *view);

@@ -1197,9 +1197,9 @@


-

+

ev_view_find_previous ()

-
void                ev_view_find_previous               (EvView *view);
+
void                ev_view_find_previous               (EvView *view);

@@ -1216,9 +1216,9 @@

-

+

ev_view_search_changed ()

-
void                ev_view_search_changed              (EvView *view);
+
void                ev_view_search_changed              (EvView *view);

@@ -1235,9 +1235,9 @@

-

+

ev_view_set_highlight_search ()

-
void                ev_view_set_highlight_search        (EvView *view,
+
void                ev_view_set_highlight_search        (EvView *view,
                                                          gboolean value);
@@ -1264,9 +1264,9 @@

-

+

ev_view_find_cancel ()

-
void                ev_view_find_cancel                 (EvView *view);
+
void                ev_view_find_cancel                 (EvView *view);

@@ -1283,9 +1283,9 @@

-

+

ev_view_get_status ()

-
const char*         ev_view_get_status                  (EvView *view);
+
const char*         ev_view_get_status                  (EvView *view);

@@ -1309,9 +1309,9 @@

-

+

ev_view_get_find_status ()

-
const char*         ev_view_get_find_status             (EvView *view);
+
const char*         ev_view_get_find_status             (EvView *view);

@@ -1335,9 +1335,9 @@

-

+

ev_view_hide_cursor ()

-
void                ev_view_hide_cursor                 (EvView *view);
+
void                ev_view_hide_cursor                 (EvView *view);

@@ -1354,9 +1354,9 @@

-

+

ev_view_show_cursor ()

-
void                ev_view_show_cursor                 (EvView *view);
+
void                ev_view_show_cursor                 (EvView *view);

@@ -1373,9 +1373,9 @@

-

+

ev_view_scroll ()

-
void                ev_view_scroll                      (EvView *view,
+
void                ev_view_scroll                      (EvView *view,
                                                          EvScrollType scroll,
                                                          
 
-

+

ev_view_handle_link ()

-
void                ev_view_handle_link                 (EvView *view,
+
void                ev_view_handle_link                 (EvView *view,
                                                          EvLink *link);

@@ -1435,9 +1435,9 @@


-

+

ev_view_next_page ()

-
gboolean            ev_view_next_page                   (EvView *view);

@@ -1463,9 +1463,9 @@


-

+

ev_view_previous_page ()

-
gboolean            ev_view_previous_page               (EvView *view);

@@ -1491,9 +1491,9 @@


-

+

ev_view_page_label_from_dest ()

-
gchar*              ev_view_page_label_from_dest        (EvView *view,
                                                          EvLinkDest *dest);
@@ -1525,9 +1525,9 @@

-

+

ev_view_update_view_size ()

-
void                ev_view_update_view_size            (EvView *view,
+
void                ev_view_update_view_size            (EvView *view,
                                                          GtkScrolledWindow *scrolled_window);
@@ -1554,9 +1554,9 @@

-

+

ev_view_autoscroll_start ()

-
void                ev_view_autoscroll_start            (EvView *view);
+
void                ev_view_autoscroll_start            (EvView *view);

@@ -1573,9 +1573,9 @@

-

+

ev_view_autoscroll_stop ()

-
void                ev_view_autoscroll_stop             (EvView *view);
+
void                ev_view_autoscroll_stop             (EvView *view);

@@ -1592,11 +1592,11 @@
-

Property Details

+

Property Details

-

-The "continuous" property

-
  "continuous"               

+The "continuous" property

+
  "continuous"               gboolean              : Read / Write

Continuous scrolling mode.

@@ -1604,9 +1604,9 @@

-

-The "dual-page" property

-
  "dual-page"                

+The "dual-page" property

+
  "dual-page"                gboolean              : Read / Write

Two pages visible at once.

@@ -1614,9 +1614,9 @@

-

-The "find-status" property

-
  "find-status"              

+The "find-status" property

+
  "find-status"              gchararray            : Read

The find status message.

@@ -1624,9 +1624,9 @@

-

-The "fullscreen" property

-
  "fullscreen"               

+The "fullscreen" property

+
  "fullscreen"               gboolean              : Read / Write

Draw page in a fullscreen fashion.

@@ -1634,9 +1634,9 @@

-

-The "has-selection" property

-
  "has-selection"            

+The "has-selection" property

+
  "has-selection"            gboolean              : Read

The view has selections.

@@ -1644,9 +1644,9 @@

-

-The "presentation" property

-
  "presentation"             

+The "presentation" property

+
  "presentation"             gboolean              : Read / Write

Draw page in presentation mode.

@@ -1654,9 +1654,9 @@

-

-The "rotation" property

-
  "rotation"                 

+The "rotation" property

+
  "rotation"                 gdouble               : Read / Write

Rotation.

@@ -1665,17 +1665,17 @@

-

-The "sizing-mode" property

-
  "sizing-mode"              EvSizingMode          : Read / Write
+

+The "sizing-mode" property

+
  "sizing-mode"              EvSizingMode          : Read / Write

Sizing Mode.

Default value: EV_SIZING_FIT_WIDTH


-

-The "zoom" property

-
  "zoom"                     

+The "zoom" property

+
  "zoom"                     gdouble               : Read / Write

Zoom factor.

@@ -1684,11 +1684,11 @@
-

Signal Details

+

Signal Details

-

-The "binding-activated" signal

-
void                user_function                      (EvView       *evview,
+

+The "binding-activated" signal

+
void                user_function                      (EvView       *evview,
                                                         GtkScrollType arg1,
@@ -1729,9 +1729,9 @@
 

-

-The "external-link" signal

-
void                user_function                      (EvView  *evview,
+

+The "external-link" signal

+
void                user_function                      (EvView  *evview,
                                                         GObject *arg1,
@@ -1764,9 +1764,9 @@
 

-

-The "handle-link" signal

-
void                user_function                      (EvView  *evview,
+

+The "handle-link" signal

+
void                user_function                      (EvView  *evview,
                                                         GObject *arg1,
@@ -1799,9 +1799,9 @@
 

-

-The "popup" signal

-
void                user_function                      (EvView  *evview,
+

+The "popup" signal

+
void                user_function                      (EvView  *evview,
                                                         GObject *arg1,
@@ -1834,9 +1834,9 @@
 

-

-The "zoom-invalid" signal

-
void                user_function                      (EvView  *evview,
+

+The "zoom-invalid" signal

+
void                user_function                      (EvView  *evview,
                                                         gpointer user_data)      : Run Last / Action
@@ -1860,6 +1860,11 @@

-ev-view +ev-view

ev-view

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/evince-ev-window-title.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/evince-ev-window-title.html --- evince-2.22.1.1/help/reference/html/evince-ev-window-title.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/evince-ev-window-title.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,16 +25,16 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description
@@ -59,26 +59,26 @@
-

Description

+

Description

-

Details

+

Details

-

+

EvWindowTitle

-
typedef struct _EvWindowTitle EvWindowTitle;
+
typedef struct _EvWindowTitle EvWindowTitle;


-

+

enum EvWindowTitleType

-
typedef enum
+
typedef enum
 {
 	EV_WINDOW_TITLE_DOCUMENT,
 	EV_WINDOW_TITLE_PASSWORD
@@ -90,9 +90,9 @@
 

-

+

ev_window_title_new ()

-
EvWindowTitle*      ev_window_title_new                 (EvWindow *window);
+
EvWindowTitle*      ev_window_title_new                 (EvWindow *window);

@@ -116,9 +116,9 @@

-

+

ev_window_title_set_type ()

-
void                ev_window_title_set_type            (EvWindowTitle *window_title,
+
void                ev_window_title_set_type            (EvWindowTitle *window_title,
                                                          EvWindowTitleType type);

@@ -143,9 +143,9 @@


-

+

ev_window_title_set_document ()

-
void                ev_window_title_set_document        (EvWindowTitle *window_title,
+
void                ev_window_title_set_document        (EvWindowTitle *window_title,
                                                          EvDocument *document);

@@ -170,9 +170,9 @@


-

+

ev_window_title_set_uri ()

-
void                ev_window_title_set_uri             (EvWindowTitle *window_title,
+
void                ev_window_title_set_uri             (EvWindowTitle *window_title,
                                                          const char *uri);

@@ -197,9 +197,9 @@


-

+

ev_window_title_free ()

-
void                ev_window_title_free                (EvWindowTitle *window_title);
+
void                ev_window_title_free                (EvWindowTitle *window_title);

@@ -215,6 +215,11 @@

-ev-window-title +ev-window-title

ev-window-title

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvJobPrint.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvJobPrint.html --- evince-2.22.1.1/help/reference/html/EvJobPrint.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvJobPrint.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Signals + Signals
@@ -201,7 +201,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Signals

+

Signals

 
   "page-ready"                                     : Run Last
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_TYPE_JOB_LINKS

-
#define EV_TYPE_JOB_LINKS		     (ev_job_links_get_type())
+
#define EV_TYPE_JOB_LINKS		     (ev_job_links_get_type())
 

@@ -290,9 +290,9 @@


-

+

EV_JOB_LINKS()

-
#define EV_JOB_LINKS(object)		     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_LINKS, EvJobLinks))
+
#define EV_JOB_LINKS(object)		     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_LINKS, EvJobLinks))
 

@@ -310,9 +310,9 @@


-

+

EV_JOB_LINKS_CLASS()

-
#define EV_JOB_LINKS_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_LINKS, EvJobLinksClass))
+
#define EV_JOB_LINKS_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_LINKS, EvJobLinksClass))
 

@@ -330,9 +330,9 @@


-

+

EV_IS_JOB_LINKS()

-
#define EV_IS_JOB_LINKS(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_LINKS))
+
#define EV_IS_JOB_LINKS(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_LINKS))
 

@@ -350,9 +350,9 @@


-

+

EV_TYPE_JOB_RENDER

-
#define EV_TYPE_JOB_RENDER		     (ev_job_render_get_type())
+
#define EV_TYPE_JOB_RENDER		     (ev_job_render_get_type())
 

@@ -360,9 +360,9 @@


-

+

EV_JOB_RENDER()

-
#define EV_JOB_RENDER(object)		     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_RENDER, EvJobRender))
+
#define EV_JOB_RENDER(object)		     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_RENDER, EvJobRender))
 

@@ -380,9 +380,9 @@


-

+

EV_JOB_RENDER_CLASS()

-
#define EV_JOB_RENDER_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_RENDER, EvJobRenderClass))
+
#define EV_JOB_RENDER_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_RENDER, EvJobRenderClass))
 

@@ -400,9 +400,9 @@


-

+

EV_IS_JOB_RENDER()

-
#define EV_IS_JOB_RENDER(object)	     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_RENDER))
+
#define EV_IS_JOB_RENDER(object)	     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_RENDER))
 

@@ -420,9 +420,9 @@


-

+

EV_TYPE_JOB_THUMBNAIL

-
#define EV_TYPE_JOB_THUMBNAIL		     (ev_job_thumbnail_get_type())
+
#define EV_TYPE_JOB_THUMBNAIL		     (ev_job_thumbnail_get_type())
 

@@ -430,9 +430,9 @@


-

+

EV_JOB_THUMBNAIL()

-
#define EV_JOB_THUMBNAIL(object)	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_THUMBNAIL, EvJobThumbnail))
+
#define EV_JOB_THUMBNAIL(object)	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_THUMBNAIL, EvJobThumbnail))
 

@@ -450,9 +450,9 @@


-

+

EV_JOB_THUMBNAIL_CLASS()

-
#define EV_JOB_THUMBNAIL_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_THUMBNAIL, EvJobThumbnailClass))
+
#define EV_JOB_THUMBNAIL_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_THUMBNAIL, EvJobThumbnailClass))
 

@@ -470,9 +470,9 @@


-

+

EV_IS_JOB_THUMBNAIL()

-
#define EV_IS_JOB_THUMBNAIL(object)	     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_THUMBNAIL))
+
#define EV_IS_JOB_THUMBNAIL(object)	     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_THUMBNAIL))
 

@@ -490,9 +490,9 @@


-

+

EV_TYPE_JOB_FONTS

-
#define EV_TYPE_JOB_FONTS		     (ev_job_fonts_get_type())
+
#define EV_TYPE_JOB_FONTS		     (ev_job_fonts_get_type())
 

@@ -500,9 +500,9 @@


-

+

EV_JOB_FONTS()

-
#define EV_JOB_FONTS(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_FONTS, EvJobFonts))
+
#define EV_JOB_FONTS(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_FONTS, EvJobFonts))
 

@@ -520,9 +520,9 @@


-

+

EV_JOB_FONTS_CLASS()

-
#define EV_JOB_FONTS_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_FONTS, EvJobFontsClass))
+
#define EV_JOB_FONTS_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_FONTS, EvJobFontsClass))
 

@@ -540,9 +540,9 @@


-

+

EV_IS_JOB_FONTS()

-
#define EV_IS_JOB_FONTS(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_FONTS))
+
#define EV_IS_JOB_FONTS(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_FONTS))
 

@@ -560,9 +560,9 @@


-

+

EV_TYPE_JOB_LOAD

-
#define EV_TYPE_JOB_LOAD		     (ev_job_load_get_type())
+
#define EV_TYPE_JOB_LOAD		     (ev_job_load_get_type())
 

@@ -570,9 +570,9 @@


-

+

EV_JOB_LOAD()

-
#define EV_JOB_LOAD(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_LOAD, EvJobLoad))
+
#define EV_JOB_LOAD(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_LOAD, EvJobLoad))
 

@@ -590,9 +590,9 @@


-

+

EV_JOB_LOAD_CLASS()

-
#define EV_JOB_LOAD_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_LOAD, EvJobLoadClass))
+
#define EV_JOB_LOAD_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_LOAD, EvJobLoadClass))
 

@@ -610,9 +610,9 @@


-

+

EV_IS_JOB_LOAD()

-
#define EV_IS_JOB_LOAD(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_LOAD))
+
#define EV_IS_JOB_LOAD(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_LOAD))
 

@@ -630,9 +630,9 @@


-

+

EV_TYPE_JOB_SAVE

-
#define EV_TYPE_JOB_SAVE		     (ev_job_save_get_type())
+
#define EV_TYPE_JOB_SAVE		     (ev_job_save_get_type())
 

@@ -640,9 +640,9 @@


-

+

EV_JOB_SAVE()

-
#define EV_JOB_SAVE(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_SAVE, EvJobSave))
+
#define EV_JOB_SAVE(object)	     	     (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_SAVE, EvJobSave))
 

@@ -660,9 +660,9 @@


-

+

EV_JOB_SAVE_CLASS()

-
#define EV_JOB_SAVE_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_SAVE, EvJobSaveClass))
+
#define EV_JOB_SAVE_CLASS(klass)	     (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_SAVE, EvJobSaveClass))
 

@@ -680,9 +680,9 @@


-

+

EV_IS_JOB_SAVE()

-
#define EV_IS_JOB_SAVE(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_SAVE))
+
#define EV_IS_JOB_SAVE(object)		     (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_SAVE))
 

@@ -700,9 +700,9 @@


-

+

EV_TYPE_JOB_PRINT

-
#define EV_TYPE_JOB_PRINT                    (ev_job_print_get_type())
+
#define EV_TYPE_JOB_PRINT                    (ev_job_print_get_type())
 

@@ -710,9 +710,9 @@


-

+

EV_JOB_PRINT()

-
#define EV_JOB_PRINT(object)                 (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_PRINT, EvJobPrint))
+
#define EV_JOB_PRINT(object)                 (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_JOB_PRINT, EvJobPrint))
 

@@ -730,9 +730,9 @@


-

+

EV_JOB_PRINT_CLASS()

-
#define EV_JOB_PRINT_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_PRINT, EvJobPrintClass))
+
#define EV_JOB_PRINT_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_JOB_PRINT, EvJobPrintClass))
 

@@ -750,9 +750,9 @@


-

+

EV_IS_JOB_PRINT()

-
#define EV_IS_JOB_PRINT(object)              (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_PRINT))
+
#define EV_IS_JOB_PRINT(object)              (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_JOB_PRINT))
 

@@ -770,9 +770,9 @@


-

+

enum EvJobPriority

-
typedef enum {
+
typedef enum {
 	EV_JOB_PRIORITY_LOW,
 	EV_JOB_PRIORITY_HIGH,
 } EvJobPriority;
@@ -783,63 +783,63 @@
 

-

+

EvJob

-
typedef struct _EvJob EvJob;
+
typedef struct _EvJob EvJob;


-

+

EvJobLinks

-
typedef struct _EvJobLinks EvJobLinks;
+
typedef struct _EvJobLinks EvJobLinks;


-

+

EvJobRender

-
typedef struct _EvJobRender EvJobRender;
+
typedef struct _EvJobRender EvJobRender;


-

+

EvJobThumbnail

-
typedef struct _EvJobThumbnail EvJobThumbnail;
+
typedef struct _EvJobThumbnail EvJobThumbnail;


-

+

EvJobFonts

-
typedef struct _EvJobFonts EvJobFonts;
+
typedef struct _EvJobFonts EvJobFonts;


-

+

EvJobLoad

-
typedef struct _EvJobLoad EvJobLoad;
+
typedef struct _EvJobLoad EvJobLoad;


-

+

EvJobSave

-
typedef struct {
+
typedef struct {
 	EvJob parent;
 
 	GError *error;
@@ -853,18 +853,18 @@
 

-

+

EvJobPrint

-
typedef struct _EvJobPrint EvJobPrint;
+
typedef struct _EvJobPrint EvJobPrint;


-

+

ev_job_finished ()

-
void                ev_job_finished                     (EvJob *job);
+
void                ev_job_finished                     (EvJob *job);

@@ -881,9 +881,9 @@

-

+

ev_job_links_get_type ()

-
GType               ev_job_links_get_type               (void);

@@ -902,9 +902,9 @@


-

+

ev_job_links_new ()

-
EvJob*              ev_job_links_new                    (EvDocument *document);
+
EvJob*              ev_job_links_new                    (EvDocument *document);

@@ -928,9 +928,9 @@

-

+

ev_job_links_run ()

-
void                ev_job_links_run                    (EvJobLinks *thumbnail);
+
void                ev_job_links_run                    (EvJobLinks *thumbnail);

@@ -947,9 +947,9 @@

-

+

ev_job_render_get_type ()

-
GType               ev_job_render_get_type              (void);

@@ -968,9 +968,9 @@


-

+

ev_job_render_new ()

-
EvJob*              ev_job_render_new                   (EvDocument *document,
+
EvJob*              ev_job_render_new                   (EvDocument *document,
                                                          EvRenderContext *rc,
                                                          
 
-

+

ev_job_render_run ()

-
void                ev_job_render_run                   (EvJobRender *thumbnail);
+
void                ev_job_render_run                   (EvJobRender *thumbnail);

@@ -1103,9 +1103,9 @@

-

+

ev_job_thumbnail_get_type ()

-
GType               ev_job_thumbnail_get_type           (void);

@@ -1124,9 +1124,9 @@


-

+

ev_job_thumbnail_new ()

-
EvJob*              ev_job_thumbnail_new                (EvDocument *document,
+
EvJob*              ev_job_thumbnail_new                (EvDocument *document,
                                                          EvRenderContext *rc);

@@ -1156,9 +1156,9 @@


-

+

ev_job_thumbnail_run ()

-
void                ev_job_thumbnail_run                (EvJobThumbnail *thumbnail);
+
void                ev_job_thumbnail_run                (EvJobThumbnail *thumbnail);

@@ -1175,9 +1175,9 @@

-

+

ev_job_fonts_get_type ()

-
GType               ev_job_fonts_get_type               (void);

@@ -1196,9 +1196,9 @@


-

+

ev_job_fonts_new ()

-
EvJob*              ev_job_fonts_new                    (EvDocument *document);
+
EvJob*              ev_job_fonts_new                    (EvDocument *document);

@@ -1222,9 +1222,9 @@

-

+

ev_job_fonts_run ()

-
void                ev_job_fonts_run                    (EvJobFonts *fonts);
+
void                ev_job_fonts_run                    (EvJobFonts *fonts);

@@ -1241,9 +1241,9 @@

-

+

ev_job_load_get_type ()

-
GType               ev_job_load_get_type                (void);

@@ -1262,9 +1262,9 @@


-

+

ev_job_load_new ()

-
EvJob*              ev_job_load_new                     (const 
EvJob*              ev_job_load_new                     (const gchar *uri,
                                                          EvLinkDest *dest,
@@ -1310,9 +1310,9 @@
 

-

+

ev_job_load_set_uri ()

-
void                ev_job_load_set_uri                 (EvJobLoad *load,
+
void                ev_job_load_set_uri                 (EvJobLoad *load,
                                                          const gchar *uri);
@@ -1339,9 +1339,9 @@

-

+

ev_job_load_run ()

-
void                ev_job_load_run                     (EvJobLoad *load);
+
void                ev_job_load_run                     (EvJobLoad *load);

@@ -1358,9 +1358,9 @@

-

+

ev_job_save_get_type ()

-
GType               ev_job_save_get_type                (void);

@@ -1379,9 +1379,9 @@


-

+

ev_job_save_new ()

-
EvJob*              ev_job_save_new                     (EvDocument *document,
+
EvJob*              ev_job_save_new                     (EvDocument *document,
                                                          const gchar *uri,
@@ -1421,9 +1421,9 @@
 

-

+

ev_job_save_run ()

-
void                ev_job_save_run                     (EvJobSave *save);
+
void                ev_job_save_run                     (EvJobSave *save);

@@ -1440,9 +1440,9 @@

-

+

ev_job_print_get_type ()

-
GType               ev_job_print_get_type               (void);

@@ -1461,9 +1461,9 @@


-

+

ev_job_print_new ()

-
EvJob*              ev_job_print_new                    (EvDocument *document,
+
EvJob*              ev_job_print_new                    (EvDocument *document,
                                                          const gchar *format,
@@ -1563,9 +1563,9 @@
 

-

+

ev_job_print_run ()

-
void                ev_job_print_run                    (EvJobPrint *print);
+
void                ev_job_print_run                    (EvJobPrint *print);

@@ -1582,11 +1582,11 @@
-

Signal Details

+

Signal Details

-

-The "page-ready" signal

-
void                user_function                      (EvJobRender *evjobrender,
+

+The "page-ready" signal

+
void                user_function                      (EvJobRender *evjobrender,
                                                         gpointer     user_data)        : Run Last
@@ -1610,6 +1610,11 @@

-EvJobPrint +EvJobPrint

EvJobPrint

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvNavigationAction.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvNavigationAction.html --- evince-2.22.1.1/help/reference/html/EvNavigationAction.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvNavigationAction.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,22 +25,22 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces  |  - Signals + Signals
@@ -60,7 +60,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvNavigationAction implements GtkBuildable.

-

Signals

+

Signals

 
   "activate-link"                                  : Run Last / Action
 
-

Description

+

Description

-

Details

+

Details

-

+

EvNavigationActionPrivate

-
typedef struct _EvNavigationActionPrivate EvNavigationActionPrivate;
+
typedef struct _EvNavigationActionPrivate EvNavigationActionPrivate;


-

+

EvNavigationAction

-
typedef struct _EvNavigationAction EvNavigationAction;
+
typedef struct _EvNavigationAction EvNavigationAction;


-

+

ev_navigation_action_set_history ()

-
void                ev_navigation_action_set_history    (EvNavigationAction *action,
+
void                ev_navigation_action_set_history    (EvNavigationAction *action,
                                                          EvHistory *history);

@@ -141,11 +141,11 @@

-

Signal Details

+

Signal Details

-

-The "activate-link" signal

-
void                user_function                      (EvNavigationAction *evnavigationaction,
+

+The "activate-link" signal

+
void                user_function                      (EvNavigationAction *evnavigationaction,
                                                         GObject            *arg1,
@@ -177,6 +177,11 @@
 

-EvNavigationAction +EvNavigationAction

EvNavigationAction

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvNavigationActionWidget.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvNavigationActionWidget.html --- evince-2.22.1.1/help/reference/html/EvNavigationActionWidget.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvNavigationActionWidget.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,22 +25,22 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces  |  - Signals + Signals
@@ -67,7 +67,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvNavigationActionWidget implements GtkBuildable and AtkImplementorIface.

-

Signals

+

Signals

 
   "show-menu"                                      : Run First
@@ -117,17 +117,17 @@
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_TYPE_NAVIGATION_ACTION_WIDGET

-
#define EV_TYPE_NAVIGATION_ACTION_WIDGET (ev_navigation_action_widget_get_type ())
+
#define EV_TYPE_NAVIGATION_ACTION_WIDGET (ev_navigation_action_widget_get_type ())
 

@@ -135,9 +135,9 @@


-

+

EV_NAVIGATION_ACTION_WIDGET()

-
#define EV_NAVIGATION_ACTION_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_NAVIGATION_ACTION_WIDGET, EvNavigationActionWidget))
+
#define EV_NAVIGATION_ACTION_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_NAVIGATION_ACTION_WIDGET, EvNavigationActionWidget))
 

@@ -155,18 +155,18 @@


-

+

EvNavigationActionWidget

-
typedef struct _EvNavigationActionWidget EvNavigationActionWidget;
+
typedef struct _EvNavigationActionWidget EvNavigationActionWidget;


-

+

ev_navigation_action_widget_get_type ()

-
GType               ev_navigation_action_widget_get_type
                                                         (void);
@@ -186,9 +186,9 @@

-

+

ev_navigation_action_widget_set_menu ()

-
void                ev_navigation_action_widget_set_menu
+
void                ev_navigation_action_widget_set_menu
                                                         (EvNavigationActionWidget *widget,
                                                          
 
-

Signal Details

+

Signal Details

-

-The "show-menu" signal

-
void                user_function                      (EvNavigationActionWidget *evnavigationactionwidget,
+

+The "show-menu" signal

+
void                user_function                      (EvNavigationActionWidget *evnavigationactionwidget,
                                                         gpointer                  user_data)                     : Run First
@@ -245,9 +245,9 @@

-

-The "show-menu" signal

-
void                user_function                      (EvNavigationActionWidget *evnavigationactionwidget,
+

+The "show-menu" signal

+
void                user_function                      (EvNavigationActionWidget *evnavigationactionwidget,
                                                         gpointer                  user_data)                     : Run First
@@ -271,6 +271,11 @@

-EvNavigationActionWidget +EvNavigationActionWidget

EvNavigationActionWidget

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvPageAction.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvPageAction.html --- evince-2.22.1.1/help/reference/html/EvPageAction.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvPageAction.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,24 +25,24 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces  |  - Properties + Properties  |  - Signals + Signals
@@ -67,7 +67,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvPageAction implements GtkBuildable.

-

Properties

+

Properties

 
   "model"                    
 
-

Signals

+

Signals

 
   "activate-link"                                  : Run Last / Action
 
-

Description

+

Description

-

Details

+

Details

-

+

EvPageActionPrivate

-
typedef struct _EvPageActionPrivate EvPageActionPrivate;
+
typedef struct _EvPageActionPrivate EvPageActionPrivate;


-

+

EvPageAction

-
typedef struct _EvPageAction EvPageAction;
+
typedef struct _EvPageAction EvPageAction;


-

+

ev_page_action_set_document ()

-
void                ev_page_action_set_document         (EvPageAction *page_action,
+
void                ev_page_action_set_document         (EvPageAction *page_action,
                                                          EvDocument *document);

@@ -158,9 +158,9 @@


-

+

ev_page_action_set_model ()

-
void                ev_page_action_set_model            (EvPageAction *page_action,
+
void                ev_page_action_set_model            (EvPageAction *page_action,
                                                          GtkTreeModel *model);
@@ -187,9 +187,9 @@

-

+

ev_page_action_grab_focus ()

-
void                ev_page_action_grab_focus           (EvPageAction *page_action);
+
void                ev_page_action_grab_focus           (EvPageAction *page_action);

@@ -206,29 +206,29 @@
-

Property Details

+

Property Details

-

-The "model" property

-
  "model"                    

+The "model" property

+
  "model"                    GtkTreeModel          : Read / Write

Current Model.


-

-The "page-cache" property

-
  "page-cache"               EvPageCache           : Read / Write
+

+The "page-cache" property

+
  "page-cache"               EvPageCache           : Read / Write

Current page cache.

-

Signal Details

+

Signal Details

-

-The "activate-link" signal

-
void                user_function                      (EvPageAction *evpageaction,
+

+The "activate-link" signal

+
void                user_function                      (EvPageAction *evpageaction,
                                                         GObject      *arg1,
@@ -260,6 +260,11 @@
 

-EvPageAction +EvPageAction

EvPageAction

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvPageActionWidget.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvPageActionWidget.html --- evince-2.22.1.1/help/reference/html/EvPageActionWidget.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvPageActionWidget.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,22 +25,22 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces  |  - Signals + Signals
@@ -68,7 +68,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvPageActionWidget implements GtkBuildable and AtkImplementorIface.

-

Signals

+

Signals

 
   "activate-link"                                  : Run Last / Action
@@ -112,17 +112,17 @@
 
-

Description

+

Description

-

Details

+

Details

-

+

EV_TYPE_PAGE_ACTION_WIDGET

-
#define EV_TYPE_PAGE_ACTION_WIDGET (ev_page_action_widget_get_type ())
+
#define EV_TYPE_PAGE_ACTION_WIDGET (ev_page_action_widget_get_type ())
 

@@ -130,9 +130,9 @@


-

+

EV_PAGE_ACTION_WIDGET()

-
#define EV_PAGE_ACTION_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_ACTION_WIDGET, EvPageActionWidget))
+
#define EV_PAGE_ACTION_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_ACTION_WIDGET, EvPageActionWidget))
 

@@ -150,18 +150,18 @@


-

+

EvPageActionWidget

-
typedef struct _EvPageActionWidget EvPageActionWidget;
+
typedef struct _EvPageActionWidget EvPageActionWidget;


-

+

ev_page_action_widget_get_type ()

-
GType               ev_page_action_widget_get_type      (void);

@@ -180,9 +180,9 @@


-

+

ev_page_action_widget_update_model ()

-
void                ev_page_action_widget_update_model  (EvPageActionWidget *proxy,
+
void                ev_page_action_widget_update_model  (EvPageActionWidget *proxy,
                                                          GtkTreeModel *model);
@@ -209,9 +209,9 @@

-

+

ev_page_action_widget_set_page_cache ()

-
void                ev_page_action_widget_set_page_cache
+
void                ev_page_action_widget_set_page_cache
                                                         (EvPageActionWidget *action_widget,
                                                          EvPageCache *page_cache);

@@ -237,11 +237,11 @@

-

Signal Details

+

Signal Details

-

-The "activate-link" signal

-
void                user_function                      (EvPageActionWidget *evpageactionwidget,
+

+The "activate-link" signal

+
void                user_function                      (EvPageActionWidget *evpageactionwidget,
                                                         GObject            *arg1,
@@ -274,9 +274,9 @@
 

-

-The "activate-link" signal

-
void                user_function                      (EvPageActionWidget *evpageactionwidget,
+

+The "activate-link" signal

+
void                user_function                      (EvPageActionWidget *evpageactionwidget,
                                                         GObject            *arg1,
@@ -308,6 +308,11 @@
 

-EvPageActionWidget +EvPageActionWidget

EvPageActionWidget

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/EvWindow.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/EvWindow.html --- evince-2.22.1.1/help/reference/html/EvWindow.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/EvWindow.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -25,20 +25,20 @@ Evince Programmer's Reference Manual Next -Top +Top  |  - Description + Description  |  - Object Hierarchy + Object Hierarchy  |  - Implemented Interfaces + Implemented Interfaces
@@ -82,7 +82,7 @@
-

Object Hierarchy

+

Object Hierarchy

 
   
 
-

Implemented Interfaces

+

Implemented Interfaces

EvWindow implements GtkBuildable and AtkImplementorIface.

-

Description

+

Description

-

Details

+

Details

-

+

enum EvWindowRunMode

-
typedef enum {
+
typedef enum {
 	EV_WINDOW_MODE_NORMAL,
 	EV_WINDOW_MODE_FULLSCREEN,
 	EV_WINDOW_MODE_PRESENTATION,
@@ -141,9 +141,9 @@
 

-

+

EvPrintRange

-
typedef struct {
+
typedef struct {
 	gint start;
 	gint end;
 } EvPrintRange;
@@ -154,9 +154,9 @@
 

-

+

enum EvPrintPageSet

-
typedef enum {
+
typedef enum {
 	EV_PRINT_PAGE_SET_ALL,
 	EV_PRINT_PAGE_SET_EVEN,
 	EV_PRINT_PAGE_SET_ODD
@@ -168,27 +168,27 @@
 

-

+

EvWindowPrivate

-
typedef struct _EvWindowPrivate EvWindowPrivate;
+
typedef struct _EvWindowPrivate EvWindowPrivate;


-

+

EvWindow

-
typedef struct _EvWindow EvWindow;
+
typedef struct _EvWindow EvWindow;


-

+

ev_window_new ()

-
GtkWidget*          ev_window_new                       (void);

@@ -211,9 +211,9 @@


-

+

ev_window_get_uri ()

-
const char*         ev_window_get_uri                   (EvWindow *ev_window);
+
const char*         ev_window_get_uri                   (EvWindow *ev_window);

It returns the uri of the document showed in the EvWindow.

@@ -237,9 +237,9 @@


-

+

ev_window_open_uri ()

-
void                ev_window_open_uri                  (EvWindow *ev_window,
+
void                ev_window_open_uri                  (EvWindow *ev_window,
                                                          const char *uri,
                                                          EvLinkDest *dest,
                                                          EvWindowRunMode mode,
@@ -300,9 +300,9 @@
 

-

+

ev_window_is_empty ()

-
gboolean            ev_window_is_empty                  (const EvWindow *ev_window);

@@ -334,9 +334,9 @@


-

+

ev_window_print_range ()

-
void                ev_window_print_range               (EvWindow *ev_window,
+
void                ev_window_print_range               (EvWindow *ev_window,
                                                          int first_page,
                                                          int last_page);

@@ -366,6 +366,11 @@

-EvWindow +EvWindow

EvWindow

+
+
+
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/index.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/index.html --- evince-2.22.1.1/help/reference/html/index.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/index.html 2008-05-28 23:28:14.000000000 +0200 @@ -6,7 +6,7 @@ - + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/ix01.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/ix01.html --- evince-2.22.1.1/help/reference/html/ix01.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/ix01.html 2008-05-28 23:28:14.000000000 +0200 @@ -7,7 +7,7 @@ - + @@ -25,1096 +25,1096 @@

-Index

+Index

E

-
EvAsyncRenderer, EvAsyncRenderer +
EvAsyncRenderer, EvAsyncRenderer
-
EvAsyncRenderer::render-finished, The "render-finished" signal +
EvAsyncRenderer::render-finished, The "render-finished" signal
-
EvAsyncRendererIface, EvAsyncRendererIface +
EvAsyncRendererIface, EvAsyncRendererIface
-
EvAttachment, EvAttachment +
EvAttachment, EvAttachment
-
EvAttachment:ctime, The "ctime" property +
EvAttachment:ctime, The "ctime" property
-
EvAttachment:data, The "data" property +
EvAttachment:data, The "data" property
-
EvAttachment:description, The "description" property +
EvAttachment:description, The "description" property
-
EvAttachment:mtime, The "mtime" property +
EvAttachment:mtime, The "mtime" property
-
EvAttachment:name, The "name" property +
EvAttachment:name, The "name" property
-
EvAttachment:size, The "size" property +
EvAttachment:size, The "size" property
-
EvAttachmentPrivate, EvAttachmentPrivate +
EvAttachmentPrivate, EvAttachmentPrivate
-
EvCompressionType, enum EvCompressionType +
EvCompressionType, enum EvCompressionType
-
EvDocument, EvDocument +
EvDocument, EvDocument
-
EvDocumentError, enum EvDocumentError +
EvDocumentError, enum EvDocumentError
-
EvDocumentFind, EvDocumentFind +
EvDocumentFind, EvDocumentFind
-
EvDocumentFind::find-changed, The "find-changed" signal +
EvDocumentFind::find-changed, The "find-changed" signal
-
EvDocumentFindIface, EvDocumentFindIface +
EvDocumentFindIface, EvDocumentFindIface
-
EvDocumentFonts, EvDocumentFonts +
EvDocumentFonts, EvDocumentFonts
-
EvDocumentFontsIface, EvDocumentFontsIface +
EvDocumentFontsIface, EvDocumentFontsIface
-
EvDocumentIface, EvDocumentIface +
EvDocumentIface, EvDocumentIface
-
EvDocumentImages, EvDocumentImages +
EvDocumentImages, EvDocumentImages
-
EvDocumentImagesIface, EvDocumentImagesIface +
EvDocumentImagesIface, EvDocumentImagesIface
-
EvDocumentInfo, EvDocumentInfo +
EvDocumentInfo, EvDocumentInfo
-
EvDocumentInfoFields, enum EvDocumentInfoFields +
EvDocumentInfoFields, enum EvDocumentInfoFields
-
EvDocumentLayout, enum EvDocumentLayout +
EvDocumentLayout, enum EvDocumentLayout
-
EvDocumentLinks, EvDocumentLinks +
EvDocumentLinks, EvDocumentLinks
-
EvDocumentLinksIface, EvDocumentLinksIface +
EvDocumentLinksIface, EvDocumentLinksIface
-
EvDocumentMode, enum EvDocumentMode +
EvDocumentMode, enum EvDocumentMode
-
EvDocumentPermissions, enum EvDocumentPermissions +
EvDocumentPermissions, enum EvDocumentPermissions
-
EvDocumentSecurity, EvDocumentSecurity +
EvDocumentSecurity, EvDocumentSecurity
-
EvDocumentSecurityIface, EvDocumentSecurityIface +
EvDocumentSecurityIface, EvDocumentSecurityIface
-
EvDocumentThumbnails, EvDocumentThumbnails +
EvDocumentThumbnails, EvDocumentThumbnails
-
EvDocumentThumbnailsIface, EvDocumentThumbnailsIface +
EvDocumentThumbnailsIface, EvDocumentThumbnailsIface
-
EvDocumentTransition, EvDocumentTransition +
EvDocumentTransition, EvDocumentTransition
-
EvDocumentTransitionIface, EvDocumentTransitionIface +
EvDocumentTransitionIface, EvDocumentTransitionIface
-
EvDocumentUIHints, enum EvDocumentUIHints +
EvDocumentUIHints, enum EvDocumentUIHints
-
EvFileExporter, EvFileExporter +
EvFileExporter, EvFileExporter
-
EvFileExporterCapabilities, enum EvFileExporterCapabilities +
EvFileExporterCapabilities, enum EvFileExporterCapabilities
-
EvFileExporterContext, EvFileExporterContext +
EvFileExporterContext, EvFileExporterContext
-
EvFileExporterFormat, enum EvFileExporterFormat +
EvFileExporterFormat, enum EvFileExporterFormat
-
EvFileExporterIface, EvFileExporterIface +
EvFileExporterIface, EvFileExporterIface
-
EvHistory, EvHistory +
EvHistory, EvHistory
-
EvHistoryPrivate, EvHistoryPrivate +
EvHistoryPrivate, EvHistoryPrivate
-
EvImage, EvImage +
EvImage, EvImage
-
EvImageMapping, EvImageMapping +
EvImageMapping, EvImageMapping
-
EvImagePrivate, EvImagePrivate +
EvImagePrivate, EvImagePrivate
-
EvJob, EvJob +
EvJob, EvJob
-
EvJobFonts, EvJobFonts +
EvJobFonts, EvJobFonts
-
EvJobLinks, EvJobLinks +
EvJobLinks, EvJobLinks
-
EvJobLoad, EvJobLoad +
EvJobLoad, EvJobLoad
-
EvJobPrint, EvJobPrint +
EvJobPrint, EvJobPrint
-
EvJobPriority, enum EvJobPriority +
EvJobPriority, enum EvJobPriority
-
EvJobRender, EvJobRender +
EvJobRender, EvJobRender
-
EvJobRender::page-ready, The "page-ready" signal +
EvJobRender::page-ready, The "page-ready" signal
-
EvJobSave, EvJobSave +
EvJobSave, EvJobSave
-
EvJobThumbnail, EvJobThumbnail +
EvJobThumbnail, EvJobThumbnail
-
EvLink, EvLink +
EvLink, EvLink
-
EvLinkAction, EvLinkAction +
EvLinkAction, EvLinkAction
-
EvLinkAction:dest, The "dest" property +
EvLinkAction:dest, The "dest" property
-
EvLinkAction:filename, The "filename" property +
EvLinkAction:filename, The "filename" property
-
EvLinkAction:name, The "name" property +
EvLinkAction:name, The "name" property
-
EvLinkAction:params, The "params" property +
EvLinkAction:params, The "params" property
-
EvLinkAction:type, The "type" property +
EvLinkAction:type, The "type" property
-
EvLinkAction:uri, The "uri" property +
EvLinkAction:uri, The "uri" property
-
EvLinkActionClass, EvLinkActionClass +
EvLinkActionClass, EvLinkActionClass
-
EvLinkActionPrivate, EvLinkActionPrivate +
EvLinkActionPrivate, EvLinkActionPrivate
-
EvLinkActionType, enum EvLinkActionType +
EvLinkActionType, enum EvLinkActionType
-
EvLinkClass, EvLinkClass +
EvLinkClass, EvLinkClass
-
EvLinkDest, EvLinkDest +
EvLinkDest, EvLinkDest
-
EvLinkDest:bottom, The "bottom" property +
EvLinkDest:bottom, The "bottom" property
-
EvLinkDest:change, The "change" property +
EvLinkDest:change, The "change" property
-
EvLinkDest:left, The "left" property +
EvLinkDest:left, The "left" property
-
EvLinkDest:named, The "named" property +
EvLinkDest:named, The "named" property
-
EvLinkDest:page, The "page" property +
EvLinkDest:page, The "page" property
-
EvLinkDest:page-label, The "page-label" property +
EvLinkDest:page-label, The "page-label" property
-
EvLinkDest:right, The "right" property +
EvLinkDest:right, The "right" property
-
EvLinkDest:top, The "top" property +
EvLinkDest:top, The "top" property
-
EvLinkDest:type, The "type" property +
EvLinkDest:type, The "type" property
-
EvLinkDest:zoom, The "zoom" property +
EvLinkDest:zoom, The "zoom" property
-
EvLinkDestClass, EvLinkDestClass +
EvLinkDestClass, EvLinkDestClass
-
EvLinkDestPrivate, EvLinkDestPrivate +
EvLinkDestPrivate, EvLinkDestPrivate
-
EvLinkDestType, enum EvLinkDestType +
EvLinkDestType, enum EvLinkDestType
-
EvLinkMapping, EvLinkMapping +
EvLinkMapping, EvLinkMapping
-
EvLinkPrivate, EvLinkPrivate +
EvLinkPrivate, EvLinkPrivate
-
EvNavigationAction, EvNavigationAction +
EvNavigationAction, EvNavigationAction
-
EvNavigationAction::activate-link, The "activate-link" signal +
EvNavigationAction::activate-link, The "activate-link" signal
-
EvNavigationActionPrivate, EvNavigationActionPrivate +
EvNavigationActionPrivate, EvNavigationActionPrivate
-
EvNavigationActionWidget, EvNavigationActionWidget +
EvNavigationActionWidget, EvNavigationActionWidget
-
EvNavigationActionWidget::show-menu, The "show-menu" signal, The "show-menu" signal +
EvNavigationActionWidget::show-menu, The "show-menu" signal, The "show-menu" signal
-
EvPageAction, EvPageAction +
EvPageAction, EvPageAction
-
EvPageAction::activate-link, The "activate-link" signal +
EvPageAction::activate-link, The "activate-link" signal
-
EvPageAction:model, The "model" property +
EvPageAction:model, The "model" property
-
EvPageAction:page-cache, The "page-cache" property +
EvPageAction:page-cache, The "page-cache" property
-
EvPageActionPrivate, EvPageActionPrivate +
EvPageActionPrivate, EvPageActionPrivate
-
EvPageActionWidget, EvPageActionWidget +
EvPageActionWidget, EvPageActionWidget
-
EvPageActionWidget::activate-link, The "activate-link" signal, The "activate-link" signal +
EvPageActionWidget::activate-link, The "activate-link" signal, The "activate-link" signal
-
EvPageCache, EvPageCache +
EvPageCache, EvPageCache
-
EvPageCache::history-changed, The "history-changed" signal +
EvPageCache::history-changed, The "history-changed" signal
-
EvPageCache::page-changed, The "page-changed" signal +
EvPageCache::page-changed, The "page-changed" signal
-
EvPageCacheClass, EvPageCacheClass +
EvPageCacheClass, EvPageCacheClass
-
EvPasswordDialog, EvPasswordDialog +
EvPasswordDialog, EvPasswordDialog
-
EvPasswordDialogPrivate, EvPasswordDialogPrivate +
EvPasswordDialogPrivate, EvPasswordDialogPrivate
-
EvPasswordView, EvPasswordView +
EvPasswordView, EvPasswordView
-
EvPasswordViewPrivate, EvPasswordViewPrivate +
EvPasswordViewPrivate, EvPasswordViewPrivate
-
EvPixbufCache, EvPixbufCache +
EvPixbufCache, EvPixbufCache
-
EvPixbufCacheClass, EvPixbufCacheClass +
EvPixbufCacheClass, EvPixbufCacheClass
-
EvPoint, EvPoint +
EvPoint, EvPoint
-
EvPrintPageSet, enum EvPrintPageSet +
EvPrintPageSet, enum EvPrintPageSet
-
EvPrintRange, EvPrintRange +
EvPrintRange, EvPrintRange
-
EvPropertiesDialog, EvPropertiesDialog +
EvPropertiesDialog, EvPropertiesDialog
-
EvPropertiesDialogClass, EvPropertiesDialogClass +
EvPropertiesDialogClass, EvPropertiesDialogClass
-
EvPropertiesDialogPrivate, EvPropertiesDialogPrivate +
EvPropertiesDialogPrivate, EvPropertiesDialogPrivate
-
EvPropertiesFonts, EvPropertiesFonts +
EvPropertiesFonts, EvPropertiesFonts
-
EvPropertiesFontsClass, EvPropertiesFontsClass +
EvPropertiesFontsClass, EvPropertiesFontsClass
-
EvPropertiesFontsPrivate, EvPropertiesFontsPrivate +
EvPropertiesFontsPrivate, EvPropertiesFontsPrivate
-
EvRectangle, EvRectangle +
EvRectangle, EvRectangle
-
EvRenderContext, EvRenderContext +
EvRenderContext, EvRenderContext
-
EvScrollType, enum EvScrollType +
EvScrollType, enum EvScrollType
-
EvSelection, EvSelection +
EvSelection, EvSelection
-
EvSelectionIface, EvSelectionIface +
EvSelectionIface, EvSelectionIface
-
EvSelectionStyle, enum EvSelectionStyle +
EvSelectionStyle, enum EvSelectionStyle
-
EvSidebar, EvSidebar +
EvSidebar, EvSidebar
-
EvSidebarAttachments, EvSidebarAttachments +
EvSidebarAttachments, EvSidebarAttachments
-
EvSidebarAttachmentsPrivate, EvSidebarAttachmentsPrivate +
EvSidebarAttachmentsPrivate, EvSidebarAttachmentsPrivate
-
EvSidebarLinks, EvSidebarLinks +
EvSidebarLinks, EvSidebarLinks
-
EvSidebarLinksPrivate, EvSidebarLinksPrivate +
EvSidebarLinksPrivate, EvSidebarLinksPrivate
-
EvSidebarPage, EvSidebarPage +
EvSidebarPage, EvSidebarPage
-
EvSidebarPageIface, EvSidebarPageIface +
EvSidebarPageIface, EvSidebarPageIface
-
EvSidebarPrivate, EvSidebarPrivate +
EvSidebarPrivate, EvSidebarPrivate
-
EvSidebarThumbnails, EvSidebarThumbnails +
EvSidebarThumbnails, EvSidebarThumbnails
-
EvSidebarThumbnailsPrivate, EvSidebarThumbnailsPrivate +
EvSidebarThumbnailsPrivate, EvSidebarThumbnailsPrivate
-
EvSizingMode, enum EvSizingMode +
EvSizingMode, enum EvSizingMode
-
EvTooltip, EvTooltip +
EvTooltip, EvTooltip
-
EvTooltipPrivate, EvTooltipPrivate +
EvTooltipPrivate, EvTooltipPrivate
-
EvView, EvView +
EvView, EvView
-
EvView::binding-activated, The "binding-activated" signal +
EvView::binding-activated, The "binding-activated" signal
-
EvView::external-link, The "external-link" signal +
EvView::external-link, The "external-link" signal
-
EvView::handle-link, The "handle-link" signal +
EvView::handle-link, The "handle-link" signal
-
EvView::popup, The "popup" signal +
EvView::popup, The "popup" signal
-
EvView::zoom-invalid, The "zoom-invalid" signal +
EvView::zoom-invalid, The "zoom-invalid" signal
-
EvView:continuous, The "continuous" property +
EvView:continuous, The "continuous" property
-
EvView:dual-page, The "dual-page" property +
EvView:dual-page, The "dual-page" property
-
EvView:find-status, The "find-status" property +
EvView:find-status, The "find-status" property
-
EvView:fullscreen, The "fullscreen" property +
EvView:fullscreen, The "fullscreen" property
-
EvView:has-selection, The "has-selection" property +
EvView:has-selection, The "has-selection" property
-
EvView:presentation, The "presentation" property +
EvView:presentation, The "presentation" property
-
EvView:rotation, The "rotation" property +
EvView:rotation, The "rotation" property
-
EvView:sizing-mode, The "sizing-mode" property +
EvView:sizing-mode, The "sizing-mode" property
-
EvView:zoom, The "zoom" property +
EvView:zoom, The "zoom" property
-
EvViewClass, EvViewClass +
EvViewClass, EvViewClass
-
EvViewSelection, EvViewSelection +
EvViewSelection, EvViewSelection
-
EvViewSelectionMode, enum EvViewSelectionMode +
EvViewSelectionMode, enum EvViewSelectionMode
-
EvWindow, EvWindow +
EvWindow, EvWindow
-
EvWindowPrivate, EvWindowPrivate +
EvWindowPrivate, EvWindowPrivate
-
EvWindowRunMode, enum EvWindowRunMode +
EvWindowRunMode, enum EvWindowRunMode
-
EvWindowTitle, EvWindowTitle +
EvWindowTitle, EvWindowTitle
-
EvWindowTitleType, enum EvWindowTitleType +
EvWindowTitleType, enum EvWindowTitleType
-
EV_ASYNC_RENDERER_IFACE, EV_ASYNC_RENDERER_IFACE() +
EV_ASYNC_RENDERER_IFACE, EV_ASYNC_RENDERER_IFACE()
-
ev_async_renderer_render_pixbuf, ev_async_renderer_render_pixbuf () +
ev_async_renderer_render_pixbuf, ev_async_renderer_render_pixbuf ()
-
EV_ATTACHMENT_ERROR, EV_ATTACHMENT_ERROR +
EV_ATTACHMENT_ERROR, EV_ATTACHMENT_ERROR
-
ev_attachment_error_quark, ev_attachment_error_quark () +
ev_attachment_error_quark, ev_attachment_error_quark ()
-
ev_attachment_get_creation_date, ev_attachment_get_creation_date () +
ev_attachment_get_creation_date, ev_attachment_get_creation_date ()
-
ev_attachment_get_description, ev_attachment_get_description () +
ev_attachment_get_description, ev_attachment_get_description ()
-
ev_attachment_get_mime_type, ev_attachment_get_mime_type () +
ev_attachment_get_mime_type, ev_attachment_get_mime_type ()
-
ev_attachment_get_modification_date, ev_attachment_get_modification_date () +
ev_attachment_get_modification_date, ev_attachment_get_modification_date ()
-
ev_attachment_get_name, ev_attachment_get_name () +
ev_attachment_get_name, ev_attachment_get_name ()
-
ev_attachment_new, ev_attachment_new () +
ev_attachment_new, ev_attachment_new ()
-
ev_attachment_open, ev_attachment_open () +
ev_attachment_open, ev_attachment_open ()
-
ev_attachment_save, ev_attachment_save () +
ev_attachment_save, ev_attachment_save ()
-
EV_BACKEND_IMPLEMENT_INTERFACE, EV_BACKEND_IMPLEMENT_INTERFACE() +
EV_BACKEND_IMPLEMENT_INTERFACE, EV_BACKEND_IMPLEMENT_INTERFACE()
-
EV_BACKEND_REGISTER, EV_BACKEND_REGISTER() +
EV_BACKEND_REGISTER, EV_BACKEND_REGISTER()
-
EV_BACKEND_REGISTER_WITH_CODE, EV_BACKEND_REGISTER_WITH_CODE() +
EV_BACKEND_REGISTER_WITH_CODE, EV_BACKEND_REGISTER_WITH_CODE()
-
ev_document_doc_mutex_lock, ev_document_doc_mutex_lock () +
ev_document_doc_mutex_lock, ev_document_doc_mutex_lock ()
-
ev_document_doc_mutex_unlock, ev_document_doc_mutex_unlock () +
ev_document_doc_mutex_unlock, ev_document_doc_mutex_unlock ()
-
EV_DOCUMENT_ERROR, EV_DOCUMENT_ERROR +
EV_DOCUMENT_ERROR, EV_DOCUMENT_ERROR
-
ev_document_error_quark, ev_document_error_quark () +
ev_document_error_quark, ev_document_error_quark ()
-
ev_document_factory_add_filters, ev_document_factory_add_filters () +
ev_document_factory_add_filters, ev_document_factory_add_filters ()
-
ev_document_factory_get_document, ev_document_factory_get_document () +
ev_document_factory_get_document, ev_document_factory_get_document ()
-
ev_document_fc_mutex_lock, ev_document_fc_mutex_lock () +
ev_document_fc_mutex_lock, ev_document_fc_mutex_lock ()
-
ev_document_fc_mutex_unlock, ev_document_fc_mutex_unlock () +
ev_document_fc_mutex_unlock, ev_document_fc_mutex_unlock ()
-
ev_document_find_begin, ev_document_find_begin () +
ev_document_find_begin, ev_document_find_begin ()
-
ev_document_find_cancel, ev_document_find_cancel () +
ev_document_find_cancel, ev_document_find_cancel ()
-
ev_document_find_changed, ev_document_find_changed () +
ev_document_find_changed, ev_document_find_changed ()
-
ev_document_find_get_n_results, ev_document_find_get_n_results () +
ev_document_find_get_n_results, ev_document_find_get_n_results ()
-
ev_document_find_get_progress, ev_document_find_get_progress () +
ev_document_find_get_progress, ev_document_find_get_progress ()
-
ev_document_find_get_result, ev_document_find_get_result () +
ev_document_find_get_result, ev_document_find_get_result ()
-
EV_DOCUMENT_FIND_IFACE, EV_DOCUMENT_FIND_IFACE() +
EV_DOCUMENT_FIND_IFACE, EV_DOCUMENT_FIND_IFACE()
-
ev_document_find_page_has_results, ev_document_find_page_has_results () +
ev_document_find_page_has_results, ev_document_find_page_has_results ()
-
ev_document_fonts_fill_model, ev_document_fonts_fill_model () +
ev_document_fonts_fill_model, ev_document_fonts_fill_model ()
-
ev_document_fonts_get_progress, ev_document_fonts_get_progress () +
ev_document_fonts_get_progress, ev_document_fonts_get_progress ()
-
EV_DOCUMENT_FONTS_IFACE, EV_DOCUMENT_FONTS_IFACE() +
EV_DOCUMENT_FONTS_IFACE, EV_DOCUMENT_FONTS_IFACE()
-
ev_document_fonts_scan, ev_document_fonts_scan () +
ev_document_fonts_scan, ev_document_fonts_scan ()
-
ev_document_get_attachments, ev_document_get_attachments () +
ev_document_get_attachments, ev_document_get_attachments ()
-
ev_document_get_doc_mutex, ev_document_get_doc_mutex () +
ev_document_get_doc_mutex, ev_document_get_doc_mutex ()
-
ev_document_get_fc_mutex, ev_document_get_fc_mutex () +
ev_document_get_fc_mutex, ev_document_get_fc_mutex ()
-
ev_document_get_info, ev_document_get_info () +
ev_document_get_info, ev_document_get_info ()
-
ev_document_get_n_pages, ev_document_get_n_pages () +
ev_document_get_n_pages, ev_document_get_n_pages ()
-
ev_document_get_page_label, ev_document_get_page_label () +
ev_document_get_page_label, ev_document_get_page_label ()
-
ev_document_get_page_size, ev_document_get_page_size () +
ev_document_get_page_size, ev_document_get_page_size ()
-
ev_document_has_attachments, ev_document_has_attachments () +
ev_document_has_attachments, ev_document_has_attachments ()
-
EV_DOCUMENT_IFACE, EV_DOCUMENT_IFACE() +
EV_DOCUMENT_IFACE, EV_DOCUMENT_IFACE()
-
ev_document_images_get_image, ev_document_images_get_image () +
ev_document_images_get_image, ev_document_images_get_image ()
-
ev_document_images_get_image_mapping, ev_document_images_get_image_mapping () +
ev_document_images_get_image_mapping, ev_document_images_get_image_mapping ()
-
EV_DOCUMENT_IMAGES_IFACE, EV_DOCUMENT_IMAGES_IFACE() +
EV_DOCUMENT_IMAGES_IFACE, EV_DOCUMENT_IMAGES_IFACE()
-
ev_document_info_free, ev_document_info_free () +
ev_document_info_free, ev_document_info_free ()
-
ev_document_links_find_link_dest, ev_document_links_find_link_dest () +
ev_document_links_find_link_dest, ev_document_links_find_link_dest ()
-
ev_document_links_get_links, ev_document_links_get_links () +
ev_document_links_get_links, ev_document_links_get_links ()
-
ev_document_links_get_links_model, ev_document_links_get_links_model () +
ev_document_links_get_links_model, ev_document_links_get_links_model ()
-
ev_document_links_has_document_links, ev_document_links_has_document_links () +
ev_document_links_has_document_links, ev_document_links_has_document_links ()
-
EV_DOCUMENT_LINKS_IFACE, EV_DOCUMENT_LINKS_IFACE() +
EV_DOCUMENT_LINKS_IFACE, EV_DOCUMENT_LINKS_IFACE()
-
ev_document_load, ev_document_load () +
ev_document_load, ev_document_load ()
-
ev_document_misc_get_page_border_size, ev_document_misc_get_page_border_size () +
ev_document_misc_get_page_border_size, ev_document_misc_get_page_border_size ()
-
ev_document_misc_get_thumbnail_frame, ev_document_misc_get_thumbnail_frame () +
ev_document_misc_get_thumbnail_frame, ev_document_misc_get_thumbnail_frame ()
-
ev_document_misc_paint_one_page, ev_document_misc_paint_one_page () +
ev_document_misc_paint_one_page, ev_document_misc_paint_one_page ()
-
ev_document_misc_pixbuf_from_surface, ev_document_misc_pixbuf_from_surface () +
ev_document_misc_pixbuf_from_surface, ev_document_misc_pixbuf_from_surface ()
-
ev_document_misc_surface_from_pixbuf, ev_document_misc_surface_from_pixbuf () +
ev_document_misc_surface_from_pixbuf, ev_document_misc_surface_from_pixbuf ()
-
ev_document_misc_surface_rotate_and_scale, ev_document_misc_surface_rotate_and_scale () +
ev_document_misc_surface_rotate_and_scale, ev_document_misc_surface_rotate_and_scale ()
-
ev_document_render, ev_document_render () +
ev_document_render, ev_document_render ()
-
ev_document_save, ev_document_save () +
ev_document_save, ev_document_save ()
-
ev_document_security_has_document_security, ev_document_security_has_document_security () +
ev_document_security_has_document_security, ev_document_security_has_document_security ()
-
EV_DOCUMENT_SECURITY_IFACE, EV_DOCUMENT_SECURITY_IFACE() +
EV_DOCUMENT_SECURITY_IFACE, EV_DOCUMENT_SECURITY_IFACE()
-
ev_document_security_set_password, ev_document_security_set_password () +
ev_document_security_set_password, ev_document_security_set_password ()
-
ev_document_thumbnails_get_dimensions, ev_document_thumbnails_get_dimensions () +
ev_document_thumbnails_get_dimensions, ev_document_thumbnails_get_dimensions ()
-
ev_document_thumbnails_get_thumbnail, ev_document_thumbnails_get_thumbnail () +
ev_document_thumbnails_get_thumbnail, ev_document_thumbnails_get_thumbnail ()
-
EV_DOCUMENT_THUMBNAILS_IFACE, EV_DOCUMENT_THUMBNAILS_IFACE() +
EV_DOCUMENT_THUMBNAILS_IFACE, EV_DOCUMENT_THUMBNAILS_IFACE()
-
ev_document_transition_get_effect, ev_document_transition_get_effect () +
ev_document_transition_get_effect, ev_document_transition_get_effect ()
-
ev_document_transition_get_page_duration, ev_document_transition_get_page_duration () +
ev_document_transition_get_page_duration, ev_document_transition_get_page_duration ()
-
EV_DOCUMENT_TRANSITION_IFACE, EV_DOCUMENT_TRANSITION_IFACE() +
EV_DOCUMENT_TRANSITION_IFACE, EV_DOCUMENT_TRANSITION_IFACE()
-
EV_DOC_MUTEX_LOCK, EV_DOC_MUTEX_LOCK +
EV_DOC_MUTEX_LOCK, EV_DOC_MUTEX_LOCK
-
EV_DOC_MUTEX_UNLOCK, EV_DOC_MUTEX_UNLOCK +
EV_DOC_MUTEX_UNLOCK, EV_DOC_MUTEX_UNLOCK
-
ev_dot_dir, ev_dot_dir () +
ev_dot_dir, ev_dot_dir ()
-
ev_file_compress, ev_file_compress () +
ev_file_compress, ev_file_compress ()
-
ev_file_exporter_begin, ev_file_exporter_begin () +
ev_file_exporter_begin, ev_file_exporter_begin ()
-
ev_file_exporter_begin_page, ev_file_exporter_begin_page () +
ev_file_exporter_begin_page, ev_file_exporter_begin_page ()
-
ev_file_exporter_do_page, ev_file_exporter_do_page () +
ev_file_exporter_do_page, ev_file_exporter_do_page ()
-
ev_file_exporter_end, ev_file_exporter_end () +
ev_file_exporter_end, ev_file_exporter_end ()
-
ev_file_exporter_end_page, ev_file_exporter_end_page () +
ev_file_exporter_end_page, ev_file_exporter_end_page ()
-
ev_file_exporter_get_capabilities, ev_file_exporter_get_capabilities () +
ev_file_exporter_get_capabilities, ev_file_exporter_get_capabilities ()
-
EV_FILE_EXPORTER_IFACE, EV_FILE_EXPORTER_IFACE() +
EV_FILE_EXPORTER_IFACE, EV_FILE_EXPORTER_IFACE()
-
ev_file_helpers_init, ev_file_helpers_init () +
ev_file_helpers_init, ev_file_helpers_init ()
-
ev_file_helpers_shutdown, ev_file_helpers_shutdown () +
ev_file_helpers_shutdown, ev_file_helpers_shutdown ()
-
ev_file_uncompress, ev_file_uncompress () +
ev_file_uncompress, ev_file_uncompress ()
-
ev_gui_menu_position_tree_selection, ev_gui_menu_position_tree_selection () +
ev_gui_menu_position_tree_selection, ev_gui_menu_position_tree_selection ()
-
ev_history_add_link, ev_history_add_link () +
ev_history_add_link, ev_history_add_link ()
-
ev_history_get_link_nth, ev_history_get_link_nth () +
ev_history_get_link_nth, ev_history_get_link_nth ()
-
ev_history_get_n_links, ev_history_get_n_links () +
ev_history_get_n_links, ev_history_get_n_links ()
-
ev_history_new, ev_history_new () +
ev_history_new, ev_history_new ()
-
ev_image_get_id, ev_image_get_id () +
ev_image_get_id, ev_image_get_id ()
-
ev_image_get_page, ev_image_get_page () +
ev_image_get_page, ev_image_get_page ()
-
ev_image_get_pixbuf, ev_image_get_pixbuf () +
ev_image_get_pixbuf, ev_image_get_pixbuf ()
-
ev_image_get_tmp_uri, ev_image_get_tmp_uri () +
ev_image_get_tmp_uri, ev_image_get_tmp_uri ()
-
ev_image_mapping_find, ev_image_mapping_find () +
ev_image_mapping_find, ev_image_mapping_find ()
-
ev_image_mapping_free, ev_image_mapping_free () +
ev_image_mapping_free, ev_image_mapping_free ()
-
ev_image_new, ev_image_new () +
ev_image_new, ev_image_new ()
-
ev_image_new_from_pixbuf, ev_image_new_from_pixbuf () +
ev_image_new_from_pixbuf, ev_image_new_from_pixbuf ()
-
ev_image_save_tmp, ev_image_save_tmp () +
ev_image_save_tmp, ev_image_save_tmp ()
-
EV_IS_ASYNC_RENDERER_IFACE, EV_IS_ASYNC_RENDERER_IFACE() +
EV_IS_ASYNC_RENDERER_IFACE, EV_IS_ASYNC_RENDERER_IFACE()
-
EV_IS_DOCUMENT_FIND_IFACE, EV_IS_DOCUMENT_FIND_IFACE() +
EV_IS_DOCUMENT_FIND_IFACE, EV_IS_DOCUMENT_FIND_IFACE()
-
EV_IS_DOCUMENT_FONTS_IFACE, EV_IS_DOCUMENT_FONTS_IFACE() +
EV_IS_DOCUMENT_FONTS_IFACE, EV_IS_DOCUMENT_FONTS_IFACE()
-
EV_IS_DOCUMENT_IFACE, EV_IS_DOCUMENT_IFACE() +
EV_IS_DOCUMENT_IFACE, EV_IS_DOCUMENT_IFACE()
-
EV_IS_DOCUMENT_IMAGES_IFACE, EV_IS_DOCUMENT_IMAGES_IFACE() +
EV_IS_DOCUMENT_IMAGES_IFACE, EV_IS_DOCUMENT_IMAGES_IFACE()
-
EV_IS_DOCUMENT_LINKS_IFACE, EV_IS_DOCUMENT_LINKS_IFACE() +
EV_IS_DOCUMENT_LINKS_IFACE, EV_IS_DOCUMENT_LINKS_IFACE()
-
EV_IS_DOCUMENT_SECURITY_IFACE, EV_IS_DOCUMENT_SECURITY_IFACE() +
EV_IS_DOCUMENT_SECURITY_IFACE, EV_IS_DOCUMENT_SECURITY_IFACE()
-
EV_IS_DOCUMENT_THUMBNAILS_IFACE, EV_IS_DOCUMENT_THUMBNAILS_IFACE() +
EV_IS_DOCUMENT_THUMBNAILS_IFACE, EV_IS_DOCUMENT_THUMBNAILS_IFACE()
-
EV_IS_DOCUMENT_TRANSITION_IFACE, EV_IS_DOCUMENT_TRANSITION_IFACE() +
EV_IS_DOCUMENT_TRANSITION_IFACE, EV_IS_DOCUMENT_TRANSITION_IFACE()
-
EV_IS_FILE_EXPORTER_IFACE, EV_IS_FILE_EXPORTER_IFACE() +
EV_IS_FILE_EXPORTER_IFACE, EV_IS_FILE_EXPORTER_IFACE()
-
EV_IS_JOB_FONTS, EV_IS_JOB_FONTS() +
EV_IS_JOB_FONTS, EV_IS_JOB_FONTS()
-
EV_IS_JOB_LINKS, EV_IS_JOB_LINKS() +
EV_IS_JOB_LINKS, EV_IS_JOB_LINKS()
-
EV_IS_JOB_LOAD, EV_IS_JOB_LOAD() +
EV_IS_JOB_LOAD, EV_IS_JOB_LOAD()
-
EV_IS_JOB_PRINT, EV_IS_JOB_PRINT() +
EV_IS_JOB_PRINT, EV_IS_JOB_PRINT()
-
EV_IS_JOB_RENDER, EV_IS_JOB_RENDER() +
EV_IS_JOB_RENDER, EV_IS_JOB_RENDER()
-
EV_IS_JOB_SAVE, EV_IS_JOB_SAVE() +
EV_IS_JOB_SAVE, EV_IS_JOB_SAVE()
-
EV_IS_JOB_THUMBNAIL, EV_IS_JOB_THUMBNAIL() +
EV_IS_JOB_THUMBNAIL, EV_IS_JOB_THUMBNAIL()
-
EV_IS_SELECTION_IFACE, EV_IS_SELECTION_IFACE() +
EV_IS_SELECTION_IFACE, EV_IS_SELECTION_IFACE()
-
EV_IS_SIDEBAR_PAGE_IFACE, EV_IS_SIDEBAR_PAGE_IFACE() +
EV_IS_SIDEBAR_PAGE_IFACE, EV_IS_SIDEBAR_PAGE_IFACE()
-
ev_job_finished, ev_job_finished () +
ev_job_finished, ev_job_finished ()
-
EV_JOB_FONTS, EV_JOB_FONTS() +
EV_JOB_FONTS, EV_JOB_FONTS()
-
EV_JOB_FONTS_CLASS, EV_JOB_FONTS_CLASS() +
EV_JOB_FONTS_CLASS, EV_JOB_FONTS_CLASS()
-
ev_job_fonts_get_type, ev_job_fonts_get_type () +
ev_job_fonts_get_type, ev_job_fonts_get_type ()
-
ev_job_fonts_new, ev_job_fonts_new () +
ev_job_fonts_new, ev_job_fonts_new ()
-
ev_job_fonts_run, ev_job_fonts_run () +
ev_job_fonts_run, ev_job_fonts_run ()
-
EV_JOB_LINKS, EV_JOB_LINKS() +
EV_JOB_LINKS, EV_JOB_LINKS()
-
EV_JOB_LINKS_CLASS, EV_JOB_LINKS_CLASS() +
EV_JOB_LINKS_CLASS, EV_JOB_LINKS_CLASS()
-
ev_job_links_get_type, ev_job_links_get_type () +
ev_job_links_get_type, ev_job_links_get_type ()
-
ev_job_links_new, ev_job_links_new () +
ev_job_links_new, ev_job_links_new ()
-
ev_job_links_run, ev_job_links_run () +
ev_job_links_run, ev_job_links_run ()
-
EV_JOB_LOAD, EV_JOB_LOAD() +
EV_JOB_LOAD, EV_JOB_LOAD()
-
EV_JOB_LOAD_CLASS, EV_JOB_LOAD_CLASS() +
EV_JOB_LOAD_CLASS, EV_JOB_LOAD_CLASS()
-
ev_job_load_get_type, ev_job_load_get_type () +
ev_job_load_get_type, ev_job_load_get_type ()
-
ev_job_load_new, ev_job_load_new () +
ev_job_load_new, ev_job_load_new ()
-
ev_job_load_run, ev_job_load_run () +
ev_job_load_run, ev_job_load_run ()
-
ev_job_load_set_uri, ev_job_load_set_uri () +
ev_job_load_set_uri, ev_job_load_set_uri ()
-
EV_JOB_PRINT, EV_JOB_PRINT() +
EV_JOB_PRINT, EV_JOB_PRINT()
-
EV_JOB_PRINT_CLASS, EV_JOB_PRINT_CLASS() +
EV_JOB_PRINT_CLASS, EV_JOB_PRINT_CLASS()
-
ev_job_print_get_type, ev_job_print_get_type () +
ev_job_print_get_type, ev_job_print_get_type ()
-
ev_job_print_new, ev_job_print_new () +
ev_job_print_new, ev_job_print_new ()
-
ev_job_print_run, ev_job_print_run () +
ev_job_print_run, ev_job_print_run ()
-
ev_job_queue_add_job, ev_job_queue_add_job () +
ev_job_queue_add_job, ev_job_queue_add_job ()
-
ev_job_queue_init, ev_job_queue_init () +
ev_job_queue_init, ev_job_queue_init ()
-
ev_job_queue_remove_job, ev_job_queue_remove_job () +
ev_job_queue_remove_job, ev_job_queue_remove_job ()
-
ev_job_queue_update_job, ev_job_queue_update_job () +
ev_job_queue_update_job, ev_job_queue_update_job ()
-
EV_JOB_RENDER, EV_JOB_RENDER() +
EV_JOB_RENDER, EV_JOB_RENDER()
-
EV_JOB_RENDER_CLASS, EV_JOB_RENDER_CLASS() +
EV_JOB_RENDER_CLASS, EV_JOB_RENDER_CLASS()
-
ev_job_render_get_type, ev_job_render_get_type () +
ev_job_render_get_type, ev_job_render_get_type ()
-
ev_job_render_new, ev_job_render_new () +
ev_job_render_new, ev_job_render_new ()
-
ev_job_render_run, ev_job_render_run () +
ev_job_render_run, ev_job_render_run ()
-
EV_JOB_SAVE, EV_JOB_SAVE() +
EV_JOB_SAVE, EV_JOB_SAVE()
-
EV_JOB_SAVE_CLASS, EV_JOB_SAVE_CLASS() +
EV_JOB_SAVE_CLASS, EV_JOB_SAVE_CLASS()
-
ev_job_save_get_type, ev_job_save_get_type () +
ev_job_save_get_type, ev_job_save_get_type ()
-
ev_job_save_new, ev_job_save_new () +
ev_job_save_new, ev_job_save_new ()
-
ev_job_save_run, ev_job_save_run () +
ev_job_save_run, ev_job_save_run ()
-
EV_JOB_THUMBNAIL, EV_JOB_THUMBNAIL() +
EV_JOB_THUMBNAIL, EV_JOB_THUMBNAIL()
-
EV_JOB_THUMBNAIL_CLASS, EV_JOB_THUMBNAIL_CLASS() +
EV_JOB_THUMBNAIL_CLASS, EV_JOB_THUMBNAIL_CLASS()
-
ev_job_thumbnail_get_type, ev_job_thumbnail_get_type () +
ev_job_thumbnail_get_type, ev_job_thumbnail_get_type ()
-
ev_job_thumbnail_new, ev_job_thumbnail_new () +
ev_job_thumbnail_new, ev_job_thumbnail_new ()
-
ev_job_thumbnail_run, ev_job_thumbnail_run () +
ev_job_thumbnail_run, ev_job_thumbnail_run ()
-
ev_link_action_get_action_type, ev_link_action_get_action_type () +
ev_link_action_get_action_type, ev_link_action_get_action_type ()
-
ev_link_action_get_dest, ev_link_action_get_dest () +
ev_link_action_get_dest, ev_link_action_get_dest ()
-
ev_link_action_get_filename, ev_link_action_get_filename () +
ev_link_action_get_filename, ev_link_action_get_filename ()
-
ev_link_action_get_name, ev_link_action_get_name () +
ev_link_action_get_name, ev_link_action_get_name ()
-
ev_link_action_get_params, ev_link_action_get_params () +
ev_link_action_get_params, ev_link_action_get_params ()
-
ev_link_action_get_type, ev_link_action_get_type () +
ev_link_action_get_type, ev_link_action_get_type ()
-
ev_link_action_get_uri, ev_link_action_get_uri () +
ev_link_action_get_uri, ev_link_action_get_uri ()
-
ev_link_action_new_dest, ev_link_action_new_dest () +
ev_link_action_new_dest, ev_link_action_new_dest ()
-
ev_link_action_new_external_uri, ev_link_action_new_external_uri () +
ev_link_action_new_external_uri, ev_link_action_new_external_uri ()
-
ev_link_action_new_launch, ev_link_action_new_launch () +
ev_link_action_new_launch, ev_link_action_new_launch ()
-
ev_link_action_new_named, ev_link_action_new_named () +
ev_link_action_new_named, ev_link_action_new_named ()
-
ev_link_action_new_remote, ev_link_action_new_remote () +
ev_link_action_new_remote, ev_link_action_new_remote ()
-
ev_link_dest_get_bottom, ev_link_dest_get_bottom () +
ev_link_dest_get_bottom, ev_link_dest_get_bottom ()
-
ev_link_dest_get_dest_type, ev_link_dest_get_dest_type () +
ev_link_dest_get_dest_type, ev_link_dest_get_dest_type ()
-
ev_link_dest_get_left, ev_link_dest_get_left () +
ev_link_dest_get_left, ev_link_dest_get_left ()
-
ev_link_dest_get_named_dest, ev_link_dest_get_named_dest () +
ev_link_dest_get_named_dest, ev_link_dest_get_named_dest ()
-
ev_link_dest_get_page, ev_link_dest_get_page () +
ev_link_dest_get_page, ev_link_dest_get_page ()
-
ev_link_dest_get_page_label, ev_link_dest_get_page_label () +
ev_link_dest_get_page_label, ev_link_dest_get_page_label ()
-
ev_link_dest_get_right, ev_link_dest_get_right () +
ev_link_dest_get_right, ev_link_dest_get_right ()
-
ev_link_dest_get_top, ev_link_dest_get_top () +
ev_link_dest_get_top, ev_link_dest_get_top ()
-
ev_link_dest_get_type, ev_link_dest_get_type () +
ev_link_dest_get_type, ev_link_dest_get_type ()
-
ev_link_dest_get_zoom, ev_link_dest_get_zoom () +
ev_link_dest_get_zoom, ev_link_dest_get_zoom ()
-
ev_link_dest_new_fit, ev_link_dest_new_fit () +
ev_link_dest_new_fit, ev_link_dest_new_fit ()
-
ev_link_dest_new_fith, ev_link_dest_new_fith () +
ev_link_dest_new_fith, ev_link_dest_new_fith ()
-
ev_link_dest_new_fitr, ev_link_dest_new_fitr () +
ev_link_dest_new_fitr, ev_link_dest_new_fitr ()
-
ev_link_dest_new_fitv, ev_link_dest_new_fitv () +
ev_link_dest_new_fitv, ev_link_dest_new_fitv ()
-
ev_link_dest_new_named, ev_link_dest_new_named () +
ev_link_dest_new_named, ev_link_dest_new_named ()
-
ev_link_dest_new_page, ev_link_dest_new_page () +
ev_link_dest_new_page, ev_link_dest_new_page ()
-
ev_link_dest_new_page_label, ev_link_dest_new_page_label () +
ev_link_dest_new_page_label, ev_link_dest_new_page_label ()
-
ev_link_dest_new_xyz, ev_link_dest_new_xyz () +
ev_link_dest_new_xyz, ev_link_dest_new_xyz ()
-
ev_link_get_action, ev_link_get_action () +
ev_link_get_action, ev_link_get_action ()
-
ev_link_get_page, ev_link_get_page () +
ev_link_get_page, ev_link_get_page ()
-
ev_link_get_title, ev_link_get_title () +
ev_link_get_title, ev_link_get_title ()
-
ev_link_mapping_find, ev_link_mapping_find () +
ev_link_mapping_find, ev_link_mapping_find ()
-
ev_link_mapping_free, ev_link_mapping_free () +
ev_link_mapping_free, ev_link_mapping_free ()
-
ev_link_mapping_get_area, ev_link_mapping_get_area () +
ev_link_mapping_get_area, ev_link_mapping_get_area ()
-
ev_link_new, ev_link_new () +
ev_link_new, ev_link_new ()
-
ev_metadata_manager_get, ev_metadata_manager_get () +
ev_metadata_manager_get, ev_metadata_manager_get ()
-
ev_metadata_manager_init, ev_metadata_manager_init () +
ev_metadata_manager_init, ev_metadata_manager_init ()
-
ev_metadata_manager_set, ev_metadata_manager_set () +
ev_metadata_manager_set, ev_metadata_manager_set ()
-
ev_metadata_manager_set_boolean, ev_metadata_manager_set_boolean () +
ev_metadata_manager_set_boolean, ev_metadata_manager_set_boolean ()
-
ev_metadata_manager_set_double, ev_metadata_manager_set_double () +
ev_metadata_manager_set_double, ev_metadata_manager_set_double ()
-
ev_metadata_manager_set_int, ev_metadata_manager_set_int () +
ev_metadata_manager_set_int, ev_metadata_manager_set_int ()
-
ev_metadata_manager_set_string, ev_metadata_manager_set_string () +
ev_metadata_manager_set_string, ev_metadata_manager_set_string ()
-
ev_metadata_manager_shutdown, ev_metadata_manager_shutdown () +
ev_metadata_manager_shutdown, ev_metadata_manager_shutdown ()
-
ev_navigation_action_set_history, ev_navigation_action_set_history () +
ev_navigation_action_set_history, ev_navigation_action_set_history ()
-
EV_NAVIGATION_ACTION_WIDGET, EV_NAVIGATION_ACTION_WIDGET() +
EV_NAVIGATION_ACTION_WIDGET, EV_NAVIGATION_ACTION_WIDGET()
-
ev_navigation_action_widget_get_type, ev_navigation_action_widget_get_type () +
ev_navigation_action_widget_get_type, ev_navigation_action_widget_get_type ()
-
ev_navigation_action_widget_set_menu, ev_navigation_action_widget_set_menu () +
ev_navigation_action_widget_set_menu, ev_navigation_action_widget_set_menu ()
-
ev_page_action_grab_focus, ev_page_action_grab_focus () +
ev_page_action_grab_focus, ev_page_action_grab_focus ()
-
ev_page_action_set_document, ev_page_action_set_document () +
ev_page_action_set_document, ev_page_action_set_document ()
-
ev_page_action_set_model, ev_page_action_set_model () +
ev_page_action_set_model, ev_page_action_set_model ()
-
EV_PAGE_ACTION_WIDGET, EV_PAGE_ACTION_WIDGET() +
EV_PAGE_ACTION_WIDGET, EV_PAGE_ACTION_WIDGET()
-
ev_page_action_widget_get_type, ev_page_action_widget_get_type () +
ev_page_action_widget_get_type, ev_page_action_widget_get_type ()
-
ev_page_action_widget_set_page_cache, ev_page_action_widget_set_page_cache () +
ev_page_action_widget_set_page_cache, ev_page_action_widget_set_page_cache ()
-
ev_page_action_widget_update_model, ev_page_action_widget_update_model () +
ev_page_action_widget_update_model, ev_page_action_widget_update_model ()
-
ev_page_cache_get, ev_page_cache_get () +
ev_page_cache_get, ev_page_cache_get ()
-
ev_page_cache_get_current_page, ev_page_cache_get_current_page () +
ev_page_cache_get_current_page, ev_page_cache_get_current_page ()
-
ev_page_cache_get_dual_even_left, ev_page_cache_get_dual_even_left () +
ev_page_cache_get_dual_even_left, ev_page_cache_get_dual_even_left ()
-
ev_page_cache_get_height_to_page, ev_page_cache_get_height_to_page () +
ev_page_cache_get_height_to_page, ev_page_cache_get_height_to_page ()
-
ev_page_cache_get_info, ev_page_cache_get_info () +
ev_page_cache_get_info, ev_page_cache_get_info ()
-
ev_page_cache_get_max_height, ev_page_cache_get_max_height () +
ev_page_cache_get_max_height, ev_page_cache_get_max_height ()
-
ev_page_cache_get_max_label_chars, ev_page_cache_get_max_label_chars () +
ev_page_cache_get_max_label_chars, ev_page_cache_get_max_label_chars ()
-
ev_page_cache_get_max_width, ev_page_cache_get_max_width () +
ev_page_cache_get_max_width, ev_page_cache_get_max_width ()
-
ev_page_cache_get_n_pages, ev_page_cache_get_n_pages () +
ev_page_cache_get_n_pages, ev_page_cache_get_n_pages ()
-
ev_page_cache_get_page_label, ev_page_cache_get_page_label () +
ev_page_cache_get_page_label, ev_page_cache_get_page_label ()
-
ev_page_cache_get_size, ev_page_cache_get_size () +
ev_page_cache_get_size, ev_page_cache_get_size ()
-
ev_page_cache_get_thumbnail_size, ev_page_cache_get_thumbnail_size () +
ev_page_cache_get_thumbnail_size, ev_page_cache_get_thumbnail_size ()
-
ev_page_cache_get_title, ev_page_cache_get_title () +
ev_page_cache_get_title, ev_page_cache_get_title ()
-
ev_page_cache_has_nonnumeric_page_labels, ev_page_cache_has_nonnumeric_page_labels () +
ev_page_cache_has_nonnumeric_page_labels, ev_page_cache_has_nonnumeric_page_labels ()
-
ev_page_cache_new, ev_page_cache_new () +
ev_page_cache_new, ev_page_cache_new ()
-
ev_page_cache_set_current_page, ev_page_cache_set_current_page () +
ev_page_cache_set_current_page, ev_page_cache_set_current_page ()
-
ev_page_cache_set_current_page_history, ev_page_cache_set_current_page_history () +
ev_page_cache_set_current_page_history, ev_page_cache_set_current_page_history ()
-
ev_page_cache_set_page_label, ev_page_cache_set_page_label () +
ev_page_cache_set_page_label, ev_page_cache_set_page_label ()
-
ev_password_dialog_get_password, ev_password_dialog_get_password () +
ev_password_dialog_get_password, ev_password_dialog_get_password ()
-
ev_password_dialog_save_password, ev_password_dialog_save_password () +
ev_password_dialog_save_password, ev_password_dialog_save_password ()
-
ev_password_dialog_set_bad_pass, ev_password_dialog_set_bad_pass () +
ev_password_dialog_set_bad_pass, ev_password_dialog_set_bad_pass ()
-
ev_password_view_new, ev_password_view_new () +
ev_password_view_new, ev_password_view_new ()
-
ev_password_view_set_file_name, ev_password_view_set_file_name () +
ev_password_view_set_file_name, ev_password_view_set_file_name ()
-
ev_pixbuf_add_shadow, ev_pixbuf_add_shadow () +
ev_pixbuf_add_shadow, ev_pixbuf_add_shadow ()
-
ev_pixbuf_cache_clear, ev_pixbuf_cache_clear () +
ev_pixbuf_cache_clear, ev_pixbuf_cache_clear ()
-
ev_pixbuf_cache_get_form_field_mapping, ev_pixbuf_cache_get_form_field_mapping () +
ev_pixbuf_cache_get_form_field_mapping, ev_pixbuf_cache_get_form_field_mapping ()
-
ev_pixbuf_cache_get_image_mapping, ev_pixbuf_cache_get_image_mapping () +
ev_pixbuf_cache_get_image_mapping, ev_pixbuf_cache_get_image_mapping ()
-
ev_pixbuf_cache_get_link_mapping, ev_pixbuf_cache_get_link_mapping () +
ev_pixbuf_cache_get_link_mapping, ev_pixbuf_cache_get_link_mapping ()
-
ev_pixbuf_cache_get_selection_list, ev_pixbuf_cache_get_selection_list () +
ev_pixbuf_cache_get_selection_list, ev_pixbuf_cache_get_selection_list ()
-
ev_pixbuf_cache_get_selection_surface, ev_pixbuf_cache_get_selection_surface () +
ev_pixbuf_cache_get_selection_surface, ev_pixbuf_cache_get_selection_surface ()
-
ev_pixbuf_cache_get_surface, ev_pixbuf_cache_get_surface () +
ev_pixbuf_cache_get_surface, ev_pixbuf_cache_get_surface ()
-
ev_pixbuf_cache_get_text_mapping, ev_pixbuf_cache_get_text_mapping () +
ev_pixbuf_cache_get_text_mapping, ev_pixbuf_cache_get_text_mapping ()
-
ev_pixbuf_cache_new, ev_pixbuf_cache_new () +
ev_pixbuf_cache_new, ev_pixbuf_cache_new ()
-
ev_pixbuf_cache_reload_page, ev_pixbuf_cache_reload_page () +
ev_pixbuf_cache_reload_page, ev_pixbuf_cache_reload_page ()
-
ev_pixbuf_cache_set_page_range, ev_pixbuf_cache_set_page_range () +
ev_pixbuf_cache_set_page_range, ev_pixbuf_cache_set_page_range ()
-
ev_pixbuf_cache_set_selection_list, ev_pixbuf_cache_set_selection_list () +
ev_pixbuf_cache_set_selection_list, ev_pixbuf_cache_set_selection_list ()
-
ev_pixbuf_cache_style_changed, ev_pixbuf_cache_style_changed () +
ev_pixbuf_cache_style_changed, ev_pixbuf_cache_style_changed ()
-
ev_print_region_contents, ev_print_region_contents () +
ev_print_region_contents, ev_print_region_contents ()
-
ev_properties_dialog_new, ev_properties_dialog_new () +
ev_properties_dialog_new, ev_properties_dialog_new ()
-
ev_properties_dialog_set_document, ev_properties_dialog_set_document () +
ev_properties_dialog_set_document, ev_properties_dialog_set_document ()
-
EV_PROPERTIES_FONTS, EV_PROPERTIES_FONTS() +
EV_PROPERTIES_FONTS, EV_PROPERTIES_FONTS()
-
EV_PROPERTIES_FONTS_CLASS, EV_PROPERTIES_FONTS_CLASS() +
EV_PROPERTIES_FONTS_CLASS, EV_PROPERTIES_FONTS_CLASS()
-
EV_PROPERTIES_FONTS_GET_CLASS, EV_PROPERTIES_FONTS_GET_CLASS() +
EV_PROPERTIES_FONTS_GET_CLASS, EV_PROPERTIES_FONTS_GET_CLASS()
-
ev_properties_fonts_new, ev_properties_fonts_new () +
ev_properties_fonts_new, ev_properties_fonts_new ()
-
ev_properties_fonts_set_document, ev_properties_fonts_set_document () +
ev_properties_fonts_set_document, ev_properties_fonts_set_document ()
-
ev_rect_cmp, ev_rect_cmp () +
ev_rect_cmp, ev_rect_cmp ()
-
ev_render_context_new, ev_render_context_new () +
ev_render_context_new, ev_render_context_new ()
-
ev_render_context_set_page, ev_render_context_set_page () +
ev_render_context_set_page, ev_render_context_set_page ()
-
ev_render_context_set_rotation, ev_render_context_set_rotation () +
ev_render_context_set_rotation, ev_render_context_set_rotation ()
-
ev_render_context_set_scale, ev_render_context_set_scale () +
ev_render_context_set_scale, ev_render_context_set_scale ()
-
EV_SCROLL_TYPE_CLASS, EV_SCROLL_TYPE_CLASS +
EV_SCROLL_TYPE_CLASS, EV_SCROLL_TYPE_CLASS
-
ev_scroll_type_get_type, ev_scroll_type_get_type () +
ev_scroll_type_get_type, ev_scroll_type_get_type ()
-
ev_selection_get_selected_text, ev_selection_get_selected_text () +
ev_selection_get_selected_text, ev_selection_get_selected_text ()
-
ev_selection_get_selection_map, ev_selection_get_selection_map () +
ev_selection_get_selection_map, ev_selection_get_selection_map ()
-
ev_selection_get_selection_region, ev_selection_get_selection_region () +
ev_selection_get_selection_region, ev_selection_get_selection_region ()
-
EV_SELECTION_IFACE, EV_SELECTION_IFACE() +
EV_SELECTION_IFACE, EV_SELECTION_IFACE()
-
ev_selection_render_selection, ev_selection_render_selection () +
ev_selection_render_selection, ev_selection_render_selection ()
-
ev_sidebar_add_page, ev_sidebar_add_page () +
ev_sidebar_add_page, ev_sidebar_add_page ()
-
ev_sidebar_attachments_new, ev_sidebar_attachments_new () +
ev_sidebar_attachments_new, ev_sidebar_attachments_new ()
-
ev_sidebar_links_new, ev_sidebar_links_new () +
ev_sidebar_links_new, ev_sidebar_links_new ()
-
ev_sidebar_new, ev_sidebar_new () +
ev_sidebar_new, ev_sidebar_new ()
-
ev_sidebar_page_get_label, ev_sidebar_page_get_label () +
ev_sidebar_page_get_label, ev_sidebar_page_get_label ()
-
EV_SIDEBAR_PAGE_IFACE, EV_SIDEBAR_PAGE_IFACE() +
EV_SIDEBAR_PAGE_IFACE, EV_SIDEBAR_PAGE_IFACE()
-
ev_sidebar_page_set_document, ev_sidebar_page_set_document () +
ev_sidebar_page_set_document, ev_sidebar_page_set_document ()
-
ev_sidebar_page_support_document, ev_sidebar_page_support_document () +
ev_sidebar_page_support_document, ev_sidebar_page_support_document ()
-
ev_sidebar_set_document, ev_sidebar_set_document () +
ev_sidebar_set_document, ev_sidebar_set_document ()
-
ev_sidebar_set_page, ev_sidebar_set_page () +
ev_sidebar_set_page, ev_sidebar_set_page ()
-
ev_sidebar_thumbnails_new, ev_sidebar_thumbnails_new () +
ev_sidebar_thumbnails_new, ev_sidebar_thumbnails_new ()
-
ev_sidebar_thumbnails_refresh, ev_sidebar_thumbnails_refresh () +
ev_sidebar_thumbnails_refresh, ev_sidebar_thumbnails_refresh ()
-
EV_SIZING_MODE_CLASS, EV_SIZING_MODE_CLASS +
EV_SIZING_MODE_CLASS, EV_SIZING_MODE_CLASS
-
ev_sizing_mode_get_type, ev_sizing_mode_get_type () +
ev_sizing_mode_get_type, ev_sizing_mode_get_type ()
-
ev_stock_icons_init, ev_stock_icons_init () +
ev_stock_icons_init, ev_stock_icons_init ()
-
EV_STOCK_ROTATE_LEFT, EV_STOCK_ROTATE_LEFT +
EV_STOCK_ROTATE_LEFT, EV_STOCK_ROTATE_LEFT
-
EV_STOCK_ROTATE_RIGHT, EV_STOCK_ROTATE_RIGHT +
EV_STOCK_ROTATE_RIGHT, EV_STOCK_ROTATE_RIGHT
-
EV_STOCK_RUN_PRESENTATION, EV_STOCK_RUN_PRESENTATION +
EV_STOCK_RUN_PRESENTATION, EV_STOCK_RUN_PRESENTATION
-
EV_STOCK_VIEW_CONTINUOUS, EV_STOCK_VIEW_CONTINUOUS +
EV_STOCK_VIEW_CONTINUOUS, EV_STOCK_VIEW_CONTINUOUS
-
EV_STOCK_VIEW_DUAL, EV_STOCK_VIEW_DUAL +
EV_STOCK_VIEW_DUAL, EV_STOCK_VIEW_DUAL
-
EV_STOCK_ZOOM, EV_STOCK_ZOOM +
EV_STOCK_ZOOM, EV_STOCK_ZOOM
-
EV_STOCK_ZOOM_PAGE, EV_STOCK_ZOOM_PAGE +
EV_STOCK_ZOOM_PAGE, EV_STOCK_ZOOM_PAGE
-
EV_STOCK_ZOOM_WIDTH, EV_STOCK_ZOOM_WIDTH +
EV_STOCK_ZOOM_WIDTH, EV_STOCK_ZOOM_WIDTH
-
ev_tmp_dir, ev_tmp_dir () +
ev_tmp_dir, ev_tmp_dir ()
-
ev_tmp_filename, ev_tmp_filename () +
ev_tmp_filename, ev_tmp_filename ()
-
ev_tmp_filename_unlink, ev_tmp_filename_unlink () +
ev_tmp_filename_unlink, ev_tmp_filename_unlink ()
-
ev_tmp_file_get, ev_tmp_file_get () +
ev_tmp_file_get, ev_tmp_file_get ()
-
ev_tmp_file_unlink, ev_tmp_file_unlink () +
ev_tmp_file_unlink, ev_tmp_file_unlink ()
-
ev_tmp_uri_unlink, ev_tmp_uri_unlink () +
ev_tmp_uri_unlink, ev_tmp_uri_unlink ()
-
ev_tooltip_activate, ev_tooltip_activate () +
ev_tooltip_activate, ev_tooltip_activate ()
-
ev_tooltip_deactivate, ev_tooltip_deactivate () +
ev_tooltip_deactivate, ev_tooltip_deactivate ()
-
ev_tooltip_new, ev_tooltip_new () +
ev_tooltip_new, ev_tooltip_new ()
-
ev_tooltip_set_position, ev_tooltip_set_position () +
ev_tooltip_set_position, ev_tooltip_set_position ()
-
ev_tooltip_set_text, ev_tooltip_set_text () +
ev_tooltip_set_text, ev_tooltip_set_text ()
-
EV_TYPE_JOB_FONTS, EV_TYPE_JOB_FONTS +
EV_TYPE_JOB_FONTS, EV_TYPE_JOB_FONTS
-
EV_TYPE_JOB_LINKS, EV_TYPE_JOB_LINKS +
EV_TYPE_JOB_LINKS, EV_TYPE_JOB_LINKS
-
EV_TYPE_JOB_LOAD, EV_TYPE_JOB_LOAD +
EV_TYPE_JOB_LOAD, EV_TYPE_JOB_LOAD
-
EV_TYPE_JOB_PRINT, EV_TYPE_JOB_PRINT +
EV_TYPE_JOB_PRINT, EV_TYPE_JOB_PRINT
-
EV_TYPE_JOB_RENDER, EV_TYPE_JOB_RENDER +
EV_TYPE_JOB_RENDER, EV_TYPE_JOB_RENDER
-
EV_TYPE_JOB_SAVE, EV_TYPE_JOB_SAVE +
EV_TYPE_JOB_SAVE, EV_TYPE_JOB_SAVE
-
EV_TYPE_JOB_THUMBNAIL, EV_TYPE_JOB_THUMBNAIL +
EV_TYPE_JOB_THUMBNAIL, EV_TYPE_JOB_THUMBNAIL
-
EV_TYPE_LINK_ACTION_TYPE, EV_TYPE_LINK_ACTION_TYPE +
EV_TYPE_LINK_ACTION_TYPE, EV_TYPE_LINK_ACTION_TYPE
-
EV_TYPE_LINK_DEST_TYPE, EV_TYPE_LINK_DEST_TYPE +
EV_TYPE_LINK_DEST_TYPE, EV_TYPE_LINK_DEST_TYPE
-
EV_TYPE_NAVIGATION_ACTION_WIDGET, EV_TYPE_NAVIGATION_ACTION_WIDGET +
EV_TYPE_NAVIGATION_ACTION_WIDGET, EV_TYPE_NAVIGATION_ACTION_WIDGET
-
EV_TYPE_PAGE_ACTION_WIDGET, EV_TYPE_PAGE_ACTION_WIDGET +
EV_TYPE_PAGE_ACTION_WIDGET, EV_TYPE_PAGE_ACTION_WIDGET
-
EV_TYPE_PROPERTIES_FONTS, EV_TYPE_PROPERTIES_FONTS +
EV_TYPE_PROPERTIES_FONTS, EV_TYPE_PROPERTIES_FONTS
-
EV_TYPE_SCROLL_TYPE, EV_TYPE_SCROLL_TYPE +
EV_TYPE_SCROLL_TYPE, EV_TYPE_SCROLL_TYPE
-
EV_TYPE_SIZING_MODE, EV_TYPE_SIZING_MODE +
EV_TYPE_SIZING_MODE, EV_TYPE_SIZING_MODE
-
ev_view_accessible_factory_get_type, ev_view_accessible_factory_get_type () +
ev_view_accessible_factory_get_type, ev_view_accessible_factory_get_type ()
-
ev_view_autoscroll_start, ev_view_autoscroll_start () +
ev_view_autoscroll_start, ev_view_autoscroll_start ()
-
ev_view_autoscroll_stop, ev_view_autoscroll_stop () +
ev_view_autoscroll_stop, ev_view_autoscroll_stop ()
-
ev_view_can_find_next, ev_view_can_find_next () +
ev_view_can_find_next, ev_view_can_find_next ()
-
ev_view_can_find_previous, ev_view_can_find_previous () +
ev_view_can_find_previous, ev_view_can_find_previous ()
-
ev_view_can_zoom_in, ev_view_can_zoom_in () +
ev_view_can_zoom_in, ev_view_can_zoom_in ()
-
ev_view_can_zoom_out, ev_view_can_zoom_out () +
ev_view_can_zoom_out, ev_view_can_zoom_out ()
-
ev_view_copy, ev_view_copy () +
ev_view_copy, ev_view_copy ()
-
ev_view_find_cancel, ev_view_find_cancel () +
ev_view_find_cancel, ev_view_find_cancel ()
-
ev_view_find_next, ev_view_find_next () +
ev_view_find_next, ev_view_find_next ()
-
ev_view_find_previous, ev_view_find_previous () +
ev_view_find_previous, ev_view_find_previous ()
-
ev_view_get_continuous, ev_view_get_continuous () +
ev_view_get_continuous, ev_view_get_continuous ()
-
ev_view_get_dual_page, ev_view_get_dual_page () +
ev_view_get_dual_page, ev_view_get_dual_page ()
-
ev_view_get_find_status, ev_view_get_find_status () +
ev_view_get_find_status, ev_view_get_find_status ()
-
ev_view_get_fullscreen, ev_view_get_fullscreen () +
ev_view_get_fullscreen, ev_view_get_fullscreen ()
-
ev_view_get_has_selection, ev_view_get_has_selection () +
ev_view_get_has_selection, ev_view_get_has_selection ()
-
ev_view_get_presentation, ev_view_get_presentation () +
ev_view_get_presentation, ev_view_get_presentation ()
-
ev_view_get_rotation, ev_view_get_rotation () +
ev_view_get_rotation, ev_view_get_rotation ()
-
ev_view_get_sizing_mode, ev_view_get_sizing_mode () +
ev_view_get_sizing_mode, ev_view_get_sizing_mode ()
-
ev_view_get_status, ev_view_get_status () +
ev_view_get_status, ev_view_get_status ()
-
ev_view_get_zoom, ev_view_get_zoom () +
ev_view_get_zoom, ev_view_get_zoom ()
-
ev_view_handle_link, ev_view_handle_link () +
ev_view_handle_link, ev_view_handle_link ()
-
ev_view_hide_cursor, ev_view_hide_cursor () +
ev_view_hide_cursor, ev_view_hide_cursor ()
-
ev_view_new, ev_view_new () +
ev_view_new, ev_view_new ()
-
ev_view_next_page, ev_view_next_page () +
ev_view_next_page, ev_view_next_page ()
-
ev_view_page_label_from_dest, ev_view_page_label_from_dest () +
ev_view_page_label_from_dest, ev_view_page_label_from_dest ()
-
ev_view_previous_page, ev_view_previous_page () +
ev_view_previous_page, ev_view_previous_page ()
-
ev_view_rotate_left, ev_view_rotate_left () +
ev_view_rotate_left, ev_view_rotate_left ()
-
ev_view_rotate_right, ev_view_rotate_right () +
ev_view_rotate_right, ev_view_rotate_right ()
-
ev_view_scroll, ev_view_scroll () +
ev_view_scroll, ev_view_scroll ()
-
ev_view_search_changed, ev_view_search_changed () +
ev_view_search_changed, ev_view_search_changed ()
-
ev_view_select_all, ev_view_select_all () +
ev_view_select_all, ev_view_select_all ()
-
ev_view_set_continuous, ev_view_set_continuous () +
ev_view_set_continuous, ev_view_set_continuous ()
-
ev_view_set_document, ev_view_set_document () +
ev_view_set_document, ev_view_set_document ()
-
ev_view_set_dual_page, ev_view_set_dual_page () +
ev_view_set_dual_page, ev_view_set_dual_page ()
-
ev_view_set_fullscreen, ev_view_set_fullscreen () +
ev_view_set_fullscreen, ev_view_set_fullscreen ()
-
ev_view_set_highlight_search, ev_view_set_highlight_search () +
ev_view_set_highlight_search, ev_view_set_highlight_search ()
-
ev_view_set_loading, ev_view_set_loading () +
ev_view_set_loading, ev_view_set_loading ()
-
ev_view_set_presentation, ev_view_set_presentation () +
ev_view_set_presentation, ev_view_set_presentation ()
-
ev_view_set_rotation, ev_view_set_rotation () +
ev_view_set_rotation, ev_view_set_rotation ()
-
ev_view_set_screen_dpi, ev_view_set_screen_dpi () +
ev_view_set_screen_dpi, ev_view_set_screen_dpi ()
-
ev_view_set_sizing_mode, ev_view_set_sizing_mode () +
ev_view_set_sizing_mode, ev_view_set_sizing_mode ()
-
ev_view_set_zoom, ev_view_set_zoom () +
ev_view_set_zoom, ev_view_set_zoom ()
-
ev_view_show_cursor, ev_view_show_cursor () +
ev_view_show_cursor, ev_view_show_cursor ()
-
ev_view_update_view_size, ev_view_update_view_size () +
ev_view_update_view_size, ev_view_update_view_size ()
-
ev_view_zoom_in, ev_view_zoom_in () +
ev_view_zoom_in, ev_view_zoom_in ()
-
ev_view_zoom_out, ev_view_zoom_out () +
ev_view_zoom_out, ev_view_zoom_out ()
-
ev_window_get_uri, ev_window_get_uri () +
ev_window_get_uri, ev_window_get_uri ()
-
ev_window_is_empty, ev_window_is_empty () +
ev_window_is_empty, ev_window_is_empty ()
-
ev_window_new, ev_window_new () +
ev_window_new, ev_window_new ()
-
ev_window_open_uri, ev_window_open_uri () +
ev_window_open_uri, ev_window_open_uri ()
-
ev_window_print_range, ev_window_print_range () +
ev_window_print_range, ev_window_print_range ()
-
ev_window_title_free, ev_window_title_free () +
ev_window_title_free, ev_window_title_free ()
-
ev_window_title_new, ev_window_title_new () +
ev_window_title_new, ev_window_title_new ()
-
ev_window_title_set_document, ev_window_title_set_document () +
ev_window_title_set_document, ev_window_title_set_document ()
-
ev_window_title_set_type, ev_window_title_set_type () +
ev_window_title_set_type, ev_window_title_set_type ()
-
ev_window_title_set_uri, ev_window_title_set_uri () +
ev_window_title_set_uri, ev_window_title_set_uri ()
-
ev_xfer_uri_simple, ev_xfer_uri_simple () +
ev_xfer_uri_simple, ev_xfer_uri_simple ()

F

-
file_chooser_dialog_add_writable_pixbuf_formats, file_chooser_dialog_add_writable_pixbuf_formats () +
file_chooser_dialog_add_writable_pixbuf_formats, file_chooser_dialog_add_writable_pixbuf_formats ()

G

-
get_gdk_pixbuf_format_by_extension, get_gdk_pixbuf_format_by_extension () +
get_gdk_pixbuf_format_by_extension, get_gdk_pixbuf_format_by_extension ()
-
get_num_monitors, get_num_monitors () +
get_num_monitors, get_num_monitors ()
-
get_screen_dpi, get_screen_dpi () +
get_screen_dpi, get_screen_dpi ()
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/pt01.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/pt01.html --- evince-2.22.1.1/help/reference/html/pt01.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/pt01.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -26,7 +26,7 @@

-Part I.  +Part I.  Document interfaces

@@ -37,6 +37,44 @@ The core have objects that represent various document interfaces.

+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/pt02.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/pt02.html --- evince-2.22.1.1/help/reference/html/pt02.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/pt02.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -26,7 +26,7 @@

-Part II.  +Part II.  Document data

@@ -34,6 +34,32 @@

Helper objects related to document like attachments, links and images.

+
+

Table of Contents

+
+
+EvAttachment +
+
+ev-link +
+
+ev-link-action +
+
+ev-link-dest +
+
+EvImage +
+
+EvRenderContext +
+
+ev-selection +
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/pt03.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/pt03.html --- evince-2.22.1.1/help/reference/html/pt03.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/pt03.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -26,7 +26,7 @@

-Part III.  +Part III.  Helper functions

@@ -34,6 +34,20 @@

Helper functions common for backend implementation

+
+

Table of Contents

+
+
+ev-async-renderer +
+
+ev-file-exporter +
+
+ev-file-helpers +
+
+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/pt04.html /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/pt04.html --- evince-2.22.1.1/help/reference/html/pt04.html 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/pt04.html 2008-05-28 23:28:14.000000000 +0200 @@ -8,7 +8,7 @@ - + @@ -26,7 +26,7 @@

-Part IV.  +Part IV.  Evince Frontend

@@ -38,6 +38,89 @@ services, each window shows loaded document, it has menus sidebar, toolbar and main view.

+
diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/html/style.css /tmp/nPPHdISZIK/evince-2.22.2/help/reference/html/style.css --- evince-2.22.1.1/help/reference/html/style.css 2008-04-08 22:09:50.000000000 +0200 +++ evince-2.22.2/help/reference/html/style.css 2008-05-28 23:28:14.000000000 +0200 @@ -1,16 +1,16 @@ -.synopsis, .classsynopsis +.synopsis, .classsynopsis { background: #eeeeee; border: solid 1px #aaaaaa; padding: 0.5em; } -.programlisting +.programlisting { background: #eeeeff; border: solid 1px #aaaaff; padding: 0.5em; } -.variablelist +.variablelist { padding: 4px; margin-left: 3em; @@ -19,62 +19,88 @@ { vertical-align: top; } + /* this is needed so that the local anchors are displayed below the naviagtion */ -div.refnamediv a[name], div.refsect1 a[name] -{ - position: relative; - top: -4.5em; -} -table.navigation#top -{ - background: #ffeeee; - border: solid 1px #ffaaaa; - margin-top: 0; - margin-bottom: 0; - position: fixed; - top: 0; - left: 0; - height: 2em; - z-index: 1; -} -.navigation a -{ - color: #770000; +@media screen { + div.refnamediv a[name], div.refsect1 a[name] + { + position: relative; + top: -4.5em; + } + table.navigation#top + { + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0; + margin-bottom: 0; + position: fixed; + top: 0; + left: 0; + height: 2em; + z-index: 1; + } + .navigation a + { + color: #770000; + } + .navigation a:visited + { + color: #550000; + } + td.shortcuts + { + color: #770000; + font-size: 80%; + } + div.refentry, div.chapter, div.reference, div.part, div.book, div.index, div.glossary, div.sect1, div.appendix, div.preface + { + position: relative; + top: 3em; + z-index: 0; + } + div.refnamediv + { + margin-top: 2em; + } + body + { + padding-bottom: 20em; + } +} +@media print { + table.navigation { + visibility: collapse; + display: none; + } + div.titlepage table.navigation { + visibility: visible; + display: table; + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0; + margin-bottom: 0; + top: 0; + left: 0; + height: 2em; + } } -.navigation a:visited -{ - color: #550000; -} -.navigation .title + +.navigation .title { font-size: 200%; } -td.shortcuts -{ - color: #770000; - font-size: 80%; -} -div.refentry, div.chapter, div.part, div.book, div.index, div.glossary, div.sect1, div.appendix, div.preface -{ - position: relative; - top: 3em; - z-index: 0; -} -div.refnamediv -{ - margin-top: 2em; -} -div.gallery-float + +div.gallery-float { float: left; padding: 10px; } -div.gallery-float img +div.gallery-float img { border-style: none; } -div.gallery-spacer +div.gallery-spacer { clear: both; } @@ -110,3 +136,13 @@ { background-color: #eeeeee; } + +hr +{ + color: #888; + background: #888; + border: 0; + height: 1px; + clear: both; +} + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/help/reference/Makefile.in --- evince-2.22.1.1/help/reference/Makefile.in 2008-04-08 21:19:09.000000000 +0200 +++ evince-2.22.2/help/reference/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -118,6 +118,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -166,7 +167,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ @@ -383,7 +383,12 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals -CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) +REPORT_FILES = \ + $(DOC_MODULE)-undocumented.txt \ + $(DOC_MODULE)-undeclared.txt \ + $(DOC_MODULE)-unused.txt + +CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) all: all-am .SUFFIXES: @@ -495,7 +500,7 @@ distclean: distclean-am -rm -f Makefile -distclean-am: clean-am distclean-generic +distclean-am: clean-am distclean-generic distclean-local dvi: dvi-am @@ -548,16 +553,17 @@ .PHONY: all all-am all-local check check-am clean clean-generic \ clean-libtool clean-local dist-hook distclean \ - distclean-generic distclean-libtool distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-data-local install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-local + distclean-generic distclean-libtool distclean-local distdir \ + dvi dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-local @ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp @@ -596,6 +602,9 @@ tmpl.stamp: tmpl-build.stamp @true +tmpl/*.sgml: + @true + #### xml #### sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) @@ -613,11 +622,11 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) @echo 'gtk-doc: Building HTML' @-chmod -R u+w $(srcdir) - rm -rf $(srcdir)/html + rm -rf $(srcdir)/html mkdir $(srcdir)/html cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) - @echo 'gtk-doc: Fixing cross-references' + @echo 'gtk-doc: Fixing cross-references' cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) touch html-build.stamp @@ -627,8 +636,13 @@ rm -f *~ *.bak rm -rf .libs +distclean-local: + cd $(srcdir) && \ + rm -rf xml $(REPORT_FILES) \ + $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + maintainer-clean-local: clean - cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + cd $(srcdir) && rm -rf xml html install-data-local: installfiles=`echo $(srcdir)/html/*`; \ @@ -642,6 +656,8 @@ done; \ echo '-- Installing $(srcdir)/html/index.sgml' ; \ $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ + (which gtkdoc-rebase >& /dev/null && \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR)) || : ; \ fi uninstall-local: @@ -662,9 +678,10 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml cp $(srcdir)/html/* $(distdir)/html - if test -f $(srcdir)/$(DOC_MODULE).types; then \ - cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ - fi + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) + -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/tmpl/ev-timeline.sgml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/tmpl/ev-timeline.sgml --- evince-2.22.1.1/help/reference/tmpl/ev-timeline.sgml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/tmpl/ev-timeline.sgml 2008-05-28 23:28:14.000000000 +0200 @@ -1,5 +1,5 @@ -EvTimeline +ev-timeline @@ -25,6 +25,53 @@ + + + + + + + + + + + +@timeline: + + + + + + + +@timeline: + + + + + + + +@timeline: + + + + + + + +@timeline: + + + + + + + +@timeline: +@progress: + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/tmpl/ev-transition-animation.sgml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/tmpl/ev-transition-animation.sgml --- evince-2.22.1.1/help/reference/tmpl/ev-transition-animation.sgml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/tmpl/ev-transition-animation.sgml 2008-05-28 23:28:14.000000000 +0200 @@ -1,5 +1,5 @@ -EvTransitionAnimation +ev-transition-animation @@ -25,6 +25,12 @@ + + + + + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/tmpl/ev-transition-effect.sgml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/tmpl/ev-transition-effect.sgml --- evince-2.22.1.1/help/reference/tmpl/ev-transition-effect.sgml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/tmpl/ev-transition-effect.sgml 2008-05-28 23:28:14.000000000 +0200 @@ -1,5 +1,5 @@ -EvTransitionEffect +ev-transition-effect @@ -80,6 +80,12 @@ + + + + + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/eggfindbar.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/eggfindbar.xml --- evince-2.22.1.1/help/reference/xml/eggfindbar.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/eggfindbar.xml 2008-05-28 23:28:14.000000000 +0200 @@ -224,4 +224,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-application-service.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-application-service.xml --- evince-2.22.1.1/help/reference/xml/ev-application-service.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-application-service.xml 2008-05-28 23:28:14.000000000 +0200 @@ -358,4 +358,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-application.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-application.xml --- evince-2.22.1.1/help/reference/xml/ev-application.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-application.xml 2008-05-28 23:28:14.000000000 +0200 @@ -401,4 +401,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-async-renderer.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-async-renderer.xml --- evince-2.22.1.1/help/reference/xml/ev-async-renderer.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-async-renderer.xml 2008-05-28 23:28:14.000000000 +0200 @@ -141,7 +141,7 @@ Signal Details -<anchor id="EvAsyncRenderer-render-finished"/>The "render-finished" signal +<anchor id="EvAsyncRenderer-render-finished"/>The <literal>"render-finished"</literal> signal EvAsyncRenderer::render-finishedvoid user_function (EvAsyncRenderer *evasyncrenderer, GdkPixbuf *arg1, gpointer user_data) : Run Last @@ -162,4 +162,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-attachment.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-attachment.xml --- evince-2.22.1.1/help/reference/xml/ev-attachment.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-attachment.xml 2008-05-28 23:28:14.000000000 +0200 @@ -258,24 +258,24 @@ Property Details -<anchor id="EvAttachment--ctime"/>The "<literal>ctime</literal>" property +<anchor id="EvAttachment--ctime"/>The <literal>"ctime"</literal> property EvAttachment:ctime "ctime" gulong : Write / Construct Only The attachment creation date. -<anchor id="EvAttachment--data"/>The "<literal>data</literal>" property +<anchor id="EvAttachment--data"/>The <literal>"data"</literal> property EvAttachment:data "data" gpointer : Write / Construct Only The attachment data. -<anchor id="EvAttachment--description"/>The "<literal>description</literal>" property +<anchor id="EvAttachment--description"/>The <literal>"description"</literal> property EvAttachment:description "description" gchararray : Write / Construct Only The attachment description.Default value: NULL -<anchor id="EvAttachment--mtime"/>The "<literal>mtime</literal>" property +<anchor id="EvAttachment--mtime"/>The <literal>"mtime"</literal> property EvAttachment:mtime "mtime" gulong : Write / Construct Only The attachment modification date. -<anchor id="EvAttachment--name"/>The "<literal>name</literal>" property +<anchor id="EvAttachment--name"/>The <literal>"name"</literal> property EvAttachment:name "name" gchararray : Write / Construct Only The attachment name.Default value: NULL -<anchor id="EvAttachment--size"/>The "<literal>size</literal>" property +<anchor id="EvAttachment--size"/>The <literal>"size"</literal> property EvAttachment:size "size" guint : Write / Construct Only The attachment size.Default value: 0 @@ -285,4 +285,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-backends-manager.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-backends-manager.xml --- evince-2.22.1.1/help/reference/xml/ev-backends-manager.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-backends-manager.xml 2008-05-28 23:28:14.000000000 +0200 @@ -137,4 +137,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-factory.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-factory.xml --- evince-2.22.1.1/help/reference/xml/ev-document-factory.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-factory.xml 2008-05-28 23:28:14.000000000 +0200 @@ -82,4 +82,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-find.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-find.xml --- evince-2.22.1.1/help/reference/xml/ev-document-find.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-find.xml 2008-05-28 23:28:14.000000000 +0200 @@ -271,7 +271,7 @@ Signal Details -<anchor id="EvDocumentFind-find-changed"/>The "find-changed" signal +<anchor id="EvDocumentFind-find-changed"/>The <literal>"find-changed"</literal> signal EvDocumentFind::find-changedvoid user_function (EvDocumentFind *evdocumentfind, gint arg1, gpointer user_data) : Run Last @@ -292,4 +292,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-fonts.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-fonts.xml --- evince-2.22.1.1/help/reference/xml/ev-document-fonts.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-fonts.xml 2008-05-28 23:28:14.000000000 +0200 @@ -150,4 +150,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-forms.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-forms.xml --- evince-2.22.1.1/help/reference/xml/ev-document-forms.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-forms.xml 2008-05-28 23:28:14.000000000 +0200 @@ -432,4 +432,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-images.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-images.xml --- evince-2.22.1.1/help/reference/xml/ev-document-images.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-images.xml 2008-05-28 23:28:14.000000000 +0200 @@ -138,4 +138,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-info.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-info.xml --- evince-2.22.1.1/help/reference/xml/ev-document-info.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-info.xml 2008-05-28 23:28:14.000000000 +0200 @@ -181,4 +181,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-links.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-links.xml --- evince-2.22.1.1/help/reference/xml/ev-document-links.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-links.xml 2008-05-28 23:28:14.000000000 +0200 @@ -179,4 +179,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-misc.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-misc.xml --- evince-2.22.1.1/help/reference/xml/ev-document-misc.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-misc.xml 2008-05-28 23:28:14.000000000 +0200 @@ -195,4 +195,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-security.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-security.xml --- evince-2.22.1.1/help/reference/xml/ev-document-security.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-security.xml 2008-05-28 23:28:14.000000000 +0200 @@ -130,4 +130,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-thumbnails.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-thumbnails.xml --- evince-2.22.1.1/help/reference/xml/ev-document-thumbnails.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-thumbnails.xml 2008-05-28 23:28:14.000000000 +0200 @@ -156,4 +156,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document-transition.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document-transition.xml --- evince-2.22.1.1/help/reference/xml/ev-document-transition.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document-transition.xml 2008-05-28 23:28:14.000000000 +0200 @@ -138,4 +138,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-document.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-document.xml --- evince-2.22.1.1/help/reference/xml/ev-document.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-document.xml 2008-05-28 23:28:14.000000000 +0200 @@ -518,7 +518,7 @@ Signal Details -<anchor id="EvPageCache-history-changed"/>The "history-changed" signal +<anchor id="EvPageCache-history-changed"/>The <literal>"history-changed"</literal> signal EvPageCache::history-changedvoid user_function (EvPageCache *evpagecache, gint arg1, gpointer user_data) : Run Last @@ -534,7 +534,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvPageCache-page-changed"/>The "page-changed" signal +<anchor id="EvPageCache-page-changed"/>The <literal>"page-changed"</literal> signal EvPageCache::page-changedvoid user_function (EvPageCache *evpagecache, gint arg1, gpointer user_data) : Run Last @@ -555,4 +555,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-file-exporter.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-file-exporter.xml --- evince-2.22.1.1/help/reference/xml/ev-file-exporter.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-file-exporter.xml 2008-05-28 23:28:14.000000000 +0200 @@ -239,4 +239,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-file-helpers.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-file-helpers.xml --- evince-2.22.1.1/help/reference/xml/ev-file-helpers.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-file-helpers.xml 2008-05-28 23:28:14.000000000 +0200 @@ -238,4 +238,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-form-field.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-form-field.xml --- evince-2.22.1.1/help/reference/xml/ev-form-field.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-form-field.xml 2008-05-28 23:28:14.000000000 +0200 @@ -697,4 +697,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-history.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-history.xml --- evince-2.22.1.1/help/reference/xml/ev-history.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-history.xml 2008-05-28 23:28:14.000000000 +0200 @@ -127,4 +127,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-image.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-image.xml --- evince-2.22.1.1/help/reference/xml/ev-image.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-image.xml 2008-05-28 23:28:14.000000000 +0200 @@ -231,4 +231,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-job-queue.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-job-queue.xml --- evince-2.22.1.1/help/reference/xml/ev-job-queue.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-job-queue.xml 2008-05-28 23:28:14.000000000 +0200 @@ -107,4 +107,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-jobs.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-jobs.xml --- evince-2.22.1.1/help/reference/xml/ev-jobs.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-jobs.xml 2008-05-28 23:28:14.000000000 +0200 @@ -977,7 +977,7 @@ Signal Details -<anchor id="EvJobRender-page-ready"/>The "page-ready" signal +<anchor id="EvJobRender-page-ready"/>The <literal>"page-ready"</literal> signal EvJobRender::page-readyvoid user_function (EvJobRender *evjobrender, gpointer user_data) : Run Last @@ -994,4 +994,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-link-action.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-link-action.xml --- evince-2.22.1.1/help/reference/xml/ev-link-action.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-link-action.xml 2008-05-28 23:28:14.000000000 +0200 @@ -296,26 +296,26 @@ Property Details -<anchor id="EvLinkAction--dest"/>The "<literal>dest</literal>" property +<anchor id="EvLinkAction--dest"/>The <literal>"dest"</literal> property EvLinkAction:dest "dest" gpointer : Read / Write / Construct Only The link action destination. -<anchor id="EvLinkAction--filename"/>The "<literal>filename</literal>" property +<anchor id="EvLinkAction--filename"/>The <literal>"filename"</literal> property EvLinkAction:filename "filename" gchararray : Read / Write / Construct Only The link action filename.Default value: NULL -<anchor id="EvLinkAction--name"/>The "<literal>name</literal>" property +<anchor id="EvLinkAction--name"/>The <literal>"name"</literal> property EvLinkAction:name "name" gchararray : Read / Write / Construct Only The link action name.Default value: NULL -<anchor id="EvLinkAction--params"/>The "<literal>params</literal>" property +<anchor id="EvLinkAction--params"/>The <literal>"params"</literal> property EvLinkAction:params "params" gchararray : Read / Write / Construct Only The link action params.Default value: NULL -<anchor id="EvLinkAction--type"/>The "<literal>type</literal>" property +<anchor id="EvLinkAction--type"/>The <literal>"type"</literal> property EvLinkAction:type "type" EvLinkActionType : Read / Write / Construct Only The link action type.Default value: EV_LINK_ACTION_TYPE_GOTO_DEST -<anchor id="EvLinkAction--uri"/>The "<literal>uri</literal>" property +<anchor id="EvLinkAction--uri"/>The <literal>"uri"</literal> property EvLinkAction:uri "uri" gchararray : Read / Write / Construct Only The link action URI.Default value: NULL @@ -325,4 +325,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-link-dest.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-link-dest.xml --- evince-2.22.1.1/help/reference/xml/ev-link-dest.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-link-dest.xml 2008-05-28 23:28:14.000000000 +0200 @@ -467,44 +467,44 @@ Property Details -<anchor id="EvLinkDest--bottom"/>The "<literal>bottom</literal>" property +<anchor id="EvLinkDest--bottom"/>The <literal>"bottom"</literal> property EvLinkDest:bottom "bottom" gdouble : Read / Write / Construct Only The bottom coordinate.Default value: 0 -<anchor id="EvLinkDest--change"/>The "<literal>change</literal>" property +<anchor id="EvLinkDest--change"/>The <literal>"change"</literal> property EvLinkDest:change "change" guint : Read / Write / Construct Only Wether top, left, and zoom should be changed.Default value: 0 -<anchor id="EvLinkDest--left"/>The "<literal>left</literal>" property +<anchor id="EvLinkDest--left"/>The <literal>"left"</literal> property EvLinkDest:left "left" gdouble : Read / Write / Construct Only The left coordinate.Default value: 0 -<anchor id="EvLinkDest--named"/>The "<literal>named</literal>" property +<anchor id="EvLinkDest--named"/>The <literal>"named"</literal> property EvLinkDest:named "named" gchararray : Read / Write / Construct Only The named destination.Default value: NULL -<anchor id="EvLinkDest--page"/>The "<literal>page</literal>" property +<anchor id="EvLinkDest--page"/>The <literal>"page"</literal> property EvLinkDest:page "page" gint : Read / Write / Construct Only The destination page.Allowed values: >= -1 Default value: 0 -<anchor id="EvLinkDest--page-label"/>The "<literal>page-label</literal>" property +<anchor id="EvLinkDest--page-label"/>The <literal>"page-label"</literal> property EvLinkDest:page-label "page-label" gchararray : Read / Write / Construct Only The label of the destination page.Default value: NULL -<anchor id="EvLinkDest--right"/>The "<literal>right</literal>" property +<anchor id="EvLinkDest--right"/>The <literal>"right"</literal> property EvLinkDest:right "right" gdouble : Read / Write / Construct Only The right coordinate.Default value: 0 -<anchor id="EvLinkDest--top"/>The "<literal>top</literal>" property +<anchor id="EvLinkDest--top"/>The <literal>"top"</literal> property EvLinkDest:top "top" gdouble : Read / Write / Construct Only The top coordinate.Default value: 0 -<anchor id="EvLinkDest--type"/>The "<literal>type</literal>" property +<anchor id="EvLinkDest--type"/>The <literal>"type"</literal> property EvLinkDest:type "type" EvLinkDestType : Read / Write / Construct Only The destination type.Default value: EV_LINK_DEST_TYPE_UNKNOWN -<anchor id="EvLinkDest--zoom"/>The "<literal>zoom</literal>" property +<anchor id="EvLinkDest--zoom"/>The <literal>"zoom"</literal> property EvLinkDest:zoom "zoom" gdouble : Read / Write / Construct Only Zoom.Allowed values: >= 0 Default value: 0 @@ -515,4 +515,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-link.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-link.xml --- evince-2.22.1.1/help/reference/xml/ev-link.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-link.xml 2008-05-28 23:28:14.000000000 +0200 @@ -206,4 +206,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-message-area.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-message-area.xml --- evince-2.22.1.1/help/reference/xml/ev-message-area.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-message-area.xml 2008-05-28 23:28:14.000000000 +0200 @@ -146,4 +146,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-metadata-manager.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-metadata-manager.xml --- evince-2.22.1.1/help/reference/xml/ev-metadata-manager.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-metadata-manager.xml 2008-05-28 23:28:14.000000000 +0200 @@ -210,4 +210,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-module.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-module.xml --- evince-2.22.1.1/help/reference/xml/ev-module.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-module.xml 2008-05-28 23:28:14.000000000 +0200 @@ -117,4 +117,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-navigation-action-widget.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-navigation-action-widget.xml --- evince-2.22.1.1/help/reference/xml/ev-navigation-action-widget.xml 2008-04-08 22:09:47.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-navigation-action-widget.xml 2008-05-28 23:28:14.000000000 +0200 @@ -138,7 +138,7 @@ Signal Details -<anchor id="EvNavigationActionWidget-show-menu"/>The "show-menu" signal +<anchor id="EvNavigationActionWidget-show-menu"/>The <literal>"show-menu"</literal> signal EvNavigationActionWidget::show-menuvoid user_function (EvNavigationActionWidget *evnavigationactionwidget, gpointer user_data) : Run First @@ -150,7 +150,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvNavigationActionWidget-show-menu"/>The "show-menu" signal +<anchor id="EvNavigationActionWidget-show-menu"/>The <literal>"show-menu"</literal> signal EvNavigationActionWidget::show-menuvoid user_function (EvNavigationActionWidget *evnavigationactionwidget, gpointer user_data) : Run First @@ -167,4 +167,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-navigation-action.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-navigation-action.xml --- evince-2.22.1.1/help/reference/xml/ev-navigation-action.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-navigation-action.xml 2008-05-28 23:28:14.000000000 +0200 @@ -100,7 +100,7 @@ Signal Details -<anchor id="EvNavigationAction-activate-link"/>The "activate-link" signal +<anchor id="EvNavigationAction-activate-link"/>The <literal>"activate-link"</literal> signal EvNavigationAction::activate-linkvoid user_function (EvNavigationAction *evnavigationaction, GObject *arg1, gpointer user_data) : Run Last / Action @@ -121,4 +121,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-open-recent-action.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-open-recent-action.xml --- evince-2.22.1.1/help/reference/xml/ev-open-recent-action.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-open-recent-action.xml 2008-05-28 23:28:14.000000000 +0200 @@ -55,4 +55,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-page-action-widget.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-page-action-widget.xml --- evince-2.22.1.1/help/reference/xml/ev-page-action-widget.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-page-action-widget.xml 2008-05-28 23:28:14.000000000 +0200 @@ -152,7 +152,7 @@ Signal Details -<anchor id="EvPageActionWidget-activate-link"/>The "activate-link" signal +<anchor id="EvPageActionWidget-activate-link"/>The <literal>"activate-link"</literal> signal EvPageActionWidget::activate-linkvoid user_function (EvPageActionWidget *evpageactionwidget, GObject *arg1, gpointer user_data) : Run Last / Action @@ -168,7 +168,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvPageActionWidget-activate-link"/>The "activate-link" signal +<anchor id="EvPageActionWidget-activate-link"/>The <literal>"activate-link"</literal> signal EvPageActionWidget::activate-linkvoid user_function (EvPageActionWidget *evpageactionwidget, GObject *arg1, gpointer user_data) : Run Last / Action @@ -189,4 +189,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-page-action.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-page-action.xml --- evince-2.22.1.1/help/reference/xml/ev-page-action.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-page-action.xml 2008-05-28 23:28:14.000000000 +0200 @@ -138,10 +138,10 @@ Property Details -<anchor id="EvPageAction--model"/>The "<literal>model</literal>" property +<anchor id="EvPageAction--model"/>The <literal>"model"</literal> property EvPageAction:model "model" GtkTreeModel : Read / Write Current Model. -<anchor id="EvPageAction--page-cache"/>The "<literal>page-cache</literal>" property +<anchor id="EvPageAction--page-cache"/>The <literal>"page-cache"</literal> property EvPageAction:page-cache "page-cache" EvPageCache : Read / Write Current page cache. @@ -149,7 +149,7 @@ Signal Details -<anchor id="EvPageAction-activate-link"/>The "activate-link" signal +<anchor id="EvPageAction-activate-link"/>The <literal>"activate-link"</literal> signal EvPageAction::activate-linkvoid user_function (EvPageAction *evpageaction, GObject *arg1, gpointer user_data) : Run Last / Action @@ -170,4 +170,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-page-cache.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-page-cache.xml --- evince-2.22.1.1/help/reference/xml/ev-page-cache.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-page-cache.xml 2008-05-28 23:28:14.000000000 +0200 @@ -425,4 +425,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-password-view.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-password-view.xml --- evince-2.22.1.1/help/reference/xml/ev-password-view.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-password-view.xml 2008-05-28 23:28:14.000000000 +0200 @@ -93,4 +93,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-password.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-password.xml --- evince-2.22.1.1/help/reference/xml/ev-password.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-password.xml 2008-05-28 23:28:14.000000000 +0200 @@ -105,4 +105,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-pixbuf-cache.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-pixbuf-cache.xml --- evince-2.22.1.1/help/reference/xml/ev-pixbuf-cache.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-pixbuf-cache.xml 2008-05-28 23:28:14.000000000 +0200 @@ -356,4 +356,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-properties-dialog.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-properties-dialog.xml --- evince-2.22.1.1/help/reference/xml/ev-properties-dialog.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-properties-dialog.xml 2008-05-28 23:28:14.000000000 +0200 @@ -96,4 +96,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-properties-fonts.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-properties-fonts.xml --- evince-2.22.1.1/help/reference/xml/ev-properties-fonts.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-properties-fonts.xml 2008-05-28 23:28:14.000000000 +0200 @@ -146,4 +146,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-render-context.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-render-context.xml --- evince-2.22.1.1/help/reference/xml/ev-render-context.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-render-context.xml 2008-05-28 23:28:14.000000000 +0200 @@ -140,4 +140,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-selection.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-selection.xml --- evince-2.22.1.1/help/reference/xml/ev-selection.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-selection.xml 2008-05-28 23:28:14.000000000 +0200 @@ -249,4 +249,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-sidebar-attachments.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-sidebar-attachments.xml --- evince-2.22.1.1/help/reference/xml/ev-sidebar-attachments.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-sidebar-attachments.xml 2008-05-28 23:28:14.000000000 +0200 @@ -76,4 +76,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-sidebar-links.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-sidebar-links.xml --- evince-2.22.1.1/help/reference/xml/ev-sidebar-links.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-sidebar-links.xml 2008-05-28 23:28:14.000000000 +0200 @@ -76,4 +76,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-sidebar-page.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-sidebar-page.xml --- evince-2.22.1.1/help/reference/xml/ev-sidebar-page.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-sidebar-page.xml 2008-05-28 23:28:14.000000000 +0200 @@ -150,4 +150,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-sidebar-thumbnails.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-sidebar-thumbnails.xml --- evince-2.22.1.1/help/reference/xml/ev-sidebar-thumbnails.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-sidebar-thumbnails.xml 2008-05-28 23:28:14.000000000 +0200 @@ -94,4 +94,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-sidebar.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-sidebar.xml --- evince-2.22.1.1/help/reference/xml/ev-sidebar.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-sidebar.xml 2008-05-28 23:28:14.000000000 +0200 @@ -130,4 +130,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-stock-icons.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-stock-icons.xml --- evince-2.22.1.1/help/reference/xml/ev-stock-icons.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-stock-icons.xml 2008-05-28 23:28:14.000000000 +0200 @@ -117,4 +117,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-timeline.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-timeline.xml --- evince-2.22.1.1/help/reference/xml/ev-timeline.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-timeline.xml 2008-05-28 23:28:14.000000000 +0200 @@ -1,12 +1,12 @@ - + -EvTimeline +ev-timeline 3 EVINCE Library -EvTimeline +ev-timeline @@ -19,6 +19,13 @@ typedef EvTimeline; +typedef EvTimelineClass; +void start (EvTimeline *timeline); +void started (EvTimeline *timeline); +void finished (EvTimeline *timeline); +void paused (EvTimeline *timeline); +void frame (EvTimeline *timeline, + gdouble progress); EvTimeline* ev_timeline_new (guint duration); void ev_timeline_start (EvTimeline *timeline); void ev_timeline_pause (EvTimeline *timeline); @@ -63,6 +70,77 @@ +<anchor id="EvTimelineClass" role="typedef"/>EvTimelineClass +EvTimelineClasstypedef struct EvTimelineClass EvTimelineClass; + + + + + +<anchor id="start" role="function"/>start () +startvoid start (EvTimeline *timeline); + + + +timeline : + + + + + + +<anchor id="started" role="function"/>started () +startedvoid started (EvTimeline *timeline); + + + +timeline : + + + + + + +<anchor id="finished" role="function"/>finished () +finishedvoid finished (EvTimeline *timeline); + + + +timeline : + + + + + + +<anchor id="paused" role="function"/>paused () +pausedvoid paused (EvTimeline *timeline); + + + +timeline : + + + + + + +<anchor id="frame" role="function"/>frame () +framevoid frame (EvTimeline *timeline, + gdouble progress); + + + +timeline : + + +progress : + + + + + + <anchor id="ev-timeline-new" role="function"/>ev_timeline_new () ev_timeline_newEvTimeline* ev_timeline_new (guint duration); @@ -236,4 +314,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-tooltip.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-tooltip.xml --- evince-2.22.1.1/help/reference/xml/ev-tooltip.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-tooltip.xml 2008-05-28 23:28:14.000000000 +0200 @@ -148,4 +148,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-transition-animation.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-transition-animation.xml --- evince-2.22.1.1/help/reference/xml/ev-transition-animation.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-transition-animation.xml 2008-05-28 23:28:14.000000000 +0200 @@ -1,12 +1,12 @@ - + -EvTransitionAnimation +ev-transition-animation 3 EVINCE Library -EvTransitionAnimation +ev-transition-animation @@ -19,6 +19,7 @@ typedef EvTransitionAnimation; +typedef EvTransitionAnimationClass; EvTransitionAnimation* ev_transition_animation_new (EvTransitionEffect *effect); void ev_transition_animation_set_origin_surface (EvTransitionAnimation *animation, @@ -62,6 +63,13 @@ +<anchor id="EvTransitionAnimationClass" role="typedef"/>EvTransitionAnimationClass +EvTransitionAnimationClasstypedef struct EvTransitionAnimationClass EvTransitionAnimationClass; + + + + + <anchor id="ev-transition-animation-new" role="function"/>ev_transition_animation_new () ev_transition_animation_newEvTransitionAnimation* ev_transition_animation_new (EvTransitionEffect *effect); @@ -178,4 +186,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-transition-effect.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-transition-effect.xml --- evince-2.22.1.1/help/reference/xml/ev-transition-effect.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-transition-effect.xml 2008-05-28 23:28:14.000000000 +0200 @@ -1,12 +1,12 @@ - + -EvTransitionEffect +ev-transition-effect 3 EVINCE Library -EvTransitionEffect +ev-transition-effect @@ -25,6 +25,7 @@ enum EvTransitionEffectAlignment; enum EvTransitionEffectDirection; typedef EvTransitionEffect; +typedef EvTransitionEffectClass; GType ev_transition_effect_type_get_type (void); GType ev_transition_effect_alignment_get_type (void); @@ -123,6 +124,13 @@ +<anchor id="EvTransitionEffectClass" role="typedef"/>EvTransitionEffectClass +EvTransitionEffectClasstypedef struct EvTransitionEffectClass EvTransitionEffectClass; + + + + + <anchor id="ev-transition-effect-type-get-type" role="function"/>ev_transition_effect_type_get_type () ev_transition_effect_type_get_typeGType ev_transition_effect_type_get_type (void); @@ -185,4 +193,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-utils.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-utils.xml --- evince-2.22.1.1/help/reference/xml/ev-utils.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-utils.xml 2008-05-28 23:28:14.000000000 +0200 @@ -185,4 +185,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-view-accessible.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-view-accessible.xml --- evince-2.22.1.1/help/reference/xml/ev-view-accessible.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-view-accessible.xml 2008-05-28 23:28:14.000000000 +0200 @@ -56,4 +56,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-view-private.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-view-private.xml --- evince-2.22.1.1/help/reference/xml/ev-view-private.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-view-private.xml 2008-05-28 23:28:14.000000000 +0200 @@ -202,40 +202,40 @@ Property Details -<anchor id="EvView--continuous"/>The "<literal>continuous</literal>" property +<anchor id="EvView--continuous"/>The <literal>"continuous"</literal> property EvView:continuous "continuous" gboolean : Read / Write Continuous scrolling mode.Default value: TRUE -<anchor id="EvView--dual-page"/>The "<literal>dual-page</literal>" property +<anchor id="EvView--dual-page"/>The <literal>"dual-page"</literal> property EvView:dual-page "dual-page" gboolean : Read / Write Two pages visible at once.Default value: FALSE -<anchor id="EvView--find-status"/>The "<literal>find-status</literal>" property +<anchor id="EvView--find-status"/>The <literal>"find-status"</literal> property EvView:find-status "find-status" gchararray : Read The find status message.Default value: NULL -<anchor id="EvView--fullscreen"/>The "<literal>fullscreen</literal>" property +<anchor id="EvView--fullscreen"/>The <literal>"fullscreen"</literal> property EvView:fullscreen "fullscreen" gboolean : Read / Write Draw page in a fullscreen fashion.Default value: FALSE -<anchor id="EvView--has-selection"/>The "<literal>has-selection</literal>" property +<anchor id="EvView--has-selection"/>The <literal>"has-selection"</literal> property EvView:has-selection "has-selection" gboolean : Read The view has selections.Default value: FALSE -<anchor id="EvView--presentation"/>The "<literal>presentation</literal>" property +<anchor id="EvView--presentation"/>The <literal>"presentation"</literal> property EvView:presentation "presentation" gboolean : Read / Write Draw page in presentation mode.Default value: TRUE -<anchor id="EvView--rotation"/>The "<literal>rotation</literal>" property +<anchor id="EvView--rotation"/>The <literal>"rotation"</literal> property EvView:rotation "rotation" gdouble : Read / Write Rotation.Allowed values: [0,360] Default value: 0 -<anchor id="EvView--sizing-mode"/>The "<literal>sizing-mode</literal>" property +<anchor id="EvView--sizing-mode"/>The <literal>"sizing-mode"</literal> property EvView:sizing-mode "sizing-mode" EvSizingMode : Read / Write Sizing Mode.Default value: EV_SIZING_FIT_WIDTH -<anchor id="EvView--zoom"/>The "<literal>zoom</literal>" property +<anchor id="EvView--zoom"/>The <literal>"zoom"</literal> property EvView:zoom "zoom" gdouble : Read / Write Zoom factor.Allowed values: >= 0 Default value: 1 @@ -245,7 +245,7 @@ Signal Details -<anchor id="EvView-binding-activated"/>The "binding-activated" signal +<anchor id="EvView-binding-activated"/>The <literal>"binding-activated"</literal> signal EvView::binding-activatedvoid user_function (EvView *evview, GtkScrollType arg1, gboolean arg2, @@ -265,7 +265,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-external-link"/>The "external-link" signal +<anchor id="EvView-external-link"/>The <literal>"external-link"</literal> signal EvView::external-linkvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -281,7 +281,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-handle-link"/>The "handle-link" signal +<anchor id="EvView-handle-link"/>The <literal>"handle-link"</literal> signal EvView::handle-linkvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -297,7 +297,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-popup"/>The "popup" signal +<anchor id="EvView-popup"/>The <literal>"popup"</literal> signal EvView::popupvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -313,7 +313,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-zoom-invalid"/>The "zoom-invalid" signal +<anchor id="EvView-zoom-invalid"/>The <literal>"zoom-invalid"</literal> signal EvView::zoom-invalidvoid user_function (EvView *evview, gpointer user_data) : Run Last / Action @@ -330,4 +330,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-view.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-view.xml --- evince-2.22.1.1/help/reference/xml/ev-view.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-view.xml 2008-05-28 23:28:14.000000000 +0200 @@ -928,40 +928,40 @@ Property Details -<anchor id="EvView--continuous"/>The "<literal>continuous</literal>" property +<anchor id="EvView--continuous"/>The <literal>"continuous"</literal> property EvView:continuous "continuous" gboolean : Read / Write Continuous scrolling mode.Default value: TRUE -<anchor id="EvView--dual-page"/>The "<literal>dual-page</literal>" property +<anchor id="EvView--dual-page"/>The <literal>"dual-page"</literal> property EvView:dual-page "dual-page" gboolean : Read / Write Two pages visible at once.Default value: FALSE -<anchor id="EvView--find-status"/>The "<literal>find-status</literal>" property +<anchor id="EvView--find-status"/>The <literal>"find-status"</literal> property EvView:find-status "find-status" gchararray : Read The find status message.Default value: NULL -<anchor id="EvView--fullscreen"/>The "<literal>fullscreen</literal>" property +<anchor id="EvView--fullscreen"/>The <literal>"fullscreen"</literal> property EvView:fullscreen "fullscreen" gboolean : Read / Write Draw page in a fullscreen fashion.Default value: FALSE -<anchor id="EvView--has-selection"/>The "<literal>has-selection</literal>" property +<anchor id="EvView--has-selection"/>The <literal>"has-selection"</literal> property EvView:has-selection "has-selection" gboolean : Read The view has selections.Default value: FALSE -<anchor id="EvView--presentation"/>The "<literal>presentation</literal>" property +<anchor id="EvView--presentation"/>The <literal>"presentation"</literal> property EvView:presentation "presentation" gboolean : Read / Write Draw page in presentation mode.Default value: TRUE -<anchor id="EvView--rotation"/>The "<literal>rotation</literal>" property +<anchor id="EvView--rotation"/>The <literal>"rotation"</literal> property EvView:rotation "rotation" gdouble : Read / Write Rotation.Allowed values: [0,360] Default value: 0 -<anchor id="EvView--sizing-mode"/>The "<literal>sizing-mode</literal>" property +<anchor id="EvView--sizing-mode"/>The <literal>"sizing-mode"</literal> property EvView:sizing-mode "sizing-mode" EvSizingMode : Read / Write Sizing Mode.Default value: EV_SIZING_FIT_WIDTH -<anchor id="EvView--zoom"/>The "<literal>zoom</literal>" property +<anchor id="EvView--zoom"/>The <literal>"zoom"</literal> property EvView:zoom "zoom" gdouble : Read / Write Zoom factor.Allowed values: >= 0 Default value: 1 @@ -971,7 +971,7 @@ Signal Details -<anchor id="EvView-binding-activated"/>The "binding-activated" signal +<anchor id="EvView-binding-activated"/>The <literal>"binding-activated"</literal> signal EvView::binding-activatedvoid user_function (EvView *evview, GtkScrollType arg1, gboolean arg2, @@ -991,7 +991,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-external-link"/>The "external-link" signal +<anchor id="EvView-external-link"/>The <literal>"external-link"</literal> signal EvView::external-linkvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -1007,7 +1007,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-handle-link"/>The "handle-link" signal +<anchor id="EvView-handle-link"/>The <literal>"handle-link"</literal> signal EvView::handle-linkvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -1023,7 +1023,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-popup"/>The "popup" signal +<anchor id="EvView-popup"/>The <literal>"popup"</literal> signal EvView::popupvoid user_function (EvView *evview, GObject *arg1, gpointer user_data) : Run Last / Action @@ -1039,7 +1039,7 @@ user_data : user data set when the signal handler was connected. -<anchor id="EvView-zoom-invalid"/>The "zoom-invalid" signal +<anchor id="EvView-zoom-invalid"/>The <literal>"zoom-invalid"</literal> signal EvView::zoom-invalidvoid user_function (EvView *evview, gpointer user_data) : Run Last / Action @@ -1056,4 +1056,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-window-title.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-window-title.xml --- evince-2.22.1.1/help/reference/xml/ev-window-title.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-window-title.xml 2008-05-28 23:28:14.000000000 +0200 @@ -145,4 +145,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/help/reference/xml/ev-window.xml /tmp/nPPHdISZIK/evince-2.22.2/help/reference/xml/ev-window.xml --- evince-2.22.1.1/help/reference/xml/ev-window.xml 2008-04-08 22:09:48.000000000 +0200 +++ evince-2.22.2/help/reference/xml/ev-window.xml 2008-05-28 23:28:14.000000000 +0200 @@ -227,4 +227,6 @@ + + diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/intltool-extract.in /tmp/nPPHdISZIK/evince-2.22.2/intltool-extract.in --- evince-2.22.1.1/intltool-extract.in 2008-04-08 21:18:31.000000000 +0200 +++ evince-2.22.2/intltool-extract.in 2008-05-28 23:20:28.000000000 +0200 @@ -32,7 +32,7 @@ ## Release information my $PROGRAM = "intltool-extract"; my $PACKAGE = "intltool"; -my $VERSION = "0.37.1"; +my $VERSION = "0.36.2"; ## Loaded modules use strict; @@ -161,8 +161,7 @@ --type=TYPE Specify the file type of FILENAME. Currently supports: "gettext/glade", "gettext/ini", "gettext/keys" "gettext/rfc822deb", "gettext/schemas", - "gettext/scheme", "gettext/xml", "gettext/quoted", - "gettext/quotedxml" + "gettext/scheme", "gettext/xml", "gettext/quoted" -l, --local Writes output into current working directory (conflicts with --update) --update Writes output into the same directory the source file @@ -219,7 +218,6 @@ &type_schemas if $gettext_type eq "schemas"; &type_rfc822deb if $gettext_type eq "rfc822deb"; &type_quoted if $gettext_type eq "quoted"; - &type_quotedxml if $gettext_type eq "quotedxml"; } sub entity_decode_minimal @@ -733,18 +731,6 @@ } } -sub type_quotedxml { - while ($input =~ /\"(([^\"]|\\\")*[^\\\"])\"/g) { - my $message = $1; - my $before = $`; - $message =~ s/\\\"/\"/g; - $message = entity_decode($message); - $before =~ s/[^\n]//g; - $messages{$message} = []; - $loc{$message} = length ($before) + 2; - } -} - sub type_glade { ### For translatable Glade XML files ### diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/intltool-merge.in /tmp/nPPHdISZIK/evince-2.22.2/intltool-merge.in --- evince-2.22.1.1/intltool-merge.in 2008-04-08 21:18:32.000000000 +0200 +++ evince-2.22.2/intltool-merge.in 2008-05-28 23:20:28.000000000 +0200 @@ -35,7 +35,7 @@ ## Release information my $PROGRAM = "intltool-merge"; my $PACKAGE = "intltool"; -my $VERSION = "0.37.1"; +my $VERSION = "0.36.2"; ## Loaded modules use strict; @@ -61,7 +61,6 @@ my $SCHEMAS_STYLE_ARG = 0; my $RFC822DEB_STYLE_ARG = 0; my $QUOTED_STYLE_ARG = 0; -my $QUOTEDXML_STYLE_ARG = 0; my $QUIET_ARG = 0; my $PASS_THROUGH_ARG = 0; my $UTF8_ARG = 0; @@ -82,7 +81,6 @@ "schemas-style|s" => \$SCHEMAS_STYLE_ARG, "rfc822deb-style|r" => \$RFC822DEB_STYLE_ARG, "quoted-style" => \$QUOTED_STYLE_ARG, - "quotedxml-style" => \$QUOTEDXML_STYLE_ARG, "pass-through|p" => \$PASS_THROUGH_ARG, "utf8|u" => \$UTF8_ARG, "multiple-output|m" => \$MULTIPLE_OUTPUT, @@ -150,7 +148,7 @@ &utf8_sanity_check; &preparation; &print_message; - &keys_merge_translations; + &keys_merge_translations; &finalize; } elsif ($DESKTOP_STYLE_ARG && @ARGV > 2) @@ -176,12 +174,12 @@ &rfc822deb_merge_translations; &finalize; } -elsif (($QUOTED_STYLE_ARG || $QUOTEDXML_STYLE_ARG) && @ARGV > 2) +elsif ($QUOTED_STYLE_ARG && @ARGV > 2) { &utf8_sanity_check; &preparation; &print_message; - "ed_merge_translations($QUOTEDXML_STYLE_ARG); + "ed_merge_translations; &finalize; } else @@ -221,7 +219,6 @@ -s, --schemas-style includes translations in the schemas style -r, --rfc822deb-style includes translations in the RFC822 style --quoted-style includes translations in the quoted string style - --quotedxml-style includes translations in the quoted xml string style -x, --xml-style includes translations in the standard xml style Other options: @@ -295,9 +292,10 @@ { next if /^#/; - for my $lang (split) + if (/([-a-zA-Z_@.]+)\n/) { - chomp ($lang); + my $lang = $1; + my $po_file = $PO_DIR . "/" . $lang . ".po"; if (-e $po_file) { $po_files_by_lang{$lang} = $po_file; @@ -578,7 +576,6 @@ return "&" if $_ == 38; return "'" if $_ == 39; return "<" if $_ == 60; - return ">" if $_ == 62; return chr $_; } @@ -1079,74 +1076,43 @@ close OUTPUT; print "CREATED $lang/$OUTFILE\n" unless $QUIET_ARG; } - if ( ! -d "C" ) { - mkdir "C" or -d "C" or die "Cannot create subdirectory C: $!\n"; - } - open OUTPUT, ">C/$OUTFILE" or die "Cannot open C/$OUTFILE: $!\n"; - binmode (OUTPUT) if $^O eq 'MSWin32'; - my $tree = readXml($FILE); - print_header($FILE, \*OUTPUT); - parseTree(\*OUTPUT, $tree); - close OUTPUT; - print "CREATED C/$OUTFILE\n" unless $QUIET_ARG; - } else { - open OUTPUT, ">$OUTFILE" or die "Cannot open $OUTFILE: $!\n"; - binmode (OUTPUT) if $^O eq 'MSWin32'; - my $tree = readXml($FILE); - print_header($FILE, \*OUTPUT); - parseTree(\*OUTPUT, $tree); - close OUTPUT; - print "CREATED $OUTFILE\n" unless $QUIET_ARG; - } + } + open OUTPUT, ">$OUTFILE" or die "Cannot open $OUTFILE: $!\n"; + binmode (OUTPUT) if $^O eq 'MSWin32'; + my $tree = readXml($FILE); + print_header($FILE, \*OUTPUT); + parseTree(\*OUTPUT, $tree); + close OUTPUT; + print "CREATED $OUTFILE\n" unless $QUIET_ARG; } -sub keys_merge_translation +sub keys_merge_translations { - my ($lang) = @_; - - if ( ! -d $lang && $MULTIPLE_OUTPUT) - { - mkdir $lang or -d $lang or die "Cannot create subdirectory $lang: $!\n"; - } - - open INPUT, "<${FILE}" or die "Cannot open ${FILE}: $!\n"; - open OUTPUT, ">$lang/$OUTFILE" or die "Cannot open $lang/$OUTFILE: $!\n"; + open INPUT, "<${FILE}" or die; + open OUTPUT, ">${OUTFILE}" or die; binmode (OUTPUT) if $^O eq 'MSWin32'; - while () + while () { - if (s/^(\s*)_(\w+=(.*))/$1$2/) + if (s/^(\s*)_(\w+=(.*))/$1$2/) { - my $string = $3; - - if (!$MULTIPLE_OUTPUT) - { - print OUTPUT; + my $string = $3; - my $non_translated_line = $_; + print OUTPUT; - for my $lang (sort keys %po_files_by_lang) - { - my $translation = $translations{$lang, $string}; - next if !$translation; + my $non_translated_line = $_; - $_ = $non_translated_line; - s/(\w+)=.*/[$lang]$1=$translation/; - print OUTPUT; - } - } - else + for my $lang (sort keys %po_files_by_lang) { - my $non_translated_line = $_; - my $translation = $translations{$lang, $string}; - $translation = $string if !$translation; + my $translation = $translations{$lang, $string}; + next if !$translation; $_ = $non_translated_line; - s/(\w+)=.*/$1=$translation/; + s/(\w+)=.*/[$lang]$1=$translation/; print OUTPUT; } - } - else + } + else { print OUTPUT; } @@ -1154,24 +1120,6 @@ close OUTPUT; close INPUT; - - print "CREATED $lang/$OUTFILE\n" unless $QUIET_ARG; -} - -sub keys_merge_translations -{ - if ($MULTIPLE_OUTPUT) - { - for my $lang (sort keys %po_files_by_lang) - { - keys_merge_translation ($lang); - } - keys_merge_translation ("C"); - } - else - { - keys_merge_translation ("."); - } } sub desktop_merge_translations @@ -1467,22 +1415,19 @@ sub quoted_translation { - my ($xml_mode, $lang, $string) = @_; + my ($lang, $string) = @_; - $string = entity_decode($string) if $xml_mode; $string =~ s/\\\"/\"/g; my $translation = $translations{$lang, $string}; $translation = $string if !$translation; - $translation = entity_encode($translation) if $xml_mode; + $translation =~ s/\"/\\\"/g; return $translation } sub quoted_merge_translations { - my ($xml_mode) = @_; - if (!$MULTIPLE_OUTPUT) { print "Quoted only supports Multiple Output.\n"; exit(1); @@ -1497,7 +1442,7 @@ binmode (OUTPUT) if $^O eq 'MSWin32'; while () { - s/\"(([^\"]|\\\")*[^\\\"])\"/"\"" . "ed_translation($xml_mode, $lang, $1) . "\""/ge; + s/\"(([^\"]|\\\")*[^\\\"])\"/"\"" . "ed_translation($lang, $1) . "\""/ge; print OUTPUT; } close OUTPUT; diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/intltool-update.in /tmp/nPPHdISZIK/evince-2.22.2/intltool-update.in --- evince-2.22.1.1/intltool-update.in 2008-04-08 21:18:32.000000000 +0200 +++ evince-2.22.2/intltool-update.in 2008-05-28 23:20:28.000000000 +0200 @@ -30,7 +30,7 @@ ## Release information my $PROGRAM = "intltool-update"; -my $VERSION = "0.37.1"; +my $VERSION = "0.36.2"; my $PACKAGE = "intltool"; ## Loaded modules @@ -334,7 +334,7 @@ push @buf_i18n_xml, "$File::Find::name" if /\.($xml_support)$/; push @buf_i18n_ini, "$File::Find::name" if /\.($ini_support)$/; push @buf_i18n_xml_unmarked, "$File::Find::name" if /\.(schemas(\.in)+)$/; - }, "$SRCDIR/.." if "$SRCDIR" ne "."; + }, "$SRCDIR/.."; open POTFILES, $POTFILES_in or die "$PROGRAM: there's no POTFILES.in!\n"; @buf_potfiles = grep !/^(#|\s*$)/, ; @@ -434,8 +434,8 @@ last; } - ## C_ N_ Q_ and _ are the macros defined in gi8n.h - if (/[CNQ]?_ *\(QUOTEDTEXT/) + ## N_ Q_ and _ are the three macros defined in gi8n.h + if (/[NQ]?_ *\(QUOTEDTEXT/) { if (defined isNotValidMissing (unpack("x3 A*", $file))) { ## Remove the first 3 chars and add newline @@ -777,7 +777,7 @@ my $XGETTEXT_KEYWORDS = &FindPOTKeywords; push @xgettext_argument, $XGETTEXT_KEYWORDS; my $MSGID_BUGS_ADDRESS = &FindMakevarsBugAddress; - push @xgettext_argument, "--msgid-bugs-address\=\"$MSGID_BUGS_ADDRESS\"" if $MSGID_BUGS_ADDRESS; + push @xgettext_argument, "--msgid-bugs-address\=$MSGID_BUGS_ADDRESS" if $MSGID_BUGS_ADDRESS; push @xgettext_argument, "--from-code\=$encoding" if ($gettext_support_nonascii); push @xgettext_argument, $XGETTEXT_ARGS if $XGETTEXT_ARGS; my $xgettext_command = join ' ', @xgettext_argument; @@ -1118,8 +1118,6 @@ close IN; } - # unwrap lines split with a trailing \ - $make_source =~ s/\\ $ \n/ /mxg; $keywords = $1 if $make_source =~ /^$varname[ ]*=\[?([^\n\]]+)/m; return $keywords; diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/libdocument/ev-document-factory.c /tmp/nPPHdISZIK/evince-2.22.2/libdocument/ev-document-factory.c --- evince-2.22.1.1/libdocument/ev-document-factory.c 2008-04-07 23:05:36.000000000 +0200 +++ evince-2.22.2/libdocument/ev-document-factory.c 2008-05-28 23:14:02.000000000 +0200 @@ -180,13 +180,11 @@ return NULL; } + document = ev_backends_manager_get_document (mime_type); + #ifdef ENABLE_PIXBUF - if (mime_type_supported_by_gdk_pixbuf (mime_type)) + if (!document && mime_type_supported_by_gdk_pixbuf (mime_type)) document = ev_backends_manager_get_document ("image/*"); - else - document = ev_backends_manager_get_document (mime_type); -#else - document = ev_backends_manager_get_document (mime_type); #endif /* ENABLE_PIXBUF */ if (document == NULL) { diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/libdocument/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/libdocument/Makefile.in --- evince-2.22.1.1/libdocument/Makefile.in 2008-04-08 21:19:09.000000000 +0200 +++ evince-2.22.2/libdocument/Makefile.in 2008-05-28 23:20:42.000000000 +0200 @@ -153,6 +153,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -201,7 +202,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/Makefile.in --- evince-2.22.1.1/Makefile.in 2008-04-08 21:19:10.000000000 +0200 +++ evince-2.22.2/Makefile.in 2008-05-28 23:20:43.000000000 +0200 @@ -137,6 +137,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -185,7 +186,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/NEWS /tmp/nPPHdISZIK/evince-2.22.2/NEWS --- evince-2.22.1.1/NEWS 2008-04-08 21:02:54.000000000 +0200 +++ evince-2.22.2/NEWS 2008-05-28 23:18:47.000000000 +0200 @@ -1,3 +1,17 @@ +=============== +Evince 2.22.2 +=============== + +Bug fixes: + + * Fixes warning with gtk-2.10 (#533323, Matthias Drochner) + * Fixes crash in impress backend (#530852, Hans Petter Jansson) + * Handle multipage tiff properly (#520290, Carlos Garcia Campos) + +Translation updates: + + * Ivar Smolin (et) + ================ Evince 2.22.1.1 ================ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/po/ChangeLog /tmp/nPPHdISZIK/evince-2.22.2/po/ChangeLog --- evince-2.22.1.1/po/ChangeLog 2008-04-07 23:05:40.000000000 +0200 +++ evince-2.22.2/po/ChangeLog 2008-05-28 23:14:06.000000000 +0200 @@ -1,3 +1,7 @@ +2008-04-20 Priit Laes + + * et.po: Translation updated by Ivar Smolin + 2008-03-29 Alexander Shopov * bg.po: Updated Bulgarian translation by diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/po/et.po /tmp/nPPHdISZIK/evince-2.22.2/po/et.po --- evince-2.22.1.1/po/et.po 2008-04-07 23:05:41.000000000 +0200 +++ evince-2.22.2/po/et.po 2008-05-28 23:14:06.000000000 +0200 @@ -11,7 +11,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Evince HEAD\n" +"Project-Id-Version: Evince 2.22\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-02-10 13:27+0000\n" "PO-Revision-Date: 2008-03-21 18:15+0200\n" diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/po/Makefile.in.in /tmp/nPPHdISZIK/evince-2.22.2/po/Makefile.in.in --- evince-2.22.1.1/po/Makefile.in.in 2008-04-08 21:18:32.000000000 +0200 +++ evince-2.22.2/po/Makefile.in.in 2008-05-28 23:20:28.000000000 +0200 @@ -1,10 +1,10 @@ # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper -# Copyright (C) 2004-2008 Rodney Dawes # -# This file may be copied and used freely without restrictions. It may -# be used in projects which are not available under a GNU Public License, +# This file file be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License # but which still want to provide support for the GNU gettext functionality. +# Please note that the actual code is *not* freely available. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ @@ -12,7 +12,7 @@ # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # -# - Modified by Rodney Dawes for use with intltool +# - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/properties/ev-properties-view.c /tmp/nPPHdISZIK/evince-2.22.2/properties/ev-properties-view.c --- evince-2.22.1.1/properties/ev-properties-view.c 2008-04-07 23:05:35.000000000 +0200 +++ evince-2.22.2/properties/ev-properties-view.c 2008-05-28 23:14:01.000000000 +0200 @@ -216,10 +216,12 @@ return GTK_UNIT_MM; /* metric */ #endif + if (strcmp (e, "default:mm") == 0) + return GTK_UNIT_MM; if (strcmp (e, "default:inch") == 0) return GTK_UNIT_INCH; - else if (strcmp (e, "default:mm") == 0) - g_warning ("Whoever translated default:mm did so wrongly.\n"); + + g_warning ("Whoever translated default:mm did so wrongly.\n"); return GTK_UNIT_MM; } diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/properties/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/properties/Makefile.in --- evince-2.22.1.1/properties/Makefile.in 2008-04-08 21:19:09.000000000 +0200 +++ evince-2.22.2/properties/Makefile.in 2008-05-28 23:20:43.000000000 +0200 @@ -151,6 +151,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -199,7 +200,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/shell/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/shell/Makefile.in --- evince-2.22.1.1/shell/Makefile.in 2008-04-08 21:19:09.000000000 +0200 +++ evince-2.22.2/shell/Makefile.in 2008-05-28 23:20:43.000000000 +0200 @@ -155,6 +155,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -203,7 +204,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/test/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/test/Makefile.in --- evince-2.22.1.1/test/Makefile.in 2008-04-08 21:19:10.000000000 +0200 +++ evince-2.22.2/test/Makefile.in 2008-05-28 23:20:43.000000000 +0200 @@ -109,6 +109,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -157,7 +158,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@ diff -Nru /tmp/Hdgit0k6nI/evince-2.22.1.1/thumbnailer/Makefile.in /tmp/nPPHdISZIK/evince-2.22.2/thumbnailer/Makefile.in --- evince-2.22.1.1/thumbnailer/Makefile.in 2008-04-08 21:19:10.000000000 +0200 +++ evince-2.22.2/thumbnailer/Makefile.in 2008-05-28 23:20:43.000000000 +0200 @@ -147,6 +147,7 @@ GNOME_CFLAGS = @GNOME_CFLAGS@ GNOME_LIBS = @GNOME_LIBS@ GREP = @GREP@ +GTKDOC_CHECK = @GTKDOC_CHECK@ HELP_DIR = @HELP_DIR@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ @@ -195,7 +196,6 @@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ -MSGMERGE = @MSGMERGE@ NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@ NAUTILUS_EXTENSION_DIR = @NAUTILUS_EXTENSION_DIR@ NAUTILUS_LIBS = @NAUTILUS_LIBS@