]> www.fi.muni.cz Git - evince.git/commitdiff
Override PDF restrictions by default. Fixes bug #382700.
authorWouter Bolsterlee <wbolster@svn.gnome.org>
Thu, 24 Jan 2008 15:02:27 +0000 (15:02 +0000)
committerWouter Bolsterlee <wbolster@src.gnome.org>
Thu, 24 Jan 2008 15:02:27 +0000 (15:02 +0000)
2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>

* NEWS:
* data/evince.schemas.in:
* shell/ev-window.c: (ev_window_setup_action_sensitivity):

Override PDF restrictions by default. Fixes bug #382700.

svn path=/trunk/; revision=2851

ChangeLog
NEWS
data/evince.schemas.in
shell/ev-window.c

index d257b6c2359c42feea832b4d00205c754e494279..c97fdb4dc8103e1f5623ac0f18885950deab3860 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
+
+       * NEWS:
+       * data/evince.schemas.in:
+       * shell/ev-window.c: (ev_window_setup_action_sensitivity):
+
+       Override PDF restrictions by default. Fixes bug #382700.
+
 2008-01-24  Wouter Bolsterlee  <wbolster@svn.gnome.org>
 
        * NEWS: Updated for upcoming release
diff --git a/NEWS b/NEWS
index 880c67d159116a10aef08f04f8299f0729fcbaba..c2ae1290d1c79db73a2528eb052bb032568e2522 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,12 @@ IMPORTANT NOTICE: These release notes were updated by Wouter Bolsterlee on
 20080124. This NEWS file should be updated again before a release (including
 the version number right above this message)!
 
+Important notice for distributors:
+
+    * This release overrides document permissions by default. See
+      http://bugzilla.gnome.org/show_bug.cgi?id=382700 for more information
+      about this.
+
 New features and UI improvements:
 
     * Scroll pages in page entry with mouse wheel (#324122, David Turner)
@@ -13,6 +19,7 @@ New features and UI improvements:
     * New plugin system for backends (#351348, Carlos Garcia Campos)
     * Allow saving images (#500209, Carl-Anton Ingmarsson, Nickolay V. Shmyrev)
     * Add support for page transitions (Carlos Garnacho)
+    * Override document restrictions by default (#382700, Wouter Bolsterlee)
 
 Bug fixes:
 
@@ -22,7 +29,7 @@ Bug fixes:
       Carlos Garcia Campos)
     * Use libspectre, if available, for the ps backend. (#317106, #499787,
       #501235, #421879, #445797, #443859, #486547, #386005, #507705, Carlos Garcia Campos)
-       * Put RTL marker in recent file list (#509076, Djihed Afifi)
+    * Put RTL marker in recent file list (#509076, Djihed Afifi)
     * Put Nautilus extension in right place (#505359, Matthias Clasen, Brian
       Pepple, Damien Carbery, Wouter Bolsterlee)
     * Avoid filename quoting issues (#502500, Tom Parker)
index 97d1976d2044479a731701b07f447c48334eee68..cbad4224247ae4c202528caacf8716fd6c2b4d74 100644 (file)
@@ -5,7 +5,7 @@
       <applyto>/apps/evince/override_restrictions</applyto>
       <owner>evince</owner>
       <type>bool</type>
-      <default>false</default>
+      <default>true</default>
       <locale name="C">
         <short>Override document restrictions</short>
         <long>Override document restrictions, like restriction to copy or to print.</long>
index 79dff08b97c30cec70e01d00e2811a816802b548..2fbccd3842b0ca7de1aebc2f7238589b010faf99 100644 (file)
@@ -311,7 +311,7 @@ ev_window_setup_action_sensitivity (EvWindow *ev_window)
        gboolean ok_to_print = TRUE;
        gboolean ok_to_copy = TRUE;
        gboolean has_properties = TRUE;
-       gboolean override_restrictions = FALSE;
+       gboolean override_restrictions = TRUE;
        gboolean can_get_text = FALSE;
        gboolean has_pages = FALSE;
        gboolean can_find = FALSE;