From ee9d82d0b307dee1c9138babf954a3864a0c2f83 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Wed, 12 Feb 2020 00:33:45 +0100 Subject: example: cleaner examples --- example/readme.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'example/readme.md') diff --git a/example/readme.md b/example/readme.md index d5a7563..087a8bc 100644 --- a/example/readme.md +++ b/example/readme.md @@ -8,7 +8,7 @@ Content ------- ``` -./example +./example/src ├── _DSC8808-1.jpg -- a picture ├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file ├── Glacier 3000 -- a directory grouping gallery items @@ -18,5 +18,4 @@ Content │   ├── _DSC5542.jpg │   └── _DSC5542.jpg.yaml ├── gallery.yaml -- gallery settings file -└── readme.md -- this README ``` -- cgit v1.2.3 From ef1778e051e007f08f9188a479d04fdf95a57d21 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Thu, 13 Feb 2020 18:13:55 +0100 Subject: documentation --- example/readme.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'example/readme.md') diff --git a/example/readme.md b/example/readme.md index 087a8bc..e455f03 100644 --- a/example/readme.md +++ b/example/readme.md @@ -8,7 +8,8 @@ Content ------- ``` -./example/src +./example/out -- the output directory for the compiled version of the gallery +./example/src -- source directory with pictures, configuration, tags and metadata ├── _DSC8808-1.jpg -- a picture ├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file ├── Glacier 3000 -- a directory grouping gallery items @@ -17,5 +18,5 @@ Content │   ├── _DSC5475.jpg.yaml │   ├── _DSC5542.jpg │   └── _DSC5542.jpg.yaml -├── gallery.yaml -- gallery settings file +└── gallery.yaml -- gallery settings file ``` -- cgit v1.2.3 From 395a76bc4193c0c7182f87778458a68d0079e836 Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 14 Feb 2020 15:39:56 +0100 Subject: compiler: metadata sidecar for whole directories GitHub: closes #3 --- example/readme.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'example/readme.md') diff --git a/example/readme.md b/example/readme.md index e455f03..eafdaf5 100644 --- a/example/readme.md +++ b/example/readme.md @@ -14,9 +14,11 @@ Content ├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file ├── Glacier 3000 -- a directory grouping gallery items │   ├── thumbnail.jpg -- a thumbnail for the "Glacier 3000" directory +│   ├── directory.yaml -- sidecar metadata file for the "Glacier 3000" directory │   ├── _DSC5475.jpg │   ├── _DSC5475.jpg.yaml │   ├── _DSC5542.jpg │   └── _DSC5542.jpg.yaml +├── directory.yaml -- sidecar metadata file for the root directory └── gallery.yaml -- gallery settings file ``` -- cgit v1.2.3 From 26a85722e74eae23a22350064eed204480bbd032 Mon Sep 17 00:00:00 2001 From: pacien Date: Sun, 16 Feb 2020 12:15:08 +0100 Subject: compiler: unify directory special files --- example/readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'example/readme.md') diff --git a/example/readme.md b/example/readme.md index eafdaf5..809ae68 100644 --- a/example/readme.md +++ b/example/readme.md @@ -13,12 +13,11 @@ Content ├── _DSC8808-1.jpg -- a picture ├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file ├── Glacier 3000 -- a directory grouping gallery items -│   ├── thumbnail.jpg -- a thumbnail for the "Glacier 3000" directory -│   ├── directory.yaml -- sidecar metadata file for the "Glacier 3000" directory +│   ├── _directory.jpg -- a thumbnail for the "Glacier 3000" directory +│   ├── _directory.yaml -- sidecar metadata file for the "Glacier 3000" directory │   ├── _DSC5475.jpg │   ├── _DSC5475.jpg.yaml │   ├── _DSC5542.jpg │   └── _DSC5542.jpg.yaml -├── directory.yaml -- sidecar metadata file for the root directory └── gallery.yaml -- gallery settings file ``` -- cgit v1.2.3 From 20790ffcf740103f59ae41386e6c074ce80f7a02 Mon Sep 17 00:00:00 2001 From: pacien Date: Wed, 26 Feb 2020 02:15:33 +0100 Subject: example: renaming --- example/readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'example/readme.md') diff --git a/example/readme.md b/example/readme.md index 809ae68..2c03260 100644 --- a/example/readme.md +++ b/example/readme.md @@ -8,16 +8,16 @@ Content ------- ``` -./example/out -- the output directory for the compiled version of the gallery -./example/src -- source directory with pictures, configuration, tags and metadata -├── _DSC8808-1.jpg -- a picture -├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file -├── Glacier 3000 -- a directory grouping gallery items -│   ├── _directory.jpg -- a thumbnail for the "Glacier 3000" directory -│   ├── _directory.yaml -- sidecar metadata file for the "Glacier 3000" directory -│   ├── _DSC5475.jpg -│   ├── _DSC5475.jpg.yaml -│   ├── _DSC5542.jpg -│   └── _DSC5542.jpg.yaml -└── gallery.yaml -- gallery settings file +./example/out ----------- the output directory for the compiled version of the gallery +./example/src ----------- source directory with pictures, configuration, tags and metadata +├── DSC0001.jpg --------- a picture +├── DSC0001.jpg.yaml ---- its associated sidecar metadata file +├── Ormont-Dessus ------- a directory grouping gallery items +│ ├── _directory.jpg -- a thumbnail for its parent directory +│ ├── _directory.yaml - directory sidecar metadata file +│ ├── DSC0002.jpg +│ ├── DSC0002.jpg.yaml +│ ├── DSC0003.jpg +│ └── DSC0003.jpg.yaml +└── gallery.yaml -------- gallery settings file ``` -- cgit v1.2.3