diff --git a/news/doctab.rst b/news/doctab.rst new file mode 100644 index 00000000..fec2f635 --- /dev/null +++ b/news/doctab.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* Changed the removed local manual link to the online page. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/src/diffpy/pdfgui/gui/mainframe.py b/src/diffpy/pdfgui/gui/mainframe.py index efd2de05..eeb02b5d 100644 --- a/src/diffpy/pdfgui/gui/mainframe.py +++ b/src/diffpy/pdfgui/gui/mainframe.py @@ -2522,10 +2522,8 @@ def onSaveCalc(self, event): def onDocumentation(self, event): """Show information about the documentation.""" import webbrowser - from urllib.request import pathname2url - url = "file://" + pathname2url(docMainFile) - webbrowser.open(url) + webbrowser.open(docMainFile) return # MISC INTERACTION ITEMS diff --git a/src/diffpy/pdfgui/gui/pdfguiglobals.py b/src/diffpy/pdfgui/gui/pdfguiglobals.py index cbfdc911..0aa35707 100644 --- a/src/diffpy/pdfgui/gui/pdfguiglobals.py +++ b/src/diffpy/pdfgui/gui/pdfguiglobals.py @@ -55,7 +55,7 @@ APPDATADIR = os.path.abspath(APPDATADIR) # Location of the HTML manual -docMainFile = os.path.join(APPDATADIR, "doc/manual/pdfgui.html") +docMainFile = "https://diffpy.github.io/diffpy.pdfgui/manual.html" del _upbasedir del _development_mode