Skip to content
Merged
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
7 changes: 4 additions & 3 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ 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
recommendations expressed in this material are those of the author(s)
and do not necessarily reflect the views of the NSF.
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.

Main Contributors
-----------------
Expand Down
23 changes: 23 additions & 0 deletions news/danselink.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* no news: small changes to links

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
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 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
Loading