/usr/share/saods9/src/help.tcl is in saods9-data 7.2+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | # Copyright (C) 1999-2012
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc HelpDef {} {
global help
global ds9
set help(refman) "$ds9(doc)/ref/index.html"
set help(command) "$ds9(doc)/ref/command.html"
set help(userman) "$ds9(doc)/user/index.html"
set help(keyboard) "$ds9(doc)/ref/keyboard.html"
set help(faq) "$ds9(doc)/faq.html"
set help(new) "$ds9(doc)/new.html"
set help(release) "$ds9(doc)/release/r7.0.html"
set help(helpdesk) "$ds9(doc)/helpdesk.html"
set help(story) "$ds9(doc)/story.html"
set help(ack) "$ds9(doc)/acknowledgment.html"
set help(vo) "$ds9(doc)/ref/vo.html"
set help(about) "SAOImage DS9\nVersion $ds9(version)\n\nAuthors:\nWilliam Joye (Smithsonian Astrophysical Observatory)\nEric Mandel (Smithsonian Astrophysical Observatory)\nSteve Murray (Johns Hopkins University)\nJohn Roll (Smithsonian Astrophysical Observatory)\n\nTranslations:\nHans-Jakob Grimm (Smithsonian Astrophysical Observatory)\nAllan Hornstrup (Danmarks Tekniske Universitet)\nAlberto Martins (Universidade de Sao Paulo)\nManuel Perez Torres (Smithsonian Astrophysical Observatory)\nMasahiro Tsujimoto (Japan Aerospace Exploration Agency)\nPetr Kubánek (Institute of Physics, Prague)\nAlbert Kong (National Tsing Hua University)\nHao-Yuan Duan (National Tsing Hua University)\n\nSAOImage DS9 development has been made possible by funding from the Chandra X-ray Science Center (CXC) and the High Energy Astrophysics Science Archive Center (HEASARC). Additional funding was provided by the JWST Mission office at Space Telescope Science Institute to improve capabilities for 3-D data visualization."
append help(about) "\n\nDebian packaging:\nOle Streicher (AIP)"
set help(email) "If you encounter any problems or have suggestions with ds9, please contact us at:
saord@cfa.harvard.edu
http://hea-www.harvard.edu/RD/ds9/
William Joye
Eric Mandel
Smithsonian Astrophysical Observatory
Garden St.
Cambridge, MA 02138 USA"
set help(shortcuts) " DS9 version $ds9(version)\n\n\
Key Stroke Description\n\
---------- -----------\n\
TAB Goto next frame\n\
DELETE Deletes selected regions\n\
R Print Mouse Coordinates and Pixel value.\n\
F Toggles Infobox freeze\n\
I Set include property for region\n\
E Set exclude property for region\n\
S Set source property for region\n\
B Set background property for region\n\
+ Goto next 3D Fits Slice\n\
- Goto previous 3D Fits Slice\n\
Up Arrow Move selected regions/cursor up one pixel.\n\
Right Arrow Move selected regions/cursor right one pixel.\n\
Left Arrow Move selected regions/cursor left one pixel.\n\
Down Arrow Move selected regions/cursor down one pixel.\n\
Shift-Drag Select all regions within the indicated region.\n\
Control-Drag Selected ANNULUS Regions, will create new radii.\n
"
}
proc HelpRef {} {
global help
HV hlpref [msgcat::mc {Reference Manual}] $help(refman)
}
proc HelpCommand {} {
global help
HV hlpcmd [msgcat::mc {Command}] $help(command)
}
proc HelpUser {} {
global help
HV hlpuser [msgcat::mc {User Manual}] $help(userman)
}
proc HelpKeyboard {} {
global help
HV hlpkeyboard [msgcat::mc {Keyboard Shortcuts}] $help(keyboard)
}
proc HelpFAQ {} {
global help
HV hlpfaq [msgcat::mc {FAQ}] $help(faq)
}
proc HelpNew {} {
global help
HV hlpnew [msgcat::mc {New Features}] $help(new)
}
proc HelpRelease {} {
global help
HV hlprelease [msgcat::mc {Release Notes}] $help(release)
}
proc HelpDesk {} {
global help
HV hlpdsk [msgcat::mc {Help Desk}] $help(helpdesk)
}
proc HelpStory {} {
global help
HV hlpstory [msgcat::mc {Story of SAOImage DS9}] $help(story)
}
proc HelpAck {} {
global help
HV hlpack [msgcat::mc {Acknowledgment}] $help(ack)
}
proc HelpVO {} {
global help
HV hlvo [msgcat::mc {Virtual Observatory}] $help(vo)
}
proc ProcessSendAboutCmd {proc id param sock fn} {
global help
ProcessSend $proc $id $sock $fn {.txt} "$help(about)\n"
}
|