Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee')
-rw-r--r--plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
index 9f4e1b059eb..e18b9b9f961 100644
--- a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
+++ b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
@@ -22,7 +22,8 @@ public class ReportConstants {
//regex
public static final String FTR = "<w:ftr[\\s\\S]+?</w:ftr>";
public static final String PAGE_SZ = "<w:pgSz [^>]*/>";
- public static final String ENTIRE_FTR = "<w:pPr><w:spacing w:after=\"[\\d]\"></w:spacing><w:sectPr[^>]*><w:ftr[\\s\\S]+?</w:ftr>[\\s\\S]+?</w:sectPr></w:pPr>";
+ public static final String ENTIRE_FTR_EXTRA_PARA = "<w:pPr><w:spacing w:after=\"[\\d]\"></w:spacing><w:sectPr[^>]*><w:ftr[\\s\\S]+?</w:ftr>[\\s\\S]+?</w:sectPr></w:pPr>";
+ public static final String ENTIRE_FTR = "<w:sectPr[^>]*><w:ftr[\\s\\S]+?</w:ftr>[\\s\\S]+?</w:sectPr>";
public static final String FULL_PARA_END = "</w:pPr></w:p>";
public static final String NO_DATA_RIGHTS =
"<w:p>[\\s||\\S]+?<w:r><w:t>NO DATA RIGHTS ARTIFACT FOUND</w:t></w:r>[\\s\\S]+?</w:p>";

Back to the top