help.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. """ help.py: Implement the Idle help menu.
  2. Contents are subject to revision at any time, without notice.
  3. Help => About IDLE: diplay About Idle dialog
  4. <to be moved here from aboutDialog.py>
  5. Help => IDLE Help: Display help.html with proper formatting.
  6. Doc/library/idle.rst (Sphinx)=> Doc/build/html/library/idle.html
  7. (help.copy_strip)=> Lib/idlelib/help.html
  8. HelpParser - Parse help.html and render to tk Text.
  9. HelpText - Display formatted help.html.
  10. HelpFrame - Contain text, scrollbar, and table-of-contents.
  11. (This will be needed for display in a future tabbed window.)
  12. HelpWindow - Display HelpFrame in a standalone window.
  13. copy_strip - Copy idle.html to help.html, rstripping each line.
  14. show_idlehelp - Create HelpWindow. Called in EditorWindow.help_dialog.
  15. """
  16. from HTMLParser import HTMLParser
  17. from os.path import abspath, dirname, isdir, isfile, join
  18. from Tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton
  19. import tkFont as tkfont
  20. from idlelib.configHandler import idleConf
  21. use_ttk = False # until available to import
  22. if use_ttk:
  23. from tkinter.ttk import Menubutton
  24. ## About IDLE ##
  25. ## IDLE Help ##
  26. class HelpParser(HTMLParser):
  27. """Render help.html into a text widget.
  28. The overridden handle_xyz methods handle a subset of html tags.
  29. The supplied text should have the needed tag configurations.
  30. The behavior for unsupported tags, such as table, is undefined.
  31. If the tags generated by Sphinx change, this class, especially
  32. the handle_starttag and handle_endtags methods, might have to also.
  33. """
  34. def __init__(self, text):
  35. HTMLParser.__init__(self)
  36. self.text = text # text widget we're rendering into
  37. self.tags = '' # current block level text tags to apply
  38. self.chartags = '' # current character level text tags
  39. self.show = False # used so we exclude page navigation
  40. self.hdrlink = False # used so we don't show header links
  41. self.level = 0 # indentation level
  42. self.pre = False # displaying preformatted text
  43. self.hprefix = '' # prefix such as '25.5' to strip from headings
  44. self.nested_dl = False # if we're in a nested <dl>
  45. self.simplelist = False # simple list (no double spacing)
  46. self.toc = [] # pair headers with text indexes for toc
  47. self.header = '' # text within header tags for toc
  48. def indent(self, amt=1):
  49. self.level += amt
  50. self.tags = '' if self.level == 0 else 'l'+str(self.level)
  51. def handle_starttag(self, tag, attrs):
  52. "Handle starttags in help.html."
  53. class_ = ''
  54. for a, v in attrs:
  55. if a == 'class':
  56. class_ = v
  57. s = ''
  58. if tag == 'div' and class_ == 'section':
  59. self.show = True # start of main content
  60. elif tag == 'div' and class_ == 'sphinxsidebar':
  61. self.show = False # end of main content
  62. elif tag == 'p' and class_ != 'first':
  63. s = '\n\n'
  64. elif tag == 'span' and class_ == 'pre':
  65. self.chartags = 'pre'
  66. elif tag == 'span' and class_ == 'versionmodified':
  67. self.chartags = 'em'
  68. elif tag == 'em':
  69. self.chartags = 'em'
  70. elif tag in ['ul', 'ol']:
  71. if class_.find('simple') != -1:
  72. s = '\n'
  73. self.simplelist = True
  74. else:
  75. self.simplelist = False
  76. self.indent()
  77. elif tag == 'dl':
  78. if self.level > 0:
  79. self.nested_dl = True
  80. elif tag == 'li':
  81. s = '\n* ' if self.simplelist else '\n\n* '
  82. elif tag == 'dt':
  83. s = '\n\n' if not self.nested_dl else '\n' # avoid extra line
  84. self.nested_dl = False
  85. elif tag == 'dd':
  86. self.indent()
  87. s = '\n'
  88. elif tag == 'pre':
  89. self.pre = True
  90. if self.show:
  91. self.text.insert('end', '\n\n')
  92. self.tags = 'preblock'
  93. elif tag == 'a' and class_ == 'headerlink':
  94. self.hdrlink = True
  95. elif tag == 'h1':
  96. self.tags = tag
  97. elif tag in ['h2', 'h3']:
  98. if self.show:
  99. self.header = ''
  100. self.text.insert('end', '\n\n')
  101. self.tags = tag
  102. if self.show:
  103. self.text.insert('end', s, (self.tags, self.chartags))
  104. def handle_endtag(self, tag):
  105. "Handle endtags in help.html."
  106. if tag in ['h1', 'h2', 'h3']:
  107. self.indent(0) # clear tag, reset indent
  108. if self.show:
  109. self.toc.append((self.header, self.text.index('insert')))
  110. elif tag in ['span', 'em']:
  111. self.chartags = ''
  112. elif tag == 'a':
  113. self.hdrlink = False
  114. elif tag == 'pre':
  115. self.pre = False
  116. self.tags = ''
  117. elif tag in ['ul', 'dd', 'ol']:
  118. self.indent(amt=-1)
  119. def handle_data(self, data):
  120. "Handle date segments in help.html."
  121. if self.show and not self.hdrlink:
  122. d = data if self.pre else data.replace('\n', ' ')
  123. if self.tags == 'h1':
  124. self.hprefix = d[0:d.index(' ')]
  125. if self.tags in ['h1', 'h2', 'h3'] and self.hprefix != '':
  126. if d[0:len(self.hprefix)] == self.hprefix:
  127. d = d[len(self.hprefix):].strip()
  128. self.header += d
  129. self.text.insert('end', d, (self.tags, self.chartags))
  130. def handle_charref(self, name):
  131. self.text.insert('end', unichr(int(name)))
  132. class HelpText(Text):
  133. "Display help.html."
  134. def __init__(self, parent, filename):
  135. "Configure tags and feed file to parser."
  136. uwide = idleConf.GetOption('main', 'EditorWindow', 'width', type='int')
  137. uhigh = idleConf.GetOption('main', 'EditorWindow', 'height', type='int')
  138. uhigh = 3 * uhigh // 4 # lines average 4/3 of editor line height
  139. Text.__init__(self, parent, wrap='word', highlightthickness=0,
  140. padx=5, borderwidth=0, width=uwide, height=uhigh)
  141. normalfont = self.findfont(['TkDefaultFont', 'arial', 'helvetica'])
  142. fixedfont = self.findfont(['TkFixedFont', 'monaco', 'courier'])
  143. self['font'] = (normalfont, 12)
  144. self.tag_configure('em', font=(normalfont, 12, 'italic'))
  145. self.tag_configure('h1', font=(normalfont, 20, 'bold'))
  146. self.tag_configure('h2', font=(normalfont, 18, 'bold'))
  147. self.tag_configure('h3', font=(normalfont, 15, 'bold'))
  148. self.tag_configure('pre', font=(fixedfont, 12), background='#f6f6ff')
  149. self.tag_configure('preblock', font=(fixedfont, 10), lmargin1=25,
  150. borderwidth=1, relief='solid', background='#eeffcc')
  151. self.tag_configure('l1', lmargin1=25, lmargin2=25)
  152. self.tag_configure('l2', lmargin1=50, lmargin2=50)
  153. self.tag_configure('l3', lmargin1=75, lmargin2=75)
  154. self.tag_configure('l4', lmargin1=100, lmargin2=100)
  155. self.parser = HelpParser(self)
  156. with open(filename) as f:
  157. contents = f.read().decode(encoding='utf-8')
  158. self.parser.feed(contents)
  159. self['state'] = 'disabled'
  160. def findfont(self, names):
  161. "Return name of first font family derived from names."
  162. for name in names:
  163. if name.lower() in (x.lower() for x in tkfont.names(root=self)):
  164. font = tkfont.Font(name=name, exists=True, root=self)
  165. return font.actual()['family']
  166. elif name.lower() in (x.lower()
  167. for x in tkfont.families(root=self)):
  168. return name
  169. class HelpFrame(Frame):
  170. "Display html text, scrollbar, and toc."
  171. def __init__(self, parent, filename):
  172. Frame.__init__(self, parent)
  173. text = HelpText(self, filename)
  174. self['background'] = text['background']
  175. scroll = Scrollbar(self, command=text.yview)
  176. text['yscrollcommand'] = scroll.set
  177. self.rowconfigure(0, weight=1)
  178. self.columnconfigure(1, weight=1) # text
  179. self.toc_menu(text).grid(column=0, row=0, sticky='nw')
  180. text.grid(column=1, row=0, sticky='nsew')
  181. scroll.grid(column=2, row=0, sticky='ns')
  182. def toc_menu(self, text):
  183. "Create table of contents as drop-down menu."
  184. toc = Menubutton(self, text='TOC')
  185. drop = Menu(toc, tearoff=False)
  186. for lbl, dex in text.parser.toc:
  187. drop.add_command(label=lbl, command=lambda dex=dex:text.yview(dex))
  188. toc['menu'] = drop
  189. return toc
  190. class HelpWindow(Toplevel):
  191. "Display frame with rendered html."
  192. def __init__(self, parent, filename, title):
  193. Toplevel.__init__(self, parent)
  194. self.wm_title(title)
  195. self.protocol("WM_DELETE_WINDOW", self.destroy)
  196. HelpFrame(self, filename).grid(column=0, row=0, sticky='nsew')
  197. self.grid_columnconfigure(0, weight=1)
  198. self.grid_rowconfigure(0, weight=1)
  199. def copy_strip():
  200. """Copy idle.html to idlelib/help.html, stripping trailing whitespace.
  201. Files with trailing whitespace cannot be pushed to the hg cpython
  202. repository. For 3.x (on Windows), help.html is generated, after
  203. editing idle.rst in the earliest maintenance version, with
  204. sphinx-build -bhtml . build/html
  205. python_d.exe -c "from idlelib.help import copy_strip; copy_strip()"
  206. After refreshing TortoiseHG workshop to generate a diff,
  207. check both the diff and displayed text. Push the diff along with
  208. the idle.rst change and merge both into default (or an intermediate
  209. maintenance version).
  210. When the 'earlist' version gets its final maintenance release,
  211. do an update as described above, without editing idle.rst, to
  212. rebase help.html on the next version of idle.rst. Do not worry
  213. about version changes as version is not displayed. Examine other
  214. changes and the result of Help -> IDLE Help.
  215. If maintenance and default versions of idle.rst diverge, and
  216. merging does not go smoothly, then consider generating
  217. separate help.html files from separate idle.htmls.
  218. """
  219. src = join(abspath(dirname(dirname(dirname(__file__)))),
  220. 'Doc', 'build', 'html', 'library', 'idle.html')
  221. dst = join(abspath(dirname(__file__)), 'help.html')
  222. with open(src, 'r') as inn,\
  223. open(dst, 'w') as out:
  224. for line in inn:
  225. out.write(line.rstrip() + '\n')
  226. print('idle.html copied to help.html')
  227. def show_idlehelp(parent):
  228. "Create HelpWindow; called from Idle Help event handler."
  229. filename = join(abspath(dirname(__file__)), 'help.html')
  230. if not isfile(filename):
  231. # try copy_strip, present message
  232. return
  233. HelpWindow(parent, filename, 'IDLE Help')
  234. if __name__ == '__main__':
  235. from idlelib.idle_test.htest import run
  236. run(show_idlehelp)