Compare commits
No commits in common. "8fc477ec04ef4c0898837bac5f14ab5b5207caed" and "5a263107daf12bab9abb382e6a5a91655ca29350" have entirely different histories.
8fc477ec04
...
5a263107da
@ -705,7 +705,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
if (m == null)
|
if (m == null)
|
||||||
newvalue = newvalue.Replace(@"\u916?", "^");
|
newvalue = newvalue.Replace(@"\u916?", "^");
|
||||||
else if (m.Groups[1].Value == "" && !ContentItems[0].MyItem.MyItemInfo.MyDocVersion.ActiveFormat.PlantFormat.FormatData.SectData.ConvertCaretToDelta)
|
else if (m.Groups[1].Value == "" && !ContentItems[0].MyItem.MyItemInfo.MyDocVersion.MyFormat.PlantFormat.FormatData.SectData.ConvertCaretToDelta)
|
||||||
newvalue = newvalue.Replace(@"\u916?", "^");
|
newvalue = newvalue.Replace(@"\u916?", "^");
|
||||||
else if (m.Groups[1].Value == "")
|
else if (m.Groups[1].Value == "")
|
||||||
{
|
{
|
||||||
@ -1420,7 +1420,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
if (newvalue.Contains(@"\u916?"))
|
if (newvalue.Contains(@"\u916?"))
|
||||||
{
|
{
|
||||||
Match m = Regex.Match(gg, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
Match m = Regex.Match(gg, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
if (m.Groups.Count < 3 && !ContentItems[0].MyDocVersion.ActiveFormat.PlantFormat.FormatData.SectData.ConvertCaretToDelta)
|
if (m.Groups.Count < 3 && !ContentItems[0].MyDocVersion.MyFormat.PlantFormat.FormatData.SectData.ConvertCaretToDelta)
|
||||||
newvalue = newvalue.Replace(@"\u916?", "^");
|
newvalue = newvalue.Replace(@"\u916?", "^");
|
||||||
else if (m.Groups.Count < 3)
|
else if (m.Groups.Count < 3)
|
||||||
newvalue = newvalue.Replace(@"\u916?", $"{(char)916}");
|
newvalue = newvalue.Replace(@"\u916?", $"{(char)916}");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user