From c4e889a2b34846180af2ae07b494a770a05b35d1 Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 9 Aug 2022 12:56:04 +0000 Subject: [PATCH] =?UTF-8?q?F2022-038:=20AER/RNO=20=E2=80=98NOTE=E2=80=99?= =?UTF-8?q?=20centered;=20F2021-037:=20Title=20Case=20Proc=20titles=20in?= =?UTF-8?q?=20transitions;=20F2021-036:=20Note=20before=20Caution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Formats/fmtall/SHEAall.xml | Bin 73344 -> 73238 bytes PROMS/Formats/fmtall/SHEall.xml | Bin 73334 -> 73228 bytes .../Extension/TransitionExt.cs | 3 ++- 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/Formats/fmtall/SHEAall.xml b/PROMS/Formats/fmtall/SHEAall.xml index f8073af8234ee9521f0bdc70ee9b24319724cbbf..5bdf57f5558b74dc5edb5933e3597221f6a2997a 100644 GIT binary patch delta 214 zcmZqJ%Q9^b%Z5Dy?g|Xf42cY-3?&Si4EYRs41Peegdvr|pP`5$1xOb$*fJF()@}1PhkcAF0%6Vys+$jF@G-K3+*80%JUKp7l(BfSV3x2nM8uGx h80a!*h76#55km+NCo<$scFYork(iti%raTPLt?T*E6-#vt%S|T^sEFYzq2x! zJkOeKa+Q`xqzhu~nFS#@1-Eor46Jtz#Fl`G%8%shuw_tUFlW$V zFakmlX$&OIz$^nWX$X{8m^@Kic(Q{K%jOyZF4@T@%o3C5X|qi>@Q|3iKr?5vnx2v1 zbM%tY diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs index 36137580..43698151 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs @@ -1484,7 +1484,8 @@ namespace VEPROMS.CSLA.Library private static string CapFirstLetterOnly(string retstr, int p) { // LATER: write code to capitalize first letter (active plants) - string lretstr = Regex.Replace(retstr, @"([^ ,]+)", new MatchEvaluator(FixTitleCase)); + // F2021-037: Support title case include '/' as separator (added '/' to regex replace) + string lretstr = Regex.Replace(retstr, @"([^ ,/]+)", new MatchEvaluator(FixTitleCase)); return lretstr; } // TODO: Section methods are not complete....