diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-03-17 11:49:22 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2022-04-06 16:12:40 -0400 | 
| commit | e481fdd4b3403d621380c43047484aeb3a3a46d2 (patch) | |
| tree | 2d800ad8ea33c685bb280be521881c469dea0613 /org/xml.org | |
| parent | org-tangle files with new headers (diff) | |
ruby variable passing breakage, make constant?
Diffstat (limited to 'org/xml.org')
| -rw-r--r-- | org/xml.org | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/org/xml.org b/org/xml.org index 3b6e4085..d3736b85 100644 --- a/org/xml.org +++ b/org/xml.org @@ -3619,15 +3619,15 @@ module SiSU_XML_ODF_ODT                @md.opt.act[:color_state][:set],                "ERROR - image:",                %{"#{i}" missing}, -              "search locations: #{@env.path.image_source_include_local}," \ +              "search locations: #{$sisu_base_data}/image," \                + "#{@env.path.image_source_include_remote} and" \                + "#{@env.path.image_source_include}"              ).error2 unless @md.opt.act[:quiet][:set]==:on              nil            end          elsif @md.fns =~/\.ss[tm]$/ \ -        and FileTest.file?("#{@env.path.image_source_include_local}/#{i}") #review -          @env.path.image_source_include_local +        and FileTest.file?("#{$sisu_base_data}/image/#{i}") #review +          $sisu_base_data + '/image'          elsif @md.fns =~/\.ss[tm]$/ \          and FileTest.file?("#{@env.path.image_source_sisu_includes(@md)}/#{i}")            @env.path.image_source_sisu_includes(@md) @@ -3640,7 +3640,7 @@ module SiSU_XML_ODF_ODT              "ERROR - image:",                %{"#{i}" missing},                "search locations: " \ -              + @env.path.image_source_include_local + ',' \ +              + $sisu_base_data + '/image' + ',' \                + @env.path.image_source_include_remote + 'and' \                + @env.path.image_source_include \                + @md.opt.sisu_data_dir? | 
