Skip to content

Commit

Permalink
fix mailinglist comments; clean up workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
briantoby committed Jan 16, 2025
1 parent 0c39352 commit 2b401b4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
6 changes: 6 additions & 0 deletions scripts/addNewTutorial.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/bin/bash
###########################
# this script is obsolete #
# these actions are done #
# in GitHub workflow #
###########################
#
# to add a new tutorial
# 1) create new directory in .../GSASII-tutorials
# 2) add .html file, data/ directory
Expand Down
4 changes: 3 additions & 1 deletion scripts/makeGitTutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def makeDataIndex(datadir,title):
</body>
''',file=out)
out.close()
print(f"\nTutorials without videos {novideo}")
print(f"\nTutorials without videos {novideo}\n")

for l in G2G.tutorialIndex:
if len(l) != 1:
Expand All @@ -192,6 +192,8 @@ def makeDataIndex(datadir,title):
# loop through directories in Tutorials repository
for tutdir in glob.glob(os.path.join(TutorialsDir,'*')):
if not os.path.isdir(tutdir): continue
if tutdir in ['scripts','docs','webdocs','MDtutorials']:
continue
d = os.path.split(tutdir)[1]
if d not in dirList: print(u"Tutorial directory not in GSASIIctrlGUI.tutorialIndex: "+d)
print(f"\nStatistics: {tutorialcount} total tutorials, {videocount} with videos")
21 changes: 14 additions & 7 deletions webdocs/mailinglist.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,23 @@ Mailing List

We provide a mailing list for GSAS-II users to ask questions and more
importantly, **so that we can reach users with news about
GSAS-II** and for discussion questions. Please do subscribe.
GSAS-II**. Please do subscribe.
The level of traffic on this list is
pretty low (typically 30-60 e-mails/year); Bob and I usually reply to
directly to senders, unless the
answer will be valuable to many people. There is an `archive of the
list here <https://mailman.aps.anl.gov/pipermail/gsas-ii/>`_ while until
2018 `this site
<http://www.mail-archive.com/[email protected]/>`_ (which
is searchable) also
archived the mailing list. We will try to get that restarted.
answer will be valuable to many people. There is a searchable
`mailing list archive <https://mail-archive.com/[email protected]/>`_ (messages
prior to 2018 are
`here <http://www.mail-archive.com/[email protected]/>`_.
There is also `an archive by the APS here
<https://mailman.aps.anl.gov/pipermail/gsas-ii/>`_, which allows mass
downloading of messages, but not searching.

`Bug reports <bug.html>`_ can be posted on this list, but we would greatly prefer
them posted on the
`GitHub Issues Tracker
<https://github.com/AdvancedPhotonSource/GSAS-II/issues>`_, but please
`see notes on bug reporting <bug.html>`_ before posting.

.. index:: Subscribe to mailing list

Expand Down

0 comments on commit 2b401b4

Please sign in to comment.