aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2018-05-23 18:32:32 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:15 -0400
commit9c07f0aac1f5d7a7480667dca53671fcd986db5a (patch)
treefffc45bd35a0b80461b80378ed0028b5afea346a /src/sdp/output
parentimageformats dependency added (diff)
image paths
Diffstat (limited to 'src/sdp/output')
-rw-r--r--src/sdp/output/epub3.d4
-rw-r--r--src/sdp/output/html.d2
-rw-r--r--src/sdp/output/paths_source.d38
-rw-r--r--src/sdp/output/source_sisupod.d2
4 files changed, 22 insertions, 24 deletions
diff --git a/src/sdp/output/epub3.d b/src/sdp/output/epub3.d
index eb55593..3209fae 100644
--- a/src/sdp/output/epub3.d
+++ b/src/sdp/output/epub3.d
@@ -723,12 +723,12 @@ template outputEPub3() {
debug(epub_output) {
debug(epub_images) {
writeln(
- doc_matters.src_path_info.src_image_root_with_path, "/", image, " -> ",
+ doc_matters.src.image_dir_path, "/", image, " -> ",
pth_epub3.dbg_doc_oebps_image(doc_matters.src.filename), "/", image
);
}
}
- auto fn_src = doc_matters.src_path_info.src_image_root_with_path ~ "/" ~ image;
+ auto fn_src = doc_matters.src.image_dir_path ~ "/" ~ image;
auto fn_out = pth_epub3.doc_oebps_image(doc_matters.src.filename.to!string) ~ "/" ~ image;
if (exists(fn_src)) {
{
diff --git a/src/sdp/output/html.d b/src/sdp/output/html.d
index 3db534b..d4770e7 100644
--- a/src/sdp/output/html.d
+++ b/src/sdp/output/html.d
@@ -465,7 +465,7 @@ template outputHTML() {
pth_html.image.mkdirRecurse;
}
foreach (image; doc_matters.srcs.image_list) {
- auto fn_src_in = doc_matters.src_path_info.src_image_root_with_path ~ "/" ~ image;
+ auto fn_src_in = doc_matters.src.image_dir_path ~ "/" ~ image;
auto fn_src_out = pth_html.image ~ "/" ~ image;
debug(images_html) {
writeln(fn_src_in, " -> ", fn_src_out);
diff --git a/src/sdp/output/paths_source.d b/src/sdp/output/paths_source.d
index 9f377bc..8f14b8e 100644
--- a/src/sdp/output/paths_source.d
+++ b/src/sdp/output/paths_source.d
@@ -295,8 +295,24 @@ template PathMatters() {
return _dir;
}
auto image_dir_path() {
- string _dir = asNormalizedPath(base_dir_path.chainPath("media/image")).array;
- return _dir;
+ string _img_pth(string _possible_img_pth) {
+ return asNormalizedPath(file_with_absolute_path.dirName ~ "/" ~ _possible_img_pth).array;
+ }
+ string _paths;
+ string[] _possible_img_pths = [ "./image", "../image", "../../image" ];
+ string _img_pth_found = "";
+ foreach(_possible_img_pth; _possible_img_pths) {
+ if (exists(_img_pth(_possible_img_pth))) {
+ _img_pth_found = _img_pth(_possible_img_pth);
+ break;
+ } else {
+ _paths ~= " " ~ _img_pth(_possible_img_pth);
+ }
+ }
+ if (_img_pth_found.empty) {
+ writeln("WARNING not image path found, searched: ", _paths);
+ }
+ return _img_pth_found;
}
auto conf_dir_path() {
auto _dir = asNormalizedPath(base_dir_path.chainPath("conf")).array;
@@ -520,24 +536,6 @@ template SiSUpathsSRC() {
auto doc_src_with_path() {
return asNormalizedPath(pwd.chainPath(_fn_src_and_path)).array;
}
- auto src_image_root_with_path() {
- string[] _possible_img_pth = [
- asNormalizedPath(pwd.chainPath((_fn_src_and_path).dirName ~ "/image")).array,
- asNormalizedPath(pwd.chainPath((_fn_src_and_path).dirName ~ "/../image")).array,
- asNormalizedPath(pwd.chainPath((_fn_src_and_path).dirName ~ "/../../image")).array,
- ];
- string _img_pth_found = "";
- foreach(_img_pth; _possible_img_pth) {
- if (exists(_img_pth)) {
- _img_pth_found = _img_pth;
- break;
- }
- }
- if (_img_pth_found.empty) {
- writeln("WARNING not image path found, searched: ", _possible_img_pth);
- }
- return _img_pth_found;
- }
}
return SisuSrcPaths();
}
diff --git a/src/sdp/output/source_sisupod.d b/src/sdp/output/source_sisupod.d
index a92d087..97077de 100644
--- a/src/sdp/output/source_sisupod.d
+++ b/src/sdp/output/source_sisupod.d
@@ -65,7 +65,7 @@ template SiSUpod() {
pths_sisupod.image_root(doc_matters.src.filename).zpod, "/", image
);
}
- auto fn_src_in = doc_matters.src_path_info.src_image_root_with_path ~ "/" ~ image;
+ auto fn_src_in = doc_matters.src.image_dir_path ~ "/" ~ image;
auto fn_src_out_sisupod_zip_base
= pths_sisupod.image_root(doc_matters.src.filename).zpod.to!string
~ "/" ~ image;