Skip to content

Commit 2b401b4

Browse files
committed
fix mailinglist comments; clean up workflow
1 parent 0c39352 commit 2b401b4

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

scripts/addNewTutorial.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/bin/bash
2+
###########################
3+
# this script is obsolete #
4+
# these actions are done #
5+
# in GitHub workflow #
6+
###########################
7+
#
28
# to add a new tutorial
39
# 1) create new directory in .../GSASII-tutorials
410
# 2) add .html file, data/ directory

scripts/makeGitTutorial.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def makeDataIndex(datadir,title):
182182
</body>
183183
''',file=out)
184184
out.close()
185-
print(f"\nTutorials without videos {novideo}")
185+
print(f"\nTutorials without videos {novideo}\n")
186186

187187
for l in G2G.tutorialIndex:
188188
if len(l) != 1:
@@ -192,6 +192,8 @@ def makeDataIndex(datadir,title):
192192
# loop through directories in Tutorials repository
193193
for tutdir in glob.glob(os.path.join(TutorialsDir,'*')):
194194
if not os.path.isdir(tutdir): continue
195+
if tutdir in ['scripts','docs','webdocs','MDtutorials']:
196+
continue
195197
d = os.path.split(tutdir)[1]
196198
if d not in dirList: print(u"Tutorial directory not in GSASIIctrlGUI.tutorialIndex: "+d)
197199
print(f"\nStatistics: {tutorialcount} total tutorials, {videocount} with videos")

webdocs/mailinglist.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,23 @@ Mailing List
99

1010
We provide a mailing list for GSAS-II users to ask questions and more
1111
importantly, **so that we can reach users with news about
12-
GSAS-II** and for discussion questions. Please do subscribe.
12+
GSAS-II**. Please do subscribe.
1313
The level of traffic on this list is
1414
pretty low (typically 30-60 e-mails/year); Bob and I usually reply to
1515
directly to senders, unless the
16-
answer will be valuable to many people. There is an `archive of the
17-
list here <https://mailman.aps.anl.gov/pipermail/gsas-ii/>`_ while until
18-
2018 `this site
19-
<http://www.mail-archive.com/[email protected]/>`_ (which
20-
is searchable) also
21-
archived the mailing list. We will try to get that restarted.
16+
answer will be valuable to many people. There is a searchable
17+
`mailing list archive <https://mail-archive.com/[email protected]/>`_ (messages
18+
prior to 2018 are
19+
`here <http://www.mail-archive.com/[email protected]/>`_.
20+
There is also `an archive by the APS here
21+
<https://mailman.aps.anl.gov/pipermail/gsas-ii/>`_, which allows mass
22+
downloading of messages, but not searching.
23+
24+
`Bug reports <bug.html>`_ can be posted on this list, but we would greatly prefer
25+
them posted on the
26+
`GitHub Issues Tracker
27+
<https://github.com/AdvancedPhotonSource/GSAS-II/issues>`_, but please
28+
`see notes on bug reporting <bug.html>`_ before posting.
2229

2330
.. index:: Subscribe to mailing list
2431

0 commit comments

Comments
 (0)