This commit is contained in:
2012-10-04 11:11:06 +00:00
parent 905c00868a
commit 314046cd77
2 changed files with 187 additions and 3 deletions

View File

@@ -74,12 +74,13 @@ namespace DataLoader
{
Status = "Getting List...";
// Loop through all Items and check before and after text
ItemInfoList myList = ItemInfoList.Get();
ItemInfoList myListFrom = ItemInfoList.GetListTranFrom();
ItemInfoList myListTo = ItemInfoList.GetListTranTo();
ConversionRTBProblems myProblems = new ConversionRTBProblems();
int i = 0;
foreach (ItemInfo item in myList)
foreach (ItemInfo item in myListFrom)
{
Status = string.Format("Processing {0} of {1} steps", ++i, myList.Count);
Status = string.Format("Processing {0} of {1} steps", ++i, myListFrom.Count);
//MyStepRTB.ViewRTB = false;
string originalText = item.MyContent.Text;
string updatedText = item.MyContent.Text;