home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Support / gs704w32.exe / gs7.04 / lib / unprot.ps < prev    next >
Text File  |  2002-01-31  |  2KB  |  70 lines

  1. %    Copyright (C) 1991, 1992, 1998 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of AFPL Ghostscript.
  3. % AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  4. % distributor accepts any responsibility for the consequences of using it, or
  5. % for whether it serves any particular purpose or works at all, unless he or
  6. % she says so in writing.  Refer to the Aladdin Free Public License (the
  7. % "License") for full details.
  8. % Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. % in a plain ASCII text file named PUBLIC.  The License grants you the right
  10. % to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. % conditions described in the License.  Among other things, the License
  12. % requires that the copyright notice and this notice be preserved on all
  13. % copies.
  14.  
  15. % $Id: unprot.ps,v 1.2 2000/09/19 18:29:11 lpd Exp $
  16. % Disable all access checks.  This is useful for printing out
  17. % eexec-encrypted Type 1 fonts, and similar purposes.
  18.  
  19. systemdict wcheck
  20.  { /protdict systemdict def
  21.  }
  22.  { (Please restart Ghostscript with the -dWRITESYSTEMDICT switch.\n) print
  23.    (Some access checks will remain active if you do not do this.\n) print
  24.    flush
  25.    /protdict userdict def
  26.  }
  27. ifelse
  28.  
  29. % The procedures we're about to define will go in systemdict,
  30. % so they must be allocated in global VM.
  31.  
  32. .currentglobal true .setglobal
  33.  
  34. protdict begin
  35.    /readonly. /readonly load def
  36.    /executeonly. /executeonly load def
  37.    /noaccess. /noaccess load def
  38.    /readonly { } odef
  39.    /readonly.. /readonly load def
  40.    /executeonly { } odef
  41.    /executeonly.. /executeonly load def
  42.    /noaccess { } odef
  43.    /noaccess.. /noaccess load def
  44. end
  45.  
  46. % Disable the access checks.
  47.  
  48. /unprot
  49.  { protdict begin
  50.    /readonly /readonly.. load def
  51.    /executeonly /executeonly.. load def
  52.    /noaccess /noaccess.. load def
  53.    end
  54.  } bind def
  55.  
  56. % Re-enable the access checks.
  57.  
  58. /reprot
  59.  { protdict begin
  60.    /readonly /readonly. load def
  61.    /executeonly /executeonly. load def
  62.    /noaccess /noaccess. load def
  63.    end
  64.  } bind def
  65.  
  66. .setglobal
  67.