Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace danse links #202

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Authors
DiffPy was initiated as part of the Distributed Data Analysis of Neutron
Scattering Experiments (DANSE) project, funded by the National Science
Foundation under grant DMR-0520547. More information on DANSE can be
found at http://danse.us. Any opinions, findings, and conclusions or
found at `DANSE Project Legacy Page <https://www.its.caltech.edu/~matsci/btf/DANSE_web_page.html>`_.
Any opinions, findings, and conclusions or
recommendations expressed in this material are those of the author(s)
and do not necessarily reflect the views of the NSF.

Expand Down
2 changes: 1 addition & 1 deletion doc/manual/html/pdfgui.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/manual/pdfgui.texinfo
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ the comments in the script for detailed explanation.
To learn more about the tui module and about the objects
and functions that it returns, please see the API
documentation for diffpy.pdfgui at
@url{http://docs.danse.us/diffraction/diffpy.pdfgui/}.
@url{https://www.diffpy.org/diffpy.pdfgui/api/diffpy.pdfgui.html}.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be https://diffpy.github.io/diffpy.pdfgui when everything is working, something like that. We don't want to resolve to a file on github but to published documentation.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, will change, also see discussion in #203


Feel free to ask at the
@url{https://groups.google.com/d/forum/diffpy-users, diffpy-users}
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/pdfgui/gui/aboutdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def onNsfLogo(self, event): # wxGlade: DialogAbout.<event_handler>
event.Skip()

def onDanseLogo(self, event): # wxGlade: DialogAbout.<event_handler>
launchBrowser("http://danse.us")
launchBrowser("https://www.its.caltech.edu/~matsci/btf/DANSE_web_page.html")
event.Skip()

def onMsuLogo(self, event): # wxGlade: DialogAbout.<event_handler>
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/pdfgui/tests/test_aboutdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_LogoClicks(self):
self._clickbutton(d.bitmap_button_nsf)
self.assertTrue(self.url.endswith("www.nsf.gov"))
self._clickbutton(d.bitmap_button_danse)
self.assertTrue(self.url.endswith("danse.us"))
self.assertTrue(self.url.endswith("www.its.caltech.edu/~matsci/btf/DANSE_web_page.html"))
self._clickbutton(d.bitmap_button_msu)
self.assertTrue(self.url.endswith("www.msu.edu"))
self._clickbutton(d.bitmap_button_columbia)
Expand Down