Skip to content

Commit ad02d9a

Browse files
committed
extensive but superficial changes in docs; addvance mini version to differentiate main from master
1 parent 13b43cd commit ad02d9a

24 files changed

+182
-163
lines changed

GSASII/GSASIIscriptable.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5118,9 +5118,11 @@ def HAPvalue(self, param=None, newValue=None, targethistlist='all'):
51185118
and only one histogram is selected, the value is retrieved and
51195119
returned.
51205120
When param='PO' then this value is interpreted as the following:
5121+
51215122
if the value is 0 or an even integer, then the preferred
51225123
orientation model is set to "Spherical harmonics". If the value is
51235124
1, then "March-Dollase" is used. Any other value generates an error.
5125+
51245126
:param list targethistlist: a list of histograms where each item in the
51255127
list can be a histogram object (:class:`G2PwdrData`),
51265128
a histogram name or the index number of the histogram.
@@ -5131,7 +5133,6 @@ def HAPvalue(self, param=None, newValue=None, targethistlist='all'):
51315133
51325134
targethistlist must correspond to a single histogram if a value
51335135
is to be returned (i.e. when argument newValue is not specified).
5134-
:param int order: is a value for the order when
51355136
51365137
:returns: the value of the parameter, when argument newValue is not specified.
51375138

GSASII/config_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
'''
129129
Main_Size = (700,450)
130130
'''Main window size (width, height) - initially uses wx.DefaultSize but will updated
131-
and saved as the user changes the window.
131+
and saved as the user changes the window.
132132
This is used internally by GSAS-II and would not normally be changed by a user.
133133
'''
134134
Main_Pos = (100,100)

GSASII/exports/G2export_Bracket.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
'''Classes in :mod:`~GSASII.exports.G2export_Bracket` follow.
4+
'''
35

46
# This module initially written by Conrad Gillard. For any enquiries please contact [email protected]
57
# Export3col exporter adapted from Exportbracket by BHT

GSASII/exports/G2export_CIF.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_CIF` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_CIF` follow:
33
'''
44
# note documentation in docs/source/exports.rst
55
#
@@ -84,13 +84,13 @@ def getCellwStrain(phasedict,seqData,pId,histname):
8484

8585
def mkSeqResTable(mode,seqHistList,seqData,Phases,Histograms,Controls):
8686
'''Setup sequential results table (based on code from
87-
GSASIIseqGUI.UpdateSeqResults)
87+
:func:`GSASII.GSASIIseqGUI.UpdateSeqResults`)
8888
8989
TODO: This should be merged with the table build code in
90-
GSASIIseqGUI.UpdateSeqResults and moved to somewhere non-GUI
91-
like GSASIIstrIO to create a single routine that can be used
90+
:func:`GSASII.GSASIIseqGUI.UpdateSeqResults` and moved to somewhere non-GUI
91+
like :mod:`~GSASII.GSASIIstrIO` to create a single routine that can be used
9292
in both places, but this means returning some
93-
of the code that has been removed from there
93+
of the code that has been removed from there.
9494
'''
9595

9696
newAtomDict = seqData[seqHistList[0]].get('newAtomDict',{}) # dict with atom positions; relative & absolute
@@ -4657,7 +4657,9 @@ def SelectDisAglFlags(event):
46574657
class ExportProjectCIF(ExportCIF):
46584658
'''Used to create a CIF of an entire project
46594659
4660-
also called directly in :func:`GSASIImiscGUI.ExportSequentialFullCIF`
4660+
also called directly in
4661+
:func:`~GSASII.GSASIImiscGUI.ExportSequentialFullCIF`
4662+
in :mod:`~GSASII.GSASIImiscGUI`
46614663
46624664
:param wx.Frame G2frame: reference to main GSAS-II frame
46634665
'''

GSASII/exports/G2export_FIT2D.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_FIT2D` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_FIT2D` follow:
33
'''
44
from __future__ import division, print_function
55
import os.path

GSASII/exports/G2export_JSON.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_JSON` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_JSON` follow:
33
44
This code is to honor my friend Robert Papoular, who wants to see what is
55
inside a .gpx file.

GSASII/exports/G2export_PDB.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_PDB` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_PDB` follow:
33
'''
44
from __future__ import division, print_function
55
import numpy as np

GSASII/exports/G2export_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_csv` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_csv` follow:
33
'''
44
# note documentation in docs/source/exports.rst
55
#

GSASII/exports/G2export_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_examples` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_examples` follow:
33
'''
44
# note documentation in docs/source/exports.rst
55
#

GSASII/exports/G2export_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
'''Classes in :mod:`G2export_image` follow:
2+
'''Classes in :mod:`~GSASII.exports.G2export_image` follow:
33
'''
44
from __future__ import division, print_function
55
import os.path

0 commit comments

Comments
 (0)