Changeset 3343
- Timestamp:
- Apr 12, 2018 4:52:34 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/help/Tutorials.html
r3236 r3343 2 2 <h2>List of GSAS-II tutorials</H2><UL> 3 3 4 <p> A list of available tutorials appears below. Each tutorial is a5 web page that can be opened using the link below, but most tutorials also need6 to have example data files downloaded. This can also be done with links included below,7 but it can be easier to access tutorials using8 <b>Help/Tutorials</b> menu item.9 When this menu entry is used from inside GSAS-II (unless "browse tutorial on web" is selected),10 the data files are downloaded to a local directory and GSAS-II will start from that directory11 for most file open commands.12 </p>4 <p> A list of available tutorials appears below. Each tutorial is a 5 web page that can be opened using the link below, but most tutorials also need 6 to have example data files downloaded. This can also be done with links included below, 7 but it can be easier to access tutorials using 8 <b>Help/Tutorials</b> menu item. 9 When this menu entry is used from inside GSAS-II (unless "browse tutorial on web" is selected), 10 the data files are downloaded to a local directory and GSAS-II will start from that directory 11 for most file open commands. 12 </p> 13 13 </UL><h4>Getting started</H4><UL> 14 14 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StartingGSASII/Starting GSAS.htm">Starting GSAS-II</A> … … 27 27 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/Simulation/SimTutorial.htm">Simulating Powder Diffraction with GSAS-II</A> 28 28 [link: <A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/Simulation/data">Exercise files</A>]. 29 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWInstDemo/FindProfParamCW.htm">Determining Starting Profile Parameters from a Standard</A> 30 [link: <A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWInstDemo/data">Exercise files</A>]. 29 31 </UL><h4>Parametric Rietveld fitting</H4><UL> 30 32 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SeqRefine/SequentialTutorial.htm">Sequential refinement of multiple datasets</A> -
trunk/makeTutorial.py
r3246 r3343 29 29 outname = os.path.join(GSASIIpath.path2GSAS2,'help','Tutorials.html') 30 30 31 dirList = [l[0] for l in tutorialIndex if len(l) == 3]31 dirList = [l[0] for l in tutorialIndex if len(l) >= 3] 32 32 33 33 # loop through directories in Tutorials repository 34 34 dirs = [d[:-1] for d in GSASIIpath.svnList(tutURL,False).split('\n') if d and d[-1] == '/'] 35 35 for d in dirs: 36 if d not in dirList: print(u"makeTutorial: Listed tutorial is missing: "+d)36 if d not in dirList: print(u"makeTutorial: tutorial directory not in GSASIIctrlGUI.tutorialIndex: "+d) 37 37 38 38 #import sys
Note: See TracChangeset
for help on using the changeset viewer.