mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 11:09:26 +00:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
9b7c3dc697
|
|||
|
c732b49339
|
|||
|
9829a74f95
|
|||
|
372b960261
|
|||
|
c671c2a4bc
|
|||
|
8088b2e69c
|
|||
|
e4d63de680
|
|||
|
0e8287e4a8
|
|||
|
48950d1d82
|
|||
|
e1d74c3091
|
|||
|
f57d81f508
|
|||
|
67a9058b7d
|
|||
|
79e34d7e43
|
|||
|
0cda1706fa
|
|||
|
85467f4f1e
|
|||
|
00ccb96581
|
|||
|
5227beb02a
|
|||
|
22f9cb4e00
|
|||
|
dbf3e5c27a
|
|||
|
d9ca40bf77
|
|||
|
b8cbc49647
|
|||
|
b80e98a4ec
|
|||
|
350f41f439
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -164,6 +164,7 @@ cython_debug/
|
|||||||
test/.static
|
test/.static
|
||||||
test/.thumbnails
|
test/.thumbnails
|
||||||
test/**/index.html
|
test/**/index.html
|
||||||
|
test/**/license.html
|
||||||
test/**/.metadata.json
|
test/**/.metadata.json
|
||||||
test/manifest.json
|
test/manifest.json
|
||||||
themes/previews
|
themes/previews
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ The script supports several command-line options to customize its behavior. Belo
|
|||||||
- `--ignore-other-files`: Ignore files that do not match the specified extensions.
|
- `--ignore-other-files`: Ignore files that do not match the specified extensions.
|
||||||
- `--regenerate-thumbnails`: Regenerate thumbnails even if they already exist.
|
- `--regenerate-thumbnails`: Regenerate thumbnails even if they already exist.
|
||||||
- `--reread-metadata`: Reread image metadata if it already exists.
|
- `--reread-metadata`: Reread image metadata if it already exists.
|
||||||
|
- `--reread-sidecar`: Reread sidecar file data.
|
||||||
- `--reverse-sort`: Sort images by reverse name order.
|
- `--reverse-sort`: Sort images by reverse name order.
|
||||||
- `--theme-path PATH`: Specify the path to the CSS theme file. Default is the provided default theme.
|
- `--theme-path PATH`: Specify the path to the CSS theme file. Default is the provided default theme.
|
||||||
- `--use-fancy-folders`: Enable fancy folder view instead of the default Apache directory listing.
|
- `--use-fancy-folders`: Enable fancy folder view instead of the default Apache directory listing.
|
||||||
|
|||||||
@@ -9,14 +9,14 @@
|
|||||||
"ms-python.vscode-pylance",
|
"ms-python.vscode-pylance",
|
||||||
"samuelcolvin.jinjahtml",
|
"samuelcolvin.jinjahtml",
|
||||||
"vscode.css-language-features",
|
"vscode.css-language-features",
|
||||||
"vscode.html-language-features",
|
"vscode.html-language-features"
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
"folders": [
|
"folders": [
|
||||||
{
|
{
|
||||||
"name": "StaticGalleryBuilder",
|
"name": "StaticGalleryBuilder",
|
||||||
"path": "./",
|
"path": "./"
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
"launch": {
|
"launch": {
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
@@ -40,14 +40,14 @@
|
|||||||
"--reverse-sort",
|
"--reverse-sort",
|
||||||
"--regenerate-thumbnails",
|
"--regenerate-thumbnails",
|
||||||
"--reread-metadata",
|
"--reread-metadata",
|
||||||
"--folderthumbnails",
|
"--folderthumbnails"
|
||||||
],
|
],
|
||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
"name": "Testfolder",
|
"name": "Testfolder",
|
||||||
"postDebugTask": "Delete Lockfile",
|
"postDebugTask": "Delete Lockfile",
|
||||||
"program": "${workspaceFolder}/builder.py",
|
"program": "${workspaceFolder}/builder.py",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"type": "debugpy",
|
"type": "debugpy"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
@@ -65,14 +65,38 @@
|
|||||||
"-m",
|
"-m",
|
||||||
// "--regenerate-thumbnails",
|
// "--regenerate-thumbnails",
|
||||||
// "--reread-metadata",
|
// "--reread-metadata",
|
||||||
"--folderthumbnails",
|
"--folderthumbnails"
|
||||||
],
|
],
|
||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
"name": "woek",
|
"name": "woek",
|
||||||
"postDebugTask": "Delete Lockfile 2",
|
"postDebugTask": "Delete Lockfile 2",
|
||||||
"program": "${workspaceFolder}/builder.py",
|
"program": "${workspaceFolder}/builder.py",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"type": "debugpy",
|
"type": "debugpy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"args": [
|
||||||
|
"--use-fancy-folders",
|
||||||
|
"-p",
|
||||||
|
"/mnt/nfs/pictures/",
|
||||||
|
"-w",
|
||||||
|
"https://pictures.sorogon.eu/",
|
||||||
|
"-t",
|
||||||
|
"Sorogon's Pictures",
|
||||||
|
"--theme",
|
||||||
|
"/home/user/git/github.com/greflm13/simple-picture-server/themes/alpenglow.css",
|
||||||
|
"-m",
|
||||||
|
"--exclude-folder",
|
||||||
|
"Scans",
|
||||||
|
"--exclude-folder",
|
||||||
|
"*/Galleries/*",
|
||||||
|
"--folderthumbnails"
|
||||||
|
],
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"name": "production",
|
||||||
|
"program": "${workspaceFolder}/builder.py",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "debugpy"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
@@ -83,43 +107,39 @@
|
|||||||
"name": "Generate Themes previews",
|
"name": "Generate Themes previews",
|
||||||
"program": "${workspaceFolder}/generate_previews.py",
|
"program": "${workspaceFolder}/generate_previews.py",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"type": "debugpy",
|
"type": "debugpy"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"[css]": {
|
"[css]": {
|
||||||
"editor.defaultFormatter": "vscode.css-language-features",
|
"editor.defaultFormatter": "vscode.css-language-features"
|
||||||
},
|
},
|
||||||
"[jinja-css]": {
|
"[jinja-css]": {
|
||||||
"editor.defaultFormatter": "vscode.css-language-features",
|
"editor.defaultFormatter": "vscode.css-language-features"
|
||||||
},
|
},
|
||||||
"[jinja-html]": {
|
"[jinja-html]": {
|
||||||
"editor.defaultFormatter": "vscode.html-language-features",
|
"editor.defaultFormatter": "vscode.html-language-features"
|
||||||
},
|
},
|
||||||
"[jinja-js]": {
|
"[jinja-js]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"[python]": {
|
"[python]": {
|
||||||
"editor.defaultFormatter": "charliermarsh.ruff",
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
||||||
},
|
},
|
||||||
"black-formatter.args": [
|
"black-formatter.args": ["-l 260"],
|
||||||
"-l 260",
|
"black-formatter.interpreter": ["/usr/bin/python3"],
|
||||||
],
|
|
||||||
"black-formatter.interpreter": [
|
|
||||||
"/usr/bin/python3",
|
|
||||||
],
|
|
||||||
"editor.formatOnSave": false,
|
"editor.formatOnSave": false,
|
||||||
"emmet.includeLanguages": {
|
"emmet.includeLanguages": {
|
||||||
"jinja-css": "css",
|
"jinja-css": "css",
|
||||||
"jinja-html": "html",
|
"jinja-html": "html",
|
||||||
"jinja-js": "javascript",
|
"jinja-js": "javascript",
|
||||||
"jinja-json": "json",
|
"jinja-json": "json"
|
||||||
},
|
},
|
||||||
"files.associations": {
|
"files.associations": {
|
||||||
"**/*.css.j2": "jinja-css",
|
"**/*.css.j2": "jinja-css",
|
||||||
"**/*.css": "css",
|
"**/*.css": "css",
|
||||||
"**/*.html.j2": "jinja-html",
|
"**/*.html.j2": "jinja-html"
|
||||||
},
|
},
|
||||||
"gitblame.inlineMessageEnabled": true,
|
"gitblame.inlineMessageEnabled": true,
|
||||||
"gitblame.inlineMessageFormat": "${author.name}, ${time.ago} • ${commit.summary}",
|
"gitblame.inlineMessageFormat": "${author.name}, ${time.ago} • ${commit.summary}",
|
||||||
@@ -135,17 +155,15 @@
|
|||||||
"json.schemaDownload.enable": true,
|
"json.schemaDownload.enable": true,
|
||||||
"json.schemas": [
|
"json.schemas": [
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": ["manifest.json.j2"],
|
||||||
"manifest.json.j2",
|
"url": "https://json.schemastore.org/web-manifest-combined.json"
|
||||||
],
|
}
|
||||||
"url": "https://json.schemastore.org/web-manifest-combined.json",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
"prettier.htmlWhitespaceSensitivity": "css",
|
"prettier.htmlWhitespaceSensitivity": "css",
|
||||||
"pylint.args": [
|
"pylint.args": [
|
||||||
"--disable=C0111",
|
"--disable=C0111",
|
||||||
"--disable=C0301",
|
"--disable=C0301",
|
||||||
"--good-names-rgxs=^[_a-z][_a-z0-9]?$",
|
"--good-names-rgxs=^[_a-z][_a-z0-9]?$"
|
||||||
],
|
],
|
||||||
"python.analysis.inlayHints.callArgumentNames": "off",
|
"python.analysis.inlayHints.callArgumentNames": "off",
|
||||||
"python.analysis.inlayHints.functionReturnTypes": false,
|
"python.analysis.inlayHints.functionReturnTypes": false,
|
||||||
@@ -153,7 +171,7 @@
|
|||||||
"yaml.schemas": {
|
"yaml.schemas": {
|
||||||
"https://raw.githubusercontent.com/pamburus/hl/master/schema/json/config.schema.json": "file:///home/user/git/github.com/greflm13/StaticGalleryBuilder/hl_config.yaml"
|
"https://raw.githubusercontent.com/pamburus/hl/master/schema/json/config.schema.json": "file:///home/user/git/github.com/greflm13/StaticGalleryBuilder/hl_config.yaml"
|
||||||
},
|
},
|
||||||
"ruff.lineLength": 180,
|
"ruff.lineLength": 180
|
||||||
},
|
},
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
@@ -206,9 +224,7 @@
|
|||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
},
|
},
|
||||||
"dependsOn": [
|
"dependsOn": ["Clean"]
|
||||||
"Clean"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "rm -rf build dist",
|
"command": "rm -rf build dist",
|
||||||
@@ -240,7 +256,22 @@
|
|||||||
"showReuseMessage": false,
|
"showReuseMessage": false,
|
||||||
"clear": true
|
"clear": true
|
||||||
}
|
}
|
||||||
}
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "COLUMNS=120 ./builder.py --generate-help-preview help.svg",
|
||||||
|
"isBackground": false,
|
||||||
|
"label": "Create help svg",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"type": "shell",
|
||||||
|
"presentation": {
|
||||||
|
"echo": false,
|
||||||
|
"reveal": "always",
|
||||||
|
"focus": true,
|
||||||
|
"panel": "dedicated",
|
||||||
|
"showReuseMessage": false,
|
||||||
|
"clear": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -157,46 +157,102 @@ figure {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip .tooltiptext {
|
.tooltip a {
|
||||||
display: none;
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagtoggle {
|
||||||
|
cursor: pointer;
|
||||||
|
float: right;
|
||||||
|
padding: 12px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagflex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltiptext {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
width: max-content;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.3s;
|
transition: opacity 0.3s;
|
||||||
float: left;
|
float: left;
|
||||||
|
max-height: 286px;
|
||||||
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip .infotext {
|
.tooltip .infotext {
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip .tagdropdown {
|
.tooltiptext.tagdropdown {
|
||||||
|
width: max-content;
|
||||||
|
right: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.3s ease, opacity 0.3s ease;
|
||||||
|
max-height: 0;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip:hover .tooltiptext {
|
.tooltiptext.tagdropdown.show {
|
||||||
|
max-height: 286px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip:hover .infotext {
|
||||||
display: block;
|
display: block;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip:active .tooltiptext {
|
.tooltip:active .infotext {
|
||||||
display: block;
|
display: block;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip .tooltiptext .tagentry {
|
.tagentryparent {
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.3s ease, opacity 0.3s ease;
|
||||||
|
max-height: 0;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentryparent.show {
|
||||||
|
max-height: 286px;
|
||||||
|
opacity: 1;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip .tooltiptext ol {
|
||||||
|
margin-left: 0;
|
||||||
|
padding-left: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip .tooltiptext .tagentry label {
|
.tooltip .tooltiptext .tagentry label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
display: block;
|
display: block;
|
||||||
|
|||||||
168
help.svg
168
help.svg
@@ -1,4 +1,4 @@
|
|||||||
<svg class="rich-terminal" viewBox="0 0 1482 855.1999999999999" xmlns="http://www.w3.org/2000/svg">
|
<svg class="rich-terminal" viewBox="0 0 1482 928.4" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Generated with Rich https://www.textualize.io -->
|
<!-- Generated with Rich https://www.textualize.io -->
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
@@ -19,171 +19,183 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-1308707172-matrix {
|
.terminal-3378394567-matrix {
|
||||||
font-family: Fira Code, monospace;
|
font-family: Fira Code, monospace;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 24.4px;
|
line-height: 24.4px;
|
||||||
font-variant-east-asian: full-width;
|
font-variant-east-asian: full-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-1308707172-title {
|
.terminal-3378394567-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-family: arial;
|
font-family: arial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-1308707172-r1 { fill: #ff8700 }
|
.terminal-3378394567-r1 { fill: #ff8700 }
|
||||||
.terminal-1308707172-r2 { fill: #c5c8c6 }
|
.terminal-3378394567-r2 { fill: #c5c8c6 }
|
||||||
.terminal-1308707172-r3 { fill: #808080 }
|
.terminal-3378394567-r3 { fill: #808080 }
|
||||||
.terminal-1308707172-r4 { fill: #68a0b3 }
|
.terminal-3378394567-r4 { fill: #68a0b3 }
|
||||||
.terminal-1308707172-r5 { fill: #00af87 }
|
.terminal-3378394567-r5 { fill: #00af87 }
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<defs>
|
<defs>
|
||||||
<clipPath id="terminal-1308707172-clip-terminal">
|
<clipPath id="terminal-3378394567-clip-terminal">
|
||||||
<rect x="0" y="0" width="1463.0" height="804.1999999999999" />
|
<rect x="0" y="0" width="1463.0" height="877.4" />
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-0">
|
<clipPath id="terminal-3378394567-line-0">
|
||||||
<rect x="0" y="1.5" width="1464" height="24.65"/>
|
<rect x="0" y="1.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-1">
|
<clipPath id="terminal-3378394567-line-1">
|
||||||
<rect x="0" y="25.9" width="1464" height="24.65"/>
|
<rect x="0" y="25.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-2">
|
<clipPath id="terminal-3378394567-line-2">
|
||||||
<rect x="0" y="50.3" width="1464" height="24.65"/>
|
<rect x="0" y="50.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-3">
|
<clipPath id="terminal-3378394567-line-3">
|
||||||
<rect x="0" y="74.7" width="1464" height="24.65"/>
|
<rect x="0" y="74.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-4">
|
<clipPath id="terminal-3378394567-line-4">
|
||||||
<rect x="0" y="99.1" width="1464" height="24.65"/>
|
<rect x="0" y="99.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-5">
|
<clipPath id="terminal-3378394567-line-5">
|
||||||
<rect x="0" y="123.5" width="1464" height="24.65"/>
|
<rect x="0" y="123.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-6">
|
<clipPath id="terminal-3378394567-line-6">
|
||||||
<rect x="0" y="147.9" width="1464" height="24.65"/>
|
<rect x="0" y="147.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-7">
|
<clipPath id="terminal-3378394567-line-7">
|
||||||
<rect x="0" y="172.3" width="1464" height="24.65"/>
|
<rect x="0" y="172.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-8">
|
<clipPath id="terminal-3378394567-line-8">
|
||||||
<rect x="0" y="196.7" width="1464" height="24.65"/>
|
<rect x="0" y="196.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-9">
|
<clipPath id="terminal-3378394567-line-9">
|
||||||
<rect x="0" y="221.1" width="1464" height="24.65"/>
|
<rect x="0" y="221.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-10">
|
<clipPath id="terminal-3378394567-line-10">
|
||||||
<rect x="0" y="245.5" width="1464" height="24.65"/>
|
<rect x="0" y="245.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-11">
|
<clipPath id="terminal-3378394567-line-11">
|
||||||
<rect x="0" y="269.9" width="1464" height="24.65"/>
|
<rect x="0" y="269.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-12">
|
<clipPath id="terminal-3378394567-line-12">
|
||||||
<rect x="0" y="294.3" width="1464" height="24.65"/>
|
<rect x="0" y="294.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-13">
|
<clipPath id="terminal-3378394567-line-13">
|
||||||
<rect x="0" y="318.7" width="1464" height="24.65"/>
|
<rect x="0" y="318.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-14">
|
<clipPath id="terminal-3378394567-line-14">
|
||||||
<rect x="0" y="343.1" width="1464" height="24.65"/>
|
<rect x="0" y="343.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-15">
|
<clipPath id="terminal-3378394567-line-15">
|
||||||
<rect x="0" y="367.5" width="1464" height="24.65"/>
|
<rect x="0" y="367.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-16">
|
<clipPath id="terminal-3378394567-line-16">
|
||||||
<rect x="0" y="391.9" width="1464" height="24.65"/>
|
<rect x="0" y="391.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-17">
|
<clipPath id="terminal-3378394567-line-17">
|
||||||
<rect x="0" y="416.3" width="1464" height="24.65"/>
|
<rect x="0" y="416.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-18">
|
<clipPath id="terminal-3378394567-line-18">
|
||||||
<rect x="0" y="440.7" width="1464" height="24.65"/>
|
<rect x="0" y="440.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-19">
|
<clipPath id="terminal-3378394567-line-19">
|
||||||
<rect x="0" y="465.1" width="1464" height="24.65"/>
|
<rect x="0" y="465.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-20">
|
<clipPath id="terminal-3378394567-line-20">
|
||||||
<rect x="0" y="489.5" width="1464" height="24.65"/>
|
<rect x="0" y="489.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-21">
|
<clipPath id="terminal-3378394567-line-21">
|
||||||
<rect x="0" y="513.9" width="1464" height="24.65"/>
|
<rect x="0" y="513.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-22">
|
<clipPath id="terminal-3378394567-line-22">
|
||||||
<rect x="0" y="538.3" width="1464" height="24.65"/>
|
<rect x="0" y="538.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-23">
|
<clipPath id="terminal-3378394567-line-23">
|
||||||
<rect x="0" y="562.7" width="1464" height="24.65"/>
|
<rect x="0" y="562.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-24">
|
<clipPath id="terminal-3378394567-line-24">
|
||||||
<rect x="0" y="587.1" width="1464" height="24.65"/>
|
<rect x="0" y="587.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-25">
|
<clipPath id="terminal-3378394567-line-25">
|
||||||
<rect x="0" y="611.5" width="1464" height="24.65"/>
|
<rect x="0" y="611.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-26">
|
<clipPath id="terminal-3378394567-line-26">
|
||||||
<rect x="0" y="635.9" width="1464" height="24.65"/>
|
<rect x="0" y="635.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-27">
|
<clipPath id="terminal-3378394567-line-27">
|
||||||
<rect x="0" y="660.3" width="1464" height="24.65"/>
|
<rect x="0" y="660.3" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-28">
|
<clipPath id="terminal-3378394567-line-28">
|
||||||
<rect x="0" y="684.7" width="1464" height="24.65"/>
|
<rect x="0" y="684.7" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-29">
|
<clipPath id="terminal-3378394567-line-29">
|
||||||
<rect x="0" y="709.1" width="1464" height="24.65"/>
|
<rect x="0" y="709.1" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-30">
|
<clipPath id="terminal-3378394567-line-30">
|
||||||
<rect x="0" y="733.5" width="1464" height="24.65"/>
|
<rect x="0" y="733.5" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-1308707172-line-31">
|
<clipPath id="terminal-3378394567-line-31">
|
||||||
<rect x="0" y="757.9" width="1464" height="24.65"/>
|
<rect x="0" y="757.9" width="1464" height="24.65"/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
|
<clipPath id="terminal-3378394567-line-32">
|
||||||
|
<rect x="0" y="782.3" width="1464" height="24.65"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="terminal-3378394567-line-33">
|
||||||
|
<rect x="0" y="806.7" width="1464" height="24.65"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="terminal-3378394567-line-34">
|
||||||
|
<rect x="0" y="831.1" width="1464" height="24.65"/>
|
||||||
|
</clipPath>
|
||||||
</defs>
|
</defs>
|
||||||
|
|
||||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="853.2" rx="8"/>
|
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="926.4" rx="8"/>
|
||||||
<g transform="translate(26,22)">
|
<g transform="translate(26,22)">
|
||||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||||
</g>
|
</g>
|
||||||
|
|
||||||
<g transform="translate(9, 41)" clip-path="url(#terminal-1308707172-clip-terminal)">
|
<g transform="translate(9, 41)" clip-path="url(#terminal-3378394567-clip-terminal)">
|
||||||
|
|
||||||
<g class="terminal-1308707172-matrix">
|
<g class="terminal-3378394567-matrix">
|
||||||
<text class="terminal-1308707172-r1" x="0" y="20" textLength="73.2" clip-path="url(#terminal-1308707172-line-0)">Usage:</text><text class="terminal-1308707172-r3" x="85.4" y="20" textLength="122" clip-path="url(#terminal-1308707172-line-0)">builder.py</text><text class="terminal-1308707172-r2" x="207.4" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)"> [</text><text class="terminal-1308707172-r4" x="231.8" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-h</text><text class="terminal-1308707172-r2" x="256.2" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">] [</text><text class="terminal-1308707172-r4" x="292.8" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-a</text><text class="terminal-1308707172-r5" x="329.4" y="20" textLength="73.2" clip-path="url(#terminal-1308707172-line-0)">AUTHOR</text><text class="terminal-1308707172-r2" x="402.6" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">] [</text><text class="terminal-1308707172-r4" x="439.2" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-e</text><text class="terminal-1308707172-r5" x="475.8" y="20" textLength="109.8" clip-path="url(#terminal-1308707172-line-0)">EXTENSION</text><text class="terminal-1308707172-r2" x="585.6" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">] [</text><text class="terminal-1308707172-r4" x="622.2" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-l</text><text class="terminal-1308707172-r5" x="658.8" y="20" textLength="85.4" clip-path="url(#terminal-1308707172-line-0)">LICENSE</text><text class="terminal-1308707172-r2" x="744.2" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">] [</text><text class="terminal-1308707172-r4" x="780.8" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-m</text><text class="terminal-1308707172-r2" x="805.2" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">] [</text><text class="terminal-1308707172-r4" x="841.8" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-n</text><text class="terminal-1308707172-r2" x="866.2" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">] </text><text class="terminal-1308707172-r4" x="890.6" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-p</text><text class="terminal-1308707172-r5" x="927.2" y="20" textLength="48.8" clip-path="url(#terminal-1308707172-line-0)">ROOT</text><text class="terminal-1308707172-r4" x="988.2" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-t</text><text class="terminal-1308707172-r5" x="1024.8" y="20" textLength="61" clip-path="url(#terminal-1308707172-line-0)">TITLE</text><text class="terminal-1308707172-r4" x="1098" y="20" textLength="24.4" clip-path="url(#terminal-1308707172-line-0)">-w</text><text class="terminal-1308707172-r5" x="1134.6" y="20" textLength="36.6" clip-path="url(#terminal-1308707172-line-0)">URL</text><text class="terminal-1308707172-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1308707172-line-0)">
|
<text class="terminal-3378394567-r1" x="0" y="20" textLength="73.2" clip-path="url(#terminal-3378394567-line-0)">Usage:</text><text class="terminal-3378394567-r3" x="85.4" y="20" textLength="122" clip-path="url(#terminal-3378394567-line-0)">builder.py</text><text class="terminal-3378394567-r2" x="207.4" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)"> [</text><text class="terminal-3378394567-r4" x="231.8" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-h</text><text class="terminal-3378394567-r2" x="256.2" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">] [</text><text class="terminal-3378394567-r4" x="292.8" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-a</text><text class="terminal-3378394567-r5" x="329.4" y="20" textLength="73.2" clip-path="url(#terminal-3378394567-line-0)">AUTHOR</text><text class="terminal-3378394567-r2" x="402.6" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">] [</text><text class="terminal-3378394567-r4" x="439.2" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-e</text><text class="terminal-3378394567-r5" x="475.8" y="20" textLength="109.8" clip-path="url(#terminal-3378394567-line-0)">EXTENSION</text><text class="terminal-3378394567-r2" x="585.6" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">] [</text><text class="terminal-3378394567-r4" x="622.2" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-l</text><text class="terminal-3378394567-r5" x="658.8" y="20" textLength="85.4" clip-path="url(#terminal-3378394567-line-0)">LICENSE</text><text class="terminal-3378394567-r2" x="744.2" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">] [</text><text class="terminal-3378394567-r4" x="780.8" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-m</text><text class="terminal-3378394567-r2" x="805.2" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">] [</text><text class="terminal-3378394567-r4" x="841.8" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-n</text><text class="terminal-3378394567-r2" x="866.2" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">] </text><text class="terminal-3378394567-r4" x="890.6" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-p</text><text class="terminal-3378394567-r5" x="927.2" y="20" textLength="48.8" clip-path="url(#terminal-3378394567-line-0)">ROOT</text><text class="terminal-3378394567-r4" x="988.2" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-t</text><text class="terminal-3378394567-r5" x="1024.8" y="20" textLength="61" clip-path="url(#terminal-3378394567-line-0)">TITLE</text><text class="terminal-3378394567-r4" x="1098" y="20" textLength="24.4" clip-path="url(#terminal-3378394567-line-0)">-w</text><text class="terminal-3378394567-r5" x="1134.6" y="20" textLength="36.6" clip-path="url(#terminal-3378394567-line-0)">URL</text><text class="terminal-3378394567-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3378394567-line-0)">
|
||||||
</text><text class="terminal-1308707172-r2" x="0" y="44.4" textLength="231.8" clip-path="url(#terminal-1308707172-line-1)">                  [</text><text class="terminal-1308707172-r4" x="231.8" y="44.4" textLength="195.2" clip-path="url(#terminal-1308707172-line-1)">--exclude-folder</text><text class="terminal-1308707172-r5" x="439.2" y="44.4" textLength="73.2" clip-path="url(#terminal-1308707172-line-1)">FOLDER</text><text class="terminal-1308707172-r2" x="512.4" y="44.4" textLength="36.6" clip-path="url(#terminal-1308707172-line-1)">] [</text><text class="terminal-1308707172-r4" x="549" y="44.4" textLength="244" clip-path="url(#terminal-1308707172-line-1)">--ignore-other-files</text><text class="terminal-1308707172-r2" x="793" y="44.4" textLength="36.6" clip-path="url(#terminal-1308707172-line-1)">] [</text><text class="terminal-1308707172-r4" x="829.6" y="44.4" textLength="280.6" clip-path="url(#terminal-1308707172-line-1)">--regenerate-thumbnails</text><text class="terminal-1308707172-r2" x="1110.2" y="44.4" textLength="36.6" clip-path="url(#terminal-1308707172-line-1)">] [</text><text class="terminal-1308707172-r4" x="1146.8" y="44.4" textLength="207.4" clip-path="url(#terminal-1308707172-line-1)">--reread-metadata</text><text class="terminal-1308707172-r2" x="1354.2" y="44.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-1)">]</text><text class="terminal-1308707172-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-1)">
|
</text><text class="terminal-3378394567-r2" x="0" y="44.4" textLength="231.8" clip-path="url(#terminal-3378394567-line-1)">                  [</text><text class="terminal-3378394567-r4" x="231.8" y="44.4" textLength="195.2" clip-path="url(#terminal-3378394567-line-1)">--exclude-folder</text><text class="terminal-3378394567-r5" x="439.2" y="44.4" textLength="73.2" clip-path="url(#terminal-3378394567-line-1)">FOLDER</text><text class="terminal-3378394567-r2" x="512.4" y="44.4" textLength="36.6" clip-path="url(#terminal-3378394567-line-1)">] [</text><text class="terminal-3378394567-r4" x="549" y="44.4" textLength="219.6" clip-path="url(#terminal-3378394567-line-1)">--folderthumbnails</text><text class="terminal-3378394567-r2" x="768.6" y="44.4" textLength="36.6" clip-path="url(#terminal-3378394567-line-1)">] [</text><text class="terminal-3378394567-r4" x="805.2" y="44.4" textLength="244" clip-path="url(#terminal-3378394567-line-1)">--ignore-other-files</text><text class="terminal-3378394567-r2" x="1049.2" y="44.4" textLength="36.6" clip-path="url(#terminal-3378394567-line-1)">] [</text><text class="terminal-3378394567-r4" x="1085.8" y="44.4" textLength="280.6" clip-path="url(#terminal-3378394567-line-1)">--regenerate-thumbnails</text><text class="terminal-3378394567-r2" x="1366.4" y="44.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-1)">]</text><text class="terminal-3378394567-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-1)">
|
||||||
</text><text class="terminal-1308707172-r2" x="0" y="68.8" textLength="231.8" clip-path="url(#terminal-1308707172-line-2)">                  [</text><text class="terminal-1308707172-r4" x="231.8" y="68.8" textLength="170.8" clip-path="url(#terminal-1308707172-line-2)">--reverse-sort</text><text class="terminal-1308707172-r2" x="402.6" y="68.8" textLength="36.6" clip-path="url(#terminal-1308707172-line-2)">] [</text><text class="terminal-1308707172-r4" x="439.2" y="68.8" textLength="146.4" clip-path="url(#terminal-1308707172-line-2)">--theme-path</text><text class="terminal-1308707172-r5" x="597.8" y="68.8" textLength="48.8" clip-path="url(#terminal-1308707172-line-2)">PATH</text><text class="terminal-1308707172-r2" x="646.6" y="68.8" textLength="36.6" clip-path="url(#terminal-1308707172-line-2)">] [</text><text class="terminal-1308707172-r4" x="683.2" y="68.8" textLength="231.8" clip-path="url(#terminal-1308707172-line-2)">--use-fancy-folders</text><text class="terminal-1308707172-r2" x="915" y="68.8" textLength="36.6" clip-path="url(#terminal-1308707172-line-2)">] [</text><text class="terminal-1308707172-r4" x="951.6" y="68.8" textLength="109.8" clip-path="url(#terminal-1308707172-line-2)">--version</text><text class="terminal-1308707172-r2" x="1061.4" y="68.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-2)">]</text><text class="terminal-1308707172-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-2)">
|
</text><text class="terminal-3378394567-r2" x="0" y="68.8" textLength="231.8" clip-path="url(#terminal-3378394567-line-2)">                  [</text><text class="terminal-3378394567-r4" x="231.8" y="68.8" textLength="207.4" clip-path="url(#terminal-3378394567-line-2)">--reread-metadata</text><text class="terminal-3378394567-r2" x="439.2" y="68.8" textLength="36.6" clip-path="url(#terminal-3378394567-line-2)">] [</text><text class="terminal-3378394567-r4" x="475.8" y="68.8" textLength="195.2" clip-path="url(#terminal-3378394567-line-2)">--reread-sidecar</text><text class="terminal-3378394567-r2" x="671" y="68.8" textLength="36.6" clip-path="url(#terminal-3378394567-line-2)">] [</text><text class="terminal-3378394567-r4" x="707.6" y="68.8" textLength="170.8" clip-path="url(#terminal-3378394567-line-2)">--reverse-sort</text><text class="terminal-3378394567-r2" x="878.4" y="68.8" textLength="36.6" clip-path="url(#terminal-3378394567-line-2)">] [</text><text class="terminal-3378394567-r4" x="915" y="68.8" textLength="146.4" clip-path="url(#terminal-3378394567-line-2)">--theme-path</text><text class="terminal-3378394567-r5" x="1073.6" y="68.8" textLength="48.8" clip-path="url(#terminal-3378394567-line-2)">PATH</text><text class="terminal-3378394567-r2" x="1122.4" y="68.8" textLength="36.6" clip-path="url(#terminal-3378394567-line-2)">] [</text><text class="terminal-3378394567-r4" x="1159" y="68.8" textLength="231.8" clip-path="url(#terminal-3378394567-line-2)">--use-fancy-folders</text><text class="terminal-3378394567-r2" x="1390.8" y="68.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-2)">]</text><text class="terminal-3378394567-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-2)">
|
||||||
</text><text class="terminal-1308707172-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-3)">
|
</text><text class="terminal-3378394567-r2" x="0" y="93.2" textLength="231.8" clip-path="url(#terminal-3378394567-line-3)">                  [</text><text class="terminal-3378394567-r4" x="231.8" y="93.2" textLength="109.8" clip-path="url(#terminal-3378394567-line-3)">--version</text><text class="terminal-3378394567-r2" x="341.6" y="93.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-3)">]</text><text class="terminal-3378394567-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-3)">
|
||||||
</text><text class="terminal-1308707172-r2" x="0" y="117.6" textLength="671" clip-path="url(#terminal-1308707172-line-4)">Generate HTML files for a static image hosting website.</text><text class="terminal-1308707172-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-4)">
|
</text><text class="terminal-3378394567-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-4)">
|
||||||
</text><text class="terminal-1308707172-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-1308707172-line-5)">
|
</text><text class="terminal-3378394567-r2" x="0" y="142" textLength="658.8" clip-path="url(#terminal-3378394567-line-5)">generate HTML files for a static image hosting website</text><text class="terminal-3378394567-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-3378394567-line-5)">
|
||||||
</text><text class="terminal-1308707172-r1" x="0" y="166.4" textLength="97.6" clip-path="url(#terminal-1308707172-line-6)">Options:</text><text class="terminal-1308707172-r2" x="1464" y="166.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-6)">
|
</text><text class="terminal-3378394567-r2" x="1464" y="166.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-6)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="190.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-7)">-h</text><text class="terminal-1308707172-r2" x="48.8" y="190.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-7)">, </text><text class="terminal-1308707172-r4" x="73.2" y="190.8" textLength="73.2" clip-path="url(#terminal-1308707172-line-7)">--help</text><text class="terminal-1308707172-r2" x="292.8" y="190.8" textLength="378.2" clip-path="url(#terminal-1308707172-line-7)">show this help message and exit</text><text class="terminal-1308707172-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-7)">
|
</text><text class="terminal-3378394567-r1" x="0" y="190.8" textLength="97.6" clip-path="url(#terminal-3378394567-line-7)">Options:</text><text class="terminal-3378394567-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-7)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="215.2" textLength="24.4" clip-path="url(#terminal-1308707172-line-8)">-a</text><text class="terminal-1308707172-r2" x="48.8" y="215.2" textLength="24.4" clip-path="url(#terminal-1308707172-line-8)">, </text><text class="terminal-1308707172-r4" x="73.2" y="215.2" textLength="158.6" clip-path="url(#terminal-1308707172-line-8)">--author-name</text><text class="terminal-1308707172-r5" x="244" y="215.2" textLength="73.2" clip-path="url(#terminal-1308707172-line-8)">AUTHOR</text><text class="terminal-1308707172-r2" x="1464" y="215.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-8)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="215.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-8)">-h</text><text class="terminal-3378394567-r2" x="48.8" y="215.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-8)">, </text><text class="terminal-3378394567-r4" x="73.2" y="215.2" textLength="73.2" clip-path="url(#terminal-3378394567-line-8)">--help</text><text class="terminal-3378394567-r2" x="292.8" y="215.2" textLength="378.2" clip-path="url(#terminal-3378394567-line-8)">show this help message and exit</text><text class="terminal-3378394567-r2" x="1464" y="215.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-8)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="239.6" textLength="402.6" clip-path="url(#terminal-1308707172-line-9)">Name of the author of the images.</text><text class="terminal-1308707172-r2" x="1464" y="239.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-9)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="239.6" textLength="24.4" clip-path="url(#terminal-3378394567-line-9)">-a</text><text class="terminal-3378394567-r2" x="48.8" y="239.6" textLength="24.4" clip-path="url(#terminal-3378394567-line-9)">, </text><text class="terminal-3378394567-r4" x="73.2" y="239.6" textLength="158.6" clip-path="url(#terminal-3378394567-line-9)">--author-name</text><text class="terminal-3378394567-r5" x="244" y="239.6" textLength="73.2" clip-path="url(#terminal-3378394567-line-9)">AUTHOR</text><text class="terminal-3378394567-r2" x="1464" y="239.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-9)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="264" textLength="24.4" clip-path="url(#terminal-1308707172-line-10)">-e</text><text class="terminal-1308707172-r2" x="48.8" y="264" textLength="24.4" clip-path="url(#terminal-1308707172-line-10)">, </text><text class="terminal-1308707172-r4" x="73.2" y="264" textLength="207.4" clip-path="url(#terminal-1308707172-line-10)">--file-extensions</text><text class="terminal-1308707172-r5" x="292.8" y="264" textLength="109.8" clip-path="url(#terminal-1308707172-line-10)">EXTENSION</text><text class="terminal-1308707172-r2" x="1464" y="264" textLength="12.2" clip-path="url(#terminal-1308707172-line-10)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="264" textLength="390.4" clip-path="url(#terminal-3378394567-line-10)">name of the author of the images</text><text class="terminal-3378394567-r2" x="1464" y="264" textLength="12.2" clip-path="url(#terminal-3378394567-line-10)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="288.4" textLength="744.2" clip-path="url(#terminal-1308707172-line-11)">File extensions to include (can be specified multiple times).</text><text class="terminal-1308707172-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-11)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="288.4" textLength="24.4" clip-path="url(#terminal-3378394567-line-11)">-e</text><text class="terminal-3378394567-r2" x="48.8" y="288.4" textLength="24.4" clip-path="url(#terminal-3378394567-line-11)">, </text><text class="terminal-3378394567-r4" x="73.2" y="288.4" textLength="207.4" clip-path="url(#terminal-3378394567-line-11)">--file-extensions</text><text class="terminal-3378394567-r5" x="292.8" y="288.4" textLength="109.8" clip-path="url(#terminal-3378394567-line-11)">EXTENSION</text><text class="terminal-3378394567-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-11)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="312.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-12)">-l</text><text class="terminal-1308707172-r2" x="48.8" y="312.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-12)">, </text><text class="terminal-1308707172-r4" x="73.2" y="312.8" textLength="170.8" clip-path="url(#terminal-1308707172-line-12)">--license-type</text><text class="terminal-1308707172-r5" x="256.2" y="312.8" textLength="85.4" clip-path="url(#terminal-1308707172-line-12)">LICENSE</text><text class="terminal-1308707172-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-12)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="312.8" textLength="732" clip-path="url(#terminal-3378394567-line-12)">file extensions to include (can be specified multiple times)</text><text class="terminal-3378394567-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-12)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="337.2" textLength="488" clip-path="url(#terminal-1308707172-line-13)">Specify the license type for the images.</text><text class="terminal-1308707172-r2" x="1464" y="337.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-13)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="337.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-13)">-l</text><text class="terminal-3378394567-r2" x="48.8" y="337.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-13)">, </text><text class="terminal-3378394567-r4" x="73.2" y="337.2" textLength="170.8" clip-path="url(#terminal-3378394567-line-13)">--license-type</text><text class="terminal-3378394567-r5" x="256.2" y="337.2" textLength="85.4" clip-path="url(#terminal-3378394567-line-13)">LICENSE</text><text class="terminal-3378394567-r2" x="1464" y="337.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-13)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="361.6" textLength="24.4" clip-path="url(#terminal-1308707172-line-14)">-m</text><text class="terminal-1308707172-r2" x="48.8" y="361.6" textLength="24.4" clip-path="url(#terminal-1308707172-line-14)">, </text><text class="terminal-1308707172-r4" x="73.2" y="361.6" textLength="170.8" clip-path="url(#terminal-1308707172-line-14)">--web-manifest</text><text class="terminal-1308707172-r2" x="292.8" y="361.6" textLength="353.8" clip-path="url(#terminal-1308707172-line-14)">Generate a web manifest file.</text><text class="terminal-1308707172-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-14)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="361.6" textLength="475.8" clip-path="url(#terminal-3378394567-line-14)">specify the license type for the images</text><text class="terminal-3378394567-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-14)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="386" textLength="24.4" clip-path="url(#terminal-1308707172-line-15)">-n</text><text class="terminal-1308707172-r2" x="48.8" y="386" textLength="24.4" clip-path="url(#terminal-1308707172-line-15)">, </text><text class="terminal-1308707172-r4" x="73.2" y="386" textLength="268.4" clip-path="url(#terminal-1308707172-line-15)">--non-interactive-mode</text><text class="terminal-1308707172-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-1308707172-line-15)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="386" textLength="24.4" clip-path="url(#terminal-3378394567-line-15)">-m</text><text class="terminal-3378394567-r2" x="48.8" y="386" textLength="24.4" clip-path="url(#terminal-3378394567-line-15)">, </text><text class="terminal-3378394567-r4" x="73.2" y="386" textLength="170.8" clip-path="url(#terminal-3378394567-line-15)">--web-manifest</text><text class="terminal-3378394567-r2" x="292.8" y="386" textLength="341.6" clip-path="url(#terminal-3378394567-line-15)">generate a web manifest file</text><text class="terminal-3378394567-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-3378394567-line-15)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="410.4" textLength="646.6" clip-path="url(#terminal-1308707172-line-16)">Run in non-interactive mode, disabling progress bars.</text><text class="terminal-1308707172-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-16)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="410.4" textLength="24.4" clip-path="url(#terminal-3378394567-line-16)">-n</text><text class="terminal-3378394567-r2" x="48.8" y="410.4" textLength="24.4" clip-path="url(#terminal-3378394567-line-16)">, </text><text class="terminal-3378394567-r4" x="73.2" y="410.4" textLength="268.4" clip-path="url(#terminal-3378394567-line-16)">--non-interactive-mode</text><text class="terminal-3378394567-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-16)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="434.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-17)">-p</text><text class="terminal-1308707172-r2" x="48.8" y="434.8" textLength="24.4" clip-path="url(#terminal-1308707172-line-17)">, </text><text class="terminal-1308707172-r4" x="73.2" y="434.8" textLength="195.2" clip-path="url(#terminal-1308707172-line-17)">--root-directory</text><text class="terminal-1308707172-r5" x="280.6" y="434.8" textLength="48.8" clip-path="url(#terminal-1308707172-line-17)">ROOT</text><text class="terminal-1308707172-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-17)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="434.8" textLength="634.4" clip-path="url(#terminal-3378394567-line-17)">run in non-interactive mode, disabling progress bars</text><text class="terminal-3378394567-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-17)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="459.2" textLength="451.4" clip-path="url(#terminal-1308707172-line-18)">Root directory containing the images.</text><text class="terminal-1308707172-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-18)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="459.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-18)">-p</text><text class="terminal-3378394567-r2" x="48.8" y="459.2" textLength="24.4" clip-path="url(#terminal-3378394567-line-18)">, </text><text class="terminal-3378394567-r4" x="73.2" y="459.2" textLength="195.2" clip-path="url(#terminal-3378394567-line-18)">--root-directory</text><text class="terminal-3378394567-r5" x="280.6" y="459.2" textLength="48.8" clip-path="url(#terminal-3378394567-line-18)">ROOT</text><text class="terminal-3378394567-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-18)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="483.6" textLength="24.4" clip-path="url(#terminal-1308707172-line-19)">-t</text><text class="terminal-1308707172-r2" x="48.8" y="483.6" textLength="24.4" clip-path="url(#terminal-1308707172-line-19)">, </text><text class="terminal-1308707172-r4" x="73.2" y="483.6" textLength="146.4" clip-path="url(#terminal-1308707172-line-19)">--site-title</text><text class="terminal-1308707172-r5" x="231.8" y="483.6" textLength="61" clip-path="url(#terminal-1308707172-line-19)">TITLE</text><text class="terminal-1308707172-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-19)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="483.6" textLength="439.2" clip-path="url(#terminal-3378394567-line-19)">root directory containing the images</text><text class="terminal-3378394567-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-19)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="508" textLength="390.4" clip-path="url(#terminal-1308707172-line-20)">Title of the image hosting site.</text><text class="terminal-1308707172-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-1308707172-line-20)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="508" textLength="24.4" clip-path="url(#terminal-3378394567-line-20)">-t</text><text class="terminal-3378394567-r2" x="48.8" y="508" textLength="24.4" clip-path="url(#terminal-3378394567-line-20)">, </text><text class="terminal-3378394567-r4" x="73.2" y="508" textLength="146.4" clip-path="url(#terminal-3378394567-line-20)">--site-title</text><text class="terminal-3378394567-r5" x="231.8" y="508" textLength="61" clip-path="url(#terminal-3378394567-line-20)">TITLE</text><text class="terminal-3378394567-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-3378394567-line-20)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="532.4" textLength="24.4" clip-path="url(#terminal-1308707172-line-21)">-w</text><text class="terminal-1308707172-r2" x="48.8" y="532.4" textLength="24.4" clip-path="url(#terminal-1308707172-line-21)">, </text><text class="terminal-1308707172-r4" x="73.2" y="532.4" textLength="170.8" clip-path="url(#terminal-1308707172-line-21)">--web-root-url</text><text class="terminal-1308707172-r5" x="256.2" y="532.4" textLength="36.6" clip-path="url(#terminal-1308707172-line-21)">URL</text><text class="terminal-1308707172-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-21)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="532.4" textLength="378.2" clip-path="url(#terminal-3378394567-line-21)">title of the image hosting site</text><text class="terminal-3378394567-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-21)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="556.8" textLength="634.4" clip-path="url(#terminal-1308707172-line-22)">Base URL of the web root for the image hosting site.</text><text class="terminal-1308707172-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-22)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="556.8" textLength="24.4" clip-path="url(#terminal-3378394567-line-22)">-w</text><text class="terminal-3378394567-r2" x="48.8" y="556.8" textLength="24.4" clip-path="url(#terminal-3378394567-line-22)">, </text><text class="terminal-3378394567-r4" x="73.2" y="556.8" textLength="170.8" clip-path="url(#terminal-3378394567-line-22)">--web-root-url</text><text class="terminal-3378394567-r5" x="256.2" y="556.8" textLength="36.6" clip-path="url(#terminal-3378394567-line-22)">URL</text><text class="terminal-3378394567-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-22)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="581.2" textLength="195.2" clip-path="url(#terminal-1308707172-line-23)">--exclude-folder</text><text class="terminal-1308707172-r5" x="231.8" y="581.2" textLength="73.2" clip-path="url(#terminal-1308707172-line-23)">FOLDER</text><text class="terminal-1308707172-r2" x="1464" y="581.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-23)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="581.2" textLength="622.2" clip-path="url(#terminal-3378394567-line-23)">base URL of the web root for the image hosting site</text><text class="terminal-3378394567-r2" x="1464" y="581.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-23)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="605.6" textLength="1049.2" clip-path="url(#terminal-1308707172-line-24)">Folders to exclude from processing, globs supported (can be specified multiple times).</text><text class="terminal-1308707172-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-24)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="605.6" textLength="195.2" clip-path="url(#terminal-3378394567-line-24)">--exclude-folder</text><text class="terminal-3378394567-r5" x="231.8" y="605.6" textLength="73.2" clip-path="url(#terminal-3378394567-line-24)">FOLDER</text><text class="terminal-3378394567-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-24)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="630" textLength="244" clip-path="url(#terminal-1308707172-line-25)">--ignore-other-files</text><text class="terminal-1308707172-r2" x="292.8" y="630" textLength="683.2" clip-path="url(#terminal-1308707172-line-25)">Ignore files that do not match the specified extensions.</text><text class="terminal-1308707172-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-1308707172-line-25)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="630" textLength="1037" clip-path="url(#terminal-3378394567-line-25)">folders to exclude from processing, globs supported (can be specified multiple times)</text><text class="terminal-3378394567-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-3378394567-line-25)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="654.4" textLength="280.6" clip-path="url(#terminal-1308707172-line-26)">--regenerate-thumbnails</text><text class="terminal-1308707172-r2" x="1464" y="654.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-26)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="654.4" textLength="219.6" clip-path="url(#terminal-3378394567-line-26)">--folderthumbnails</text><text class="terminal-3378394567-r2" x="292.8" y="654.4" textLength="817.4" clip-path="url(#terminal-3378394567-line-26)">generate subfolder thumbnails (first image in folder will be shown)</text><text class="terminal-3378394567-r2" x="1464" y="654.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-26)">
|
||||||
</text><text class="terminal-1308707172-r2" x="292.8" y="678.8" textLength="597.8" clip-path="url(#terminal-1308707172-line-27)">Regenerate thumbnails even if they already exist.</text><text class="terminal-1308707172-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-27)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="678.8" textLength="244" clip-path="url(#terminal-3378394567-line-27)">--ignore-other-files</text><text class="terminal-3378394567-r2" x="292.8" y="678.8" textLength="671" clip-path="url(#terminal-3378394567-line-27)">ignore files that do not match the specified extensions</text><text class="terminal-3378394567-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-27)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="703.2" textLength="207.4" clip-path="url(#terminal-1308707172-line-28)">--reread-metadata</text><text class="terminal-1308707172-r2" x="292.8" y="703.2" textLength="256.2" clip-path="url(#terminal-1308707172-line-28)">Reread image metadata</text><text class="terminal-1308707172-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-1308707172-line-28)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="703.2" textLength="280.6" clip-path="url(#terminal-3378394567-line-28)">--regenerate-thumbnails</text><text class="terminal-3378394567-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-28)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="727.6" textLength="170.8" clip-path="url(#terminal-1308707172-line-29)">--reverse-sort</text><text class="terminal-1308707172-r2" x="292.8" y="727.6" textLength="353.8" clip-path="url(#terminal-1308707172-line-29)">Sort images in reverse order.</text><text class="terminal-1308707172-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-1308707172-line-29)">
|
</text><text class="terminal-3378394567-r2" x="292.8" y="727.6" textLength="585.6" clip-path="url(#terminal-3378394567-line-29)">regenerate thumbnails even if they already exist</text><text class="terminal-3378394567-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-29)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="752" textLength="146.4" clip-path="url(#terminal-1308707172-line-30)">--theme-path</text><text class="terminal-1308707172-r5" x="183" y="752" textLength="48.8" clip-path="url(#terminal-1308707172-line-30)">PATH</text><text class="terminal-1308707172-r2" x="292.8" y="752" textLength="329.4" clip-path="url(#terminal-1308707172-line-30)">Path to the CSS theme file.</text><text class="terminal-1308707172-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-1308707172-line-30)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="752" textLength="207.4" clip-path="url(#terminal-3378394567-line-30)">--reread-metadata</text><text class="terminal-3378394567-r2" x="292.8" y="752" textLength="256.2" clip-path="url(#terminal-3378394567-line-30)">reread image metadata</text><text class="terminal-3378394567-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-3378394567-line-30)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="776.4" textLength="231.8" clip-path="url(#terminal-1308707172-line-31)">--use-fancy-folders</text><text class="terminal-1308707172-r2" x="292.8" y="776.4" textLength="890.6" clip-path="url(#terminal-1308707172-line-31)">Enable fancy folder view instead of the default Apache directory listing.</text><text class="terminal-1308707172-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-1308707172-line-31)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="776.4" textLength="195.2" clip-path="url(#terminal-3378394567-line-31)">--reread-sidecar</text><text class="terminal-3378394567-r2" x="292.8" y="776.4" textLength="244" clip-path="url(#terminal-3378394567-line-31)">reread sidecar files</text><text class="terminal-3378394567-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-3378394567-line-31)">
|
||||||
</text><text class="terminal-1308707172-r4" x="24.4" y="800.8" textLength="109.8" clip-path="url(#terminal-1308707172-line-32)">--version</text><text class="terminal-1308707172-r2" x="292.8" y="800.8" textLength="463.6" clip-path="url(#terminal-1308707172-line-32)">show program's version number and exit</text><text class="terminal-1308707172-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-1308707172-line-32)">
|
</text><text class="terminal-3378394567-r4" x="24.4" y="800.8" textLength="170.8" clip-path="url(#terminal-3378394567-line-32)">--reverse-sort</text><text class="terminal-3378394567-r2" x="292.8" y="800.8" textLength="341.6" clip-path="url(#terminal-3378394567-line-32)">sort images in reverse order</text><text class="terminal-3378394567-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-3378394567-line-32)">
|
||||||
|
</text><text class="terminal-3378394567-r4" x="24.4" y="825.2" textLength="146.4" clip-path="url(#terminal-3378394567-line-33)">--theme-path</text><text class="terminal-3378394567-r5" x="183" y="825.2" textLength="48.8" clip-path="url(#terminal-3378394567-line-33)">PATH</text><text class="terminal-3378394567-r2" x="292.8" y="825.2" textLength="317.2" clip-path="url(#terminal-3378394567-line-33)">path to the CSS theme file</text><text class="terminal-3378394567-r2" x="1464" y="825.2" textLength="12.2" clip-path="url(#terminal-3378394567-line-33)">
|
||||||
|
</text><text class="terminal-3378394567-r4" x="24.4" y="849.6" textLength="231.8" clip-path="url(#terminal-3378394567-line-34)">--use-fancy-folders</text><text class="terminal-3378394567-r2" x="292.8" y="849.6" textLength="878.4" clip-path="url(#terminal-3378394567-line-34)">enable fancy folder view instead of the default Apache directory listing</text><text class="terminal-3378394567-r2" x="1464" y="849.6" textLength="12.2" clip-path="url(#terminal-3378394567-line-34)">
|
||||||
|
</text><text class="terminal-3378394567-r4" x="24.4" y="874" textLength="109.8" clip-path="url(#terminal-3378394567-line-35)">--version</text><text class="terminal-3378394567-r2" x="292.8" y="874" textLength="463.6" clip-path="url(#terminal-3378394567-line-35)">show program's version number and exit</text><text class="terminal-3378394567-r2" x="1464" y="874" textLength="12.2" clip-path="url(#terminal-3378394567-line-35)">
|
||||||
</text>
|
</text>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 28 KiB |
@@ -67,6 +67,7 @@ class Args:
|
|||||||
non_interactive_mode: bool
|
non_interactive_mode: bool
|
||||||
regenerate_thumbnails: bool
|
regenerate_thumbnails: bool
|
||||||
reread_metadata: bool
|
reread_metadata: bool
|
||||||
|
reread_sidecar: bool
|
||||||
reverse_sort: bool
|
reverse_sort: bool
|
||||||
root_directory: str
|
root_directory: str
|
||||||
site_title: str
|
site_title: str
|
||||||
@@ -87,6 +88,7 @@ class Args:
|
|||||||
result["non_interactive_mode"] = self.non_interactive_mode
|
result["non_interactive_mode"] = self.non_interactive_mode
|
||||||
result["regenerate_thumbnails"] = self.regenerate_thumbnails
|
result["regenerate_thumbnails"] = self.regenerate_thumbnails
|
||||||
result["reread_metadata"] = self.reread_metadata
|
result["reread_metadata"] = self.reread_metadata
|
||||||
|
result["reread_sidecar"] = self.reread_sidecar
|
||||||
result["reverse_sort"] = self.reverse_sort
|
result["reverse_sort"] = self.reverse_sort
|
||||||
result["root_directory"] = self.root_directory
|
result["root_directory"] = self.root_directory
|
||||||
result["site_title"] = self.site_title
|
result["site_title"] = self.site_title
|
||||||
@@ -112,27 +114,28 @@ def parse_arguments(version: str) -> Args:
|
|||||||
"""
|
"""
|
||||||
# fmt: off
|
# fmt: off
|
||||||
if RICH:
|
if RICH:
|
||||||
parser = argparse.ArgumentParser(description="Generate HTML files for a static image hosting website.", formatter_class=RichHelpFormatter)
|
parser = argparse.ArgumentParser(description="generate HTML files for a static image hosting website", formatter_class=RichHelpFormatter)
|
||||||
else:
|
else:
|
||||||
parser = argparse.ArgumentParser(description="Generate HTML files for a static image hosting website.")
|
parser = argparse.ArgumentParser(description="generate HTML files for a static image hosting website")
|
||||||
parser.add_argument("-a", "--author-name", help="Name of the author of the images.", default=DEFAULT_AUTHOR, type=str, dest="author_name", metavar="AUTHOR")
|
parser.add_argument("-a", "--author-name", help="name of the author of the images", default=DEFAULT_AUTHOR, type=str, dest="author_name", metavar="AUTHOR")
|
||||||
parser.add_argument("-e", "--file-extensions", help="File extensions to include (can be specified multiple times).", action="append", dest="file_extensions", metavar="EXTENSION")
|
parser.add_argument("-e", "--file-extensions", help="file extensions to include (can be specified multiple times)", action="append", dest="file_extensions", metavar="EXTENSION")
|
||||||
parser.add_argument("-l", "--license-type", help="Specify the license type for the images.", choices=["cc-zero", "cc-by", "cc-by-sa", "cc-by-nd", "cc-by-nc", "cc-by-nc-sa", "cc-by-nc-nd"], default=None, dest="license_type", metavar="LICENSE")
|
parser.add_argument("-l", "--license-type", help="specify the license type for the images", choices=["cc-zero", "cc-by", "cc-by-sa", "cc-by-nd", "cc-by-nc", "cc-by-nc-sa", "cc-by-nc-nd"], default=None, dest="license_type", metavar="LICENSE")
|
||||||
parser.add_argument("-m", "--web-manifest", help="Generate a web manifest file.", action="store_true", default=False, dest="generate_webmanifest")
|
parser.add_argument("-m", "--web-manifest", help="generate a web manifest file", action="store_true", default=False, dest="generate_webmanifest")
|
||||||
parser.add_argument("-n", "--non-interactive-mode", help="Run in non-interactive mode, disabling progress bars.", action="store_true", default=False, dest="non_interactive_mode")
|
parser.add_argument("-n", "--non-interactive-mode", help="run in non-interactive mode, disabling progress bars", action="store_true", default=False, dest="non_interactive_mode")
|
||||||
parser.add_argument("-p", "--root-directory", help="Root directory containing the images.", required=True, type=str, dest="root_directory", metavar="ROOT")
|
parser.add_argument("-p", "--root-directory", help="root directory containing the images", required=True, type=str, dest="root_directory", metavar="ROOT")
|
||||||
parser.add_argument("-t", "--site-title", help="Title of the image hosting site.", required=True, type=str, dest="site_title", metavar="TITLE")
|
parser.add_argument("-t", "--site-title", help="title of the image hosting site", required=True, type=str, dest="site_title", metavar="TITLE")
|
||||||
parser.add_argument("-w", "--web-root-url", help="Base URL of the web root for the image hosting site.", required=True, type=str, dest="web_root_url", metavar="URL")
|
parser.add_argument("-w", "--web-root-url", help="base URL of the web root for the image hosting site", required=True, type=str, dest="web_root_url", metavar="URL")
|
||||||
parser.add_argument("--exclude-folder", help="Folders to exclude from processing, globs supported (can be specified multiple times).", action="append", dest="exclude_folders", metavar="FOLDER")
|
parser.add_argument("--exclude-folder", help="folders to exclude from processing, globs supported (can be specified multiple times)", action="append", dest="exclude_folders", metavar="FOLDER")
|
||||||
parser.add_argument("--folderthumbnails", help="Generate subfolder thumbnails (first image in folder will be shown)", action="store_true", default=False, dest="folder_thumbs")
|
parser.add_argument("--folderthumbnails", help="generate subfolder thumbnails (first image in folder will be shown)", action="store_true", default=False, dest="folder_thumbs")
|
||||||
if RICH:
|
if RICH:
|
||||||
parser.add_argument("--generate-help-preview", action=HelpPreviewAction, path="help.svg", )
|
parser.add_argument("--generate-help-preview", action=HelpPreviewAction, path="help.svg", )
|
||||||
parser.add_argument("--ignore-other-files", help="Ignore files that do not match the specified extensions.", action="store_true", default=False, dest="ignore_other_files")
|
parser.add_argument("--ignore-other-files", help="ignore files that do not match the specified extensions", action="store_true", default=False, dest="ignore_other_files")
|
||||||
parser.add_argument("--regenerate-thumbnails", help="Regenerate thumbnails even if they already exist.", action="store_true", default=False, dest="regenerate_thumbnails")
|
parser.add_argument("--regenerate-thumbnails", help="regenerate thumbnails even if they already exist", action="store_true", default=False, dest="regenerate_thumbnails")
|
||||||
parser.add_argument("--reread-metadata", help="Reread image metadata", action="store_true", default=False, dest="reread_metadata")
|
parser.add_argument("--reread-metadata", help="reread image metadata", action="store_true", default=False, dest="reread_metadata")
|
||||||
parser.add_argument("--reverse-sort", help="Sort images in reverse order.", action="store_true", default=False, dest="reverse_sort")
|
parser.add_argument("--reread-sidecar", help="reread sidecar files", action="store_true", default=False, dest="reread_sidecar")
|
||||||
parser.add_argument("--theme-path", help="Path to the CSS theme file.", default=DEFAULT_THEME_PATH, type=str, dest="theme_path", metavar="PATH")
|
parser.add_argument("--reverse-sort", help="sort images in reverse order", action="store_true", default=False, dest="reverse_sort")
|
||||||
parser.add_argument("--use-fancy-folders", help="Enable fancy folder view instead of the default Apache directory listing.", action="store_true", default=False, dest="use_fancy_folders")
|
parser.add_argument("--theme-path", help="path to the CSS theme file", default=DEFAULT_THEME_PATH, type=str, dest="theme_path", metavar="PATH")
|
||||||
|
parser.add_argument("--use-fancy-folders", help="enable fancy folder view instead of the default Apache directory listing", action="store_true", default=False, dest="use_fancy_folders")
|
||||||
parser.add_argument("--version", action="version", version=f"%(prog)s {version}")
|
parser.add_argument("--version", action="version", version=f"%(prog)s {version}")
|
||||||
parsed_args = parser.parse_args()
|
parsed_args = parser.parse_args()
|
||||||
# fmt: on
|
# fmt: on
|
||||||
@@ -147,6 +150,7 @@ def parse_arguments(version: str) -> Args:
|
|||||||
non_interactive_mode=parsed_args.non_interactive_mode,
|
non_interactive_mode=parsed_args.non_interactive_mode,
|
||||||
regenerate_thumbnails=parsed_args.regenerate_thumbnails,
|
regenerate_thumbnails=parsed_args.regenerate_thumbnails,
|
||||||
reread_metadata=parsed_args.reread_metadata,
|
reread_metadata=parsed_args.reread_metadata,
|
||||||
|
reread_sidecar=parsed_args.reread_sidecar,
|
||||||
reverse_sort=parsed_args.reverse_sort,
|
reverse_sort=parsed_args.reverse_sort,
|
||||||
root_directory=parsed_args.root_directory,
|
root_directory=parsed_args.root_directory,
|
||||||
site_title=parsed_args.site_title,
|
site_title=parsed_args.site_title,
|
||||||
|
|||||||
@@ -5,10 +5,12 @@ import fnmatch
|
|||||||
import json
|
import json
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
from tqdm.auto import tqdm
|
from tqdm.auto import tqdm
|
||||||
from PIL import Image, ExifTags, TiffImagePlugin, UnidentifiedImageError
|
from PIL import Image, ExifTags, TiffImagePlugin, UnidentifiedImageError
|
||||||
from jinja2 import Environment, FileSystemLoader
|
from jinja2 import Environment, FileSystemLoader
|
||||||
|
from defusedxml import ElementTree
|
||||||
|
|
||||||
from modules.logger import logger
|
from modules.logger import logger
|
||||||
from modules import cclicense
|
from modules import cclicense
|
||||||
@@ -34,6 +36,41 @@ info: dict[str, str] = {}
|
|||||||
licens: dict[str, str] = {}
|
licens: dict[str, str] = {}
|
||||||
|
|
||||||
|
|
||||||
|
def getxmp(strbuffer: str) -> dict[str, Any]:
|
||||||
|
"""
|
||||||
|
Returns a dictionary containing the XMP tags.
|
||||||
|
Requires defusedxml to be installed.
|
||||||
|
|
||||||
|
:returns: XMP tags in a dictionary.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def get_name(tag: str) -> str:
|
||||||
|
return re.sub("^{[^}]+}", "", tag)
|
||||||
|
|
||||||
|
def get_value(element) -> str | dict[str, Any] | None:
|
||||||
|
value: dict[str, Any] = {get_name(k): v for k, v in element.attrib.items()}
|
||||||
|
children = list(element)
|
||||||
|
if children:
|
||||||
|
for child in children:
|
||||||
|
name = get_name(child.tag)
|
||||||
|
child_value = get_value(child)
|
||||||
|
if name in value:
|
||||||
|
if not isinstance(value[name], list):
|
||||||
|
value[name] = [value[name]]
|
||||||
|
value[name].append(child_value)
|
||||||
|
else:
|
||||||
|
value[name] = child_value
|
||||||
|
elif value:
|
||||||
|
if element.text:
|
||||||
|
value["text"] = element.text
|
||||||
|
else:
|
||||||
|
return element.text
|
||||||
|
return value
|
||||||
|
|
||||||
|
root = ElementTree.fromstring(strbuffer)
|
||||||
|
return {get_name(root.tag): get_value(root)}
|
||||||
|
|
||||||
|
|
||||||
def initialize_metadata(folder: str) -> dict[str, dict[str, int]]:
|
def initialize_metadata(folder: str) -> dict[str, dict[str, int]]:
|
||||||
"""
|
"""
|
||||||
Initializes the metadata JSON file if it doesn't exist.
|
Initializes the metadata JSON file if it doesn't exist.
|
||||||
@@ -61,8 +98,32 @@ def initialize_metadata(folder: str) -> dict[str, dict[str, int]]:
|
|||||||
# remove old sizelist if it exists
|
# remove old sizelist if it exists
|
||||||
sizelist_path = os.path.join(folder, ".sizelist.json")
|
sizelist_path = os.path.join(folder, ".sizelist.json")
|
||||||
if os.path.exists(sizelist_path):
|
if os.path.exists(sizelist_path):
|
||||||
|
with open(sizelist_path, "r") as sizelist:
|
||||||
|
metadata = json.loads(sizelist.read())
|
||||||
logger.warning("found old .sizelist.json, removing it...", extra={"path": sizelist_path})
|
logger.warning("found old .sizelist.json, removing it...", extra={"path": sizelist_path})
|
||||||
os.remove(sizelist_path)
|
os.remove(sizelist_path)
|
||||||
|
|
||||||
|
# convert from old metadata format
|
||||||
|
if "images" not in metadata and "subfolders" not in metadata:
|
||||||
|
images = metadata.copy()
|
||||||
|
metadata = {}
|
||||||
|
metadata["images"] = images
|
||||||
|
elif "images" not in metadata:
|
||||||
|
metadata["images"] = {}
|
||||||
|
for k, v in metadata["images"].items():
|
||||||
|
if "width" in v:
|
||||||
|
metadata["images"][k]["w"] = v["width"]
|
||||||
|
del metadata["images"][k]["width"]
|
||||||
|
if "height" in v:
|
||||||
|
metadata["images"][k]["h"] = v["height"]
|
||||||
|
del metadata["images"][k]["height"]
|
||||||
|
if "tags" not in v:
|
||||||
|
metadata["images"][k]["tags"] = []
|
||||||
|
if "exifdata" not in v:
|
||||||
|
metadata["images"][k]["exifdata"] = None
|
||||||
|
if "xmp" not in v:
|
||||||
|
metadata["images"][k]["xmp"] = None
|
||||||
|
|
||||||
return metadata
|
return metadata
|
||||||
|
|
||||||
|
|
||||||
@@ -107,7 +168,7 @@ def get_image_info(item: str, folder: str) -> dict[str, Any]:
|
|||||||
except UnidentifiedImageError:
|
except UnidentifiedImageError:
|
||||||
logger.error("cannot identify image file", extra={"file": file})
|
logger.error("cannot identify image file", extra={"file": file})
|
||||||
print(f"cannot identify image file: {file}")
|
print(f"cannot identify image file: {file}")
|
||||||
return {"width": None, "height": None, "tags": None, "exifdata": None, "xmp": None}
|
return {"w": None, "h": None, "tags": None, "exifdata": None, "xmp": None}
|
||||||
if exif:
|
if exif:
|
||||||
logger.info("extracting EXIF data", extra={"file": file})
|
logger.info("extracting EXIF data", extra={"file": file})
|
||||||
ifd = exif.get_ifd(ExifTags.IFD.Exif)
|
ifd = exif.get_ifd(ExifTags.IFD.Exif)
|
||||||
@@ -148,21 +209,127 @@ def get_image_info(item: str, folder: str) -> dict[str, Any]:
|
|||||||
tags = []
|
tags = []
|
||||||
xmp = None
|
xmp = None
|
||||||
if xmpdata:
|
if xmpdata:
|
||||||
if xmpdata.get("xmpmeta", False):
|
logger.info("extracting XMP data", extra={"file": file})
|
||||||
if isinstance(xmpdata["xmpmeta"]["RDF"]["Description"], dict):
|
try:
|
||||||
if xmpdata["xmpmeta"]["RDF"]["Description"].get("subject", False):
|
|
||||||
tags = xmpdata["xmpmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
tags = xmpdata["xmpmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
||||||
if isinstance(tags, str):
|
if isinstance(tags, str):
|
||||||
tags = [tags]
|
tags = [tags]
|
||||||
xmp = xmpdata
|
except TypeError:
|
||||||
if xmpdata.get("xapmeta", False):
|
pass
|
||||||
if isinstance(xmpdata["xapmeta"]["RDF"]["Description"], dict):
|
except KeyError:
|
||||||
if xmpdata["xapmeta"]["RDF"]["Description"].get("subject", False):
|
pass
|
||||||
|
try:
|
||||||
tags = xmpdata["xapmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
tags = xmpdata["xapmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
||||||
if isinstance(tags, str):
|
if isinstance(tags, str):
|
||||||
tags = [tags]
|
tags = [tags]
|
||||||
xmp = xmpdata
|
except TypeError:
|
||||||
return {"width": width, "height": height, "tags": tags, "exifdata": exifdata, "xmp": xmp}
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xmpmeta"]["RDF"]["Description"]["hierarchicalSubject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xapmeta"]["RDF"]["Description"]["hierarchicalSubject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
sidecarfile = os.path.join(folder, item + ".xmp")
|
||||||
|
if os.path.exists(sidecarfile):
|
||||||
|
logger.info("xmp sidecar file found", extra={"file": sidecarfile})
|
||||||
|
try:
|
||||||
|
tags = get_tags(sidecarfile)
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(e)
|
||||||
|
if None in tags:
|
||||||
|
tags.remove(None)
|
||||||
|
return {"w": width, "h": height, "tags": tags, "exifdata": exifdata, "xmp": xmp}
|
||||||
|
|
||||||
|
|
||||||
|
def nested_dict():
|
||||||
|
return defaultdict(nested_dict)
|
||||||
|
|
||||||
|
|
||||||
|
def insert_path(d, path):
|
||||||
|
for part in path[:-1]:
|
||||||
|
d = d[part]
|
||||||
|
last = path[-1]
|
||||||
|
if not isinstance(d[last], dict):
|
||||||
|
d[last] = {}
|
||||||
|
|
||||||
|
|
||||||
|
def finalize(d):
|
||||||
|
if isinstance(d, defaultdict):
|
||||||
|
return {k: finalize(d[k]) for k in sorted(d)}
|
||||||
|
return d or []
|
||||||
|
|
||||||
|
|
||||||
|
def parse_hierarchical_tags(tags, delimiter="|"):
|
||||||
|
tree = nested_dict()
|
||||||
|
for tag in tags:
|
||||||
|
parts = tag.split(delimiter)
|
||||||
|
insert_path(tree, parts)
|
||||||
|
return finalize(tree)
|
||||||
|
|
||||||
|
|
||||||
|
def get_tags(sidecarfile: str) -> list[str]:
|
||||||
|
"""
|
||||||
|
Extracts Tags from XMP sidecar file
|
||||||
|
|
||||||
|
Args:
|
||||||
|
sidecarfile (str): The path to the XMP sidecar file.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
list[str]: List containing image tags.
|
||||||
|
"""
|
||||||
|
logger.info("extracting XMP sidecar file data", extra={"file": sidecarfile})
|
||||||
|
with open(sidecarfile) as sidecar:
|
||||||
|
strbuffer = sidecar.read()
|
||||||
|
xmpdata = getxmp(strbuffer)
|
||||||
|
tags = []
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xmpmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xapmeta"]["RDF"]["Description"]["subject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xmpmeta"]["RDF"]["Description"]["hierarchicalSubject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
tags = xmpdata["xapmeta"]["RDF"]["Description"]["hierarchicalSubject"]["Bag"]["li"]
|
||||||
|
if isinstance(tags, str):
|
||||||
|
tags = [tags]
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
if None in tags:
|
||||||
|
tags.remove(None)
|
||||||
|
return tags
|
||||||
|
|
||||||
|
|
||||||
def process_image(item: str, folder: str, _args: Args, baseurl: str, metadata: dict[str, dict[str, int]], raw: list[str]) -> dict[str, Any]:
|
def process_image(item: str, folder: str, _args: Args, baseurl: str, metadata: dict[str, dict[str, int]], raw: list[str]) -> dict[str, Any]:
|
||||||
@@ -181,18 +348,23 @@ def process_image(item: str, folder: str, _args: Args, baseurl: str, metadata: d
|
|||||||
dict[str, Any]: dictionary containing image details for HTML rendering.
|
dict[str, Any]: dictionary containing image details for HTML rendering.
|
||||||
"""
|
"""
|
||||||
extsplit = os.path.splitext(item)
|
extsplit = os.path.splitext(item)
|
||||||
if item not in metadata or _args.reread_metadata:
|
sidecarfile = os.path.join(folder, item + ".xmp")
|
||||||
metadata[item] = get_image_info(item, folder)
|
if item not in metadata["images"] or _args.reread_metadata:
|
||||||
|
metadata["images"][item] = get_image_info(item, folder)
|
||||||
|
if _args.reread_sidecar and os.path.exists(sidecarfile):
|
||||||
|
logger.info("xmp sidecar file found", extra={"file": sidecarfile})
|
||||||
|
try:
|
||||||
|
metadata["images"][item]["tags"] = get_tags(sidecarfile)
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(e)
|
||||||
|
|
||||||
image = {
|
image = {
|
||||||
"url": f"{_args.web_root_url}{baseurl}{urllib.parse.quote(item)}",
|
"src": f"{_args.web_root_url}{baseurl}{urllib.parse.quote(item)}",
|
||||||
"thumbnail": f"{_args.web_root_url}.thumbnails/{baseurl}{urllib.parse.quote(item)}.jpg",
|
"msrc": f"{_args.web_root_url}.thumbnails/{baseurl}{urllib.parse.quote(item)}.jpg",
|
||||||
"name": item,
|
"name": item,
|
||||||
"width": metadata[item]["width"],
|
"w": metadata["images"][item]["w"],
|
||||||
"height": metadata[item]["height"],
|
"h": metadata["images"][item]["h"],
|
||||||
"tags": metadata[item]["tags"],
|
"tags": metadata["images"][item]["tags"],
|
||||||
"exifdata": metadata[item].get("exifdata", ""),
|
|
||||||
"xmp": metadata[item].get("xmp", ""),
|
|
||||||
}
|
}
|
||||||
path = os.path.join(_args.root_directory, ".thumbnails", baseurl, item + ".jpg")
|
path = os.path.join(_args.root_directory, ".thumbnails", baseurl, item + ".jpg")
|
||||||
if not os.path.exists(path) or _args.regenerate_thumbnails:
|
if not os.path.exists(path) or _args.regenerate_thumbnails:
|
||||||
@@ -210,10 +382,13 @@ def process_image(item: str, folder: str, _args: Args, baseurl: str, metadata: d
|
|||||||
else:
|
else:
|
||||||
logger.info("raw file found", extra={"file": file, "extension": _raw})
|
logger.info("raw file found", extra={"file": file, "extension": _raw})
|
||||||
image["raw"] = url
|
image["raw"] = url
|
||||||
return image
|
|
||||||
|
metadata["images"][item].update(image)
|
||||||
|
|
||||||
|
return image, metadata
|
||||||
|
|
||||||
|
|
||||||
def generate_html(folder: str, title: str, _args: Args, raw: list[str], version: str, logo) -> None:
|
def generate_html(folder: str, title: str, _args: Args, raw: list[str], version: str, logo: str) -> list[str]:
|
||||||
"""
|
"""
|
||||||
Generates HTML content for a folder of images.
|
Generates HTML content for a folder of images.
|
||||||
|
|
||||||
@@ -234,10 +409,15 @@ def generate_html(folder: str, title: str, _args: Args, raw: list[str], version:
|
|||||||
contains_files = False
|
contains_files = False
|
||||||
images = []
|
images = []
|
||||||
subfolders = []
|
subfolders = []
|
||||||
|
subfoldertags = set()
|
||||||
foldername = folder.removeprefix(_args.root_directory)
|
foldername = folder.removeprefix(_args.root_directory)
|
||||||
foldername = f"{foldername}/" if foldername else ""
|
foldername = f"{foldername}/" if foldername else ""
|
||||||
baseurl = urllib.parse.quote(foldername)
|
baseurl = urllib.parse.quote(foldername)
|
||||||
|
|
||||||
|
gone = [item for item in metadata["images"] if item not in items]
|
||||||
|
for gon in gone:
|
||||||
|
del metadata["images"][gon]
|
||||||
|
|
||||||
create_thumbnail_folder(foldername, _args.root_directory)
|
create_thumbnail_folder(foldername, _args.root_directory)
|
||||||
|
|
||||||
logger.info("processing contents", extra={"folder": folder})
|
logger.info("processing contents", extra={"folder": folder})
|
||||||
@@ -245,11 +425,12 @@ def generate_html(folder: str, title: str, _args: Args, raw: list[str], version:
|
|||||||
for item in tqdm(items, total=len(items), desc=f"Getting image infos - {folder}", unit="files", ascii=True, dynamic_ncols=True):
|
for item in tqdm(items, total=len(items), desc=f"Getting image infos - {folder}", unit="files", ascii=True, dynamic_ncols=True):
|
||||||
if item not in EXCLUDES and not item.startswith("."):
|
if item not in EXCLUDES and not item.startswith("."):
|
||||||
if os.path.isdir(os.path.join(folder, item)):
|
if os.path.isdir(os.path.join(folder, item)):
|
||||||
process_subfolder(item, folder, baseurl, subfolders, _args, raw, version, logo)
|
subfoldertags.update(process_subfolder(item, folder, baseurl, subfolders, _args, raw, version, logo))
|
||||||
else:
|
else:
|
||||||
contains_files = True
|
contains_files = True
|
||||||
if os.path.splitext(item)[1].lower() in _args.file_extensions:
|
if os.path.splitext(item)[1].lower() in _args.file_extensions:
|
||||||
images.append(process_image(item, folder, _args, baseurl, metadata, raw))
|
img, metadata = process_image(item, folder, _args, baseurl, metadata, raw)
|
||||||
|
images.append(img)
|
||||||
if item == "info":
|
if item == "info":
|
||||||
process_info_file(folder, item)
|
process_info_file(folder, item)
|
||||||
if item == "LICENSE":
|
if item == "LICENSE":
|
||||||
@@ -258,24 +439,31 @@ def generate_html(folder: str, title: str, _args: Args, raw: list[str], version:
|
|||||||
for item in items:
|
for item in items:
|
||||||
if item not in EXCLUDES and not item.startswith("."):
|
if item not in EXCLUDES and not item.startswith("."):
|
||||||
if os.path.isdir(os.path.join(folder, item)):
|
if os.path.isdir(os.path.join(folder, item)):
|
||||||
process_subfolder(item, folder, baseurl, subfolders, _args, raw, version, logo)
|
subfoldertags.update(process_subfolder(item, folder, baseurl, subfolders, _args, raw, version, logo))
|
||||||
else:
|
else:
|
||||||
contains_files = True
|
contains_files = True
|
||||||
if os.path.splitext(item)[1].lower() in _args.file_extensions:
|
if os.path.splitext(item)[1].lower() in _args.file_extensions:
|
||||||
images.append(process_image(item, folder, _args, baseurl, metadata, raw))
|
img, metadata = process_image(item, folder, _args, baseurl, metadata, raw)
|
||||||
|
images.append(img)
|
||||||
if item == "info":
|
if item == "info":
|
||||||
process_info_file(folder, item)
|
process_info_file(folder, item)
|
||||||
if item == "LICENSE":
|
if item == "LICENSE":
|
||||||
process_license(folder, item)
|
process_license(folder, item)
|
||||||
|
|
||||||
|
metadata["subfolders"] = subfolders
|
||||||
|
if _args.reverse_sort:
|
||||||
|
metadata["images"] = {key: metadata["images"][key] for key in sorted(metadata["images"], reverse=True)}
|
||||||
|
else:
|
||||||
|
metadata["images"] = {key: metadata["images"][key] for key in sorted(metadata["images"])}
|
||||||
update_metadata(metadata, folder)
|
update_metadata(metadata, folder)
|
||||||
|
|
||||||
if should_generate_html(images, contains_files, _args):
|
if should_generate_html(images, contains_files, _args):
|
||||||
create_html_file(folder, title, foldername, images, subfolders, _args, version, logo)
|
subfoldertags = create_html_file(folder, title, foldername, images, subfolders, _args, version, logo, subfoldertags)
|
||||||
else:
|
else:
|
||||||
if os.path.exists(os.path.join(folder, "index.html")):
|
if os.path.exists(os.path.join(folder, "index.html")):
|
||||||
logger.info("removing existing index.html", extra={"folder": folder})
|
logger.info("removing existing index.html", extra={"folder": folder})
|
||||||
os.remove(os.path.join(folder, "index.html"))
|
os.remove(os.path.join(folder, "index.html"))
|
||||||
|
return subfoldertags
|
||||||
|
|
||||||
|
|
||||||
def create_thumbnail_folder(foldername: str, root_directory: str) -> None:
|
def create_thumbnail_folder(foldername: str, root_directory: str) -> None:
|
||||||
@@ -292,7 +480,7 @@ def create_thumbnail_folder(foldername: str, root_directory: str) -> None:
|
|||||||
os.mkdir(thumbnails_path)
|
os.mkdir(thumbnails_path)
|
||||||
|
|
||||||
|
|
||||||
def process_subfolder(item: str, folder: str, baseurl: str, subfolders: list[dict[str, str | None]], _args: Args, raw: list[str], version: str, logo: str) -> None:
|
def process_subfolder(item: str, folder: str, baseurl: str, subfolders: list[dict[str, str | None]], _args: Args, raw: list[str], version: str, logo: str) -> list[str]:
|
||||||
"""
|
"""
|
||||||
Processes a subfolder.
|
Processes a subfolder.
|
||||||
|
|
||||||
@@ -318,10 +506,12 @@ def process_subfolder(item: str, folder: str, baseurl: str, subfolders: list[dic
|
|||||||
else:
|
else:
|
||||||
thumb = f"{_args.web_root_url}.thumbnails/{baseurl}{urllib.parse.quote(item)}/{urllib.parse.quote(thumbitems[0])}.jpg"
|
thumb = f"{_args.web_root_url}.thumbnails/{baseurl}{urllib.parse.quote(item)}/{urllib.parse.quote(thumbitems[0])}.jpg"
|
||||||
|
|
||||||
subfolders.append({"url": subfolder_url, "name": item, "thumb": thumb})
|
|
||||||
if item not in _args.exclude_folders:
|
if item not in _args.exclude_folders:
|
||||||
if not any(fnmatch.fnmatchcase(os.path.join(folder, item), exclude) for exclude in _args.exclude_folders):
|
if not any(fnmatch.fnmatchcase(os.path.join(folder, item), exclude) for exclude in _args.exclude_folders):
|
||||||
generate_html(os.path.join(folder, item), os.path.join(folder, item).removeprefix(_args.root_directory), _args, raw, version, logo)
|
subfolders.append({"url": subfolder_url, "name": item, "thumb": thumb, "metadata": f"{_args.web_root_url}{baseurl}{urllib.parse.quote(item)}/.metadata.json"})
|
||||||
|
return generate_html(os.path.join(folder, item), os.path.join(folder, item).removeprefix(_args.root_directory), _args, raw, version, logo)
|
||||||
|
subfolders.append({"url": subfolder_url, "name": item, "thumb": thumb, "metadata": None})
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
def process_license(folder: str, item: str) -> None:
|
def process_license(folder: str, item: str) -> None:
|
||||||
@@ -366,7 +556,9 @@ def should_generate_html(images: list[dict[str, Any]], contains_files, _args: Ar
|
|||||||
return images or (_args.use_fancy_folders and not contains_files) or (_args.use_fancy_folders and _args.ignore_other_files)
|
return images or (_args.use_fancy_folders and not contains_files) or (_args.use_fancy_folders and _args.ignore_other_files)
|
||||||
|
|
||||||
|
|
||||||
def create_html_file(folder: str, title: str, foldername: str, images: list[dict[str, Any]], subfolders: list[dict[str, str]], _args: Args, version: str, logo: str) -> None:
|
def create_html_file(
|
||||||
|
folder: str, title: str, foldername: str, images: list[dict[str, Any]], subfolders: list[dict[str, str]], _args: Args, version: str, logo: str, subfoldertags: list[str]
|
||||||
|
) -> list[str]:
|
||||||
"""
|
"""
|
||||||
Creates the HTML file using the template.
|
Creates the HTML file using the template.
|
||||||
|
|
||||||
@@ -399,9 +591,9 @@ def create_html_file(folder: str, title: str, foldername: str, images: list[dict
|
|||||||
|
|
||||||
alltags = set()
|
alltags = set()
|
||||||
for img in images:
|
for img in images:
|
||||||
for tag in img["tags"]:
|
alltags.update(img["tags"])
|
||||||
alltags.add(tag)
|
|
||||||
alltags = sorted(alltags)
|
alltags.update(set(subfoldertags))
|
||||||
|
|
||||||
folder_info = info.get(urllib.parse.quote(folder), "").split("\n")
|
folder_info = info.get(urllib.parse.quote(folder), "").split("\n")
|
||||||
_info = [i for i in folder_info if len(i) > 1] if folder_info else None
|
_info = [i for i in folder_info if len(i) > 1] if folder_info else None
|
||||||
@@ -445,19 +637,20 @@ def create_html_file(folder: str, title: str, foldername: str, images: list[dict
|
|||||||
header=header,
|
header=header,
|
||||||
license=license_info,
|
license=license_info,
|
||||||
subdirectories=subfolders,
|
subdirectories=subfolders,
|
||||||
images=images,
|
|
||||||
info=_info,
|
info=_info,
|
||||||
webmanifest=_args.generate_webmanifest,
|
webmanifest=_args.generate_webmanifest,
|
||||||
version=version,
|
version=version,
|
||||||
logo=logo,
|
logo=logo,
|
||||||
licensefile=license_url,
|
licensefile=license_url,
|
||||||
tags=alltags,
|
tags=parse_hierarchical_tags(alltags),
|
||||||
)
|
)
|
||||||
|
|
||||||
with open(html_file, "w", encoding="utf-8") as f:
|
with open(html_file, "w", encoding="utf-8") as f:
|
||||||
logger.info("writing html file", extra={"path": html_file})
|
logger.info("writing html file", extra={"path": html_file})
|
||||||
f.write(content)
|
f.write(content)
|
||||||
|
|
||||||
|
return sorted(alltags)
|
||||||
|
|
||||||
|
|
||||||
def list_folder(folder: str, title: str, _args: Args, raw: list[str], version: str, logo: str) -> list[tuple[str, str, str]]:
|
def list_folder(folder: str, title: str, _args: Args, raw: list[str], version: str, logo: str) -> list[tuple[str, str, str]]:
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
CairoSVG==2.7.1
|
CairoSVG==2.7.1
|
||||||
|
defusedxml==0.7.1
|
||||||
Jinja2==3.1.5
|
Jinja2==3.1.5
|
||||||
Pillow==11.1.0
|
Pillow==11.1.0
|
||||||
pyinstaller==6.11.1
|
pyinstaller==6.11.1
|
||||||
|
|||||||
@@ -52,7 +52,11 @@
|
|||||||
background-color: var(--color2);
|
background-color: var(--color2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color4);
|
background-color: var(--color4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,25 @@
|
|||||||
|
{%- macro render_tags(tag_tree, parent) -%}
|
||||||
|
{%- for key, value in tag_tree.items() %}
|
||||||
|
<li class="tagentry">
|
||||||
|
<div class="tagflex">
|
||||||
|
<label class="tag" title="{{ key }}" id="{{ parent }}|{{ key }}">
|
||||||
|
<input type="checkbox" class="tagcheckbox" />{{ key }}
|
||||||
|
</label>{% if value %} <span class="tagtoggle" data-tagid="{{ parent }}|{{ key }}">
|
||||||
|
<svg width="1em" height="1em" viewBox="0 0 129.87601 129.87624">
|
||||||
|
<g id="layer1" transform="translate(-33.816833,-52.685642)">
|
||||||
|
<path stroke="currentColor" style="fill:none;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 54.476483,95.484647 98.754836,139.76308 143.03319,95.484647" id="path1" />
|
||||||
|
</g>
|
||||||
|
</svg></span>{% endif %}
|
||||||
|
</div>
|
||||||
|
{%- if value %}
|
||||||
|
<ol class="tagentryparent">
|
||||||
|
{{ render_tags(value, parent + '|' + key) }}
|
||||||
|
</ol>
|
||||||
|
{%- endif %}
|
||||||
|
</li><br>
|
||||||
|
{%- endfor %}
|
||||||
|
{%- endmacro -%}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
@@ -21,12 +43,10 @@
|
|||||||
<link rel="preload" href="{{ root }}.static/pswp/default-skin/default-skin.css" as="style">
|
<link rel="preload" href="{{ root }}.static/pswp/default-skin/default-skin.css" as="style">
|
||||||
<link rel="modulepreload" href="{{ root }}.static/pswp/photoswipe.min.js">
|
<link rel="modulepreload" href="{{ root }}.static/pswp/photoswipe.min.js">
|
||||||
<link rel="modulepreload" href="{{ root }}.static/pswp/photoswipe-ui-default.min.js">
|
<link rel="modulepreload" href="{{ root }}.static/pswp/photoswipe-ui-default.min.js">
|
||||||
{%- if images %}
|
|
||||||
<link rel="stylesheet" href="{{ root }}.static/pswp/photoswipe.css">
|
<link rel="stylesheet" href="{{ root }}.static/pswp/photoswipe.css">
|
||||||
<link rel="stylesheet" href="{{ root }}.static/pswp/default-skin/default-skin.css">
|
<link rel="stylesheet" href="{{ root }}.static/pswp/default-skin/default-skin.css">
|
||||||
<script src="{{ root }}.static/pswp/photoswipe.min.js"></script>
|
<script src="{{ root }}.static/pswp/photoswipe.min.js"></script>
|
||||||
<script src="{{ root }}.static/pswp/photoswipe-ui-default.min.js"></script>
|
<script src="{{ root }}.static/pswp/photoswipe-ui-default.min.js"></script>
|
||||||
{%- endif %}
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -49,24 +69,30 @@
|
|||||||
<li class="title"><span class="header">{{ header }}</span></li>
|
<li class="title"><span class="header">{{ header }}</span></li>
|
||||||
</div>
|
</div>
|
||||||
<div class="navright">
|
<div class="navright">
|
||||||
{%- if tags|length > 0 %}
|
{% if tags %}
|
||||||
<li class="tooltip"><a>Filter by Tags</a>
|
<li class="tooltip">
|
||||||
|
<a id="tagtogglelink">Filter by Tags <svg width="0.8em" height="0.8em" viewBox="0 0 129.87601 129.87624">
|
||||||
|
<g id="layer1" transform="translate(-33.816833,-52.685642)">
|
||||||
|
<path stroke="currentColor" style="fill:none;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 54.476483,95.484647 98.754836,139.76308 143.03319,95.484647" id="path1" />
|
||||||
|
</g>
|
||||||
|
</svg></a>
|
||||||
<ol class="tooltiptext tagdropdown" id="tagdropdown">
|
<ol class="tooltiptext tagdropdown" id="tagdropdown">
|
||||||
{%- for tag in tags -%}
|
<span class="tagentry">
|
||||||
<li class="tagentry"><label onclick="filter()"><input type="checkbox" />{{ tag }}</label></li><br />
|
<label onclick="recursive()">
|
||||||
{%- endfor -%}
|
<input type="checkbox" id="recursive" />recursive filter
|
||||||
|
</label>
|
||||||
|
</span>
|
||||||
|
{{ render_tags(tags, '') }}
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
{%- endif %}
|
{% endif %}
|
||||||
{%- if licensefile %}
|
{%- if licensefile %}
|
||||||
<li class="license"><a href="{{ licensefile }}">License</a></li>
|
<li class="license"><a href="{{ licensefile }}">License</a></li>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
</ol>
|
</ol>
|
||||||
{% if subdirectories %}
|
{% if subdirectories %}
|
||||||
{%- for subdirectory in subdirectories %}
|
|
||||||
<link rel="preload" href="{{ subdirectory.url }}/index.html" type="text/html">
|
|
||||||
{%- endfor %}
|
|
||||||
<div class="folders">
|
<div class="folders">
|
||||||
{%- for subdirectory in subdirectories %}
|
{%- for subdirectory in subdirectories %}
|
||||||
<a href="{{ subdirectory.url }}">
|
<a href="{{ subdirectory.url }}">
|
||||||
@@ -82,27 +108,8 @@
|
|||||||
</div>
|
</div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
{% if images %}
|
|
||||||
{%- set ns = namespace(count = 0) -%}
|
|
||||||
<div class="row" id="imagelist">
|
<div class="row" id="imagelist">
|
||||||
{%- for image in images %}
|
|
||||||
<div class="column">
|
|
||||||
<figure>
|
|
||||||
<img src="{{ image.thumbnail }}" alt="{{ image.name }}" onclick="openSwipe({{ ns.count }})" onmouseover="prefetch({{ ns.count }})" onmouseleave="cancel({{ ns.count }})" />
|
|
||||||
{%- set ns.count = ns.count + 1 %}
|
|
||||||
<figcaption class="caption">{{ image.name }}
|
|
||||||
{%- if image.tiff %}
|
|
||||||
<a href="{{ image.tiff }}">TIFF</a>
|
|
||||||
{%- endif %}
|
|
||||||
{%- if image.raw %}
|
|
||||||
<a href="{{ image.raw }}">RAW</a>
|
|
||||||
{%- endif %}
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
</div>
|
</div>
|
||||||
{%- endfor %}
|
|
||||||
</div>
|
|
||||||
{%- endif %}
|
|
||||||
{% if license %}
|
{% if license %}
|
||||||
{%- if 'CC' in license.type %}
|
{%- if 'CC' in license.type %}
|
||||||
<div class="footer" xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/">
|
<div class="footer" xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/">
|
||||||
@@ -123,17 +130,16 @@
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
||||||
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
||||||
<button onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
<button type="button" onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
||||||
</div>
|
</div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
||||||
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
||||||
<button onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
<button type="button" onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
||||||
</div>
|
</div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% if images %}
|
|
||||||
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
|
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
<div class="pswp__bg"></div>
|
<div class="pswp__bg"></div>
|
||||||
<div class="pswp__scroll-wrap">
|
<div class="pswp__scroll-wrap">
|
||||||
@@ -171,33 +177,172 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
var pswpElement = document.querySelectorAll('.pswp')[0];
|
const pswpElement = document.querySelectorAll('.pswp')[0];
|
||||||
var items = [
|
const re = /pid=(\d+)/;
|
||||||
{%- for image in images %}
|
const filterre = /#(.*)/;
|
||||||
{%- if image.exifdata.DateTime %}
|
const recursere = /\?recursive/;
|
||||||
{ src: "{{ image.url }}", w: {{ image.width }}, h: {{ image.height }}, msrc: "{{ image.thumbnail }}", tags: "{{ image.tags }}", title: "Captured: {{ image.exifdata.DateTime }}" },
|
let items = [];
|
||||||
{%- else %}
|
let shown = [];
|
||||||
{ src: "{{ image.url }}", w: {{ image.width }}, h: {{ image.height }}, msrc: "{{ image.thumbnail }}", tags: "{{ image.tags }}" },
|
let subfolders = [];
|
||||||
{%- endif %}
|
let controllers = {};
|
||||||
{%- endfor %}
|
let tagdropdownshown = false;
|
||||||
];
|
|
||||||
var re = /pid=(\d+)/;
|
function requestMetadata() {
|
||||||
var controllers = {}
|
fetch(".metadata.json").then(response => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
||||||
|
}
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
items = Object.values(data.images);
|
||||||
|
subfolders = data.subfolders;
|
||||||
|
if (filterre.test(window.location.href)) {
|
||||||
|
const selected = window.location.href.match(filterre)[1].split(",");
|
||||||
|
setFilter(selected);
|
||||||
|
}
|
||||||
|
if (recursere.test(window.location.href)) {
|
||||||
|
document.getElementById("recursive").checked = true;
|
||||||
|
recursive();
|
||||||
|
}
|
||||||
|
filter();
|
||||||
|
|
||||||
|
if (re.test(window.location.href)) {
|
||||||
|
const pid = window.location.href.match(re)[1];
|
||||||
|
openSwipe(parseInt(pid));
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => console.error('Failed to fetch data:', error));
|
||||||
|
}
|
||||||
|
|
||||||
|
function setupTagHandlers() {
|
||||||
|
const tagContainer = document.getElementById("tagdropdown");
|
||||||
|
|
||||||
|
if (tagContainer == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tagContainer.addEventListener("change", debounce(filter, 150));
|
||||||
|
|
||||||
|
tagContainer.addEventListener("click", function (event) {
|
||||||
|
const toggle = event.target.closest(".tagtoggle");
|
||||||
|
if (toggle) {
|
||||||
|
event.stopPropagation();
|
||||||
|
const tagid = toggle.dataset.toggleid;
|
||||||
|
toggleTag(tagid);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleTag(tagid) {
|
||||||
|
const tag = document.getElementById(tagid);
|
||||||
|
const ol = tag?.closest(".tagentry")?.querySelector(".tagentryparent");
|
||||||
|
const svg = tag?.parentElement.querySelector(".tagtoggle svg");
|
||||||
|
|
||||||
|
if (!ol || !svg) return;
|
||||||
|
|
||||||
|
ol.classList.toggle("show");
|
||||||
|
svg.style.transform = ol.classList.contains("show") ? "rotate(180deg)" : "rotate(0deg)";
|
||||||
|
}
|
||||||
|
|
||||||
|
function debounce(fn, delay) {
|
||||||
|
let timeoutId;
|
||||||
|
return function (...args) {
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
timeoutId = setTimeout(() => fn.apply(this, args), delay);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function openSwipe(img) {
|
function openSwipe(img) {
|
||||||
var options = {
|
const options = {
|
||||||
index: img
|
index: img
|
||||||
};
|
};
|
||||||
var gallery = new PhotoSwipe(pswpElement, PhotoSwipeUI_Default, items, options);
|
const gallery = new PhotoSwipe(pswpElement, PhotoSwipeUI_Default, shown, options);
|
||||||
gallery.init();
|
gallery.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (re.test(window.location.href)) {
|
async function recursive(sub = undefined) {
|
||||||
var pid = window.location.href.match(re)[1];
|
const curr = window.location.href.split("#");
|
||||||
openSwipe(parseInt(pid));
|
const content = document.getRootNode().innerHTML;
|
||||||
|
const title = document.title;
|
||||||
|
const isChecked = document.getElementById("recursive").checked;
|
||||||
|
const folders = document.querySelector(".folders");
|
||||||
|
|
||||||
|
if (!isChecked) {
|
||||||
|
if (folders) folders.style.display = "";
|
||||||
|
window.history.replaceState({ html: content, pageTitle: title }, "", curr[0].split("?")[0] + "#" + curr[1]);
|
||||||
|
requestMetadata();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let totopbutton = document.getElementById("totop");
|
if (folders) folders.style.display = "none";
|
||||||
|
window.history.replaceState({ html: content, pageTitle: title }, "", curr[0].split("?")[0] + "?recursive#" + curr[1]);
|
||||||
|
|
||||||
|
const visited = new Set();
|
||||||
|
const existingItems = new Set();
|
||||||
|
const newItems = [];
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch(".metadata.json");
|
||||||
|
if (!response.ok) throw new Error(`HTTP error! Status: ${response.status}`);
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
items = [];
|
||||||
|
subfolders = data.subfolders || [];
|
||||||
|
sub = subfolders;
|
||||||
|
|
||||||
|
for (const image of Object.values(data.images || {})) {
|
||||||
|
newItems.push(image);
|
||||||
|
existingItems.add(image.src);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to fetch base .metadata.json:", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchFoldersRecursively(folderList) {
|
||||||
|
if (!Array.isArray(folderList)) return;
|
||||||
|
|
||||||
|
const nextLevel = [];
|
||||||
|
|
||||||
|
await Promise.all(folderList.map(async (folder) => {
|
||||||
|
if (!folder || !folder.metadata || visited.has(folder.url)) return;
|
||||||
|
visited.add(folder.url);
|
||||||
|
|
||||||
|
if (!folder.metadata) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch(folder.metadata);
|
||||||
|
if (!response.ok) throw new Error(`Failed to fetch ${folder.metadata}`);
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
for (const image of Object.values(data.images || {})) {
|
||||||
|
if (!existingItems.has(image.src)) {
|
||||||
|
newItems.push(image);
|
||||||
|
existingItems.add(image.src);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(data.subfolders)) {
|
||||||
|
nextLevel.push(...data.subfolders);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to fetch folder metadata:", error);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
if (nextLevel.length > 0) {
|
||||||
|
await fetchFoldersRecursively(nextLevel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await fetchFoldersRecursively(sub);
|
||||||
|
|
||||||
|
items = [...newItems];
|
||||||
|
filter();
|
||||||
|
}
|
||||||
|
|
||||||
|
const totopbutton = document.getElementById("totop");
|
||||||
|
|
||||||
window.onscroll = function () { scrollFunction() };
|
window.onscroll = function () { scrollFunction() };
|
||||||
|
|
||||||
@@ -213,6 +358,23 @@
|
|||||||
window.scrollTo({ top: 0, behavior: 'smooth' })
|
window.scrollTo({ top: 0, behavior: 'smooth' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateImageList() {
|
||||||
|
let str = ""
|
||||||
|
let imagelist = document.getElementById("imagelist");
|
||||||
|
shown.forEach((item, index) => {
|
||||||
|
str += '<div class="column"><figure><img src="' + item.msrc + '" onclick="openSwipe(' + index + ')" onmouseover="prefetch(' + index + ')" onmouseleave="cancel(' + index + ')" /><figcaption class="caption">' + item.name;
|
||||||
|
if (item.tiff != "" & item.tiff != undefined) {
|
||||||
|
str += ' <a href="' + item.tiff + '">TIFF</a>';
|
||||||
|
}
|
||||||
|
if (item.raw != "" & item.raw != undefined) {
|
||||||
|
str += ' <a href="' + item.raw + '">RAW</a>';
|
||||||
|
}
|
||||||
|
str += '</figcaption></figure></div>';
|
||||||
|
});
|
||||||
|
|
||||||
|
imagelist.innerHTML = str;
|
||||||
|
}
|
||||||
|
|
||||||
function prefetch(img) {
|
function prefetch(img) {
|
||||||
const controller = new AbortController()
|
const controller = new AbortController()
|
||||||
const signal = controller.signal
|
const signal = controller.signal
|
||||||
@@ -230,36 +392,113 @@
|
|||||||
delete controllers[img];
|
delete controllers[img];
|
||||||
}
|
}
|
||||||
|
|
||||||
{%- if tags|length > 0 %}
|
|
||||||
function filter() {
|
function filter() {
|
||||||
var selected_tags = [];
|
shown = [];
|
||||||
var tagdropdown, imagelist, figures, i, j, tags, incl;
|
let isRecursiveChecked = false;
|
||||||
tagdropdown = document.getElementById("tagdropdown").getElementsByTagName("li");
|
|
||||||
for (i = 0; i < tagdropdown.length; i++) {
|
const curr = window.location.href.split("#")[0] + "#";
|
||||||
if (tagdropdown[i].firstChild.firstChild.checked) {
|
const path = decodeURIComponent(window.location.href.split("#")[0].replace("index.html", ""))
|
||||||
selected_tags.push([tagdropdown[i].innerText])
|
|
||||||
|
const selected_tags = [];
|
||||||
|
const tagcheckboxes = document.querySelectorAll("#tagdropdown input[class='tagcheckbox']:checked");
|
||||||
|
|
||||||
|
tagcheckboxes.forEach((checkbox) => {
|
||||||
|
let tag = checkbox.parentElement.id.trim().substring(1);
|
||||||
|
if (checkbox.parentElement.parentElement.children.length > 1) {
|
||||||
|
tag += "|"
|
||||||
}
|
}
|
||||||
}
|
selected_tags.push(tag);
|
||||||
imagelist = document.getElementById("imagelist");
|
});
|
||||||
figures = imagelist.getElementsByTagName("div");
|
|
||||||
for (i = 0; i < figures.length; i++) {
|
const urltags = selected_tags.join(",");
|
||||||
tags = items[i].tags;
|
|
||||||
incl = true;
|
try {
|
||||||
for (j = 0; j < selected_tags.length; j++) {
|
isRecursiveChecked = document.getElementById("recursive").checked;
|
||||||
if (tags.indexOf(selected_tags[j]) == -1) {
|
} catch { }
|
||||||
incl = false;
|
|
||||||
}
|
for (const item of items) {
|
||||||
}
|
const tags = item.tags || [];
|
||||||
if (incl || selected_tags == []) {
|
const include = selected_tags.every(selected => {
|
||||||
figures[i].style.display = "";
|
const isParent = selected.endsWith('|');
|
||||||
|
if (isParent) {
|
||||||
|
return tags.some(t => t.startsWith(selected));
|
||||||
} else {
|
} else {
|
||||||
figures[i].style.display = "none";
|
return tags.includes(selected);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (include || selected_tags.length === 0) {
|
||||||
|
if (!isRecursiveChecked) {
|
||||||
|
if (decodeURIComponent(item.src.replace(item.name, "")) == path) {
|
||||||
|
shown.push(item);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
shown.push(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{%- endif %}
|
|
||||||
|
updateImageList();
|
||||||
|
window.location.href = curr + urltags;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setFilter(selected) {
|
||||||
|
const tagcheckboxes = document.querySelectorAll("#tagdropdown input[class='tagcheckbox']");
|
||||||
|
selected.forEach((tag) => {
|
||||||
|
tagcheckboxes.forEach((checkbox) => {
|
||||||
|
if (checkbox.parentElement.id.trim().substring(1).replace(" ", "%20") == tag) {
|
||||||
|
checkbox.checked = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function setupDropdownToggle() {
|
||||||
|
const toggleLink = document.getElementById("tagtogglelink");
|
||||||
|
const dropdown = document.getElementById("tagdropdown");
|
||||||
|
|
||||||
|
if (toggleLink == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleLink.addEventListener("click", function (event) {
|
||||||
|
event.stopPropagation();
|
||||||
|
const svg = this.querySelector("svg");
|
||||||
|
dropdown.classList.toggle("show");
|
||||||
|
if (svg) svg.style.transform = dropdown.classList.contains("show") ? "rotate(180deg)" : "rotate(0deg)";
|
||||||
|
tagdropdownshown = dropdown.classList.contains("show");
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener("click", function (event) {
|
||||||
|
if (!dropdown.contains(event.target) && !toggleLink.contains(event.target)) {
|
||||||
|
dropdown.classList.remove("show");
|
||||||
|
tagdropdownshown = false;
|
||||||
|
const svg = toggleLink.querySelector("svg");
|
||||||
|
if (svg) svg.style.transform = "rotate(0deg)";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function onLoad() {
|
||||||
|
document.querySelectorAll('.tagtoggle').forEach(toggle => {
|
||||||
|
toggle.addEventListener('mouseup', function (event) {
|
||||||
|
event.stopPropagation();
|
||||||
|
const tagid = this.getAttribute('data-tagid');
|
||||||
|
toggleTag(tagid);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
requestMetadata();
|
||||||
|
setupDropdownToggle();
|
||||||
|
setupTagHandlers();
|
||||||
|
const recurseEl = document.getElementById("recursive")
|
||||||
|
if (recurseEl != null) { recurseEl.addEventListener("change", debounce(recursive, 150)); }
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener ?
|
||||||
|
window.addEventListener("load", onLoad, false) :
|
||||||
|
window.attachEvent && window.attachEvent("onload", onLoad);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{%- endif %}
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -54,14 +54,14 @@
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
||||||
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
||||||
<button onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
<button type="button" onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
||||||
</div>
|
</div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder {{ version }}</a> by <a
|
||||||
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer">{{ logo }}</a>.</span>
|
||||||
<button onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
<button type="button" onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
||||||
</div>
|
</div>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</body>
|
</body>
|
||||||
7
test/example/DSC00009.jpg.xmp
Normal file
7
test/example/DSC00009.jpg.xmp
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmpMM:DerivedFrom="DSC00009.jpg">
|
||||||
|
<dc:subject><rdf:Bag><rdf:li>st</rdf:li><rdf:li>aqueduct</rdf:li><rdf:li>arch</rdf:li><rdf:li>arch bridge</rdf:li><rdf:li>bridge</rdf:li><rdf:li>hillside</rdf:li><rdf:li>passenger train</rdf:li><rdf:li>railroad</rdf:li><rdf:li>railroad bridge</rdf:li><rdf:li>span</rdf:li><rdf:li>train track</rdf:li><rdf:li>tree</rdf:li><rdf:li>viaduct</rdf:li></rdf:Bag></dc:subject><lr:hierarchicalSubject><rdf:Bag><rdf:li>st|aqueduct</rdf:li><rdf:li>st|arch</rdf:li><rdf:li>st|arch bridge</rdf:li><rdf:li>st|bridge</rdf:li><rdf:li>st|hillside</rdf:li><rdf:li>st|passenger train</rdf:li><rdf:li>st|railroad</rdf:li><rdf:li>st|railroad bridge</rdf:li><rdf:li>st|span</rdf:li><rdf:li>st|train track</rdf:li><rdf:li>st|tree</rdf:li><rdf:li>st|viaduct</rdf:li></rdf:Bag></lr:hierarchicalSubject></rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
39
test/example/DSC03470.JPG.xmp
Normal file
39
test/example/DSC03470.JPG.xmp
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/"
|
||||||
|
xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||||
|
xmpMM:DerivedFrom="DSC03470.JPG">
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st</rdf:li>
|
||||||
|
<rdf:li>bus</rdf:li>
|
||||||
|
<rdf:li>illuminate</rdf:li>
|
||||||
|
<rdf:li>neon</rdf:li>
|
||||||
|
<rdf:li>neon light</rdf:li>
|
||||||
|
<rdf:li>night</rdf:li>
|
||||||
|
<rdf:li>sign</rdf:li>
|
||||||
|
<rdf:li>train car</rdf:li>
|
||||||
|
<rdf:li>trolley</rdf:li>
|
||||||
|
<rdf:li>window</rdf:li>
|
||||||
|
<rdf:li>train</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
<lr:hierarchicalSubject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st|bus</rdf:li>
|
||||||
|
<rdf:li>st|illuminate</rdf:li>
|
||||||
|
<rdf:li>st|neon</rdf:li>
|
||||||
|
<rdf:li>st|neon light</rdf:li>
|
||||||
|
<rdf:li>st|night</rdf:li>
|
||||||
|
<rdf:li>st|sign</rdf:li>
|
||||||
|
<rdf:li>st|train car</rdf:li>
|
||||||
|
<rdf:li>st|trolley</rdf:li>
|
||||||
|
<rdf:li>st|window</rdf:li>
|
||||||
|
<rdf:li>st|train</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</lr:hierarchicalSubject>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
7
test/example/DSC03508.ARW.xmp
Normal file
7
test/example/DSC03508.ARW.xmp
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmpMM:DerivedFrom="DSC03508.ARW">
|
||||||
|
<dc:subject><rdf:Bag><rdf:li>st</rdf:li><rdf:li>building</rdf:li><rdf:li>ceiling</rdf:li><rdf:li>pillar</rdf:li><rdf:li>display</rdf:li><rdf:li>rail</rdf:li><rdf:li>steam engine</rdf:li><rdf:li>steam locomotive</rdf:li><rdf:li>train</rdf:li><rdf:li>train car</rdf:li><rdf:li>train track</rdf:li></rdf:Bag></dc:subject><lr:hierarchicalSubject><rdf:Bag><rdf:li>st|building</rdf:li><rdf:li>st|ceiling</rdf:li><rdf:li>st|pillar</rdf:li><rdf:li>st|display</rdf:li><rdf:li>st|rail</rdf:li><rdf:li>st|steam engine</rdf:li><rdf:li>st|steam locomotive</rdf:li><rdf:li>st|train</rdf:li><rdf:li>st|train car</rdf:li><rdf:li>st|train track</rdf:li></rdf:Bag></lr:hierarchicalSubject></rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
49
test/example/DSC03508.JPG.xmp
Normal file
49
test/example/DSC03508.JPG.xmp
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/"
|
||||||
|
xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||||
|
xmpMM:DerivedFrom="DSC03508.JPG">
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st</rdf:li>
|
||||||
|
<rdf:li>attach</rdf:li>
|
||||||
|
<rdf:li>basement</rdf:li>
|
||||||
|
<rdf:li>beam</rdf:li>
|
||||||
|
<rdf:li>building</rdf:li>
|
||||||
|
<rdf:li>ceiling</rdf:li>
|
||||||
|
<rdf:li>equipment</rdf:li>
|
||||||
|
<rdf:li>floor</rdf:li>
|
||||||
|
<rdf:li>pipe</rdf:li>
|
||||||
|
<rdf:li>red</rdf:li>
|
||||||
|
<rdf:li>room</rdf:li>
|
||||||
|
<rdf:li>scaffold</rdf:li>
|
||||||
|
<rdf:li>tube</rdf:li>
|
||||||
|
<rdf:li>warehouse</rdf:li>
|
||||||
|
<rdf:li>water pipe</rdf:li>
|
||||||
|
<rdf:li>train</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
<lr:hierarchicalSubject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st|attach</rdf:li>
|
||||||
|
<rdf:li>st|basement</rdf:li>
|
||||||
|
<rdf:li>st|beam</rdf:li>
|
||||||
|
<rdf:li>st|building</rdf:li>
|
||||||
|
<rdf:li>st|ceiling</rdf:li>
|
||||||
|
<rdf:li>st|equipment</rdf:li>
|
||||||
|
<rdf:li>st|floor</rdf:li>
|
||||||
|
<rdf:li>st|pipe</rdf:li>
|
||||||
|
<rdf:li>st|red</rdf:li>
|
||||||
|
<rdf:li>st|room</rdf:li>
|
||||||
|
<rdf:li>st|scaffold</rdf:li>
|
||||||
|
<rdf:li>st|tube</rdf:li>
|
||||||
|
<rdf:li>st|warehouse</rdf:li>
|
||||||
|
<rdf:li>st|water pipe</rdf:li>
|
||||||
|
<rdf:li>st|train</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</lr:hierarchicalSubject>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
35
test/example/example.jpg.xmp
Normal file
35
test/example/example.jpg.xmp
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/"
|
||||||
|
xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||||
|
xmpMM:DerivedFrom="example.jpg">
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st</rdf:li>
|
||||||
|
<rdf:li>cloudy</rdf:li>
|
||||||
|
<rdf:li>evening sky</rdf:li>
|
||||||
|
<rdf:li>sea</rdf:li>
|
||||||
|
<rdf:li>sky</rdf:li>
|
||||||
|
<rdf:li>storm cloud</rdf:li>
|
||||||
|
<rdf:li>stormy</rdf:li>
|
||||||
|
<rdf:li>sun</rdf:li>
|
||||||
|
<rdf:li>sunset</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
<lr:hierarchicalSubject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st|cloudy</rdf:li>
|
||||||
|
<rdf:li>st|evening sky</rdf:li>
|
||||||
|
<rdf:li>st|sea</rdf:li>
|
||||||
|
<rdf:li>st|sky</rdf:li>
|
||||||
|
<rdf:li>st|storm cloud</rdf:li>
|
||||||
|
<rdf:li>st|stormy</rdf:li>
|
||||||
|
<rdf:li>st|sun</rdf:li>
|
||||||
|
<rdf:li>st|sunset</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</lr:hierarchicalSubject>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
7
test/example/example.tif.xmp
Normal file
7
test/example/example.tif.xmp
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmpMM:DerivedFrom="example.tif">
|
||||||
|
<dc:subject><rdf:Bag><rdf:li>st</rdf:li><rdf:li>cloud</rdf:li><rdf:li>cloudy</rdf:li><rdf:li>evening sky</rdf:li><rdf:li>sea</rdf:li><rdf:li>sky</rdf:li><rdf:li>storm cloud</rdf:li><rdf:li>stormy</rdf:li><rdf:li>sun</rdf:li><rdf:li>sunset</rdf:li></rdf:Bag></dc:subject><lr:hierarchicalSubject><rdf:Bag><rdf:li>st|cloud</rdf:li><rdf:li>st|cloudy</rdf:li><rdf:li>st|evening sky</rdf:li><rdf:li>st|sea</rdf:li><rdf:li>st|sky</rdf:li><rdf:li>st|storm cloud</rdf:li><rdf:li>st|stormy</rdf:li><rdf:li>st|sun</rdf:li><rdf:li>st|sunset</rdf:li></rdf:Bag></lr:hierarchicalSubject></rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
@@ -1,467 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>example - LICENSE</title>
|
|
||||||
<link rel="manifest" href="/.static/manifest.json">
|
|
||||||
<link rel="preload" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/.static/global.css" as="style">
|
|
||||||
<link rel="preload" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/.static/theme.css" as="style">
|
|
||||||
<link rel="icon" type="image/x-icon" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/.static/favicon.ico">
|
|
||||||
<link rel="stylesheet" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/.static/global.css">
|
|
||||||
<link rel="stylesheet" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/.static/theme.css">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="header">
|
|
||||||
<ul class="navbar">
|
|
||||||
<li><a href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/">Home</a></li>
|
|
||||||
<li><a href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/example/">Parent Directory</a></li>
|
|
||||||
<li class="title"><span class="header">example - LICENSE</span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="licensefile">
|
|
||||||
Attribution-ShareAlike 4.0 International</br>
|
|
||||||
</br>
|
|
||||||
=======================================================================</br>
|
|
||||||
</br>
|
|
||||||
Creative Commons Corporation ("Creative Commons") is not a law firm and</br>
|
|
||||||
does not provide legal services or legal advice. Distribution of</br>
|
|
||||||
Creative Commons public licenses does not create a lawyer-client or</br>
|
|
||||||
other relationship. Creative Commons makes its licenses and related</br>
|
|
||||||
information available on an "as-is" basis. Creative Commons gives no</br>
|
|
||||||
warranties regarding its licenses, any material licensed under their</br>
|
|
||||||
terms and conditions, or any related information. Creative Commons</br>
|
|
||||||
disclaims all liability for damages resulting from their use to the</br>
|
|
||||||
fullest extent possible.</br>
|
|
||||||
</br>
|
|
||||||
Using Creative Commons Public Licenses</br>
|
|
||||||
</br>
|
|
||||||
Creative Commons public licenses provide a standard set of terms and</br>
|
|
||||||
conditions that creators and other rights holders may use to share</br>
|
|
||||||
original works of authorship and other material subject to copyright</br>
|
|
||||||
and certain other rights specified in the public license below. The</br>
|
|
||||||
following considerations are for informational purposes only, are not</br>
|
|
||||||
exhaustive, and do not form part of our licenses.</br>
|
|
||||||
</br>
|
|
||||||
  Considerations for licensors: Our public licenses are</br>
|
|
||||||
  intended for use by those authorized to give the public</br>
|
|
||||||
  permission to use material in ways otherwise restricted by</br>
|
|
||||||
  copyright and certain other rights. Our licenses are</br>
|
|
||||||
  irrevocable. Licensors should read and understand the terms</br>
|
|
||||||
  and conditions of the license they choose before applying it.</br>
|
|
||||||
  Licensors should also secure all rights necessary before</br>
|
|
||||||
  applying our licenses so that the public can reuse the</br>
|
|
||||||
  material as expected. Licensors should clearly mark any</br>
|
|
||||||
  material not subject to the license. This includes other CC-</br>
|
|
||||||
  licensed material, or material used under an exception or</br>
|
|
||||||
  limitation to copyright. More considerations for licensors:</br>
|
|
||||||
 wiki.creativecommons.org/Considerations_for_licensors</br>
|
|
||||||
</br>
|
|
||||||
  Considerations for the public: By using one of our public</br>
|
|
||||||
  licenses, a licensor grants the public permission to use the</br>
|
|
||||||
  licensed material under specified terms and conditions. If</br>
|
|
||||||
  the licensor's permission is not necessary for any reason--for</br>
|
|
||||||
  example, because of any applicable exception or limitation to</br>
|
|
||||||
  copyright--then that use is not regulated by the license. Our</br>
|
|
||||||
  licenses grant only permissions under copyright and certain</br>
|
|
||||||
  other rights that a licensor has authority to grant. Use of</br>
|
|
||||||
  the licensed material may still be restricted for other</br>
|
|
||||||
  reasons, including because others have copyright or other</br>
|
|
||||||
  rights in the material. A licensor may make special requests,</br>
|
|
||||||
  such as asking that all changes be marked or described.</br>
|
|
||||||
  Although not required by our licenses, you are encouraged to</br>
|
|
||||||
  respect those requests where reasonable. More considerations</br>
|
|
||||||
  for the public:</br>
|
|
||||||
 wiki.creativecommons.org/Considerations_for_licensees</br>
|
|
||||||
</br>
|
|
||||||
=======================================================================</br>
|
|
||||||
</br>
|
|
||||||
Creative Commons Attribution-ShareAlike 4.0 International Public</br>
|
|
||||||
License</br>
|
|
||||||
</br>
|
|
||||||
By exercising the Licensed Rights (defined below), You accept and agree</br>
|
|
||||||
to be bound by the terms and conditions of this Creative Commons</br>
|
|
||||||
Attribution-ShareAlike 4.0 International Public License ("Public</br>
|
|
||||||
License"). To the extent this Public License may be interpreted as a</br>
|
|
||||||
contract, You are granted the Licensed Rights in consideration of Your</br>
|
|
||||||
acceptance of these terms and conditions, and the Licensor grants You</br>
|
|
||||||
such rights in consideration of benefits the Licensor receives from</br>
|
|
||||||
making the Licensed Material available under these terms and</br>
|
|
||||||
conditions.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 1 -- Definitions.</br>
|
|
||||||
</br>
|
|
||||||
 a. Adapted Material means material subject to Copyright and Similar</br>
|
|
||||||
  Rights that is derived from or based upon the Licensed Material</br>
|
|
||||||
  and in which the Licensed Material is translated, altered,</br>
|
|
||||||
  arranged, transformed, or otherwise modified in a manner requiring</br>
|
|
||||||
  permission under the Copyright and Similar Rights held by the</br>
|
|
||||||
  Licensor. For purposes of this Public License, where the Licensed</br>
|
|
||||||
  Material is a musical work, performance, or sound recording,</br>
|
|
||||||
  Adapted Material is always produced where the Licensed Material is</br>
|
|
||||||
  synched in timed relation with a moving image.</br>
|
|
||||||
</br>
|
|
||||||
 b. Adapter's License means the license You apply to Your Copyright</br>
|
|
||||||
  and Similar Rights in Your contributions to Adapted Material in</br>
|
|
||||||
  accordance with the terms and conditions of this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 c. BY-SA Compatible License means a license listed at</br>
|
|
||||||
  creativecommons.org/compatiblelicenses, approved by Creative</br>
|
|
||||||
  Commons as essentially the equivalent of this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 d. Copyright and Similar Rights means copyright and/or similar rights</br>
|
|
||||||
  closely related to copyright including, without limitation,</br>
|
|
||||||
  performance, broadcast, sound recording, and Sui Generis Database</br>
|
|
||||||
  Rights, without regard to how the rights are labeled or</br>
|
|
||||||
  categorized. For purposes of this Public License, the rights</br>
|
|
||||||
  specified in Section 2(b)(1)-(2) are not Copyright and Similar</br>
|
|
||||||
  Rights.</br>
|
|
||||||
</br>
|
|
||||||
 e. Effective Technological Measures means those measures that, in the</br>
|
|
||||||
  absence of proper authority, may not be circumvented under laws</br>
|
|
||||||
  fulfilling obligations under Article 11 of the WIPO Copyright</br>
|
|
||||||
  Treaty adopted on December 20, 1996, and/or similar international</br>
|
|
||||||
  agreements.</br>
|
|
||||||
</br>
|
|
||||||
 f. Exceptions and Limitations means fair use, fair dealing, and/or</br>
|
|
||||||
  any other exception or limitation to Copyright and Similar Rights</br>
|
|
||||||
  that applies to Your use of the Licensed Material.</br>
|
|
||||||
</br>
|
|
||||||
 g. License Elements means the license attributes listed in the name</br>
|
|
||||||
  of a Creative Commons Public License. The License Elements of this</br>
|
|
||||||
  Public License are Attribution and ShareAlike.</br>
|
|
||||||
</br>
|
|
||||||
 h. Licensed Material means the artistic or literary work, database,</br>
|
|
||||||
  or other material to which the Licensor applied this Public</br>
|
|
||||||
  License.</br>
|
|
||||||
</br>
|
|
||||||
 i. Licensed Rights means the rights granted to You subject to the</br>
|
|
||||||
  terms and conditions of this Public License, which are limited to</br>
|
|
||||||
  all Copyright and Similar Rights that apply to Your use of the</br>
|
|
||||||
  Licensed Material and that the Licensor has authority to license.</br>
|
|
||||||
</br>
|
|
||||||
 j. Licensor means the individual(s) or entity(ies) granting rights</br>
|
|
||||||
  under this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 k. Share means to provide material to the public by any means or</br>
|
|
||||||
  process that requires permission under the Licensed Rights, such</br>
|
|
||||||
  as reproduction, public display, public performance, distribution,</br>
|
|
||||||
  dissemination, communication, or importation, and to make material</br>
|
|
||||||
  available to the public including in ways that members of the</br>
|
|
||||||
  public may access the material from a place and at a time</br>
|
|
||||||
  individually chosen by them.</br>
|
|
||||||
</br>
|
|
||||||
 l. Sui Generis Database Rights means rights other than copyright</br>
|
|
||||||
  resulting from Directive 96/9/EC of the European Parliament and of</br>
|
|
||||||
  the Council of 11 March 1996 on the legal protection of databases,</br>
|
|
||||||
  as amended and/or succeeded, as well as other essentially</br>
|
|
||||||
  equivalent rights anywhere in the world.</br>
|
|
||||||
</br>
|
|
||||||
 m. You means the individual or entity exercising the Licensed Rights</br>
|
|
||||||
  under this Public License. Your has a corresponding meaning.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 2 -- Scope.</br>
|
|
||||||
</br>
|
|
||||||
 a. License grant.</br>
|
|
||||||
</br>
|
|
||||||
  1. Subject to the terms and conditions of this Public License,</br>
|
|
||||||
   the Licensor hereby grants You a worldwide, royalty-free,</br>
|
|
||||||
   non-sublicensable, non-exclusive, irrevocable license to</br>
|
|
||||||
   exercise the Licensed Rights in the Licensed Material to:</br>
|
|
||||||
</br>
|
|
||||||
   a. reproduce and Share the Licensed Material, in whole or</br>
|
|
||||||
    in part; and</br>
|
|
||||||
</br>
|
|
||||||
   b. produce, reproduce, and Share Adapted Material.</br>
|
|
||||||
</br>
|
|
||||||
  2. Exceptions and Limitations. For the avoidance of doubt, where</br>
|
|
||||||
   Exceptions and Limitations apply to Your use, this Public</br>
|
|
||||||
   License does not apply, and You do not need to comply with</br>
|
|
||||||
   its terms and conditions.</br>
|
|
||||||
</br>
|
|
||||||
  3. Term. The term of this Public License is specified in Section</br>
|
|
||||||
   6(a).</br>
|
|
||||||
</br>
|
|
||||||
  4. Media and formats; technical modifications allowed. The</br>
|
|
||||||
   Licensor authorizes You to exercise the Licensed Rights in</br>
|
|
||||||
   all media and formats whether now known or hereafter created,</br>
|
|
||||||
   and to make technical modifications necessary to do so. The</br>
|
|
||||||
   Licensor waives and/or agrees not to assert any right or</br>
|
|
||||||
   authority to forbid You from making technical modifications</br>
|
|
||||||
   necessary to exercise the Licensed Rights, including</br>
|
|
||||||
   technical modifications necessary to circumvent Effective</br>
|
|
||||||
   Technological Measures. For purposes of this Public License,</br>
|
|
||||||
   simply making modifications authorized by this Section 2(a)</br>
|
|
||||||
   (4) never produces Adapted Material.</br>
|
|
||||||
</br>
|
|
||||||
  5. Downstream recipients.</br>
|
|
||||||
</br>
|
|
||||||
   a. Offer from the Licensor -- Licensed Material. Every</br>
|
|
||||||
    recipient of the Licensed Material automatically</br>
|
|
||||||
    receives an offer from the Licensor to exercise the</br>
|
|
||||||
    Licensed Rights under the terms and conditions of this</br>
|
|
||||||
    Public License.</br>
|
|
||||||
</br>
|
|
||||||
   b. Additional offer from the Licensor -- Adapted Material.</br>
|
|
||||||
    Every recipient of Adapted Material from You</br>
|
|
||||||
    automatically receives an offer from the Licensor to</br>
|
|
||||||
    exercise the Licensed Rights in the Adapted Material</br>
|
|
||||||
    under the conditions of the Adapter's License You apply.</br>
|
|
||||||
</br>
|
|
||||||
   c. No downstream restrictions. You may not offer or impose</br>
|
|
||||||
    any additional or different terms or conditions on, or</br>
|
|
||||||
    apply any Effective Technological Measures to, the</br>
|
|
||||||
    Licensed Material if doing so restricts exercise of the</br>
|
|
||||||
    Licensed Rights by any recipient of the Licensed</br>
|
|
||||||
    Material.</br>
|
|
||||||
</br>
|
|
||||||
  6. No endorsement. Nothing in this Public License constitutes or</br>
|
|
||||||
   may be construed as permission to assert or imply that You</br>
|
|
||||||
   are, or that Your use of the Licensed Material is, connected</br>
|
|
||||||
   with, or sponsored, endorsed, or granted official status by,</br>
|
|
||||||
   the Licensor or others designated to receive attribution as</br>
|
|
||||||
   provided in Section 3(a)(1)(A)(i).</br>
|
|
||||||
</br>
|
|
||||||
 b. Other rights.</br>
|
|
||||||
</br>
|
|
||||||
  1. Moral rights, such as the right of integrity, are not</br>
|
|
||||||
   licensed under this Public License, nor are publicity,</br>
|
|
||||||
   privacy, and/or other similar personality rights; however, to</br>
|
|
||||||
   the extent possible, the Licensor waives and/or agrees not to</br>
|
|
||||||
   assert any such rights held by the Licensor to the limited</br>
|
|
||||||
   extent necessary to allow You to exercise the Licensed</br>
|
|
||||||
   Rights, but not otherwise.</br>
|
|
||||||
</br>
|
|
||||||
  2. Patent and trademark rights are not licensed under this</br>
|
|
||||||
   Public License.</br>
|
|
||||||
</br>
|
|
||||||
  3. To the extent possible, the Licensor waives any right to</br>
|
|
||||||
   collect royalties from You for the exercise of the Licensed</br>
|
|
||||||
   Rights, whether directly or through a collecting society</br>
|
|
||||||
   under any voluntary or waivable statutory or compulsory</br>
|
|
||||||
   licensing scheme. In all other cases the Licensor expressly</br>
|
|
||||||
   reserves any right to collect such royalties.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 3 -- License Conditions.</br>
|
|
||||||
</br>
|
|
||||||
Your exercise of the Licensed Rights is expressly made subject to the</br>
|
|
||||||
following conditions.</br>
|
|
||||||
</br>
|
|
||||||
 a. Attribution.</br>
|
|
||||||
</br>
|
|
||||||
  1. If You Share the Licensed Material (including in modified</br>
|
|
||||||
   form), You must:</br>
|
|
||||||
</br>
|
|
||||||
   a. retain the following if it is supplied by the Licensor</br>
|
|
||||||
    with the Licensed Material:</br>
|
|
||||||
</br>
|
|
||||||
     i. identification of the creator(s) of the Licensed</br>
|
|
||||||
     Material and any others designated to receive</br>
|
|
||||||
     attribution, in any reasonable manner requested by</br>
|
|
||||||
     the Licensor (including by pseudonym if</br>
|
|
||||||
     designated);</br>
|
|
||||||
</br>
|
|
||||||
    ii. a copyright notice;</br>
|
|
||||||
</br>
|
|
||||||
    iii. a notice that refers to this Public License;</br>
|
|
||||||
</br>
|
|
||||||
    iv. a notice that refers to the disclaimer of</br>
|
|
||||||
     warranties;</br>
|
|
||||||
</br>
|
|
||||||
     v. a URI or hyperlink to the Licensed Material to the</br>
|
|
||||||
     extent reasonably practicable;</br>
|
|
||||||
</br>
|
|
||||||
   b. indicate if You modified the Licensed Material and</br>
|
|
||||||
    retain an indication of any previous modifications; and</br>
|
|
||||||
</br>
|
|
||||||
   c. indicate the Licensed Material is licensed under this</br>
|
|
||||||
    Public License, and include the text of, or the URI or</br>
|
|
||||||
    hyperlink to, this Public License.</br>
|
|
||||||
</br>
|
|
||||||
  2. You may satisfy the conditions in Section 3(a)(1) in any</br>
|
|
||||||
   reasonable manner based on the medium, means, and context in</br>
|
|
||||||
   which You Share the Licensed Material. For example, it may be</br>
|
|
||||||
   reasonable to satisfy the conditions by providing a URI or</br>
|
|
||||||
   hyperlink to a resource that includes the required</br>
|
|
||||||
   information.</br>
|
|
||||||
</br>
|
|
||||||
  3. If requested by the Licensor, You must remove any of the</br>
|
|
||||||
   information required by Section 3(a)(1)(A) to the extent</br>
|
|
||||||
   reasonably practicable.</br>
|
|
||||||
</br>
|
|
||||||
 b. ShareAlike.</br>
|
|
||||||
</br>
|
|
||||||
  In addition to the conditions in Section 3(a), if You Share</br>
|
|
||||||
  Adapted Material You produce, the following conditions also apply.</br>
|
|
||||||
</br>
|
|
||||||
  1. The Adapter's License You apply must be a Creative Commons</br>
|
|
||||||
   license with the same License Elements, this version or</br>
|
|
||||||
   later, or a BY-SA Compatible License.</br>
|
|
||||||
</br>
|
|
||||||
  2. You must include the text of, or the URI or hyperlink to, the</br>
|
|
||||||
   Adapter's License You apply. You may satisfy this condition</br>
|
|
||||||
   in any reasonable manner based on the medium, means, and</br>
|
|
||||||
   context in which You Share Adapted Material.</br>
|
|
||||||
</br>
|
|
||||||
  3. You may not offer or impose any additional or different terms</br>
|
|
||||||
   or conditions on, or apply any Effective Technological</br>
|
|
||||||
   Measures to, Adapted Material that restrict exercise of the</br>
|
|
||||||
   rights granted under the Adapter's License You apply.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 4 -- Sui Generis Database Rights.</br>
|
|
||||||
</br>
|
|
||||||
Where the Licensed Rights include Sui Generis Database Rights that</br>
|
|
||||||
apply to Your use of the Licensed Material:</br>
|
|
||||||
</br>
|
|
||||||
 a. for the avoidance of doubt, Section 2(a)(1) grants You the right</br>
|
|
||||||
  to extract, reuse, reproduce, and Share all or a substantial</br>
|
|
||||||
  portion of the contents of the database;</br>
|
|
||||||
</br>
|
|
||||||
 b. if You include all or a substantial portion of the database</br>
|
|
||||||
  contents in a database in which You have Sui Generis Database</br>
|
|
||||||
  Rights, then the database in which You have Sui Generis Database</br>
|
|
||||||
  Rights (but not its individual contents) is Adapted Material,</br>
|
|
||||||
  including for purposes of Section 3(b); and</br>
|
|
||||||
</br>
|
|
||||||
 c. You must comply with the conditions in Section 3(a) if You Share</br>
|
|
||||||
  all or a substantial portion of the contents of the database.</br>
|
|
||||||
</br>
|
|
||||||
For the avoidance of doubt, this Section 4 supplements and does not</br>
|
|
||||||
replace Your obligations under this Public License where the Licensed</br>
|
|
||||||
Rights include other Copyright and Similar Rights.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.</br>
|
|
||||||
</br>
|
|
||||||
 a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE</br>
|
|
||||||
  EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS</br>
|
|
||||||
  AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF</br>
|
|
||||||
  ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,</br>
|
|
||||||
  IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,</br>
|
|
||||||
  WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR</br>
|
|
||||||
  PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,</br>
|
|
||||||
  ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT</br>
|
|
||||||
  KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT</br>
|
|
||||||
  ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.</br>
|
|
||||||
</br>
|
|
||||||
 b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE</br>
|
|
||||||
  TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,</br>
|
|
||||||
  NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,</br>
|
|
||||||
  INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,</br>
|
|
||||||
  COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR</br>
|
|
||||||
  USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN</br>
|
|
||||||
  ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR</br>
|
|
||||||
  DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR</br>
|
|
||||||
  IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.</br>
|
|
||||||
</br>
|
|
||||||
 c. The disclaimer of warranties and limitation of liability provided</br>
|
|
||||||
  above shall be interpreted in a manner that, to the extent</br>
|
|
||||||
  possible, most closely approximates an absolute disclaimer and</br>
|
|
||||||
  waiver of all liability.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 6 -- Term and Termination.</br>
|
|
||||||
</br>
|
|
||||||
 a. This Public License applies for the term of the Copyright and</br>
|
|
||||||
  Similar Rights licensed here. However, if You fail to comply with</br>
|
|
||||||
  this Public License, then Your rights under this Public License</br>
|
|
||||||
  terminate automatically.</br>
|
|
||||||
</br>
|
|
||||||
 b. Where Your right to use the Licensed Material has terminated under</br>
|
|
||||||
  Section 6(a), it reinstates:</br>
|
|
||||||
</br>
|
|
||||||
  1. automatically as of the date the violation is cured, provided</br>
|
|
||||||
   it is cured within 30 days of Your discovery of the</br>
|
|
||||||
   violation; or</br>
|
|
||||||
</br>
|
|
||||||
  2. upon express reinstatement by the Licensor.</br>
|
|
||||||
</br>
|
|
||||||
  For the avoidance of doubt, this Section 6(b) does not affect any</br>
|
|
||||||
  right the Licensor may have to seek remedies for Your violations</br>
|
|
||||||
  of this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 c. For the avoidance of doubt, the Licensor may also offer the</br>
|
|
||||||
  Licensed Material under separate terms or conditions or stop</br>
|
|
||||||
  distributing the Licensed Material at any time; however, doing so</br>
|
|
||||||
  will not terminate this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 d. Sections 1, 5, 6, 7, and 8 survive termination of this Public</br>
|
|
||||||
  License.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 7 -- Other Terms and Conditions.</br>
|
|
||||||
</br>
|
|
||||||
 a. The Licensor shall not be bound by any additional or different</br>
|
|
||||||
  terms or conditions communicated by You unless expressly agreed.</br>
|
|
||||||
</br>
|
|
||||||
 b. Any arrangements, understandings, or agreements regarding the</br>
|
|
||||||
  Licensed Material not stated herein are separate from and</br>
|
|
||||||
  independent of the terms and conditions of this Public License.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
Section 8 -- Interpretation.</br>
|
|
||||||
</br>
|
|
||||||
 a. For the avoidance of doubt, this Public License does not, and</br>
|
|
||||||
  shall not be interpreted to, reduce, limit, restrict, or impose</br>
|
|
||||||
  conditions on any use of the Licensed Material that could lawfully</br>
|
|
||||||
  be made without permission under this Public License.</br>
|
|
||||||
</br>
|
|
||||||
 b. To the extent possible, if any provision of this Public License is</br>
|
|
||||||
  deemed unenforceable, it shall be automatically reformed to the</br>
|
|
||||||
  minimum extent necessary to make it enforceable. If the provision</br>
|
|
||||||
  cannot be reformed, it shall be severed from this Public License</br>
|
|
||||||
  without affecting the enforceability of the remaining terms and</br>
|
|
||||||
  conditions.</br>
|
|
||||||
</br>
|
|
||||||
 c. No term or condition of this Public License will be waived and no</br>
|
|
||||||
  failure to comply consented to unless expressly agreed to by the</br>
|
|
||||||
  Licensor.</br>
|
|
||||||
</br>
|
|
||||||
 d. Nothing in this Public License constitutes or may be interpreted</br>
|
|
||||||
  as a limitation upon, or waiver of, any privileges and immunities</br>
|
|
||||||
  that apply to the Licensor or You, including from the legal</br>
|
|
||||||
  processes of any jurisdiction or authority.</br>
|
|
||||||
</br>
|
|
||||||
</br>
|
|
||||||
=======================================================================</br>
|
|
||||||
</br>
|
|
||||||
Creative Commons is not a party to its public</br>
|
|
||||||
licenses. Notwithstanding, Creative Commons may elect to apply one of</br>
|
|
||||||
its public licenses to material it publishes and in those instances</br>
|
|
||||||
will be considered the “Licensor.” The text of the Creative Commons</br>
|
|
||||||
public licenses is dedicated to the public domain under the CC0 Public</br>
|
|
||||||
Domain Dedication. Except for the limited purpose of indicating that</br>
|
|
||||||
material is shared under a Creative Commons public license or as</br>
|
|
||||||
otherwise permitted by the Creative Commons policies published at</br>
|
|
||||||
creativecommons.org/policies, Creative Commons does not authorize the</br>
|
|
||||||
use of the trademark "Creative Commons" or any other trademark or logo</br>
|
|
||||||
of Creative Commons without its prior written consent including,</br>
|
|
||||||
without limitation, in connection with any unauthorized modifications</br>
|
|
||||||
to any of its public licenses or any other arrangements,</br>
|
|
||||||
understandings, or agreements concerning use of licensed material. For</br>
|
|
||||||
the avoidance of doubt, this paragraph does not form part of the</br>
|
|
||||||
public licenses.</br>
|
|
||||||
</br>
|
|
||||||
Creative Commons may be contacted at creativecommons.org.</br>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="footer" xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/">
|
|
||||||
<a property="dct:title" rel="cc:attributionURL" href="file:///home/user/git/github.com/greflm13/simple-picture-server/test/">Pictures</a> by <span property="cc:attributionName">Author</span> is licensed under
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank" rel="license noopener noreferrer">CC BY-NC-SA 4.0
|
|
||||||
<img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt="" />
|
|
||||||
<img src="https://mirrors.creativecommons.org/presskit/icons/by.svg" alt="" />
|
|
||||||
<img src="https://mirrors.creativecommons.org/presskit/icons/nc.svg" alt="" />
|
|
||||||
<img src="https://mirrors.creativecommons.org/presskit/icons/sa.svg" alt="" />
|
|
||||||
</a>
|
|
||||||
<span class="attribution">Made with <a href="https://github.com/greflm13/StaticGalleryBuilder" target="_blank" rel="noopener noreferrer">StaticGalleryBuilder 2.7.1</a> by <a
|
|
||||||
href="https://github.com/greflm13" target="_blank" rel="noopener noreferrer"><svg width="48.858002mm" height="21.24mm" viewBox="0 0 48.858002 21.24" version="1.1" id="svg1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"> <text xml:space="preserve" x="21.124891" y="17.106812" font-style="normal" font-variant="normal" font-weight="300" font-stretch="condensed" font-size="2.46944px" line-height="9.33327px" font-family="Barlow Condensed Light" fill="#6e6e6e" stroke-width="1" fill-opacity="1">sorogon</text> <text xml:space="preserve" x="2.3734004" y="14.853325" font-style="normal" font-variant="normal" font-weight="250" font-stretch="condensed" font-size="16.9333px" line-height="63.9997px" font-family="Barlow Condensed Thin" fill="#6e6e6e" stroke-width="1" fill-opacity="1"></srgn></text> </svg></a>.</span>
|
|
||||||
<button onclick="topFunction()" id="totop" title="Back to Top">Back to Top</button>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
Before Width: | Height: | Size: 3.5 MiB After Width: | Height: | Size: 3.5 MiB |
30
test/example/subfolder/DSC01106.jpg.xmp
Normal file
30
test/example/subfolder/DSC01106.jpg.xmp
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/"
|
||||||
|
xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||||
|
xmpMM:DerivedFrom="DSC01106.jpg">
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st</rdf:li>
|
||||||
|
<rdf:li>clear</rdf:li>
|
||||||
|
<rdf:li>dark</rdf:li>
|
||||||
|
<rdf:li>moon</rdf:li>
|
||||||
|
<rdf:li>night</rdf:li>
|
||||||
|
<rdf:li>night sky</rdf:li>
|
||||||
|
<rdf:li>sky</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
<lr:hierarchicalSubject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st|clear</rdf:li>
|
||||||
|
<rdf:li>st|dark</rdf:li>
|
||||||
|
<rdf:li>st|moon</rdf:li>
|
||||||
|
<rdf:li>st|night</rdf:li>
|
||||||
|
<rdf:li>st|sky|night sky</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</lr:hierarchicalSubject>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 7.3 MiB |
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/"
|
||||||
|
xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||||
|
xmpMM:DerivedFrom="000041900001.jpg">
|
||||||
|
<dc:subject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st</rdf:li>
|
||||||
|
<rdf:li>cloud</rdf:li>
|
||||||
|
<rdf:li>fly</rdf:li>
|
||||||
|
<rdf:li>sky</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</dc:subject>
|
||||||
|
<lr:hierarchicalSubject>
|
||||||
|
<rdf:Bag>
|
||||||
|
<rdf:li>st|cloud</rdf:li>
|
||||||
|
<rdf:li>st|fly</rdf:li>
|
||||||
|
<rdf:li>st|sky</rdf:li>
|
||||||
|
</rdf:Bag>
|
||||||
|
</lr:hierarchicalSubject>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<x:xmpmeta x:xmptk="XMP Core 4.4.0-Exiv2" xmlns:x="adobe:ns:meta/">
|
||||||
|
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||||
|
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:exif="http://ns.adobe.com/exif/1.0/" xmlns:lr="http://ns.adobe.com/lightroom/1.0/" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmpMM:DerivedFrom="000041900001.tif">
|
||||||
|
<dc:subject><rdf:Bag><rdf:li>st</rdf:li><rdf:li>cloud</rdf:li><rdf:li>cloudy</rdf:li><rdf:li>fly</rdf:li><rdf:li>sky</rdf:li></rdf:Bag></dc:subject><lr:hierarchicalSubject><rdf:Bag><rdf:li>st|cloud</rdf:li><rdf:li>st|cloudy</rdf:li><rdf:li>st|fly</rdf:li><rdf:li>st|sky</rdf:li></rdf:Bag></lr:hierarchicalSubject></rdf:Description>
|
||||||
|
</rdf:RDF>
|
||||||
|
</x:xmpmeta>
|
||||||
@@ -97,7 +97,11 @@ body {
|
|||||||
background-color: var(--color6);
|
background-color: var(--color6);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -96,7 +96,11 @@ body {
|
|||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color7);
|
background-color: var(--color7);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,11 @@
|
|||||||
background-color: var(--bcolor1);
|
background-color: var(--bcolor1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor3);
|
background-color: var(--bcolor3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,11 @@
|
|||||||
background-color: var(--bcolor1);
|
background-color: var(--bcolor1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor3);
|
background-color: var(--bcolor3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -79,7 +79,11 @@
|
|||||||
font-family: "Playfair Display", serif;
|
font-family: "Playfair Display", serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor4);
|
background-color: var(--bcolor4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -79,7 +79,11 @@
|
|||||||
font-family: "Nunito", sans-serif;
|
font-family: "Nunito", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color4);
|
background-color: var(--color4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor4);
|
background-color: var(--bcolor4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,11 @@
|
|||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color4);
|
background-color: var(--color4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,11 @@
|
|||||||
background-color: var(--color2);
|
background-color: var(--color2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color4);
|
background-color: var(--color4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor4);
|
background-color: var(--bcolor4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,11 @@
|
|||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color2);
|
background-color: var(--color2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor3);
|
background-color: var(--bcolor3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor4);
|
background-color: var(--bcolor4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -79,7 +79,11 @@
|
|||||||
font-family: "Lora", serif;
|
font-family: "Lora", serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor3);
|
background-color: var(--bcolor3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,11 @@
|
|||||||
background-color: var(--color4);
|
background-color: var(--color4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color3);
|
background-color: var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,11 @@
|
|||||||
font-family: "Roboto", sans-serif;
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor3);
|
background-color: var(--bcolor3);
|
||||||
color: var(--bcolor2);
|
color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,11 @@
|
|||||||
background-color: var(--bcolor2);
|
background-color: var(--bcolor2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--bcolor4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--bcolor4);
|
background-color: var(--bcolor4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,11 @@
|
|||||||
font-family: "Montserrat", sans-serif;
|
font-family: "Montserrat", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagentry:hover {
|
.tagentry label:hover {
|
||||||
|
background-color: var(--color2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagentry .tagtoggle:hover {
|
||||||
background-color: var(--color2);
|
background-color: var(--color2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user