13 from PyQt4.QtGui import QDialog, QApplication |
13 from PyQt4.QtGui import QDialog, QApplication |
14 |
14 |
15 from E5Gui.E5Application import e5App |
15 from E5Gui.E5Application import e5App |
16 |
16 |
17 from E5Gui.E5Action import E5Action |
17 from E5Gui.E5Action import E5Action |
18 |
|
19 from DocumentationPlugins.Ericdoc.EricdocConfigDialog import EricdocConfigDialog |
|
20 from DocumentationPlugins.Ericdoc.EricdocExecDialog import EricdocExecDialog |
|
21 |
18 |
22 import Utilities |
19 import Utilities |
23 |
20 |
24 from eric5config import getConfig |
21 from eric5config import getConfig |
25 |
22 |
192 # add parameter for the eol setting |
190 # add parameter for the eol setting |
193 if not project.useSystemEol(): |
191 if not project.useSystemEol(): |
194 args.append("--eol={0}".format(eolTranslation[project.getEolString()])) |
192 args.append("--eol={0}".format(eolTranslation[project.getEolString()])) |
195 |
193 |
196 # now do the call |
194 # now do the call |
|
195 from DocumentationPlugins.Ericdoc.EricdocExecDialog import EricdocExecDialog |
197 dia = EricdocExecDialog("Ericdoc") |
196 dia = EricdocExecDialog("Ericdoc") |
198 res = dia.start(args, project.ppath) |
197 res = dia.start(args, project.ppath) |
199 if res: |
198 if res: |
200 dia.exec_() |
199 dia.exec_() |
201 |
200 |