From 2583ce7127cb283dfd9e2d0e1aa4f6eaf8fa3660 Mon Sep 17 00:00:00 2001 From: David Gale Date: Tue, 3 May 2016 12:14:16 -0400 Subject: [PATCH] Update ooxml_util_pkg.pkb Added the ability for get_file_from_template to update the notes of a PowerPoint slide in addition to the content. --- ora/ooxml_util_pkg.pkb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ora/ooxml_util_pkg.pkb b/ora/ooxml_util_pkg.pkb index 4be543e..cff309e 100755 --- a/ora/ooxml_util_pkg.pkb +++ b/ora/ooxml_util_pkg.pkb @@ -246,7 +246,9 @@ begin l_blob := zip_util_pkg.get_file (p_template, l_file_list(i)); - if l_file_list(i) in ('word/document.xml', 'word/footer1.xml', 'xl/sharedStrings.xml') or (l_file_list(i) like 'ppt/slides/slide%.xml') then + if l_file_list(i) in ('word/document.xml', 'word/footer1.xml', 'xl/sharedStrings.xml') + or (l_file_list(i) like 'ppt/slides/slide%.xml') + or (l_file_list(i) like 'ppt/notesSlides/notesSlide%.xml') then l_clob := sql_util_pkg.blob_to_clob (l_blob); l_clob := string_util_pkg.multi_replace (l_clob, p_names, p_values);