Skip to content

Commit 0e230e0

Browse files
authored
replace danse links (without documentations) (#239)
* replace danse links (without documentations) * add news
1 parent dd9f989 commit 0e230e0

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

Diff for: AUTHORS.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ Authors
44
DiffPy was initiated as part of the Distributed Data Analysis of Neutron
55
Scattering Experiments (DANSE) project, funded by the National Science
66
Foundation under grant DMR-0520547. More information on DANSE can be
7-
found at http://danse.us. Any opinions, findings, and conclusions or
8-
recommendations expressed in this material are those of the author(s)
9-
and do not necessarily reflect the views of the NSF.
7+
found at `DANSE Project Legacy Page <https://www.its.caltech.edu/~matsci/btf/DANSE_web_page.html>`_.
8+
Any opinions, findings, and conclusions or recommendations expressed
9+
in this material are those of the author(s) and do not necessarily reflect
10+
the views of the NSF.
1011

1112
Main Contributors
1213
-----------------

Diff for: news/danselink.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* no news: small changes to links
4+
5+
**Changed:**
6+
7+
* <news item>
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

Diff for: src/diffpy/pdfgui/gui/aboutdialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def onNsfLogo(self, event): # wxGlade: DialogAbout.<event_handler>
221221
event.Skip()
222222

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

227227
def onMsuLogo(self, event): # wxGlade: DialogAbout.<event_handler>

Diff for: tests/test_aboutdialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_LogoClicks(self):
5353
self._clickbutton(d.bitmap_button_nsf)
5454
self.assertTrue(self.url.endswith("www.nsf.gov"))
5555
self._clickbutton(d.bitmap_button_danse)
56-
self.assertTrue(self.url.endswith("danse.us"))
56+
self.assertTrue(self.url.endswith("www.its.caltech.edu/~matsci/btf/DANSE_web_page.html"))
5757
self._clickbutton(d.bitmap_button_msu)
5858
self.assertTrue(self.url.endswith("www.msu.edu"))
5959
self._clickbutton(d.bitmap_button_columbia)

0 commit comments

Comments
 (0)