Search was failing when searching for a space, if the data contained a hardspace.
Added Version into ErrorLog for the Session Begin Fix transition text in Background Documents to say "5" rather than "EOP STEP 5:"
This commit is contained in:
@@ -2636,7 +2636,7 @@ namespace VEPROMS.CSLA.Library
|
||||
tbformat = tbformat.Replace("{Section Prefix}", SectionPrefix(tbformat));
|
||||
if (tbformate != null) tbformate = tbformate.Replace("{Section Prefix}", SectionPrefix(tbformate));
|
||||
}
|
||||
|
||||
bool isAlpha = tbformat.ToUpper().Contains("ALPHA");
|
||||
int ordinal = Ordinal;
|
||||
string alpha = AlphabeticalNumbering(ordinal);
|
||||
tbformat = tbformat.Replace("{alpha}", alpha.ToLower());
|
||||
@@ -2706,6 +2706,7 @@ namespace VEPROMS.CSLA.Library
|
||||
int indxnewtab = FormatStepData.TabData.IdentAltPrint.LastIndexOf('\\');
|
||||
if (indxnewtab >= 0)
|
||||
{
|
||||
_MyTab.BasicTab = isAlpha ? alpha : ordinal.ToString();
|
||||
newtab = FormatStepData.TabData.IdentAltPrint.Substring(indxnewtab + 1);
|
||||
// also see if there is the 'pagelist' string in this tab:
|
||||
HighLevelStepTabPageList = FormatStepData.TabData.IdentAltPrint.Substring(0, indxnewtab) + tbformat;
|
||||
@@ -3379,6 +3380,12 @@ namespace VEPROMS.CSLA.Library
|
||||
get { return _AltPrintTab; }
|
||||
set { _AltPrintTab = value; }
|
||||
}
|
||||
private string _BasicTab = null;
|
||||
public string BasicTab
|
||||
{
|
||||
get { return _BasicTab; }
|
||||
set { _BasicTab = value; }
|
||||
}
|
||||
private bool _RemovedStyleUnderline = false;
|
||||
public bool RemovedStyleUnderline
|
||||
{
|
||||
|
@@ -702,7 +702,8 @@ namespace VEPROMS.CSLA.Library
|
||||
if (!doStep && item.IsHigh) doStep = true;
|
||||
if (doStep && pitem.IsHigh)
|
||||
{
|
||||
string hlsTab = StepInfo.Get(pitem.ItemID).MyTab.CleanTextNoSymbols;
|
||||
Tab myTab = StepInfo.Get(pitem.ItemID).MyTab;
|
||||
string hlsTab = myTab.BasicTab ?? myTab.CleanTextNoSymbols;
|
||||
if (!sret.StartsWith(hlsTab.Trim(" ".ToCharArray())))
|
||||
{
|
||||
if (!hasDelim)
|
||||
|
Reference in New Issue
Block a user