home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / GhostScript / !GhostScr / 6_01 / lib / unprot.ps < prev    next >
Text File  |  2000-03-09  |  2KB  |  70 lines

  1. %    Copyright (C) 1991, 1992, 1998 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % $Id: unprot.ps,v 1.1 2000/03/09 08:40:40 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.