summaryrefslogtreecommitdiffstats
path: root/helpers
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-11-18 12:21:23 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-05-12 13:46:08 +0200
commit1d77c8a706d248fd757d0558cb101b068c87e820 (patch)
treef20c18f7b9a2a7f5516ed10ab31aa0e52c9614a5 /helpers
parenttdf#107299 Add some missing links to Related Topics (diff)
downloadhelp-1d77c8a706d248fd757d0558cb101b068c87e820.tar.gz
help-1d77c8a706d248fd757d0558cb101b068c87e820.zip
Move processing of help-specific images to helpcontent
Change-Id: I4370c7ab41184a59bb92e8df49f2fe3ca84c9c8c Reviewed-on: https://gerrit.libreoffice.org/30958 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'helpers')
-rw-r--r--helpers/create_ilst.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpers/create_ilst.pl b/helpers/create_ilst.pl
index c6b9789007..b1cd682835 100644
--- a/helpers/create_ilst.pl
+++ b/helpers/create_ilst.pl
@@ -35,7 +35,8 @@ if ( -d $startdir ) {
find(sub{push @files, $File::Find::name if (($File::Find::name=~/\.png$/));},$startdir);
foreach ( @files ) { s#.*$startdir_regexp[\\/]##; };
for (sort(@files)) {
- ($pre eq "helpimg") ? ($prefix = "%GLOBALRES%/") : ($prefix = "%HELPCONTENT%/");
+ # it's now all in one place so no need to distinguish GLOBALRES vs. HELPCONTENT
+ $prefix = "%MODULE%/";
print "$prefix" . "$pre/$_\n";
}
} else {