home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / Patches / poweroff-3.1-patches.README < prev    next >
Encoding:
Text File  |  1993-08-16  |  4.5 KB  |  132 lines

  1. These patches apply only to the NeXTSTEP 3.1 distribution for NeXT hardware.
  2.  
  3. Patches the loginwindow.app (of NeXTSTEP 3.1) to
  4.   - remove the restart and power buttons from the login window
  5.  
  6. Patches the Workspace.app (of NeXTSTEP 3.1) to
  7.   - (effectively) ignore the power key
  8.   - remove the "Power Off" button from the Log Out alert panel
  9.       (a panel not usually seen, I think)
  10.  
  11. Patches the WM.app (of NeXTSTEP 3.1) to
  12.   - remove the "Power Off" button from the Log Out alert panel
  13.  
  14. The specific patches are described in greater detail below.
  15.  
  16. The effects listed above are produced regardless of the PowerOffDisabled
  17. default's setting.  This patch only causes the power key to be ignored
  18. while the Workspace.app/WM.app is running; the power key is still "active"
  19. at the login window.  To disable the power key at the login window, set
  20. the loginwindow's PowerOffDisabled default from a shell (as root):
  21.    dwrite loginwindow PowerOffDisabled YES
  22.  
  23. This program must be run as root to work correctly.  You should have backups
  24. of the affected files before running this program, just in case.  Log out and
  25. log in as user 'exit' at the login window to have these changes "take affect".
  26.  
  27. THIS PROGRAM IS DISTRIBUTED WITHOUT WARRANTY, EXPRESS OR IMPLIED.
  28.  
  29. Christopher J. Kane (kane@cs.purdue.edu)
  30. Released into public domain; August 15, 1993.
  31.  
  32.  
  33. *** The Patch to loginwindow.app/loginwindow in Detail ***
  34.  
  35. The buttons on the login window are instances of the LoginButton class.
  36. This patch works by patching the loginwindow.app's LoginButton class's
  37. instance method initWithImage:altImage:andString: to be equivalent to
  38.  
  39. - initWithImage:image altImage:altImage andString:(char *)aString
  40. {
  41.   return nil;
  42. }
  43.  
  44.         Old instructions            New instructions
  45. 000072b0    linkw    a6,#0xffe0            linkw    a6,#0x0
  46. 000072b4    fmovemx    fp2,sp@-            clrl    d0
  47. 000072b6                        unlk    a6
  48. 000072b8    moveml    d2/d3/d4/d5/a2/a3/a4,sp@-    rts
  49.  
  50.  
  51. *** The Patch to Workspace.app/Workspace in Detail ***
  52.  
  53. The patch to Workspace.app involves three routines:
  54.  
  55.   1) -reboot
  56.         The -reboot method displays an alert panel:
  57.       Title: Reboot
  58.       Message: Do you really want to reboot?
  59.       Buttons: Reboot, Cancel
  60.     This patch prevents the panel from being displayed and makes the
  61.     routine behave as if the user had pressed the Cancel button.  It
  62.     replaces the jump to the "display the alert panel" subroutine with
  63.     an instruction to set the "value-return" register to the value
  64.     returned by the subroutine when the user presses Cancel.
  65.   
  66.         Old instruction        New instruction
  67. 0001be64    jsr    a2@        clrl    d0
  68.  
  69.   2) -powerOff
  70.         The -powerOff method displays an alert panel:
  71.       Title: Power
  72.       Message: Do you really want to turn off the computer?
  73.       Buttons: Turn It Off, Cancel
  74.     This patch prevents the panel from being displayed and makes the
  75.     routine behave as if the user had pressed the Cancel button.  It
  76.     replaces the jump to the "display the alert panel" subroutine with
  77.     an instruction to set the "value-return" register to the value
  78.     returned by the subroutine when the user presses Cancel.
  79.   
  80.         Old instruction        New instruction
  81. 0001ce4e    jsr    a2@        clrl    d0
  82.  
  83.   3) -terminate
  84.         The -terminate method displays an alert panel:
  85.       Title: Log Out
  86.       Message: Do you really want to log out?
  87.       Buttons: Log Out, Power Off, Cancel
  88.         This patch removes the Power Off button from the panel, by passing
  89.     NULL as the third button's title (originally "Cancel") and by
  90.     passing "Cancel" as the second button's title (originally "Power Off").
  91.     It also eliminates the former Power Off button's action, so when
  92.     the new second button (Cancel) is clicked, the previous third button's
  93.     action (Cancel) is performed.
  94.  
  95.         Old instructions    New instructions
  96. 0001c0da    pea    0x1f8aa:l    nop
  97. 0001c0dc                nop
  98. 0001c0de                clrl    sp@-
  99. 0001c0e0    pea    0x21463:l    pea    0x1f8aa:l
  100.  
  101. 0001c11e    tstl    d0        nop
  102. 0001c120    beq    0x1c122:b    nop
  103.  
  104.  
  105. *** The Patch to WM.app/WM in Detail ***
  106.  
  107. The patch to WM.app involves only one routine, -terminate:.  This
  108. patch removes the Power Off button from the panel.  It works in the
  109. same way as the patch to -terminate in the Workspace.app patches.
  110.  
  111.         Old instructions    New instructions
  112. 0005729c    pea    0x5d22a:l    clrl    sp@-
  113. 0005729e                pea    0x5d22a:l
  114. 000572a2    pea    0x5d1f7:l
  115. 000572a4                pea    0x5d1f7:l
  116. 000572a8    lea    _WMSTR:l,a2
  117. 000572aa                   lea    _WMSTR:l,a2
  118. 000572ae    jsr    a2@
  119. 000572b0    addqw    #0x4,sp        jsr    a2@
  120. 000572b2    movel    d0,sp@        addqw    #0x4,sp
  121. 000572b4    pea    0x5e947:l    movel    d0,sp@
  122. 000572b8                nop
  123. 000572ba    pea    0x5d1f7:l    nop
  124. 000572bc                nop
  125. 000572be                nop
  126. 000572c0    jsr    a2@        nop
  127. 000572c2    addqw    #0x4,sp        nop
  128. 000572c4    movel    d0,sp@        nop
  129.  
  130. 000573b2    tstl    a2        bra    0x573d4:b
  131.  
  132.