diff options
Diffstat (limited to 'org/default_paths.org')
-rw-r--r-- | org/default_paths.org | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/org/default_paths.org b/org/default_paths.org index 859415c..7bf838e 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -253,13 +253,6 @@ template PathMatters() { return _uid; } string docname_composite_unique_per_src_doc() { - /+ - z pod name if any + src filename + lng code - filename ~ "." ~ lng - * unique per src doc - used by - - sqlite discrete index (multilingual, each language of a document) - +/ string _fn; if (pod_name_with_path.baseName == filename_base) { _fn = filename_base ~ mkup.sep ~ filename_extension ~ mkup.sep ~ lng; @@ -1131,7 +1124,7 @@ template DocReformPathsEPUB() { Po output_pth_root, Lng lng, ) { - auto out_pth = DocReformOutPaths!()( output_pth_root, lng); + auto out_pth = DocReformOutPaths!()(output_pth_root, lng); string base_dir = "epub"; struct _PathsStruct { string base() { @@ -1241,9 +1234,6 @@ template DocReformPathsODT() { string base_pth() { // dir will contain odt document file (also debug file tree) return asNormalizedPath((out_pth.output_base).chainPath(base_dir)).array; } - // string base_filename() { - // return doc_matters.src.filename_base; - // } string odt_file() { return asNormalizedPath(base_pth.chainPath(doc_matters.src.filename_base ~ ".odt")).array; } |