From de841746e381cd692ed71c5013d163acf6195c0a Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Fri, 2 Aug 2019 11:58:56 +0200 Subject: [PATCH] Use PAGE 2019 --- my_ocrd_workflow | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/my_ocrd_workflow b/my_ocrd_workflow index 111e195..f9451c4 100755 --- a/my_ocrd_workflow +++ b/my_ocrd_workflow @@ -95,7 +95,8 @@ page_fix_xml() { local file for file in `ocrd workspace find -G $filegrp`; do - sed -i 's#pagecontent/2017-07-15#pagecontent/2018-07-15#g' $file + sed -i 's#pagecontent/2017-07-15#pagecontent/2019-07-15#g' $file + sed -i 's#pagecontent/2018-07-15#pagecontent/2019-07-15#g' $file done } @@ -106,7 +107,7 @@ page_validate_xml() { local file for file in `ocrd workspace find -G $filegrp`; do - xmllint --noout --schema `dirname $0`/xsd/pagecontent.2018-07-15.xsd $file + xmllint --noout --schema `dirname $0`/xsd/pagecontent.2019-07-15.xsd $file done }