mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 11:09:26 +00:00
added glob support to folder excludes
This commit is contained in:
@@ -70,9 +70,9 @@
|
|||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
"args": [
|
"args": [
|
||||||
"-p",
|
"-p",
|
||||||
"/mnt/nfs/pictures",
|
"/home/user/Pictures",
|
||||||
"-w",
|
"-w",
|
||||||
"https://pictures.sorogon.eu",
|
"file:///home/user/Pictures",
|
||||||
"-t",
|
"-t",
|
||||||
"Pictures",
|
"Pictures",
|
||||||
"--theme",
|
"--theme",
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "Delete Lockfile",
|
"label": "Delete Lockfile",
|
||||||
"command": "rm -f /mnt/nfs/pictures/.lock",
|
"command": "rm -f /home/user/Pictures/.lock",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"isBackground": true
|
"isBackground": true
|
||||||
|
|||||||
12
builder.py
12
builder.py
@@ -3,6 +3,7 @@ import os
|
|||||||
import argparse
|
import argparse
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
import shutil
|
import shutil
|
||||||
|
import fnmatch
|
||||||
from multiprocessing import Pool
|
from multiprocessing import Pool
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any, Dict, List, Optional, Tuple
|
from typing import Any, Dict, List, Optional, Tuple
|
||||||
@@ -25,7 +26,7 @@ VERSION = "1.7.0"
|
|||||||
RAW_EXTENSIONS = [".3fr", ".ari", ".arw", ".bay", ".braw", ".crw", ".cr2", ".cr3", ".cap", ".data", ".dcs", ".dcr", ".dng", ".drf", ".eip", ".erf", ".fff", ".gpr", ".iiq", ".k25", ".kdc", ".mdc", ".mef", ".mos", ".mrw", ".nef", ".nrw", ".obm", ".orf", ".pef", ".ptx", ".pxn", ".r3d", ".raf", ".raw", ".rwl", ".rw2", ".rwz", ".sr2", ".srf", ".srw", ".tif", ".tiff", ".x3f"]
|
RAW_EXTENSIONS = [".3fr", ".ari", ".arw", ".bay", ".braw", ".crw", ".cr2", ".cr3", ".cap", ".data", ".dcs", ".dcr", ".dng", ".drf", ".eip", ".erf", ".fff", ".gpr", ".iiq", ".k25", ".kdc", ".mdc", ".mef", ".mos", ".mrw", ".nef", ".nrw", ".obm", ".orf", ".pef", ".ptx", ".pxn", ".r3d", ".raf", ".raw", ".rwl", ".rw2", ".rwz", ".sr2", ".srf", ".srw", ".tif", ".tiff", ".x3f"]
|
||||||
IMG_EXTENSIONS = [".jpg", ".jpeg"]
|
IMG_EXTENSIONS = [".jpg", ".jpeg"]
|
||||||
EXCLUDES = [".lock", "index.html", ".thumbnails", ".static"]
|
EXCLUDES = [".lock", "index.html", ".thumbnails", ".static"]
|
||||||
NOT_LIST = ["Galleries", "Archives"]
|
NOT_LIST = ["*/Galleries/*", "Archives"]
|
||||||
# fmt: on
|
# fmt: on
|
||||||
|
|
||||||
# Initialize Jinja2 environment
|
# Initialize Jinja2 environment
|
||||||
@@ -63,7 +64,7 @@ def parse_arguments() -> Args:
|
|||||||
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("--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("--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("--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("--exclude-folder", help="Folders to exclude from processing (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("--version", action="version", version=f"%(prog)s {VERSION}")
|
parser.add_argument("--version", action="version", version=f"%(prog)s {VERSION}")
|
||||||
parser.add_argument("--generate-help-preview", action=HelpPreviewAction, path="help.svg")
|
parser.add_argument("--generate-help-preview", action=HelpPreviewAction, path="help.svg")
|
||||||
parsed_args = parser.parse_args()
|
parsed_args = parser.parse_args()
|
||||||
@@ -152,6 +153,11 @@ def list_folder(folder: str, title: str) -> None:
|
|||||||
subfolder = {"url": f"{args.web_root_url}{baseurl}{urllib.parse.quote(item)}", "name": item}
|
subfolder = {"url": f"{args.web_root_url}{baseurl}{urllib.parse.quote(item)}", "name": item}
|
||||||
subfolders.append(subfolder)
|
subfolders.append(subfolder)
|
||||||
if item not in args.exclude_folders:
|
if item not in args.exclude_folders:
|
||||||
|
skip = False
|
||||||
|
for exclude in args.exclude_folders:
|
||||||
|
if fnmatch.fnmatchcase(os.path.join(folder, item), exclude):
|
||||||
|
skip = True
|
||||||
|
if not skip:
|
||||||
list_folder(os.path.join(folder, item), os.path.join(folder, item).removeprefix(args.root_directory))
|
list_folder(os.path.join(folder, item), os.path.join(folder, item).removeprefix(args.root_directory))
|
||||||
else:
|
else:
|
||||||
extsplit = os.path.splitext(item)
|
extsplit = os.path.splitext(item)
|
||||||
@@ -237,9 +243,9 @@ def main() -> None:
|
|||||||
exit()
|
exit()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Path(os.path.join(args.root_directory, ".lock")).touch()
|
||||||
if not os.path.exists(os.path.join(args.root_directory, ".thumbnails")):
|
if not os.path.exists(os.path.join(args.root_directory, ".thumbnails")):
|
||||||
os.mkdir(os.path.join(args.root_directory, ".thumbnails"))
|
os.mkdir(os.path.join(args.root_directory, ".thumbnails"))
|
||||||
Path(os.path.join(args.root_directory, ".lock")).touch()
|
|
||||||
|
|
||||||
print("Copying static files...")
|
print("Copying static files...")
|
||||||
copy_static_files(args)
|
copy_static_files(args)
|
||||||
|
|||||||
328
help.svg
328
help.svg
@@ -19,126 +19,126 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-matrix {
|
.terminal-3216112738-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-133953017-title {
|
.terminal-3216112738-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-family: arial;
|
font-family: arial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-r1 {
|
.terminal-3216112738-r1 {
|
||||||
fill: #ff8700
|
fill: #ff8700
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-r2 {
|
.terminal-3216112738-r2 {
|
||||||
fill: #c5c8c6
|
fill: #c5c8c6
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-r3 {
|
.terminal-3216112738-r3 {
|
||||||
fill: #808080
|
fill: #808080
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-r4 {
|
.terminal-3216112738-r4 {
|
||||||
fill: #68a0b3
|
fill: #68a0b3
|
||||||
}
|
}
|
||||||
|
|
||||||
.terminal-133953017-r5 {
|
.terminal-3216112738-r5 {
|
||||||
fill: #00af87
|
fill: #00af87
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<defs>
|
<defs>
|
||||||
<clipPath id="terminal-133953017-clip-terminal">
|
<clipPath id="terminal-3216112738-clip-terminal">
|
||||||
<rect x="0" y="0" width="1463.0" height="706.5999999999999" />
|
<rect x="0" y="0" width="1463.0" height="706.5999999999999" />
|
||||||
</clipPath>
|
</clipPath>
|
||||||
<clipPath id="terminal-133953017-line-0">
|
<clipPath id="terminal-3216112738-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-133953017-line-1">
|
<clipPath id="terminal-3216112738-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-133953017-line-2">
|
<clipPath id="terminal-3216112738-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-133953017-line-3">
|
<clipPath id="terminal-3216112738-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-133953017-line-4">
|
<clipPath id="terminal-3216112738-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-133953017-line-5">
|
<clipPath id="terminal-3216112738-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-133953017-line-6">
|
<clipPath id="terminal-3216112738-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-133953017-line-7">
|
<clipPath id="terminal-3216112738-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-133953017-line-8">
|
<clipPath id="terminal-3216112738-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-133953017-line-9">
|
<clipPath id="terminal-3216112738-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-133953017-line-10">
|
<clipPath id="terminal-3216112738-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-133953017-line-11">
|
<clipPath id="terminal-3216112738-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-133953017-line-12">
|
<clipPath id="terminal-3216112738-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-133953017-line-13">
|
<clipPath id="terminal-3216112738-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-133953017-line-14">
|
<clipPath id="terminal-3216112738-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-133953017-line-15">
|
<clipPath id="terminal-3216112738-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-133953017-line-16">
|
<clipPath id="terminal-3216112738-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-133953017-line-17">
|
<clipPath id="terminal-3216112738-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-133953017-line-18">
|
<clipPath id="terminal-3216112738-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-133953017-line-19">
|
<clipPath id="terminal-3216112738-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-133953017-line-20">
|
<clipPath id="terminal-3216112738-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-133953017-line-21">
|
<clipPath id="terminal-3216112738-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-133953017-line-22">
|
<clipPath id="terminal-3216112738-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-133953017-line-23">
|
<clipPath id="terminal-3216112738-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-133953017-line-24">
|
<clipPath id="terminal-3216112738-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-133953017-line-25">
|
<clipPath id="terminal-3216112738-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-133953017-line-26">
|
<clipPath id="terminal-3216112738-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-133953017-line-27">
|
<clipPath id="terminal-3216112738-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>
|
||||||
</defs>
|
</defs>
|
||||||
@@ -150,135 +150,137 @@
|
|||||||
<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-133953017-clip-terminal)">
|
<g transform="translate(9, 41)" clip-path="url(#terminal-3216112738-clip-terminal)">
|
||||||
|
|
||||||
<g class="terminal-133953017-matrix">
|
<g class="terminal-3216112738-matrix">
|
||||||
<text class="terminal-133953017-r1" x="0" y="20" textLength="73.2" clip-path="url(#terminal-133953017-line-0)">Usage:</text><text class="terminal-133953017-r3" x="85.4" y="20"
|
<text class="terminal-3216112738-r1" x="0" y="20" textLength="73.2" clip-path="url(#terminal-3216112738-line-0)">Usage:</text><text class="terminal-3216112738-r3" x="85.4" y="20"
|
||||||
textLength="122" clip-path="url(#terminal-133953017-line-0)">builder.py</text><text class="terminal-133953017-r2" x="207.4" y="20" textLength="24.4"
|
textLength="122" clip-path="url(#terminal-3216112738-line-0)">builder.py</text><text class="terminal-3216112738-r2" x="207.4" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)"> [</text><text class="terminal-133953017-r4" x="231.8" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)"> [</text><text class="terminal-3216112738-r4" x="231.8" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-h</text><text class="terminal-133953017-r2" x="256.2" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">-h</text><text class="terminal-3216112738-r2" x="256.2" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] </text><text class="terminal-133953017-r4" x="280.6" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">] </text><text class="terminal-3216112738-r4" x="280.6" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-p</text><text class="terminal-133953017-r5" x="317.2" y="20" textLength="48.8" clip-path="url(#terminal-133953017-line-0)">ROOT</text><text
|
clip-path="url(#terminal-3216112738-line-0)">-p</text><text class="terminal-3216112738-r5" x="317.2" y="20" textLength="48.8"
|
||||||
class="terminal-133953017-r4" x="378.2" y="20" textLength="24.4" clip-path="url(#terminal-133953017-line-0)">-w</text><text class="terminal-133953017-r5" x="414.8" y="20"
|
clip-path="url(#terminal-3216112738-line-0)">ROOT</text><text class="terminal-3216112738-r4" x="378.2" y="20" textLength="24.4"
|
||||||
textLength="36.6" clip-path="url(#terminal-133953017-line-0)">URL</text><text class="terminal-133953017-r4" x="463.6" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">-w</text><text class="terminal-3216112738-r5" x="414.8" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-t</text><text class="terminal-133953017-r5" x="500.2" y="20" textLength="61" clip-path="url(#terminal-133953017-line-0)">TITLE</text><text
|
clip-path="url(#terminal-3216112738-line-0)">URL</text><text class="terminal-3216112738-r4" x="463.6" y="20" textLength="24.4"
|
||||||
class="terminal-133953017-r2" x="561.2" y="20" textLength="24.4" clip-path="url(#terminal-133953017-line-0)"> [</text><text class="terminal-133953017-r4" x="585.6" y="20"
|
clip-path="url(#terminal-3216112738-line-0)">-t</text><text class="terminal-3216112738-r5" x="500.2" y="20" textLength="61"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-0)">-r</text><text class="terminal-133953017-r2" x="610" y="20" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-0)">TITLE</text><text class="terminal-3216112738-r2" x="561.2" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] [</text><text class="terminal-133953017-r4" x="646.6" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)"> [</text><text class="terminal-3216112738-r4" x="585.6" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-n</text><text class="terminal-133953017-r2" x="671" y="20" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-0)">-r</text><text class="terminal-3216112738-r2" x="610" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] [</text><text class="terminal-133953017-r4" x="707.6" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">] [</text><text class="terminal-3216112738-r4" x="646.6" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-l</text><text class="terminal-133953017-r5" x="744.2" y="20" textLength="85.4"
|
clip-path="url(#terminal-3216112738-line-0)">-n</text><text class="terminal-3216112738-r2" x="671" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">LICENSE</text><text class="terminal-133953017-r2" x="829.6" y="20" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-0)">] [</text><text class="terminal-3216112738-r4" x="707.6" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] [</text><text class="terminal-133953017-r4" x="866.2" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">-l</text><text class="terminal-3216112738-r5" x="744.2" y="20" textLength="85.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-a</text><text class="terminal-133953017-r5" x="902.8" y="20" textLength="73.2"
|
clip-path="url(#terminal-3216112738-line-0)">LICENSE</text><text class="terminal-3216112738-r2" x="829.6" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">AUTHOR</text><text class="terminal-133953017-r2" x="976" y="20" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-0)">] [</text><text class="terminal-3216112738-r4" x="866.2" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] [</text><text class="terminal-133953017-r4" x="1012.6" y="20" textLength="24.4"
|
clip-path="url(#terminal-3216112738-line-0)">-a</text><text class="terminal-3216112738-r5" x="902.8" y="20" textLength="73.2"
|
||||||
clip-path="url(#terminal-133953017-line-0)">-e</text><text class="terminal-133953017-r5" x="1049.2" y="20" textLength="109.8"
|
clip-path="url(#terminal-3216112738-line-0)">AUTHOR</text><text class="terminal-3216112738-r2" x="976" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">EXTENSION</text><text class="terminal-133953017-r2" x="1159" y="20" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-0)">] [</text><text class="terminal-3216112738-r4" x="1012.6" y="20" textLength="24.4"
|
||||||
clip-path="url(#terminal-133953017-line-0)">] [</text><text class="terminal-133953017-r4" x="1195.6" y="20" textLength="146.4"
|
clip-path="url(#terminal-3216112738-line-0)">-e</text><text class="terminal-3216112738-r5" x="1049.2" y="20" textLength="109.8"
|
||||||
clip-path="url(#terminal-133953017-line-0)">--theme-path</text><text class="terminal-133953017-r5" x="1354.2" y="20" textLength="48.8"
|
clip-path="url(#terminal-3216112738-line-0)">EXTENSION</text><text class="terminal-3216112738-r2" x="1159" y="20" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-0)">PATH</text><text class="terminal-133953017-r2" x="1403" y="20" textLength="12.2" clip-path="url(#terminal-133953017-line-0)">]</text><text
|
clip-path="url(#terminal-3216112738-line-0)">] [</text><text class="terminal-3216112738-r4" x="1195.6" y="20" textLength="146.4"
|
||||||
class="terminal-133953017-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-133953017-line-0)">
|
clip-path="url(#terminal-3216112738-line-0)">--theme-path</text><text class="terminal-3216112738-r5" x="1354.2" y="20" textLength="48.8"
|
||||||
</text><text class="terminal-133953017-r2" x="0" y="44.4" textLength="231.8"
|
clip-path="url(#terminal-3216112738-line-0)">PATH</text><text class="terminal-3216112738-r2" x="1403" y="20" textLength="12.2"
|
||||||
clip-path="url(#terminal-133953017-line-1)">                  [</text><text
|
clip-path="url(#terminal-3216112738-line-0)">]</text><text class="terminal-3216112738-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3216112738-line-0)">
|
||||||
class="terminal-133953017-r4" x="231.8" y="44.4" textLength="231.8" clip-path="url(#terminal-133953017-line-1)">--use-fancy-folders</text><text class="terminal-133953017-r2" x="463.6"
|
</text><text class="terminal-3216112738-r2" x="0" y="44.4" textLength="231.8"
|
||||||
y="44.4" textLength="36.6" clip-path="url(#terminal-133953017-line-1)">] [</text><text class="terminal-133953017-r4" x="500.2" y="44.4" textLength="244"
|
clip-path="url(#terminal-3216112738-line-1)">                  [</text><text
|
||||||
clip-path="url(#terminal-133953017-line-1)">--ignore-other-files</text><text class="terminal-133953017-r2" x="744.2" y="44.4" textLength="36.6"
|
class="terminal-3216112738-r4" x="231.8" y="44.4" textLength="231.8" clip-path="url(#terminal-3216112738-line-1)">--use-fancy-folders</text><text class="terminal-3216112738-r2"
|
||||||
clip-path="url(#terminal-133953017-line-1)">] [</text><text class="terminal-133953017-r4" x="780.8" y="44.4" textLength="195.2"
|
x="463.6" y="44.4" textLength="36.6" clip-path="url(#terminal-3216112738-line-1)">] [</text><text class="terminal-3216112738-r4" x="500.2" y="44.4" textLength="244"
|
||||||
clip-path="url(#terminal-133953017-line-1)">--exclude-folder</text><text class="terminal-133953017-r5" x="988.2" y="44.4" textLength="73.2"
|
clip-path="url(#terminal-3216112738-line-1)">--ignore-other-files</text><text class="terminal-3216112738-r2" x="744.2" y="44.4" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-1)">FOLDER</text><text class="terminal-133953017-r2" x="1061.4" y="44.4" textLength="36.6"
|
clip-path="url(#terminal-3216112738-line-1)">] [</text><text class="terminal-3216112738-r4" x="780.8" y="44.4" textLength="195.2"
|
||||||
clip-path="url(#terminal-133953017-line-1)">] [</text><text class="terminal-133953017-r4" x="1098" y="44.4" textLength="109.8"
|
clip-path="url(#terminal-3216112738-line-1)">--exclude-folder</text><text class="terminal-3216112738-r5" x="988.2" y="44.4" textLength="73.2"
|
||||||
clip-path="url(#terminal-133953017-line-1)">--version</text><text class="terminal-133953017-r2" x="1207.8" y="44.4" textLength="12.2"
|
clip-path="url(#terminal-3216112738-line-1)">FOLDER</text><text class="terminal-3216112738-r2" x="1061.4" y="44.4" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-1)">]</text><text class="terminal-133953017-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-133953017-line-1)">
|
clip-path="url(#terminal-3216112738-line-1)">] [</text><text class="terminal-3216112738-r4" x="1098" y="44.4" textLength="109.8"
|
||||||
</text><text class="terminal-133953017-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-133953017-line-2)">
|
clip-path="url(#terminal-3216112738-line-1)">--version</text><text class="terminal-3216112738-r2" x="1207.8" y="44.4" textLength="12.2"
|
||||||
</text><text class="terminal-133953017-r2" x="0" y="93.2" textLength="671"
|
clip-path="url(#terminal-3216112738-line-1)">]</text><text class="terminal-3216112738-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3216112738-line-1)">
|
||||||
clip-path="url(#terminal-133953017-line-3)">Generate HTML files for a static image hosting website.</text><text class="terminal-133953017-r2"
|
</text><text class="terminal-3216112738-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3216112738-line-2)">
|
||||||
x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-133953017-line-3)">
|
</text><text class="terminal-3216112738-r2" x="0" y="93.2" textLength="671"
|
||||||
</text><text class="terminal-133953017-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-133953017-line-4)">
|
clip-path="url(#terminal-3216112738-line-3)">Generate HTML files for a static image hosting website.</text><text class="terminal-3216112738-r2"
|
||||||
</text><text class="terminal-133953017-r1" x="0" y="142" textLength="97.6" clip-path="url(#terminal-133953017-line-5)">Options:</text><text class="terminal-133953017-r2" x="1464" y="142"
|
x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3216112738-line-3)">
|
||||||
textLength="12.2" clip-path="url(#terminal-133953017-line-5)">
|
</text><text class="terminal-3216112738-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3216112738-line-4)">
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="166.4" textLength="24.4" clip-path="url(#terminal-133953017-line-6)">-h</text><text class="terminal-133953017-r2" x="48.8" y="166.4"
|
</text><text class="terminal-3216112738-r1" x="0" y="142" textLength="97.6" clip-path="url(#terminal-3216112738-line-5)">Options:</text><text class="terminal-3216112738-r2" x="1464"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-6)">, </text><text class="terminal-133953017-r4" x="73.2" y="166.4" textLength="73.2"
|
y="142" textLength="12.2" clip-path="url(#terminal-3216112738-line-5)">
|
||||||
clip-path="url(#terminal-133953017-line-6)">--help</text><text class="terminal-133953017-r2" x="292.8" y="166.4" textLength="378.2"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="166.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-6)">-h</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-6)">show this help message and exit</text><text class="terminal-133953017-r2" x="1464" y="166.4" textLength="12.2"
|
y="166.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-6)">, </text><text class="terminal-3216112738-r4" x="73.2" y="166.4" textLength="73.2"
|
||||||
clip-path="url(#terminal-133953017-line-6)">
|
clip-path="url(#terminal-3216112738-line-6)">--help</text><text class="terminal-3216112738-r2" x="292.8" y="166.4" textLength="378.2"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="190.8" textLength="24.4" clip-path="url(#terminal-133953017-line-7)">-p</text><text class="terminal-133953017-r2" x="48.8" y="190.8"
|
clip-path="url(#terminal-3216112738-line-6)">show this help message and exit</text><text class="terminal-3216112738-r2" x="1464" y="166.4" textLength="12.2"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-7)">, </text><text class="terminal-133953017-r4" x="73.2" y="190.8" textLength="195.2"
|
clip-path="url(#terminal-3216112738-line-6)">
|
||||||
clip-path="url(#terminal-133953017-line-7)">--root-directory</text><text class="terminal-133953017-r5" x="280.6" y="190.8" textLength="48.8"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="190.8" textLength="24.4" clip-path="url(#terminal-3216112738-line-7)">-p</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-7)">ROOT</text><text class="terminal-133953017-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-133953017-line-7)">
|
y="190.8" textLength="24.4" clip-path="url(#terminal-3216112738-line-7)">, </text><text class="terminal-3216112738-r4" x="73.2" y="190.8" textLength="195.2"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="215.2" textLength="451.4"
|
clip-path="url(#terminal-3216112738-line-7)">--root-directory</text><text class="terminal-3216112738-r5" x="280.6" y="190.8" textLength="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-8)">Root directory containing the images.</text><text class="terminal-133953017-r2" x="1464" y="215.2" textLength="12.2"
|
clip-path="url(#terminal-3216112738-line-7)">ROOT</text><text class="terminal-3216112738-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3216112738-line-7)">
|
||||||
clip-path="url(#terminal-133953017-line-8)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="215.2" textLength="451.4"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="239.6" textLength="24.4" clip-path="url(#terminal-133953017-line-9)">-w</text><text class="terminal-133953017-r2" x="48.8" y="239.6"
|
clip-path="url(#terminal-3216112738-line-8)">Root directory containing the images.</text><text class="terminal-3216112738-r2" x="1464" y="215.2" textLength="12.2"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-9)">, </text><text class="terminal-133953017-r4" x="73.2" y="239.6" textLength="170.8"
|
clip-path="url(#terminal-3216112738-line-8)">
|
||||||
clip-path="url(#terminal-133953017-line-9)">--web-root-url</text><text class="terminal-133953017-r5" x="256.2" y="239.6" textLength="36.6"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="239.6" textLength="24.4" clip-path="url(#terminal-3216112738-line-9)">-w</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-9)">URL</text><text class="terminal-133953017-r2" x="1464" y="239.6" textLength="12.2" clip-path="url(#terminal-133953017-line-9)">
|
y="239.6" textLength="24.4" clip-path="url(#terminal-3216112738-line-9)">, </text><text class="terminal-3216112738-r4" x="73.2" y="239.6" textLength="170.8"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="264" textLength="634.4"
|
clip-path="url(#terminal-3216112738-line-9)">--web-root-url</text><text class="terminal-3216112738-r5" x="256.2" y="239.6" textLength="36.6"
|
||||||
clip-path="url(#terminal-133953017-line-10)">Base URL of the web root for the image hosting site.</text><text
|
clip-path="url(#terminal-3216112738-line-9)">URL</text><text class="terminal-3216112738-r2" x="1464" y="239.6" textLength="12.2" clip-path="url(#terminal-3216112738-line-9)">
|
||||||
class="terminal-133953017-r2" x="1464" y="264" textLength="12.2" clip-path="url(#terminal-133953017-line-10)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="264" textLength="634.4"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="288.4" textLength="24.4" clip-path="url(#terminal-133953017-line-11)">-t</text><text class="terminal-133953017-r2" x="48.8" y="288.4"
|
clip-path="url(#terminal-3216112738-line-10)">Base URL of the web root for the image hosting site.</text><text
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-11)">, </text><text class="terminal-133953017-r4" x="73.2" y="288.4" textLength="146.4"
|
class="terminal-3216112738-r2" x="1464" y="264" textLength="12.2" clip-path="url(#terminal-3216112738-line-10)">
|
||||||
clip-path="url(#terminal-133953017-line-11)">--site-title</text><text class="terminal-133953017-r5" x="231.8" y="288.4" textLength="61"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="288.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-11)">-t</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-11)">TITLE</text><text class="terminal-133953017-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-133953017-line-11)">
|
y="288.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-11)">, </text><text class="terminal-3216112738-r4" x="73.2" y="288.4" textLength="146.4"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="312.8" textLength="390.4"
|
clip-path="url(#terminal-3216112738-line-11)">--site-title</text><text class="terminal-3216112738-r5" x="231.8" y="288.4" textLength="61"
|
||||||
clip-path="url(#terminal-133953017-line-12)">Title of the image hosting site.</text><text class="terminal-133953017-r2" x="1464" y="312.8" textLength="12.2"
|
clip-path="url(#terminal-3216112738-line-11)">TITLE</text><text class="terminal-3216112738-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3216112738-line-11)">
|
||||||
clip-path="url(#terminal-133953017-line-12)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="312.8" textLength="390.4"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="337.2" textLength="24.4" clip-path="url(#terminal-133953017-line-13)">-r</text><text class="terminal-133953017-r2" x="48.8" y="337.2"
|
clip-path="url(#terminal-3216112738-line-12)">Title of the image hosting site.</text><text class="terminal-3216112738-r2" x="1464" y="312.8" textLength="12.2"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-13)">, </text><text class="terminal-133953017-r4" x="73.2" y="337.2" textLength="280.6"
|
clip-path="url(#terminal-3216112738-line-12)">
|
||||||
clip-path="url(#terminal-133953017-line-13)">--regenerate-thumbnails</text><text class="terminal-133953017-r2" x="1464" y="337.2" textLength="12.2"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="337.2" textLength="24.4" clip-path="url(#terminal-3216112738-line-13)">-r</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-13)">
|
y="337.2" textLength="24.4" clip-path="url(#terminal-3216112738-line-13)">, </text><text class="terminal-3216112738-r4" x="73.2" y="337.2" textLength="280.6"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="361.6" textLength="597.8"
|
clip-path="url(#terminal-3216112738-line-13)">--regenerate-thumbnails</text><text class="terminal-3216112738-r2" x="1464" y="337.2" textLength="12.2"
|
||||||
clip-path="url(#terminal-133953017-line-14)">Regenerate thumbnails even if they already exist.</text><text class="terminal-133953017-r2" x="1464"
|
clip-path="url(#terminal-3216112738-line-13)">
|
||||||
y="361.6" textLength="12.2" clip-path="url(#terminal-133953017-line-14)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="361.6" textLength="597.8"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="386" textLength="24.4" clip-path="url(#terminal-133953017-line-15)">-n</text><text class="terminal-133953017-r2" x="48.8" y="386"
|
clip-path="url(#terminal-3216112738-line-14)">Regenerate thumbnails even if they already exist.</text><text class="terminal-3216112738-r2" x="1464"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-15)">, </text><text class="terminal-133953017-r4" x="73.2" y="386" textLength="268.4"
|
y="361.6" textLength="12.2" clip-path="url(#terminal-3216112738-line-14)">
|
||||||
clip-path="url(#terminal-133953017-line-15)">--non-interactive-mode</text><text class="terminal-133953017-r2" x="1464" y="386" textLength="12.2"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="386" textLength="24.4" clip-path="url(#terminal-3216112738-line-15)">-n</text><text class="terminal-3216112738-r2" x="48.8" y="386"
|
||||||
clip-path="url(#terminal-133953017-line-15)">
|
textLength="24.4" clip-path="url(#terminal-3216112738-line-15)">, </text><text class="terminal-3216112738-r4" x="73.2" y="386" textLength="268.4"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="410.4" textLength="646.6"
|
clip-path="url(#terminal-3216112738-line-15)">--non-interactive-mode</text><text class="terminal-3216112738-r2" x="1464" y="386" textLength="12.2"
|
||||||
clip-path="url(#terminal-133953017-line-16)">Run in non-interactive mode, disabling progress bars.</text><text class="terminal-133953017-r2" x="1464"
|
clip-path="url(#terminal-3216112738-line-15)">
|
||||||
y="410.4" textLength="12.2" clip-path="url(#terminal-133953017-line-16)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="410.4" textLength="646.6"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="434.8" textLength="24.4" clip-path="url(#terminal-133953017-line-17)">-l</text><text class="terminal-133953017-r2" x="48.8" y="434.8"
|
clip-path="url(#terminal-3216112738-line-16)">Run in non-interactive mode, disabling progress bars.</text><text class="terminal-3216112738-r2" x="1464"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-17)">, </text><text class="terminal-133953017-r4" x="73.2" y="434.8" textLength="170.8"
|
y="410.4" textLength="12.2" clip-path="url(#terminal-3216112738-line-16)">
|
||||||
clip-path="url(#terminal-133953017-line-17)">--license-type</text><text class="terminal-133953017-r5" x="256.2" y="434.8" textLength="85.4"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="434.8" textLength="24.4" clip-path="url(#terminal-3216112738-line-17)">-l</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-17)">LICENSE</text><text class="terminal-133953017-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-133953017-line-17)">
|
y="434.8" textLength="24.4" clip-path="url(#terminal-3216112738-line-17)">, </text><text class="terminal-3216112738-r4" x="73.2" y="434.8" textLength="170.8"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="459.2" textLength="488"
|
clip-path="url(#terminal-3216112738-line-17)">--license-type</text><text class="terminal-3216112738-r5" x="256.2" y="434.8" textLength="85.4"
|
||||||
clip-path="url(#terminal-133953017-line-18)">Specify the license type for the images.</text><text class="terminal-133953017-r2" x="1464" y="459.2"
|
clip-path="url(#terminal-3216112738-line-17)">LICENSE</text><text class="terminal-3216112738-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-3216112738-line-17)">
|
||||||
textLength="12.2" clip-path="url(#terminal-133953017-line-18)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="459.2" textLength="488"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="483.6" textLength="24.4" clip-path="url(#terminal-133953017-line-19)">-a</text><text class="terminal-133953017-r2" x="48.8" y="483.6"
|
clip-path="url(#terminal-3216112738-line-18)">Specify the license type for the images.</text><text class="terminal-3216112738-r2" x="1464" y="459.2"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-19)">, </text><text class="terminal-133953017-r4" x="73.2" y="483.6" textLength="158.6"
|
textLength="12.2" clip-path="url(#terminal-3216112738-line-18)">
|
||||||
clip-path="url(#terminal-133953017-line-19)">--author-name</text><text class="terminal-133953017-r5" x="244" y="483.6" textLength="73.2"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="483.6" textLength="24.4" clip-path="url(#terminal-3216112738-line-19)">-a</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-19)">AUTHOR</text><text class="terminal-133953017-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-133953017-line-19)">
|
y="483.6" textLength="24.4" clip-path="url(#terminal-3216112738-line-19)">, </text><text class="terminal-3216112738-r4" x="73.2" y="483.6" textLength="158.6"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="508" textLength="402.6"
|
clip-path="url(#terminal-3216112738-line-19)">--author-name</text><text class="terminal-3216112738-r5" x="244" y="483.6" textLength="73.2"
|
||||||
clip-path="url(#terminal-133953017-line-20)">Name of the author of the images.</text><text class="terminal-133953017-r2" x="1464" y="508"
|
clip-path="url(#terminal-3216112738-line-19)">AUTHOR</text><text class="terminal-3216112738-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-3216112738-line-19)">
|
||||||
textLength="12.2" clip-path="url(#terminal-133953017-line-20)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="508" textLength="402.6"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="532.4" textLength="24.4" clip-path="url(#terminal-133953017-line-21)">-e</text><text class="terminal-133953017-r2" x="48.8" y="532.4"
|
clip-path="url(#terminal-3216112738-line-20)">Name of the author of the images.</text><text class="terminal-3216112738-r2" x="1464" y="508"
|
||||||
textLength="24.4" clip-path="url(#terminal-133953017-line-21)">, </text><text class="terminal-133953017-r4" x="73.2" y="532.4" textLength="207.4"
|
textLength="12.2" clip-path="url(#terminal-3216112738-line-20)">
|
||||||
clip-path="url(#terminal-133953017-line-21)">--file-extensions</text><text class="terminal-133953017-r5" x="292.8" y="532.4" textLength="109.8"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="532.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-21)">-e</text><text class="terminal-3216112738-r2" x="48.8"
|
||||||
clip-path="url(#terminal-133953017-line-21)">EXTENSION</text><text class="terminal-133953017-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-133953017-line-21)">
|
y="532.4" textLength="24.4" clip-path="url(#terminal-3216112738-line-21)">, </text><text class="terminal-3216112738-r4" x="73.2" y="532.4" textLength="207.4"
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="556.8" textLength="744.2"
|
clip-path="url(#terminal-3216112738-line-21)">--file-extensions</text><text class="terminal-3216112738-r5" x="292.8" y="532.4" textLength="109.8"
|
||||||
clip-path="url(#terminal-133953017-line-22)">File extensions to include (can be specified multiple times).</text><text
|
clip-path="url(#terminal-3216112738-line-21)">EXTENSION</text><text class="terminal-3216112738-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-3216112738-line-21)">
|
||||||
class="terminal-133953017-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-133953017-line-22)">
|
</text><text class="terminal-3216112738-r2" x="292.8" y="556.8" textLength="744.2"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="581.2" textLength="146.4" clip-path="url(#terminal-133953017-line-23)">--theme-path</text><text class="terminal-133953017-r5" x="183"
|
clip-path="url(#terminal-3216112738-line-22)">File extensions to include (can be specified multiple times).</text><text
|
||||||
y="581.2" textLength="48.8" clip-path="url(#terminal-133953017-line-23)">PATH</text><text class="terminal-133953017-r2" x="292.8" y="581.2" textLength="329.4"
|
class="terminal-3216112738-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-3216112738-line-22)">
|
||||||
clip-path="url(#terminal-133953017-line-23)">Path to the CSS theme file.</text><text class="terminal-133953017-r2" x="1464" y="581.2" textLength="12.2"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="581.2" textLength="146.4" clip-path="url(#terminal-3216112738-line-23)">--theme-path</text><text class="terminal-3216112738-r5"
|
||||||
clip-path="url(#terminal-133953017-line-23)">
|
x="183" y="581.2" textLength="48.8" clip-path="url(#terminal-3216112738-line-23)">PATH</text><text class="terminal-3216112738-r2" x="292.8" y="581.2" textLength="329.4"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="605.6" textLength="231.8" clip-path="url(#terminal-133953017-line-24)">--use-fancy-folders</text><text class="terminal-133953017-r2"
|
clip-path="url(#terminal-3216112738-line-23)">Path to the CSS theme file.</text><text class="terminal-3216112738-r2" x="1464" y="581.2" textLength="12.2"
|
||||||
x="292.8" y="605.6" textLength="890.6"
|
clip-path="url(#terminal-3216112738-line-23)">
|
||||||
clip-path="url(#terminal-133953017-line-24)">Enable fancy folder view instead of the default Apache directory listing.</text><text
|
</text><text class="terminal-3216112738-r4" x="24.4" y="605.6" textLength="231.8" clip-path="url(#terminal-3216112738-line-24)">--use-fancy-folders</text><text
|
||||||
class="terminal-133953017-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-133953017-line-24)">
|
class="terminal-3216112738-r2" x="292.8" y="605.6" textLength="890.6"
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="630" textLength="244" clip-path="url(#terminal-133953017-line-25)">--ignore-other-files</text><text class="terminal-133953017-r2"
|
clip-path="url(#terminal-3216112738-line-24)">Enable fancy folder view instead of the default Apache directory listing.</text><text
|
||||||
|
class="terminal-3216112738-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-3216112738-line-24)">
|
||||||
|
</text><text class="terminal-3216112738-r4" x="24.4" y="630" textLength="244" clip-path="url(#terminal-3216112738-line-25)">--ignore-other-files</text><text class="terminal-3216112738-r2"
|
||||||
x="292.8" y="630" textLength="683.2"
|
x="292.8" y="630" textLength="683.2"
|
||||||
clip-path="url(#terminal-133953017-line-25)">Ignore files that do not match the specified extensions.</text><text class="terminal-133953017-r2"
|
clip-path="url(#terminal-3216112738-line-25)">Ignore files that do not match the specified extensions.</text><text
|
||||||
x="1464" y="630" textLength="12.2" clip-path="url(#terminal-133953017-line-25)">
|
class="terminal-3216112738-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-3216112738-line-25)">
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="654.4" textLength="195.2" clip-path="url(#terminal-133953017-line-26)">--exclude-folder</text><text class="terminal-133953017-r5"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="654.4" textLength="195.2" clip-path="url(#terminal-3216112738-line-26)">--exclude-folder</text><text class="terminal-3216112738-r5"
|
||||||
x="231.8" y="654.4" textLength="73.2" clip-path="url(#terminal-133953017-line-26)">FOLDER</text><text class="terminal-133953017-r2" x="1464" y="654.4" textLength="12.2"
|
x="231.8" y="654.4" textLength="73.2" clip-path="url(#terminal-3216112738-line-26)">FOLDER</text><text class="terminal-3216112738-r2" x="1464" y="654.4" textLength="12.2"
|
||||||
clip-path="url(#terminal-133953017-line-26)">
|
clip-path="url(#terminal-3216112738-line-26)">
|
||||||
</text><text class="terminal-133953017-r2" x="292.8" y="678.8" textLength="841.8"
|
</text><text class="terminal-3216112738-r2" x="292.8" y="678.8" textLength="1049.2"
|
||||||
clip-path="url(#terminal-133953017-line-27)">Folders to exclude from processing (can be specified multiple times).</text><text
|
clip-path="url(#terminal-3216112738-line-27)">Folders to exclude from processing, globs supported (can be specified multiple times).</text><text
|
||||||
class="terminal-133953017-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-133953017-line-27)">
|
class="terminal-3216112738-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-3216112738-line-27)">
|
||||||
</text><text class="terminal-133953017-r4" x="24.4" y="703.2" textLength="109.8" clip-path="url(#terminal-133953017-line-28)">--version</text><text class="terminal-133953017-r2" x="292.8"
|
</text><text class="terminal-3216112738-r4" x="24.4" y="703.2" textLength="109.8" clip-path="url(#terminal-3216112738-line-28)">--version</text><text class="terminal-3216112738-r2"
|
||||||
y="703.2" textLength="463.6" clip-path="url(#terminal-133953017-line-28)">show program's version number and exit</text><text class="terminal-133953017-r2"
|
x="292.8" y="703.2" textLength="463.6" clip-path="url(#terminal-3216112738-line-28)">show program's version number and exit</text><text
|
||||||
x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-133953017-line-28)">
|
class="terminal-3216112738-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-3216112738-line-28)">
|
||||||
</text>
|
</text>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Reference in New Issue
Block a user