PluginDocumentationSets.py

changeset 45
c9003fa77743
parent 41
10870f99f004
child 51
1e8779a0153d
equal deleted inserted replaced
44:6ce70f9b874d 45:c9003fa77743
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the QtHelp documentation provider plug-in. 7 Module implementing the QtHelp documentation provider plug-in.
8 """ 8 """
9
10 from __future__ import unicode_literals
11 9
12 import os 10 import os
13 import glob 11 import glob
14 12
15 from PyQt5.QtCore import QObject 13 from PyQt5.QtCore import QObject
17 # Start-Of-Header 15 # Start-Of-Header
18 name = "Documentation Sets" 16 name = "Documentation Sets"
19 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 17 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
20 autoactivate = True 18 autoactivate = True
21 deactivateable = True 19 deactivateable = True
22 version = "1.0.0" 20 version = "2.0.0"
23 className = "PluginDocumentationSets" 21 className = "PluginDocumentationSets"
24 packageName = "DocumentationSets" 22 packageName = "DocumentationSets"
25 shortDescription = "Documentation sets in QtHelp format (*.qch)" 23 shortDescription = "Documentation sets in QtHelp format (*.qch)"
26 longDescription = ( 24 longDescription = (
27 """This plug-in provides an interface to additional documentation sets""" 25 """This plug-in provides an interface to additional documentation sets"""
28 """ in QtHelp format (*.qch) for registration with the eric help/web""" 26 """ in QtHelp format (*.qch) for registration with the eric help/web"""
29 """ browser or Qt Assistant.""" 27 """ browser or Qt Assistant."""
30 ) 28 )
31 needsRestart = False 29 needsRestart = False
32 pyqtApi = 2 30 pyqtApi = 2
33 python2Compatible = True
34 # End-Of-Header 31 # End-Of-Header
35 32
36 error = "" 33 error = ""
37 34
38 35

eric ide

mercurial