diff --git a/README.md b/README.md index 46c4938..cb42e12 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ smooth connected paths are made out of an extremely restrictive grid, like multi * flask * figlet * svgbob -* [optional] [vpype](https://github.com/abey79/vpype), for converting to HPGL +* [vpype](https://github.com/abey79/vpype), for converting to HPGL ## installation @@ -54,15 +54,18 @@ Please follow the [installation instructions](https://github.com/abey79/vpype#in * figlet font library of JavE (a free Ascii Editor), . those also include the figlet ftp native, they where sorted in order to keep only the uniques ones. + diff --git a/__pycache__/hpgl_multipen_encoder.cpython-38.pyc b/__pycache__/hpgl_multipen_encoder.cpython-38.pyc index c390ed8..629aa72 100644 Binary files a/__pycache__/hpgl_multipen_encoder.cpython-38.pyc and b/__pycache__/hpgl_multipen_encoder.cpython-38.pyc differ diff --git a/__pycache__/hpgl_multipen_output.cpython-38.pyc b/__pycache__/hpgl_multipen_output.cpython-38.pyc index 94a2efa..98b904e 100644 Binary files a/__pycache__/hpgl_multipen_output.cpython-38.pyc and b/__pycache__/hpgl_multipen_output.cpython-38.pyc differ diff --git a/__pycache__/svg_to_hpgl.cpython-38.pyc b/__pycache__/svg_to_hpgl.cpython-38.pyc index be192cf..c7d938a 100644 Binary files a/__pycache__/svg_to_hpgl.cpython-38.pyc and b/__pycache__/svg_to_hpgl.cpython-38.pyc differ diff --git a/app.py b/app.py index 13a7e7c..5ef9e6a 100644 --- a/app.py +++ b/app.py @@ -6,13 +6,12 @@ import sys import tempfile import io import requests -# from svg_to_hpgl import svgToHPGL app = Flask(__name__) title = 'Cobbled paths' -fonts_directory = 'db/' +fonts_directory = 'static/db/' possible_extensions = [".flf"] etherpad = 'https://pad.constantvzw.org/p/' prefix = 'cobbled-pad-' @@ -86,14 +85,51 @@ def text2figlet(text, figfont): return answer -def ascii2svg(ascii, weight): +def ascii2svg(ascii, weight='3', scale='1'): if ascii: print('--- SVGBOB SUBPROCESS') - svgbob = subprocess.run(["svgbob_cli", '--stroke-width', weight], input = ascii, stdout = subprocess.PIPE, text=True) + svgbob = subprocess.run([ + "svgbob_cli", + '--stroke-width', weight, + '--scale', scale], + input = ascii, + stdout = subprocess.PIPE, text=True) return svgbob.stdout else: return "ERROR: etherpad request failed" +def simplifySVG(svg): + + # store as a temporary file + (svg_file, svg_path) = tempfile.mkstemp('.svg') + (svg_file_cleaned, svg_path_cleaned) = tempfile.mkstemp('.svg') + + with open(svg_file, 'w') as svg_handle: + svg_handle.write(svg) + + vpype = subprocess.run([ + "vpype", + "read", + "--single-layer", svg_path, + "linesimplify", + "-t", "0.05mm", + "linemerge", + "-t", "0.25mm", + "linesort", + "write", + svg_path_cleaned + ]) + + response = '' + with open(svg_file_cleaned, 'r') as svg_handle_cleaned: + response = svg_handle_cleaned.read() + + # remove tmp file + os.remove(svg_path) + os.remove(svg_path_cleaned) + + return response + def ascii_autofix(ascii): print('--- REGEX AUTOFIX') for regex, replace in autofix: @@ -149,11 +185,21 @@ def parse_collection(): f = {} f['name'] = name f['database'] = database - f['figfont'] = figfont + f['path'] = figfont # sort them by type collection[type]['fonts'].append(f) + # make thumbnail + thumbnail_ascii = text2figlet("A", figfont)[1] + thumbnail_svg = ascii2svg(thumbnail_ascii, '2', '0.66') + thumbnail_path = os.path.join(root, basename) + '.svg' + thumbnail_file = open(thumbnail_path, "w") + thumbnail_file.write(thumbnail_svg) + thumbnail_file.close() + f['thumbnail'] = '/' + thumbnail_path + + # ROUTES # ------------------------------ @@ -256,7 +302,7 @@ def writing(id): if '.flf' in params['pad']: # it's not a pad it's a local figfont file - figfont = '/'.join(params['pad'].split('_')) + figfont = '/'.join(params['pad'].split('$')) figlet_answer = text2figlet(params['text'], figfont) if figlet_answer[0]: @@ -315,14 +361,36 @@ def catalogue(): collection = collection, params = params) +@app.route("/specimen/") +def specimen(type): + + params = { + 'text': request.args.get('t') or 'Plotter Station', + 'weight': request.args.get('w') or '3', + } + + total = '' + for figfont in collection[type]['fonts']: + + figlet_answer = text2figlet(params['text'], figfont['path']) + if figlet_answer[0]: + total = total + figlet_answer[1] + '"' + figfont['name'] + '(' + figfont['database'] + ')' + '"\n\n' + + + svg = ascii2svg(total, params['weight']) + + return render_template( + 'drawing.html', + title = title, + params = params, + svg = svg) + # _ _ _ # | |__ _ __ __ _| | _____ ___ __ ___ _ __| |_ # | '_ \| '_ \ / _` | | / _ \ \/ / '_ \ / _ \| '__| __| # | | | | |_) | (_| | | | __/> <| |_) | (_) | | | |_ # |_| |_| .__/ \__, |_| \___/_/\_\ .__/ \___/|_| \__| # |_| |___/ |_| -# -# FIGLET 2 SVGBOB INTERACTIVE CATALOGUE def resizeSVG (m): width = int(m.group(1)) @@ -335,6 +403,20 @@ def resizeSVG (m): return f'' +# @app.route('/svg/') +# def svg (id): +# params = { +# 'pad': id or 'default', +# 'weight': request.args.get('w') or '3', +# } +# params['pad-full'] = etherpad + prefix + params['pad'] + +# # get pad content +# print(' getting ' + params['pad-full']) +# pad_export = requests.get(params['pad-full'] + '/export/txt') +# ascii = pad_export.text + + @app.route('/hpgl/') def hpgl (id): params = { @@ -369,6 +451,8 @@ def hpgl (id): svg_path, "scaleto", "297mm", "420mm", + "linesimplify", + "-t", "0.05mm", "linemerge", "-t", "0.25mm", "linesort", @@ -391,6 +475,8 @@ def hpgl (id): os.remove(hpgl_path) return r + + if __name__ == '__main__': parse_collection() app.run(debug=True, host='0.0.0.0') \ No newline at end of file diff --git a/hpgl_multipen_encoder.py b/deprecated/hpgl_multipen_encoder.py similarity index 100% rename from hpgl_multipen_encoder.py rename to deprecated/hpgl_multipen_encoder.py diff --git a/hpgl_multipen_output.py b/deprecated/hpgl_multipen_output.py similarity index 100% rename from hpgl_multipen_output.py rename to deprecated/hpgl_multipen_output.py diff --git a/hpgl_output_adapted.py b/deprecated/hpgl_output_adapted.py similarity index 100% rename from hpgl_output_adapted.py rename to deprecated/hpgl_output_adapted.py diff --git a/svg_to_hpgl.py b/deprecated/svg_to_hpgl.py similarity index 100% rename from svg_to_hpgl.py rename to deprecated/svg_to_hpgl.py diff --git a/static/css/basics.css b/static/css/basics.css new file mode 100644 index 0000000..775aeed --- /dev/null +++ b/static/css/basics.css @@ -0,0 +1,108 @@ + + +body{ + font-family: monospace; + font-size: 0.875rem; + line-height: 1.45; + +} +a{ + color: var(--c-link); +} +a:hover{ + font-weight: bold; +} +p{ + margin: 0.5rem 0; +} + + +h1,h2{ + font-weight: bold; +} +hr{ + border: 0; + border-top: 1px solid black; + margin: 1rem 0 1rem; +} +hr:last-of-type{ + display: none; +} + +strong{ + font-weight: bold; +} +label{ + font-weight: bold; +} + +input, button, label{ + font-family: monospace; + display: block; + font-size: 0.875rem; +} +label, input{ + display: inline-block; +} + +#save-buttons{ + position: fixed; + top: 0.5rem; + right: 0.5em; +} +#save-buttons > input, +#save-buttons > button, +#save-buttons > label{ + margin-bottom: 0.5rem; + margin-left: auto; +} + +.double-font{ + height: 100vh; + display: grid; + grid-template-rows: 1fr 1fr; + gap: 1rem; + margin: 0; +} +.double-font > div{ + background-color: white; + border: 1px solid black; + overflow: auto; + padding: 1rem; + font-family: monospace; + font-size: 1rem; +} +.f-ascii{ + font-family: monospace; + font-size: 1rem; +} + + + +.svgbob text { + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; +} +.svgbob text{ + visibility: hidden; +} +body.check-text .svgbob text{ + visibility: visible; +} +svg{ + overflow: visible; +} +/* autofix colors */ +.fix-label{ + border-bottom: solid limegreen 3px; +} +.fix{ + outline: 1px solid limegreen; +} +span.fix{ + outline: none; + color: limegreen; + font-weight: bold; +} + diff --git a/static/css/interface.css b/static/css/interface.css index c6a283e..9f9109a 100644 --- a/static/css/interface.css +++ b/static/css/interface.css @@ -1,13 +1,11 @@ + :root{ --bar-h: 3rem; - --c-link: blue; --c-back: whitesmoke; - --c-default: black; --c-contributed: palegreen; --c-jave: mediumpurple; - } .default{ --c: var(--c-default); @@ -18,21 +16,8 @@ .jave{ --c: var(--c-jave); } - body{ background-color: var(--c-back); - font-family: monospace; - font-size: 0.875rem; - line-height: 1.45; -} -a{ - color: var(--c-link); -} -a:hover{ - font-weight: bold; -} -p{ - margin: 0.5rem 0; } /* BAR @@ -103,15 +88,6 @@ nav ul a.active{ z-index: 99; } -h1,h2{ - font-weight: bold; -} -input, button{ - font-family: monospace; -} -strong{ - font-weight: bold; -} #text-input{ width: 26em; } @@ -121,9 +97,6 @@ strong{ margin: none; margin-left: auto; } -label{ - font-weight: bold; -} .reload::after{ content: 'reload'; @@ -145,8 +118,7 @@ label{ .box{ box-sizing: border-box; - padding: 1rem 2rem; - border-bottom: 1px solid black; + padding: 0 2rem 1rem; } .two-columns{ display: flex; @@ -223,76 +195,34 @@ aside.left{ width: 100%; height: 100%; } -hr{ - border: 0; - border-top: 1px solid black; - margin: 1rem 0 1rem; -} + .font:first-of-type{ margin-top: 1rem; } -hr:last-of-type{ - display: none; -} -svg{ - overflow: visible; -} - -/* autofix colors */ -.fix-label{ - border-bottom: solid limegreen 3px; -} -.fix{ - outline: 1px solid limegreen; -} -span.fix{ - outline: none; - color: limegreen; - font-weight: bold; -} - -.text-label{ - border-bottom: solid red 3px; -} -.svgbob text { - font-family: monospace !important; - font-weight: bold !important; - fill: red !important; -} - -/* body class checkboxes */ -.font div.fix{ - visibility: hidden; -} -body.check-fix .font div.fix{ - visibility: visible; -} -.svgbob text{ - visibility: hidden; -} -body.check-text .svgbob text{ - visibility: visible; -} /* TITLE ================================================= */ .title.font{ - padding: 3rem 2rem; + padding: 2rem 2rem; gap: 1rem var(--bar-h); grid-template-columns: repeat(2, calc(50% - calc(var(--bar-h) / 2))); } .title .f-ascii{ margin-left: auto; - padding: 0; - background: initial; grid-row: auto; } .title .f-svg{ grid-row: auto; margin-right: auto; padding: 0; +} +.title .f-ascii, +.title .f-svg{ + padding: 0; background: initial; + border: none; + width: auto; } .title .special{ grid-column: 1 / -1; @@ -303,14 +233,20 @@ ul.special{ display: flex; gap: 1rem; justify-content: center; - align-items: baseline; + align-items: center; } -.special a{ +.special .materiality{ display: block; border: 1px solid currentColor; - padding: 2rem 3rem; + padding: 1rem 2rem; border-radius: 2rem; text-decoration: none; + text-align: center; +} +.special .choice{ + display: flex; + gap: 1rem; + flex-direction: column; } ul.classic{ list-style: initial; @@ -338,15 +274,38 @@ details{ } details[open] > summary{ background-color: var(--c-link); + color: white; +} + +.collection-menu{ + position: relative; +} +.collection-menu[open] .collection-menu-back{ + position: fixed; + inset: 0; + top: var(--bar-h); + padding: 0 1rem 1rem; + background-color: rgba(240, 240, 240, 0.85); + background-color: var(--c-back); +} +.collection-menu-back{ + display: flex; + justify-content: flex-end; + flex-direction: column; } summary{ - padding: 0.5rem 1rem; - background: black; - color: white; + padding: calc(1rem - 1px) 1rem; + height: var(--bar-h); + border-top: 1px solid var(--c-back); + box-sizing: border-box; + background: lightgray; + color: black; cursor: pointer; white-space: nowrap; padding-right: 3rem; + z-index: 999; + position: relative; } summary span{ display: inline-block; @@ -355,45 +314,70 @@ summary span{ } summary + div{ position: absolute; - left: 100%; + left: calc(100% + 1px); top: 0; } .collection{ + position: absolute; + left: calc(100% + 1px); + top: calc(-1 * var(--bar-h) * calc(var(--index) - 1) + 1px); + + max-height: calc(100vh - 1px - calc(var(--bar-h) * 2)); + overflow: auto; + width: 75vw; display: flex; flex-wrap: wrap; + gap: 1px; + + padding-bottom: var(--bar-h); + box-sizing: border-box; } .collection > .figfont{ - padding: 0.5rem 1rem; + padding: 0rem 0.5rem; background: lightgray; cursor: pointer; white-space: nowrap; box-sizing: border-box; - outline: 1px solid black; - outline-offset: -0.5px; + + display: flex; + justify-content: flex-start; + align-items: center; + gap: 0.25rem; + position: relative; +} +.specimen-link { + display: flex; + align-items: center; + padding: 1em; } .figfont:hover{ color: var(--c-link); } /* catalogue colors */ -.figfont::before{ +.figfont::after{ content: ''; - width: 0.75em; - height: 0.75em; + width: 0.75rem; + height: 0.75rem; border-radius: 50%; background-color: var(--c); - margin-right: 0.5em; display: inline-block; - vertical-align: middle; + position: absolute; + top: 0.25rem; + right: 0.5rem; +} +.thumbnail{ + mix-blend-mode: darken; + display: block; } .legend::before{ content: ''; - width: 1em; - height: 1em; + width: 0.75rem; + height: 0.75rem; border-radius: 50%; background-color: var(--c); - margin-right: 0.5em; + margin-right: 0.5rem; display: inline-block; vertical-align: middle; } \ No newline at end of file diff --git a/db/contributed/3d/isometric1.flf b/static/db/contributed/3d/isometric1.flf similarity index 100% rename from db/contributed/3d/isometric1.flf rename to static/db/contributed/3d/isometric1.flf diff --git a/static/db/contributed/3d/isometric1.svg b/static/db/contributed/3d/isometric1.svg new file mode 100644 index 0000000..6e3d084 --- /dev/null +++ b/static/db/contributed/3d/isometric1.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + :: + : + : + : + : + : + : + : + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/3d/isometric2.flf b/static/db/contributed/3d/isometric2.flf similarity index 100% rename from db/contributed/3d/isometric2.flf rename to static/db/contributed/3d/isometric2.flf diff --git a/static/db/contributed/3d/isometric2.svg b/static/db/contributed/3d/isometric2.svg new file mode 100644 index 0000000..34a105e --- /dev/null +++ b/static/db/contributed/3d/isometric2.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + :: + : + : + : + : + : + : + : + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/3d/isometric3.flf b/static/db/contributed/3d/isometric3.flf similarity index 100% rename from db/contributed/3d/isometric3.flf rename to static/db/contributed/3d/isometric3.flf diff --git a/static/db/contributed/3d/isometric3.svg b/static/db/contributed/3d/isometric3.svg new file mode 100644 index 0000000..18d8e9f --- /dev/null +++ b/static/db/contributed/3d/isometric3.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + :: + : + : + : + : + : + : + : + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/3d/isometric4.flf b/static/db/contributed/3d/isometric4.flf similarity index 100% rename from db/contributed/3d/isometric4.flf rename to static/db/contributed/3d/isometric4.flf diff --git a/static/db/contributed/3d/isometric4.svg b/static/db/contributed/3d/isometric4.svg new file mode 100644 index 0000000..1029029 --- /dev/null +++ b/static/db/contributed/3d/isometric4.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + :: + : + : + : + : + : + : + : + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/3d/larry3d.flf b/static/db/contributed/3d/larry3d.flf similarity index 100% rename from db/contributed/3d/larry3d.flf rename to static/db/contributed/3d/larry3d.flf diff --git a/static/db/contributed/3d/larry3d.svg b/static/db/contributed/3d/larry3d.svg new file mode 100644 index 0000000..ae4aab3 --- /dev/null +++ b/static/db/contributed/3d/larry3d.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + L + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/3d/smisome1.flf b/static/db/contributed/3d/smisome1.flf similarity index 100% rename from db/contributed/3d/smisome1.flf rename to static/db/contributed/3d/smisome1.flf diff --git a/static/db/contributed/3d/smisome1.svg b/static/db/contributed/3d/smisome1.svg new file mode 100644 index 0000000..f75219e --- /dev/null +++ b/static/db/contributed/3d/smisome1.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + : + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/avatar.flf b/static/db/contributed/block/avatar.flf similarity index 100% rename from db/contributed/block/avatar.flf rename to static/db/contributed/block/avatar.flf diff --git a/static/db/contributed/block/avatar.svg b/static/db/contributed/block/avatar.svg new file mode 100644 index 0000000..d389691 --- /dev/null +++ b/static/db/contributed/block/avatar.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + | + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/bulbhead.flf b/static/db/contributed/block/bulbhead.flf similarity index 100% rename from db/contributed/block/bulbhead.flf rename to static/db/contributed/block/bulbhead.flf diff --git a/static/db/contributed/block/bulbhead.svg b/static/db/contributed/block/bulbhead.svg new file mode 100644 index 0000000..2dc1db0 --- /dev/null +++ b/static/db/contributed/block/bulbhead.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/chunky.flf b/static/db/contributed/block/chunky.flf similarity index 100% rename from db/contributed/block/chunky.flf rename to static/db/contributed/block/chunky.flf diff --git a/static/db/contributed/block/chunky.svg b/static/db/contributed/block/chunky.svg new file mode 100644 index 0000000..fb69b8f --- /dev/null +++ b/static/db/contributed/block/chunky.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/crawford.flf b/static/db/contributed/block/crawford.flf similarity index 100% rename from db/contributed/block/crawford.flf rename to static/db/contributed/block/crawford.flf diff --git a/static/db/contributed/block/crawford.svg b/static/db/contributed/block/crawford.svg new file mode 100644 index 0000000..51ee988 --- /dev/null +++ b/static/db/contributed/block/crawford.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + T + Y + + + l + + j + + j + o + + + + + + + + + diff --git a/db/contributed/block/cricket.flf b/static/db/contributed/block/cricket.flf similarity index 100% rename from db/contributed/block/cricket.flf rename to static/db/contributed/block/cricket.flf diff --git a/static/db/contributed/block/cricket.svg b/static/db/contributed/block/cricket.svg new file mode 100644 index 0000000..04f609e --- /dev/null +++ b/static/db/contributed/block/cricket.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + . + 1 + + :. + :. + + + + + + + + + + + + + + diff --git a/db/contributed/block/doom.flf b/static/db/contributed/block/doom.flf similarity index 100% rename from db/contributed/block/doom.flf rename to static/db/contributed/block/doom.flf diff --git a/static/db/contributed/block/doom.svg b/static/db/contributed/block/doom.svg new file mode 100644 index 0000000..ff4f65e --- /dev/null +++ b/static/db/contributed/block/doom.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/drpepper.flf b/static/db/contributed/block/drpepper.flf similarity index 100% rename from db/contributed/block/drpepper.flf rename to static/db/contributed/block/drpepper.flf diff --git a/static/db/contributed/block/drpepper.svg b/static/db/contributed/block/drpepper.svg new file mode 100644 index 0000000..7663374 --- /dev/null +++ b/static/db/contributed/block/drpepper.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + . + + + + + + + + diff --git a/db/contributed/block/eftirobot.flf b/static/db/contributed/block/eftirobot.flf similarity index 100% rename from db/contributed/block/eftirobot.flf rename to static/db/contributed/block/eftirobot.flf diff --git a/static/db/contributed/block/eftirobot.svg b/static/db/contributed/block/eftirobot.svg new file mode 100644 index 0000000..c1d7db3 --- /dev/null +++ b/static/db/contributed/block/eftirobot.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + o + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/epic.flf b/static/db/contributed/block/epic.flf similarity index 100% rename from db/contributed/block/epic.flf rename to static/db/contributed/block/epic.flf diff --git a/static/db/contributed/block/epic.svg b/static/db/contributed/block/epic.svg new file mode 100644 index 0000000..c473436 --- /dev/null +++ b/static/db/contributed/block/epic.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + ) + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/graceful.flf b/static/db/contributed/block/graceful.flf similarity index 100% rename from db/contributed/block/graceful.flf rename to static/db/contributed/block/graceful.flf diff --git a/static/db/contributed/block/graceful.svg b/static/db/contributed/block/graceful.svg new file mode 100644 index 0000000..e0d1129 --- /dev/null +++ b/static/db/contributed/block/graceful.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/graffiti.flf b/static/db/contributed/block/graffiti.flf similarity index 100% rename from db/contributed/block/graffiti.flf rename to static/db/contributed/block/graffiti.flf diff --git a/static/db/contributed/block/graffiti.svg b/static/db/contributed/block/graffiti.svg new file mode 100644 index 0000000..85f94f1 --- /dev/null +++ b/static/db/contributed/block/graffiti.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/linux.flf b/static/db/contributed/block/linux.flf similarity index 100% rename from db/contributed/block/linux.flf rename to static/db/contributed/block/linux.flf diff --git a/static/db/contributed/block/linux.svg b/static/db/contributed/block/linux.svg new file mode 100644 index 0000000..de745c9 --- /dev/null +++ b/static/db/contributed/block/linux.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/ogre.flf b/static/db/contributed/block/ogre.flf similarity index 100% rename from db/contributed/block/ogre.flf rename to static/db/contributed/block/ogre.flf diff --git a/static/db/contributed/block/ogre.svg b/static/db/contributed/block/ogre.svg new file mode 100644 index 0000000..95ccdc6 --- /dev/null +++ b/static/db/contributed/block/ogre.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/puffy.flf b/static/db/contributed/block/puffy.flf similarity index 100% rename from db/contributed/block/puffy.flf rename to static/db/contributed/block/puffy.flf diff --git a/static/db/contributed/block/puffy.svg b/static/db/contributed/block/puffy.svg new file mode 100644 index 0000000..7914869 --- /dev/null +++ b/static/db/contributed/block/puffy.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + ) + + ( + + ) + ( + + ) + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/rectangles.flf b/static/db/contributed/block/rectangles.flf similarity index 100% rename from db/contributed/block/rectangles.flf rename to static/db/contributed/block/rectangles.flf diff --git a/static/db/contributed/block/rectangles.svg b/static/db/contributed/block/rectangles.svg new file mode 100644 index 0000000..6f00a48 --- /dev/null +++ b/static/db/contributed/block/rectangles.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/rounded.flf b/static/db/contributed/block/rounded.flf similarity index 100% rename from db/contributed/block/rounded.flf rename to static/db/contributed/block/rounded.flf diff --git a/static/db/contributed/block/rounded.svg b/static/db/contributed/block/rounded.svg new file mode 100644 index 0000000..188703b --- /dev/null +++ b/static/db/contributed/block/rounded.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/serifcap.flf b/static/db/contributed/block/serifcap.flf similarity index 100% rename from db/contributed/block/serifcap.flf rename to static/db/contributed/block/serifcap.flf diff --git a/static/db/contributed/block/serifcap.svg b/static/db/contributed/block/serifcap.svg new file mode 100644 index 0000000..c7027d0 --- /dev/null +++ b/static/db/contributed/block/serifcap.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/stacey.flf b/static/db/contributed/block/stacey.flf similarity index 100% rename from db/contributed/block/stacey.flf rename to static/db/contributed/block/stacey.flf diff --git a/static/db/contributed/block/stacey.svg b/static/db/contributed/block/stacey.svg new file mode 100644 index 0000000..43b7824 --- /dev/null +++ b/static/db/contributed/block/stacey.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + 7 + + 7 + + + + 7 + + + + diff --git a/db/contributed/block/starwars.flf b/static/db/contributed/block/starwars.flf similarity index 100% rename from db/contributed/block/starwars.flf rename to static/db/contributed/block/starwars.flf diff --git a/static/db/contributed/block/starwars.svg b/static/db/contributed/block/starwars.svg new file mode 100644 index 0000000..0b92025 --- /dev/null +++ b/static/db/contributed/block/starwars.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/block/stop.flf b/static/db/contributed/block/stop.flf similarity index 100% rename from db/contributed/block/stop.flf rename to static/db/contributed/block/stop.flf diff --git a/static/db/contributed/block/stop.svg b/static/db/contributed/block/stop.svg new file mode 100644 index 0000000..9ef7e4c --- /dev/null +++ b/static/db/contributed/block/stop.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + | + + | + + + + + + + + + + + + + + diff --git a/db/contributed/code/binary.flf b/static/db/contributed/code/binary.flf similarity index 100% rename from db/contributed/code/binary.flf rename to static/db/contributed/code/binary.flf diff --git a/db/contributed/code/decimal.flf b/static/db/contributed/code/decimal.flf similarity index 100% rename from db/contributed/code/decimal.flf rename to static/db/contributed/code/decimal.flf diff --git a/db/contributed/code/dwhistled.flf b/static/db/contributed/code/dwhistled.flf similarity index 100% rename from db/contributed/code/dwhistled.flf rename to static/db/contributed/code/dwhistled.flf diff --git a/db/contributed/code/hex.flf b/static/db/contributed/code/hex.flf similarity index 100% rename from db/contributed/code/hex.flf rename to static/db/contributed/code/hex.flf diff --git a/db/contributed/code/l4me.flf b/static/db/contributed/code/l4me.flf similarity index 100% rename from db/contributed/code/l4me.flf rename to static/db/contributed/code/l4me.flf diff --git a/db/contributed/code/octal.flf b/static/db/contributed/code/octal.flf similarity index 100% rename from db/contributed/code/octal.flf rename to static/db/contributed/code/octal.flf diff --git a/db/contributed/code/rot13.flf b/static/db/contributed/code/rot13.flf similarity index 100% rename from db/contributed/code/rot13.flf rename to static/db/contributed/code/rot13.flf diff --git a/db/contributed/dingbat/eftichess.flf b/static/db/contributed/dingbat/eftichess.flf similarity index 100% rename from db/contributed/dingbat/eftichess.flf rename to static/db/contributed/dingbat/eftichess.flf diff --git a/db/contributed/dingbat/eftiwall-chart.txt b/static/db/contributed/dingbat/eftiwall-chart.txt similarity index 100% rename from db/contributed/dingbat/eftiwall-chart.txt rename to static/db/contributed/dingbat/eftiwall-chart.txt diff --git a/db/contributed/dingbat/eftiwall.flf b/static/db/contributed/dingbat/eftiwall.flf similarity index 100% rename from db/contributed/dingbat/eftiwall.flf rename to static/db/contributed/dingbat/eftiwall.flf diff --git a/db/contributed/dingbat/eftiwall.txt b/static/db/contributed/dingbat/eftiwall.txt similarity index 100% rename from db/contributed/dingbat/eftiwall.txt rename to static/db/contributed/dingbat/eftiwall.txt diff --git a/db/contributed/directions/mirror.flf b/static/db/contributed/directions/mirror.flf similarity index 100% rename from db/contributed/directions/mirror.flf rename to static/db/contributed/directions/mirror.flf diff --git a/db/contributed/effect/acrobatic.flf b/static/db/contributed/effect/acrobatic.flf similarity index 100% rename from db/contributed/effect/acrobatic.flf rename to static/db/contributed/effect/acrobatic.flf diff --git a/static/db/contributed/effect/acrobatic.svg b/static/db/contributed/effect/acrobatic.svg new file mode 100644 index 0000000..3029177 --- /dev/null +++ b/static/db/contributed/effect/acrobatic.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + < + + > + + + < + + + + > + + + < + + > + + + + + + + + + + + + diff --git a/db/contributed/effect/bigchief.flf b/static/db/contributed/effect/bigchief.flf similarity index 100% rename from db/contributed/effect/bigchief.flf rename to static/db/contributed/effect/bigchief.flf diff --git a/static/db/contributed/effect/bigchief.svg b/static/db/contributed/effect/bigchief.svg new file mode 100644 index 0000000..457b3c9 --- /dev/null +++ b/static/db/contributed/effect/bigchief.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/effect/goofy.flf b/static/db/contributed/effect/goofy.flf similarity index 100% rename from db/contributed/effect/goofy.flf rename to static/db/contributed/effect/goofy.flf diff --git a/static/db/contributed/effect/goofy.svg b/static/db/contributed/effect/goofy.svg new file mode 100644 index 0000000..12c6eab --- /dev/null +++ b/static/db/contributed/effect/goofy.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + | + + | + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/effect/lcd.flf b/static/db/contributed/effect/lcd.flf similarity index 100% rename from db/contributed/effect/lcd.flf rename to static/db/contributed/effect/lcd.flf diff --git a/static/db/contributed/effect/lcd.svg b/static/db/contributed/effect/lcd.svg new file mode 100644 index 0000000..835ce4d --- /dev/null +++ b/static/db/contributed/effect/lcd.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/effect/speed.flf b/static/db/contributed/effect/speed.flf similarity index 100% rename from db/contributed/effect/speed.flf rename to static/db/contributed/effect/speed.flf diff --git a/static/db/contributed/effect/speed.svg b/static/db/contributed/effect/speed.svg new file mode 100644 index 0000000..dfae48e --- /dev/null +++ b/static/db/contributed/effect/speed.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/effect/tinker-toy.flf b/static/db/contributed/effect/tinker-toy.flf similarity index 100% rename from db/contributed/effect/tinker-toy.flf rename to static/db/contributed/effect/tinker-toy.flf diff --git a/static/db/contributed/effect/tinker-toy.svg b/static/db/contributed/effect/tinker-toy.svg new file mode 100644 index 0000000..3aa350f --- /dev/null +++ b/static/db/contributed/effect/tinker-toy.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/effect/tombstone.flf b/static/db/contributed/effect/tombstone.flf similarity index 100% rename from db/contributed/effect/tombstone.flf rename to static/db/contributed/effect/tombstone.flf diff --git a/static/db/contributed/effect/tombstone.svg b/static/db/contributed/effect/tombstone.svg new file mode 100644 index 0000000..79bc101 --- /dev/null +++ b/static/db/contributed/effect/tombstone.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + diff --git a/db/contributed/fill/3-d.flf b/static/db/contributed/fill/3-d.flf similarity index 100% rename from db/contributed/fill/3-d.flf rename to static/db/contributed/fill/3-d.flf diff --git a/static/db/contributed/fill/3-d.svg b/static/db/contributed/fill/3-d.svg new file mode 100644 index 0000000..d4b29b9 --- /dev/null +++ b/static/db/contributed/fill/3-d.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/3x5.flf b/static/db/contributed/fill/3x5.flf similarity index 100% rename from db/contributed/fill/3x5.flf rename to static/db/contributed/fill/3x5.flf diff --git a/static/db/contributed/fill/3x5.svg b/static/db/contributed/fill/3x5.svg new file mode 100644 index 0000000..00347e1 --- /dev/null +++ b/static/db/contributed/fill/3x5.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + # + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/alligator.flf b/static/db/contributed/fill/alligator.flf similarity index 100% rename from db/contributed/fill/alligator.flf rename to static/db/contributed/fill/alligator.flf diff --git a/static/db/contributed/fill/alligator.svg b/static/db/contributed/fill/alligator.svg new file mode 100644 index 0000000..84647ad --- /dev/null +++ b/static/db/contributed/fill/alligator.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + : + + : + :+: + + : + : + + : + + + : + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/alligator2.flf b/static/db/contributed/fill/alligator2.flf similarity index 100% rename from db/contributed/fill/alligator2.flf rename to static/db/contributed/fill/alligator2.flf diff --git a/static/db/contributed/fill/alligator2.svg b/static/db/contributed/fill/alligator2.svg new file mode 100644 index 0000000..a6302d9 --- /dev/null +++ b/static/db/contributed/fill/alligator2.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + : + + + + + + : + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/alphabet.flf b/static/db/contributed/fill/alphabet.flf similarity index 100% rename from db/contributed/fill/alphabet.flf rename to static/db/contributed/fill/alphabet.flf diff --git a/static/db/contributed/fill/alphabet.svg b/static/db/contributed/fill/alphabet.svg new file mode 100644 index 0000000..6c81907 --- /dev/null +++ b/static/db/contributed/fill/alphabet.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + AA + A + A + AAAA + A + A + A + A + diff --git a/db/contributed/fill/banner.flf b/static/db/contributed/fill/banner.flf similarity index 100% rename from db/contributed/fill/banner.flf rename to static/db/contributed/fill/banner.flf diff --git a/static/db/contributed/fill/banner.svg b/static/db/contributed/fill/banner.svg new file mode 100644 index 0000000..745f34e --- /dev/null +++ b/static/db/contributed/fill/banner.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + # + # + # + # + # + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/banner3-D.flf b/static/db/contributed/fill/banner3-D.flf similarity index 100% rename from db/contributed/fill/banner3-D.flf rename to static/db/contributed/fill/banner3-D.flf diff --git a/static/db/contributed/fill/banner3-D.svg b/static/db/contributed/fill/banner3-D.svg new file mode 100644 index 0000000..404f95f --- /dev/null +++ b/static/db/contributed/fill/banner3-D.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + :' + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + : + :. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ..: + ..: + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/banner3.flf b/static/db/contributed/fill/banner3.flf similarity index 100% rename from db/contributed/fill/banner3.flf rename to static/db/contributed/fill/banner3.flf diff --git a/static/db/contributed/fill/banner3.svg b/static/db/contributed/fill/banner3.svg new file mode 100644 index 0000000..91f94be --- /dev/null +++ b/static/db/contributed/fill/banner3.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/banner4.flf b/static/db/contributed/fill/banner4.flf similarity index 100% rename from db/contributed/fill/banner4.flf rename to static/db/contributed/fill/banner4.flf diff --git a/static/db/contributed/fill/banner4.svg b/static/db/contributed/fill/banner4.svg new file mode 100644 index 0000000..21d6a66 --- /dev/null +++ b/static/db/contributed/fill/banner4.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + ... + + + + + + .. + .. + + + + . + + + + . + . + + + + ... + + + + . + + + + + ... + + + + + . + + + + + + + + + + + + + + + . + + + + + ..... + + + + + . + + + ..... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/basic.flf b/static/db/contributed/fill/basic.flf similarity index 100% rename from db/contributed/fill/basic.flf rename to static/db/contributed/fill/basic.flf diff --git a/static/db/contributed/fill/basic.svg b/static/db/contributed/fill/basic.svg new file mode 100644 index 0000000..8150c0f --- /dev/null +++ b/static/db/contributed/fill/basic.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + .d8b. + d8' + `8b + 88ooo88 + 88 + + 88 + 88 + 88 + YP + YP + diff --git a/db/contributed/fill/broadway.flf b/static/db/contributed/fill/broadway.flf similarity index 100% rename from db/contributed/fill/broadway.flf rename to static/db/contributed/fill/broadway.flf diff --git a/static/db/contributed/fill/broadway.svg b/static/db/contributed/fill/broadway.svg new file mode 100644 index 0000000..5f6ea20 --- /dev/null +++ b/static/db/contributed/fill/broadway.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + .8. + .888. + :88888. + . + `88888. + .8. + `88888. + .8`8. + `88888. + .8' + `8. + `88888. + .8' + `8. + `88888. + .888888888. + `88888. + .8' + `8. + `88888. + diff --git a/db/contributed/fill/calgphy2.flf b/static/db/contributed/fill/calgphy2.flf similarity index 100% rename from db/contributed/fill/calgphy2.flf rename to static/db/contributed/fill/calgphy2.flf diff --git a/static/db/contributed/fill/calgphy2.svg b/static/db/contributed/fill/calgphy2.svg new file mode 100644 index 0000000..36cf50f --- /dev/null +++ b/static/db/contributed/fill/calgphy2.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # + + + diff --git a/db/contributed/fill/colossal.flf b/static/db/contributed/fill/colossal.flf similarity index 100% rename from db/contributed/fill/colossal.flf rename to static/db/contributed/fill/colossal.flf diff --git a/static/db/contributed/fill/colossal.svg b/static/db/contributed/fill/colossal.svg new file mode 100644 index 0000000..45dced0 --- /dev/null +++ b/static/db/contributed/fill/colossal.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + d8888 + d88888 + d88P888 + d88P + 888 + d88P + 888 + d88P + 888 + d8888888888 + d88P + 888 + diff --git a/db/contributed/fill/computer.flf b/static/db/contributed/fill/computer.flf similarity index 100% rename from db/contributed/fill/computer.flf rename to static/db/contributed/fill/computer.flf diff --git a/static/db/contributed/fill/computer.svg b/static/db/contributed/fill/computer.svg new file mode 100644 index 0000000..aa22f37 --- /dev/null +++ b/static/db/contributed/fill/computer.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + 8 + 8 + 8 + 8 + 8eeee8 + 88 + 8 + 88 + 8 + 88 + 8 + + + diff --git a/db/contributed/fill/contrast.flf b/static/db/contributed/fill/contrast.flf similarity index 100% rename from db/contributed/fill/contrast.flf rename to static/db/contributed/fill/contrast.flf diff --git a/static/db/contributed/fill/contrast.svg b/static/db/contributed/fill/contrast.svg new file mode 100644 index 0000000..508b645 --- /dev/null +++ b/static/db/contributed/fill/contrast.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + ..%%%%.. + .%%..%%. + .%%%%%%. + .%%..%%. + .%%..%%. + ........ + diff --git a/db/contributed/fill/cosmic.flf b/static/db/contributed/fill/cosmic.flf similarity index 100% rename from db/contributed/fill/cosmic.flf rename to static/db/contributed/fill/cosmic.flf diff --git a/static/db/contributed/fill/cosmic.svg b/static/db/contributed/fill/cosmic.svg new file mode 100644 index 0000000..b78ed7d --- /dev/null +++ b/static/db/contributed/fill/cosmic.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + :::. + ;;`;; + ,[[ + '[[, + c$$$cc$$$c + 888 + 888, + YMM + ` + + diff --git a/db/contributed/fill/cosmike.flf b/static/db/contributed/fill/cosmike.flf similarity index 100% rename from db/contributed/fill/cosmike.flf rename to static/db/contributed/fill/cosmike.flf diff --git a/static/db/contributed/fill/cosmike.svg b/static/db/contributed/fill/cosmike.svg new file mode 100644 index 0000000..b78ed7d --- /dev/null +++ b/static/db/contributed/fill/cosmike.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + :::. + ;;`;; + ,[[ + '[[, + c$$$cc$$$c + 888 + 888, + YMM + ` + + diff --git a/db/contributed/fill/doh.flf b/static/db/contributed/fill/doh.flf similarity index 100% rename from db/contributed/fill/doh.flf rename to static/db/contributed/fill/doh.flf diff --git a/static/db/contributed/fill/doh.svg b/static/db/contributed/fill/doh.svg new file mode 100644 index 0000000..64d450a --- /dev/null +++ b/static/db/contributed/fill/doh.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + AAA + A + + + + A + A + + + A + A + + + A + A + + + A + A + + A + + A + A + + A + A + + A + A + + A + A + + A + A + + A + A + + A + A + + AAAAAAAAA + + A + A + + ::::::::: + + A + A + + AAAAAAAAAAAAA + + A + A + + A + A + + A + A + + A + A + + A + A: + A + A + :A + AAAAAAA + AAAAAAA + diff --git a/db/contributed/fill/eftipiti.flf b/static/db/contributed/fill/eftipiti.flf similarity index 100% rename from db/contributed/fill/eftipiti.flf rename to static/db/contributed/fill/eftipiti.flf diff --git a/static/db/contributed/fill/eftipiti.svg b/static/db/contributed/fill/eftipiti.svg new file mode 100644 index 0000000..9d38b3a --- /dev/null +++ b/static/db/contributed/fill/eftipiti.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/fill/fraktur.flf b/static/db/contributed/fill/fraktur.flf similarity index 100% rename from db/contributed/fill/fraktur.flf rename to static/db/contributed/fill/fraktur.flf diff --git a/static/db/contributed/fill/fraktur.svg b/static/db/contributed/fill/fraktur.svg new file mode 100644 index 0000000..0d4aa82 --- /dev/null +++ b/static/db/contributed/fill/fraktur.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + .. + : + + 888H: + `: + .xH + X + `8888k + + X888 + '8hx + 48888 + ?8888 + '8888 + '8888 + `8888 + %888>'8888 + 8888 + 8888 + . + + ` + X*" + 8888 + .xhx. + 8888 + .H88888h + `8888. + + . + + `%88!` + '888 + + + ` + " + + 8 '888 + + + + + + + + + + diff --git a/db/contributed/fill/gradient.flf b/static/db/contributed/fill/gradient.flf similarity index 100% rename from db/contributed/fill/gradient.flf rename to static/db/contributed/fill/gradient.flf diff --git a/static/db/contributed/fill/gradient.svg b/static/db/contributed/fill/gradient.svg new file mode 100644 index 0000000..2c3c679 --- /dev/null +++ b/static/db/contributed/fill/gradient.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + .eeeeee. + + @@@@@@@@: + %%% + + %%% + + &&&&&&&& + + + + + + + + + + * + + + + + + + # + ...@@...@ + diff --git a/db/contributed/fill/jazmine.flf b/static/db/contributed/fill/jazmine.flf similarity index 100% rename from db/contributed/fill/jazmine.flf rename to static/db/contributed/fill/jazmine.flf diff --git a/static/db/contributed/fill/jazmine.svg b/static/db/contributed/fill/jazmine.svg new file mode 100644 index 0000000..8c335ec --- /dev/null +++ b/static/db/contributed/fill/jazmine.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + .oo + .P + 8 + .P + 8 + oPooo8 + .P + 8 + .P + 8 + + + + + + + + + + diff --git a/db/contributed/fill/letters.flf b/static/db/contributed/fill/letters.flf similarity index 100% rename from db/contributed/fill/letters.flf rename to static/db/contributed/fill/letters.flf diff --git a/static/db/contributed/fill/letters.svg b/static/db/contributed/fill/letters.svg new file mode 100644 index 0000000..47f7535 --- /dev/null +++ b/static/db/contributed/fill/letters.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + AAA + AAAAA + AA + AA + AAAAAAA + AA + AA + diff --git a/db/contributed/fill/lockergnome.flf b/static/db/contributed/fill/lockergnome.flf similarity index 100% rename from db/contributed/fill/lockergnome.flf rename to static/db/contributed/fill/lockergnome.flf diff --git a/static/db/contributed/fill/lockergnome.svg b/static/db/contributed/fill/lockergnome.svg new file mode 100644 index 0000000..a42d1be --- /dev/null +++ b/static/db/contributed/fill/lockergnome.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + : + + + , + | + + + + + + diff --git a/db/contributed/fill/nancyj-fancy.flf b/static/db/contributed/fill/nancyj-fancy.flf similarity index 100% rename from db/contributed/fill/nancyj-fancy.flf rename to static/db/contributed/fill/nancyj-fancy.flf diff --git a/static/db/contributed/fill/nancyj-fancy.svg b/static/db/contributed/fill/nancyj-fancy.svg new file mode 100644 index 0000000..a057cb3 --- /dev/null +++ b/static/db/contributed/fill/nancyj-fancy.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + MMP + "MM + M' + .mmmm + MM + M + `M + M + MMMMM + MM + M + MMMMM + MM + M + MMMMM + MM + MMMMMMMMMMMM + + + + diff --git a/db/contributed/fill/nancyj-underlined.flf b/static/db/contributed/fill/nancyj-underlined.flf similarity index 100% rename from db/contributed/fill/nancyj-underlined.flf rename to static/db/contributed/fill/nancyj-underlined.flf diff --git a/static/db/contributed/fill/nancyj-underlined.svg b/static/db/contributed/fill/nancyj-underlined.svg new file mode 100644 index 0000000..6f94407 --- /dev/null +++ b/static/db/contributed/fill/nancyj-underlined.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + .d888888 + d8' + 88 + 88aaaaa88a + 88 + 88 + 88 + 88 + 88 + 88 + ooooooooooo + diff --git a/db/contributed/fill/nancyj.flf b/static/db/contributed/fill/nancyj.flf similarity index 100% rename from db/contributed/fill/nancyj.flf rename to static/db/contributed/fill/nancyj.flf diff --git a/static/db/contributed/fill/nancyj.svg b/static/db/contributed/fill/nancyj.svg new file mode 100644 index 0000000..ab72dcc --- /dev/null +++ b/static/db/contributed/fill/nancyj.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + .d888888 + d8' + 88 + 88aaaaa88a + 88 + 88 + 88 + 88 + 88 + 88 + diff --git a/db/contributed/fill/nvscript.flf b/static/db/contributed/fill/nvscript.flf similarity index 100% rename from db/contributed/fill/nvscript.flf rename to static/db/contributed/fill/nvscript.flf diff --git a/static/db/contributed/fill/nvscript.svg b/static/db/contributed/fill/nvscript.svg new file mode 100644 index 0000000..9976f52 --- /dev/null +++ b/static/db/contributed/fill/nvscript.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + ,ggg, + dP + 8I + dP + 88 + dP + 88 + ,8' + 88 + d88888888 + + ,8" + 88 + dP" + ,8P + Y8 + Yb, + + ,dP + `8b, + `Y8 + + Y8P + diff --git a/db/contributed/fill/o8.flf b/static/db/contributed/fill/o8.flf similarity index 100% rename from db/contributed/fill/o8.flf rename to static/db/contributed/fill/o8.flf diff --git a/static/db/contributed/fill/o8.svg b/static/db/contributed/fill/o8.svg new file mode 100644 index 0000000..d6eeca1 --- /dev/null +++ b/static/db/contributed/fill/o8.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + o + 888 + 8 + 88 + 8oooo88 + o88o + o888o + diff --git a/db/contributed/fill/pebbles.flf b/static/db/contributed/fill/pebbles.flf similarity index 100% rename from db/contributed/fill/pebbles.flf rename to static/db/contributed/fill/pebbles.flf diff --git a/static/db/contributed/fill/pebbles.svg b/static/db/contributed/fill/pebbles.svg new file mode 100644 index 0000000..1f726b1 --- /dev/null +++ b/static/db/contributed/fill/pebbles.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + Oo + o + O + O + o + oOooOoOo + o + O + O + o + o + O + O. + O + diff --git a/db/contributed/fill/poison.flf b/static/db/contributed/fill/poison.flf similarity index 100% rename from db/contributed/fill/poison.flf rename to static/db/contributed/fill/poison.flf diff --git a/static/db/contributed/fill/poison.svg b/static/db/contributed/fill/poison.svg new file mode 100644 index 0000000..e8598b5 --- /dev/null +++ b/static/db/contributed/fill/poison.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + @@@@@@ + @@@@@@@@ + @@ + + @@@ + !@ + @!@ + @ + + @!@ + + @ + + + + @! + + diff --git a/db/contributed/fill/roman.flf b/static/db/contributed/fill/roman.flf similarity index 100% rename from db/contributed/fill/roman.flf rename to static/db/contributed/fill/roman.flf diff --git a/static/db/contributed/fill/roman.svg b/static/db/contributed/fill/roman.svg new file mode 100644 index 0000000..5ae6ac4 --- /dev/null +++ b/static/db/contributed/fill/roman.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + .o. + .888. + .8"888. + .8' + `888. + .88ooo8888. + .8' + `888. + o88o + o8888o + diff --git a/db/contributed/fill/rowancap.flf b/static/db/contributed/fill/rowancap.flf similarity index 100% rename from db/contributed/fill/rowancap.flf rename to static/db/contributed/fill/rowancap.flf diff --git a/static/db/contributed/fill/rowancap.svg b/static/db/contributed/fill/rowancap.svg new file mode 100644 index 0000000..67daf29 --- /dev/null +++ b/static/db/contributed/fill/rowancap.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + .aMMMb + dMP"dMP + dMMMMMP + dMP + dMP + dMP + dMP + diff --git a/db/contributed/fill/rozzo.flf b/static/db/contributed/fill/rozzo.flf similarity index 100% rename from db/contributed/fill/rozzo.flf rename to static/db/contributed/fill/rozzo.flf diff --git a/static/db/contributed/fill/rozzo.svg b/static/db/contributed/fill/rozzo.svg new file mode 100644 index 0000000..c8cd61a --- /dev/null +++ b/static/db/contributed/fill/rozzo.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + e + Y8b + d8b + Y8b + d888b + Y8b + d888888888b + d8888888b + Y8b + diff --git a/db/contributed/fill/sblood.flf b/static/db/contributed/fill/sblood.flf similarity index 100% rename from db/contributed/fill/sblood.flf rename to static/db/contributed/fill/sblood.flf diff --git a/static/db/contributed/fill/sblood.svg b/static/db/contributed/fill/sblood.svg new file mode 100644 index 0000000..b56d644 --- /dev/null +++ b/static/db/contributed/fill/sblood.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + @@@@@@ + @@! + @@@ + @ + + @!@ + + @ + + ! + : + ! + diff --git a/db/contributed/fill/slide.flf b/static/db/contributed/fill/slide.flf similarity index 100% rename from db/contributed/fill/slide.flf rename to static/db/contributed/fill/slide.flf diff --git a/static/db/contributed/fill/slide.svg b/static/db/contributed/fill/slide.svg new file mode 100644 index 0000000..002fe57 --- /dev/null +++ b/static/db/contributed/fill/slide.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + # + + + + HH + + + + + + + + + + + HH + + + diff --git a/db/contributed/fill/stellar.flf b/static/db/contributed/fill/stellar.flf similarity index 100% rename from db/contributed/fill/stellar.flf rename to static/db/contributed/fill/stellar.flf diff --git a/static/db/contributed/fill/stellar.svg b/static/db/contributed/fill/stellar.svg new file mode 100644 index 0000000..a826262 --- /dev/null +++ b/static/db/contributed/fill/stellar.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + `. + `. + .. + `. + `.. + `.. + `.. + `...... + `.. + `.. + `.. + `.. + `.. + diff --git a/db/contributed/fill/tanja.flf b/static/db/contributed/fill/tanja.flf similarity index 100% rename from db/contributed/fill/tanja.flf rename to static/db/contributed/fill/tanja.flf diff --git a/static/db/contributed/fill/tanja.svg b/static/db/contributed/fill/tanja.svg new file mode 100644 index 0000000..7c3f6f2 --- /dev/null +++ b/static/db/contributed/fill/tanja.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + A + + aa + A + + aa + A + aa + A + aaaaaa + A + aa + A + aa + + + + + + + diff --git a/db/contributed/fill/thick.flf b/static/db/contributed/fill/thick.flf similarity index 100% rename from db/contributed/fill/thick.flf rename to static/db/contributed/fill/thick.flf diff --git a/static/db/contributed/fill/thick.svg b/static/db/contributed/fill/thick.svg new file mode 100644 index 0000000..675021b --- /dev/null +++ b/static/db/contributed/fill/thick.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + db + dPYb + dPwwYb + dP + Yb + diff --git a/db/contributed/fill/trek.flf b/static/db/contributed/fill/trek.flf similarity index 100% rename from db/contributed/fill/trek.flf rename to static/db/contributed/fill/trek.flf diff --git a/static/db/contributed/fill/trek.svg b/static/db/contributed/fill/trek.svg new file mode 100644 index 0000000..3a8c4e9 --- /dev/null +++ b/static/db/contributed/fill/trek.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + dBBBBBb + BB + dBP + BB + dBP + BB + dBBBBBBB + diff --git a/db/contributed/fill/univers.flf b/static/db/contributed/fill/univers.flf similarity index 100% rename from db/contributed/fill/univers.flf rename to static/db/contributed/fill/univers.flf diff --git a/static/db/contributed/fill/univers.svg b/static/db/contributed/fill/univers.svg new file mode 100644 index 0000000..7c46c9c --- /dev/null +++ b/static/db/contributed/fill/univers.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + db + d88b + d8'`8b + d8' + `8b + d8YaaaaY8b + d8 + 8b + d8' + `8b + d8' + `8b + + + + + diff --git a/db/contributed/fill/whimsy.flf b/static/db/contributed/fill/whimsy.flf similarity index 100% rename from db/contributed/fill/whimsy.flf rename to static/db/contributed/fill/whimsy.flf diff --git a/static/db/contributed/fill/whimsy.svg b/static/db/contributed/fill/whimsy.svg new file mode 100644 index 0000000..9915636 --- /dev/null +++ b/static/db/contributed/fill/whimsy.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + d888b8b + d8P' + ?88 + 88b + ,88b + `?88P'`88b + diff --git a/db/contributed/frame/pyramid.flf b/static/db/contributed/frame/pyramid.flf similarity index 100% rename from db/contributed/frame/pyramid.flf rename to static/db/contributed/frame/pyramid.flf diff --git a/db/contributed/frame/smkeyboard.flf b/static/db/contributed/frame/smkeyboard.flf similarity index 100% rename from db/contributed/frame/smkeyboard.flf rename to static/db/contributed/frame/smkeyboard.flf diff --git a/db/contributed/non-latin/katakana.flf b/static/db/contributed/non-latin/katakana.flf similarity index 100% rename from db/contributed/non-latin/katakana.flf rename to static/db/contributed/non-latin/katakana.flf diff --git a/db/contributed/non-latin/runyc.flf b/static/db/contributed/non-latin/runyc.flf similarity index 100% rename from db/contributed/non-latin/runyc.flf rename to static/db/contributed/non-latin/runyc.flf diff --git a/db/contributed/non-latin/tsalagi.flc b/static/db/contributed/non-latin/tsalagi.flc similarity index 100% rename from db/contributed/non-latin/tsalagi.flc rename to static/db/contributed/non-latin/tsalagi.flc diff --git a/db/contributed/non-latin/tsalagi.flf b/static/db/contributed/non-latin/tsalagi.flf similarity index 100% rename from db/contributed/non-latin/tsalagi.flf rename to static/db/contributed/non-latin/tsalagi.flf diff --git a/db/contributed/outline/5lineoblique.flf b/static/db/contributed/outline/5lineoblique.flf similarity index 100% rename from db/contributed/outline/5lineoblique.flf rename to static/db/contributed/outline/5lineoblique.flf diff --git a/static/db/contributed/outline/5lineoblique.svg b/static/db/contributed/outline/5lineoblique.svg new file mode 100644 index 0000000..58cc08b --- /dev/null +++ b/static/db/contributed/outline/5lineoblique.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/outline/double.flf b/static/db/contributed/outline/double.flf similarity index 100% rename from db/contributed/outline/double.flf rename to static/db/contributed/outline/double.flf diff --git a/static/db/contributed/outline/double.svg b/static/db/contributed/outline/double.svg new file mode 100644 index 0000000..72f4ae1 --- /dev/null +++ b/static/db/contributed/outline/double.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + | + + + | + + + + + + + + + + + + + + diff --git a/db/contributed/outline/eftifont.flf b/static/db/contributed/outline/eftifont.flf similarity index 100% rename from db/contributed/outline/eftifont.flf rename to static/db/contributed/outline/eftifont.flf diff --git a/static/db/contributed/outline/eftifont.svg b/static/db/contributed/outline/eftifont.svg new file mode 100644 index 0000000..19eabd7 --- /dev/null +++ b/static/db/contributed/outline/eftifont.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + | + o + | + n + + + + + + + + + + + + + + diff --git a/db/contributed/outline/eftitalic.flf b/static/db/contributed/outline/eftitalic.flf similarity index 100% rename from db/contributed/outline/eftitalic.flf rename to static/db/contributed/outline/eftitalic.flf diff --git a/static/db/contributed/outline/eftitalic.svg b/static/db/contributed/outline/eftitalic.svg new file mode 100644 index 0000000..ca2c500 --- /dev/null +++ b/static/db/contributed/outline/eftitalic.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + ' + o + n + + + + + + + + + + diff --git a/db/contributed/outline/eftiwater.flf b/static/db/contributed/outline/eftiwater.flf similarity index 100% rename from db/contributed/outline/eftiwater.flf rename to static/db/contributed/outline/eftiwater.flf diff --git a/static/db/contributed/outline/eftiwater.svg b/static/db/contributed/outline/eftiwater.svg new file mode 100644 index 0000000..d2ec12e --- /dev/null +++ b/static/db/contributed/outline/eftiwater.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + ` + + + + + + + + + + diff --git a/db/contributed/outline/fender.flf b/static/db/contributed/outline/fender.flf similarity index 100% rename from db/contributed/outline/fender.flf rename to static/db/contributed/outline/fender.flf diff --git a/static/db/contributed/outline/fender.svg b/static/db/contributed/outline/fender.svg new file mode 100644 index 0000000..6e457fa --- /dev/null +++ b/static/db/contributed/outline/fender.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + ... + + . + . + + + + + diff --git a/db/contributed/outline/fuzzy.flf b/static/db/contributed/outline/fuzzy.flf similarity index 100% rename from db/contributed/outline/fuzzy.flf rename to static/db/contributed/outline/fuzzy.flf diff --git a/static/db/contributed/outline/fuzzy.svg b/static/db/contributed/outline/fuzzy.svg new file mode 100644 index 0000000..d6767b0 --- /dev/null +++ b/static/db/contributed/outline/fuzzy.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + .; + : + + + ; + + ; + + + + + + + + diff --git a/db/contributed/outline/gothic.flf b/static/db/contributed/outline/gothic.flf similarity index 100% rename from db/contributed/outline/gothic.flf rename to static/db/contributed/outline/gothic.flf diff --git a/static/db/contributed/outline/gothic.svg b/static/db/contributed/outline/gothic.svg new file mode 100644 index 0000000..c350c54 --- /dev/null +++ b/static/db/contributed/outline/gothic.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + , + + + + , + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/outline/kban.flf b/static/db/contributed/outline/kban.flf similarity index 100% rename from db/contributed/outline/kban.flf rename to static/db/contributed/outline/kban.flf diff --git a/static/db/contributed/outline/kban.svg b/static/db/contributed/outline/kban.svg new file mode 100644 index 0000000..7f460cf --- /dev/null +++ b/static/db/contributed/outline/kban.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + '' + + . + . + . + . + diff --git a/db/contributed/outline/madrid.flf b/static/db/contributed/outline/madrid.flf similarity index 100% rename from db/contributed/outline/madrid.flf rename to static/db/contributed/outline/madrid.flf diff --git a/static/db/contributed/outline/madrid.svg b/static/db/contributed/outline/madrid.svg new file mode 100644 index 0000000..8cc35a6 --- /dev/null +++ b/static/db/contributed/outline/madrid.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/barbwire.flf b/static/db/contributed/pattern/barbwire.flf similarity index 100% rename from db/contributed/pattern/barbwire.flf rename to static/db/contributed/pattern/barbwire.flf diff --git a/static/db/contributed/pattern/barbwire.svg b/static/db/contributed/pattern/barbwire.svg new file mode 100644 index 0000000..679de8d --- /dev/null +++ b/static/db/contributed/pattern/barbwire.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + >< + >< + + < + >< + > + + < + > + + < + > + + < + > + + + + + + < + > + + < + > + + < + > + + < + > + + < + > + + < + diff --git a/db/contributed/pattern/caligraphy.flf b/static/db/contributed/pattern/caligraphy.flf similarity index 100% rename from db/contributed/pattern/caligraphy.flf rename to static/db/contributed/pattern/caligraphy.flf diff --git a/static/db/contributed/pattern/caligraphy.svg b/static/db/contributed/pattern/caligraphy.svg new file mode 100644 index 0000000..573e1bd --- /dev/null +++ b/static/db/contributed/pattern/caligraphy.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + * + + + * + + * + + * + + * + + * + + + * + + * + + + + * + + + * + * + + + * + + diff --git a/db/contributed/pattern/catwalk.flf b/static/db/contributed/pattern/catwalk.flf similarity index 100% rename from db/contributed/pattern/catwalk.flf rename to static/db/contributed/pattern/catwalk.flf diff --git a/static/db/contributed/pattern/catwalk.svg b/static/db/contributed/pattern/catwalk.svg new file mode 100644 index 0000000..5fe919c --- /dev/null +++ b/static/db/contributed/pattern/catwalk.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/coinstak.flf b/static/db/contributed/pattern/coinstak.flf similarity index 100% rename from db/contributed/pattern/coinstak.flf rename to static/db/contributed/pattern/coinstak.flf diff --git a/static/db/contributed/pattern/coinstak.svg b/static/db/contributed/pattern/coinstak.svg new file mode 100644 index 0000000..0b0af05 --- /dev/null +++ b/static/db/contributed/pattern/coinstak.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + O + + O + + + O + O + O + O + O + + + + O + O + O + O + + O + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/diamond.flf b/static/db/contributed/pattern/diamond.flf similarity index 100% rename from db/contributed/pattern/diamond.flf rename to static/db/contributed/pattern/diamond.flf diff --git a/static/db/contributed/pattern/diamond.svg b/static/db/contributed/pattern/diamond.svg new file mode 100644 index 0000000..84ba9f7 --- /dev/null +++ b/static/db/contributed/pattern/diamond.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/dotmatrix.flf b/static/db/contributed/pattern/dotmatrix.flf similarity index 100% rename from db/contributed/pattern/dotmatrix.flf rename to static/db/contributed/pattern/dotmatrix.flf diff --git a/static/db/contributed/pattern/dotmatrix.svg b/static/db/contributed/pattern/dotmatrix.svg new file mode 100644 index 0000000..7436eaf --- /dev/null +++ b/static/db/contributed/pattern/dotmatrix.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/marquee.flf b/static/db/contributed/pattern/marquee.flf similarity index 100% rename from db/contributed/pattern/marquee.flf rename to static/db/contributed/pattern/marquee.flf diff --git a/static/db/contributed/pattern/marquee.svg b/static/db/contributed/pattern/marquee.svg new file mode 100644 index 0000000..f8a92c1 --- /dev/null +++ b/static/db/contributed/pattern/marquee.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + : + + : + : + + + . + + + . + + + ::: + . + + + . + + .: + . + : + diff --git a/db/contributed/pattern/nipples.flf b/static/db/contributed/pattern/nipples.flf similarity index 100% rename from db/contributed/pattern/nipples.flf rename to static/db/contributed/pattern/nipples.flf diff --git a/static/db/contributed/pattern/nipples.svg b/static/db/contributed/pattern/nipples.svg new file mode 100644 index 0000000..d8d0753 --- /dev/null +++ b/static/db/contributed/pattern/nipples.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + { + + { + + + { + + { + + { + + { + + { + + { + + { + + { + + { + + { + + diff --git a/db/contributed/pattern/os2.flf b/static/db/contributed/pattern/os2.flf similarity index 100% rename from db/contributed/pattern/os2.flf rename to static/db/contributed/pattern/os2.flf diff --git a/static/db/contributed/pattern/os2.svg b/static/db/contributed/pattern/os2.svg new file mode 100644 index 0000000..053baf8 --- /dev/null +++ b/static/db/contributed/pattern/os2.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + ooo + + + oo + + oo + + oo + + oo + + ooooooooo + + oo + + oo + + oo + + oo + + + diff --git a/db/contributed/pattern/pawp.flf b/static/db/contributed/pattern/pawp.flf similarity index 100% rename from db/contributed/pattern/pawp.flf rename to static/db/contributed/pattern/pawp.flf diff --git a/static/db/contributed/pattern/pawp.svg b/static/db/contributed/pattern/pawp.svg new file mode 100644 index 0000000..db06cf5 --- /dev/null +++ b/static/db/contributed/pattern/pawp.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/peaks.flf b/static/db/contributed/pattern/peaks.flf similarity index 100% rename from db/contributed/pattern/peaks.flf rename to static/db/contributed/pattern/peaks.flf diff --git a/static/db/contributed/pattern/peaks.svg b/static/db/contributed/pattern/peaks.svg new file mode 100644 index 0000000..d0a736d --- /dev/null +++ b/static/db/contributed/pattern/peaks.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + ^ + ^ + ^^ + ^^^^^^ + ^^ + ^^ + ^ + ^ + + + ^ + + + ^ + + + ^ + + + ^ + + + ^^ + diff --git a/db/contributed/pattern/relief.flf b/static/db/contributed/pattern/relief.flf similarity index 100% rename from db/contributed/pattern/relief.flf rename to static/db/contributed/pattern/relief.flf diff --git a/static/db/contributed/pattern/relief.svg b/static/db/contributed/pattern/relief.svg new file mode 100644 index 0000000..91a3d64 --- /dev/null +++ b/static/db/contributed/pattern/relief.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/relief2.flf b/static/db/contributed/pattern/relief2.flf similarity index 100% rename from db/contributed/pattern/relief2.flf rename to static/db/contributed/pattern/relief2.flf diff --git a/static/db/contributed/pattern/relief2.svg b/static/db/contributed/pattern/relief2.svg new file mode 100644 index 0000000..930b5fa --- /dev/null +++ b/static/db/contributed/pattern/relief2.svg @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/rev.flf b/static/db/contributed/pattern/rev.flf similarity index 100% rename from db/contributed/pattern/rev.flf rename to static/db/contributed/pattern/rev.flf diff --git a/static/db/contributed/pattern/rev.svg b/static/db/contributed/pattern/rev.svg new file mode 100644 index 0000000..fe1d640 --- /dev/null +++ b/static/db/contributed/pattern/rev.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/ticks.flf b/static/db/contributed/pattern/ticks.flf similarity index 100% rename from db/contributed/pattern/ticks.flf rename to static/db/contributed/pattern/ticks.flf diff --git a/static/db/contributed/pattern/ticks.svg b/static/db/contributed/pattern/ticks.svg new file mode 100644 index 0000000..b91bf62 --- /dev/null +++ b/static/db/contributed/pattern/ticks.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/ticksslant.flf b/static/db/contributed/pattern/ticksslant.flf similarity index 100% rename from db/contributed/pattern/ticksslant.flf rename to static/db/contributed/pattern/ticksslant.flf diff --git a/static/db/contributed/pattern/ticksslant.svg b/static/db/contributed/pattern/ticksslant.svg new file mode 100644 index 0000000..9b10eec --- /dev/null +++ b/static/db/contributed/pattern/ticksslant.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/pattern/usaflag.flf b/static/db/contributed/pattern/usaflag.flf similarity index 100% rename from db/contributed/pattern/usaflag.flf rename to static/db/contributed/pattern/usaflag.flf diff --git a/static/db/contributed/pattern/usaflag.svg b/static/db/contributed/pattern/usaflag.svg new file mode 100644 index 0000000..62560b4 --- /dev/null +++ b/static/db/contributed/pattern/usaflag.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/script/cursive.flf b/static/db/contributed/script/cursive.flf similarity index 100% rename from db/contributed/script/cursive.flf rename to static/db/contributed/script/cursive.flf diff --git a/static/db/contributed/script/cursive.svg b/static/db/contributed/script/cursive.svg new file mode 100644 index 0000000..003049b --- /dev/null +++ b/static/db/contributed/script/cursive.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/script/hollywood.flf b/static/db/contributed/script/hollywood.flf similarity index 100% rename from db/contributed/script/hollywood.flf rename to static/db/contributed/script/hollywood.flf diff --git a/static/db/contributed/script/hollywood.svg b/static/db/contributed/script/hollywood.svg new file mode 100644 index 0000000..da17b2a --- /dev/null +++ b/static/db/contributed/script/hollywood.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + , + + ' + + ' + , + + ' + + , + + ' + + , + + ' + , + + + + + + + + + + + diff --git a/db/contributed/script/invita.flf b/static/db/contributed/script/invita.flf similarity index 100% rename from db/contributed/script/invita.flf rename to static/db/contributed/script/invita.flf diff --git a/static/db/contributed/script/invita.svg b/static/db/contributed/script/invita.svg new file mode 100644 index 0000000..86a5139 --- /dev/null +++ b/static/db/contributed/script/invita.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + diff --git a/db/contributed/script/italic.flf b/static/db/contributed/script/italic.flf similarity index 100% rename from db/contributed/script/italic.flf rename to static/db/contributed/script/italic.flf diff --git a/static/db/contributed/script/italic.svg b/static/db/contributed/script/italic.svg new file mode 100644 index 0000000..1c2bfe4 --- /dev/null +++ b/static/db/contributed/script/italic.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/script/slscript.flf b/static/db/contributed/script/slscript.flf similarity index 100% rename from db/contributed/script/slscript.flf rename to static/db/contributed/script/slscript.flf diff --git a/static/db/contributed/script/slscript.svg b/static/db/contributed/script/slscript.svg new file mode 100644 index 0000000..003049b --- /dev/null +++ b/static/db/contributed/script/slscript.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/bell.flf b/static/db/contributed/stroke/bell.flf similarity index 100% rename from db/contributed/stroke/bell.flf rename to static/db/contributed/stroke/bell.flf diff --git a/static/db/contributed/stroke/bell.svg b/static/db/contributed/stroke/bell.svg new file mode 100644 index 0000000..c8929e2 --- /dev/null +++ b/static/db/contributed/stroke/bell.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + ' + ,' + + + + + + + + + diff --git a/db/contributed/stroke/contessa.flf b/static/db/contributed/stroke/contessa.flf similarity index 100% rename from db/contributed/stroke/contessa.flf rename to static/db/contributed/stroke/contessa.flf diff --git a/static/db/contributed/stroke/contessa.svg b/static/db/contributed/stroke/contessa.svg new file mode 100644 index 0000000..bea16c2 --- /dev/null +++ b/static/db/contributed/stroke/contessa.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + . + + . + [ + ] + + + + + + diff --git a/db/contributed/stroke/cyberlarge.flf b/static/db/contributed/stroke/cyberlarge.flf similarity index 100% rename from db/contributed/stroke/cyberlarge.flf rename to static/db/contributed/stroke/cyberlarge.flf diff --git a/static/db/contributed/stroke/cyberlarge.svg b/static/db/contributed/stroke/cyberlarge.svg new file mode 100644 index 0000000..c48ac24 --- /dev/null +++ b/static/db/contributed/stroke/cyberlarge.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/cybermedium.flf b/static/db/contributed/stroke/cybermedium.flf similarity index 100% rename from db/contributed/stroke/cybermedium.flf rename to static/db/contributed/stroke/cybermedium.flf diff --git a/static/db/contributed/stroke/cybermedium.svg b/static/db/contributed/stroke/cybermedium.svg new file mode 100644 index 0000000..ef90f46 --- /dev/null +++ b/static/db/contributed/stroke/cybermedium.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/cybersmall.flf b/static/db/contributed/stroke/cybersmall.flf similarity index 100% rename from db/contributed/stroke/cybersmall.flf rename to static/db/contributed/stroke/cybersmall.flf diff --git a/static/db/contributed/stroke/cybersmall.svg b/static/db/contributed/stroke/cybersmall.svg new file mode 100644 index 0000000..b08b112 --- /dev/null +++ b/static/db/contributed/stroke/cybersmall.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/fourtops.flf b/static/db/contributed/stroke/fourtops.flf similarity index 100% rename from db/contributed/stroke/fourtops.flf rename to static/db/contributed/stroke/fourtops.flf diff --git a/static/db/contributed/stroke/fourtops.svg b/static/db/contributed/stroke/fourtops.svg new file mode 100644 index 0000000..3d4ff4b --- /dev/null +++ b/static/db/contributed/stroke/fourtops.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/maxfour.flf b/static/db/contributed/stroke/maxfour.flf similarity index 100% rename from db/contributed/stroke/maxfour.flf rename to static/db/contributed/stroke/maxfour.flf diff --git a/static/db/contributed/stroke/maxfour.svg b/static/db/contributed/stroke/maxfour.svg new file mode 100644 index 0000000..3d4ff4b --- /dev/null +++ b/static/db/contributed/stroke/maxfour.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/mike.flf b/static/db/contributed/stroke/mike.flf similarity index 100% rename from db/contributed/stroke/mike.flf rename to static/db/contributed/stroke/mike.flf diff --git a/static/db/contributed/stroke/mike.svg b/static/db/contributed/stroke/mike.svg new file mode 100644 index 0000000..27d6c79 --- /dev/null +++ b/static/db/contributed/stroke/mike.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/pepper.flf b/static/db/contributed/stroke/pepper.flf similarity index 100% rename from db/contributed/stroke/pepper.flf rename to static/db/contributed/stroke/pepper.flf diff --git a/static/db/contributed/stroke/pepper.svg b/static/db/contributed/stroke/pepper.svg new file mode 100644 index 0000000..c8a24b4 --- /dev/null +++ b/static/db/contributed/stroke/pepper.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/short.flf b/static/db/contributed/stroke/short.flf similarity index 100% rename from db/contributed/stroke/short.flf rename to static/db/contributed/stroke/short.flf diff --git a/static/db/contributed/stroke/short.svg b/static/db/contributed/stroke/short.svg new file mode 100644 index 0000000..f9f2c52 --- /dev/null +++ b/static/db/contributed/stroke/short.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/stampatello.flf b/static/db/contributed/stroke/stampatello.flf similarity index 100% rename from db/contributed/stroke/stampatello.flf rename to static/db/contributed/stroke/stampatello.flf diff --git a/static/db/contributed/stroke/stampatello.svg b/static/db/contributed/stroke/stampatello.svg new file mode 100644 index 0000000..07c2f69 --- /dev/null +++ b/static/db/contributed/stroke/stampatello.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + , + ,' + + + + + + + + + + + diff --git a/db/contributed/stroke/straight.flf b/static/db/contributed/stroke/straight.flf similarity index 100% rename from db/contributed/stroke/straight.flf rename to static/db/contributed/stroke/straight.flf diff --git a/static/db/contributed/stroke/straight.svg b/static/db/contributed/stroke/straight.svg new file mode 100644 index 0000000..5f97995 --- /dev/null +++ b/static/db/contributed/stroke/straight.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/thin.flf b/static/db/contributed/stroke/thin.flf similarity index 100% rename from db/contributed/stroke/thin.flf rename to static/db/contributed/stroke/thin.flf diff --git a/static/db/contributed/stroke/thin.svg b/static/db/contributed/stroke/thin.svg new file mode 100644 index 0000000..e3fbd20 --- /dev/null +++ b/static/db/contributed/stroke/thin.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + ` + + + + + + + + + diff --git a/db/contributed/stroke/threepoint.flf b/static/db/contributed/stroke/threepoint.flf similarity index 100% rename from db/contributed/stroke/threepoint.flf rename to static/db/contributed/stroke/threepoint.flf diff --git a/static/db/contributed/stroke/threepoint.svg b/static/db/contributed/stroke/threepoint.svg new file mode 100644 index 0000000..ca8ba57 --- /dev/null +++ b/static/db/contributed/stroke/threepoint.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/twopoint.flf b/static/db/contributed/stroke/twopoint.flf similarity index 100% rename from db/contributed/stroke/twopoint.flf rename to static/db/contributed/stroke/twopoint.flf diff --git a/static/db/contributed/stroke/twopoint.svg b/static/db/contributed/stroke/twopoint.svg new file mode 100644 index 0000000..1908f63 --- /dev/null +++ b/static/db/contributed/stroke/twopoint.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/contributed/stroke/weird.flf b/static/db/contributed/stroke/weird.flf similarity index 100% rename from db/contributed/stroke/weird.flf rename to static/db/contributed/stroke/weird.flf diff --git a/static/db/contributed/stroke/weird.svg b/static/db/contributed/stroke/weird.svg new file mode 100644 index 0000000..9aefcb7 --- /dev/null +++ b/static/db/contributed/stroke/weird.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + ) + + + + + + + + + + diff --git a/db/default/block/big.flf b/static/db/default/block/big.flf similarity index 100% rename from db/default/block/big.flf rename to static/db/default/block/big.flf diff --git a/static/db/default/block/big.svg b/static/db/default/block/big.svg new file mode 100644 index 0000000..8f1582e --- /dev/null +++ b/static/db/default/block/big.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/block/slant.flf b/static/db/default/block/slant.flf similarity index 100% rename from db/default/block/slant.flf rename to static/db/default/block/slant.flf diff --git a/static/db/default/block/slant.svg b/static/db/default/block/slant.svg new file mode 100644 index 0000000..8077507 --- /dev/null +++ b/static/db/default/block/slant.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/block/small.flf b/static/db/default/block/small.flf similarity index 100% rename from db/default/block/small.flf rename to static/db/default/block/small.flf diff --git a/static/db/default/block/small.svg b/static/db/default/block/small.svg new file mode 100644 index 0000000..275a8a0 --- /dev/null +++ b/static/db/default/block/small.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/block/smslant.flf b/static/db/default/block/smslant.flf similarity index 100% rename from db/default/block/smslant.flf rename to static/db/default/block/smslant.flf diff --git a/static/db/default/block/smslant.svg b/static/db/default/block/smslant.svg new file mode 100644 index 0000000..9ef2e4f --- /dev/null +++ b/static/db/default/block/smslant.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/block/standard.flf b/static/db/default/block/standard.flf similarity index 100% rename from db/default/block/standard.flf rename to static/db/default/block/standard.flf diff --git a/static/db/default/block/standard.svg b/static/db/default/block/standard.svg new file mode 100644 index 0000000..02b2d01 --- /dev/null +++ b/static/db/default/block/standard.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/code/term.flf b/static/db/default/code/term.flf similarity index 100% rename from db/default/code/term.flf rename to static/db/default/code/term.flf diff --git a/db/default/directions/ivrit.flf b/static/db/default/directions/ivrit.flf similarity index 100% rename from db/default/directions/ivrit.flf rename to static/db/default/directions/ivrit.flf diff --git a/db/default/effect/shadow.flf b/static/db/default/effect/shadow.flf similarity index 100% rename from db/default/effect/shadow.flf rename to static/db/default/effect/shadow.flf diff --git a/static/db/default/effect/shadow.svg b/static/db/default/effect/shadow.svg new file mode 100644 index 0000000..925f37b --- /dev/null +++ b/static/db/default/effect/shadow.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/effect/smshadow.flf b/static/db/default/effect/smshadow.flf similarity index 100% rename from db/default/effect/smshadow.flf rename to static/db/default/effect/smshadow.flf diff --git a/static/db/default/effect/smshadow.svg b/static/db/default/effect/smshadow.svg new file mode 100644 index 0000000..718eca8 --- /dev/null +++ b/static/db/default/effect/smshadow.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/fill/banner.flf b/static/db/default/fill/banner.flf similarity index 100% rename from db/default/fill/banner.flf rename to static/db/default/fill/banner.flf diff --git a/static/db/default/fill/banner.svg b/static/db/default/fill/banner.svg new file mode 100644 index 0000000..745f34e --- /dev/null +++ b/static/db/default/fill/banner.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + # + # + # + # + # + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/frame/bubble.flf b/static/db/default/frame/bubble.flf similarity index 100% rename from db/default/frame/bubble.flf rename to static/db/default/frame/bubble.flf diff --git a/db/default/frame/digital.flf b/static/db/default/frame/digital.flf similarity index 100% rename from db/default/frame/digital.flf rename to static/db/default/frame/digital.flf diff --git a/db/default/pattern/block.flf b/static/db/default/pattern/block.flf similarity index 100% rename from db/default/pattern/block.flf rename to static/db/default/pattern/block.flf diff --git a/static/db/default/pattern/block.svg b/static/db/default/pattern/block.svg new file mode 100644 index 0000000..363cba7 --- /dev/null +++ b/static/db/default/pattern/block.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/pattern/lean.flf b/static/db/default/pattern/lean.flf similarity index 100% rename from db/default/pattern/lean.flf rename to static/db/default/pattern/lean.flf diff --git a/static/db/default/pattern/lean.svg b/static/db/default/pattern/lean.svg new file mode 100644 index 0000000..630762f --- /dev/null +++ b/static/db/default/pattern/lean.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/default/script/script.flf b/static/db/default/script/script.flf similarity index 100% rename from db/default/script/script.flf rename to static/db/default/script/script.flf diff --git a/static/db/default/script/script.svg b/static/db/default/script/script.svg new file mode 100644 index 0000000..e5fd8f0 --- /dev/null +++ b/static/db/default/script/script.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + , + | + + + + + + + + + + + + + diff --git a/db/default/script/smscript.flf b/static/db/default/script/smscript.flf similarity index 100% rename from db/default/script/smscript.flf rename to static/db/default/script/smscript.flf diff --git a/static/db/default/script/smscript.svg b/static/db/default/script/smscript.svg new file mode 100644 index 0000000..23f0cdc --- /dev/null +++ b/static/db/default/script/smscript.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + + + + + diff --git a/db/default/stroke/mini.flf b/static/db/default/stroke/mini.flf similarity index 100% rename from db/default/stroke/mini.flf rename to static/db/default/stroke/mini.flf diff --git a/static/db/default/stroke/mini.svg b/static/db/default/stroke/mini.svg new file mode 100644 index 0000000..5f97995 --- /dev/null +++ b/static/db/default/stroke/mini.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/3d_diagonal.flf b/static/db/jave/3d/3d_diagonal.flf similarity index 100% rename from db/jave/3d/3d_diagonal.flf rename to static/db/jave/3d/3d_diagonal.flf diff --git a/static/db/jave/3d/3d_diagonal.svg b/static/db/jave/3d/3d_diagonal.svg new file mode 100644 index 0000000..6e9fe30 --- /dev/null +++ b/static/db/jave/3d/3d_diagonal.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + , + + , + ' + .' + + ; + ' + + ' + ;. + : + ; + + + | + ,' + + : + , + + ' + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/alpha.flf b/static/db/jave/3d/alpha.flf similarity index 100% rename from db/jave/3d/alpha.flf rename to static/db/jave/3d/alpha.flf diff --git a/static/db/jave/3d/alpha.svg b/static/db/jave/3d/alpha.svg new file mode 100644 index 0000000..404e5e2 --- /dev/null +++ b/static/db/jave/3d/alpha.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/blocks.flf b/static/db/jave/3d/blocks.flf similarity index 100% rename from db/jave/3d/blocks.flf rename to static/db/jave/3d/blocks.flf diff --git a/static/db/jave/3d/blocks.svg b/static/db/jave/3d/blocks.svg new file mode 100644 index 0000000..613b241 --- /dev/null +++ b/static/db/jave/3d/blocks.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/chiseled.flf b/static/db/jave/3d/chiseled.flf similarity index 100% rename from db/jave/3d/chiseled.flf rename to static/db/jave/3d/chiseled.flf diff --git a/static/db/jave/3d/chiseled.svg b/static/db/jave/3d/chiseled.svg new file mode 100644 index 0000000..8dfdb7c --- /dev/null +++ b/static/db/jave/3d/chiseled.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + , + . + + .' + + + + + + + , + + + + + , + + + + + + + . + + + . + + ' + ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/henry3d.flf b/static/db/jave/3d/henry3d.flf similarity index 100% rename from db/jave/3d/henry3d.flf rename to static/db/jave/3d/henry3d.flf diff --git a/static/db/jave/3d/henry3d.svg b/static/db/jave/3d/henry3d.svg new file mode 100644 index 0000000..2c16c45 --- /dev/null +++ b/static/db/jave/3d/henry3d.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + L + + J + J + L + J + L + L + J + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/impossible.flf b/static/db/jave/3d/impossible.flf similarity index 100% rename from db/jave/3d/impossible.flf rename to static/db/jave/3d/impossible.flf diff --git a/static/db/jave/3d/impossible.svg b/static/db/jave/3d/impossible.svg new file mode 100644 index 0000000..1837955 --- /dev/null +++ b/static/db/jave/3d/impossible.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/sub-zero.flf b/static/db/jave/3d/sub-zero.flf similarity index 100% rename from db/jave/3d/sub-zero.flf rename to static/db/jave/3d/sub-zero.flf diff --git a/static/db/jave/3d/sub-zero.svg b/static/db/jave/3d/sub-zero.svg new file mode 100644 index 0000000..afbc2c8 --- /dev/null +++ b/static/db/jave/3d/sub-zero.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/3d/swampland.flf b/static/db/jave/3d/swampland.flf similarity index 100% rename from db/jave/3d/swampland.flf rename to static/db/jave/3d/swampland.flf diff --git a/static/db/jave/3d/swampland.svg b/static/db/jave/3d/swampland.svg new file mode 100644 index 0000000..7bee33d --- /dev/null +++ b/static/db/jave/3d/swampland.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + : + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/braced.flf b/static/db/jave/block/braced.flf similarity index 100% rename from db/jave/block/braced.flf rename to static/db/jave/block/braced.flf diff --git a/static/db/jave/block/braced.svg b/static/db/jave/block/braced.svg new file mode 100644 index 0000000..3aff9ef --- /dev/null +++ b/static/db/jave/block/braced.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + {} + ` + ' + + + + + + + + + + + + + + + + diff --git a/db/jave/block/crazy.flf b/static/db/jave/block/crazy.flf similarity index 100% rename from db/jave/block/crazy.flf rename to static/db/jave/block/crazy.flf diff --git a/static/db/jave/block/crazy.svg b/static/db/jave/block/crazy.svg new file mode 100644 index 0000000..ab3ff1f --- /dev/null +++ b/static/db/jave/block/crazy.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + . + + '. + + `" + ' + '' + . + + , + + ' + `" + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/ghoulish.flf b/static/db/jave/block/ghoulish.flf similarity index 100% rename from db/jave/block/ghoulish.flf rename to static/db/jave/block/ghoulish.flf diff --git a/static/db/jave/block/ghoulish.svg b/static/db/jave/block/ghoulish.svg new file mode 100644 index 0000000..6c3a8bd --- /dev/null +++ b/static/db/jave/block/ghoulish.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + ` + ' + + ' + + ' + ,' + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/glenyn.flf b/static/db/jave/block/glenyn.flf similarity index 100% rename from db/jave/block/glenyn.flf rename to static/db/jave/block/glenyn.flf diff --git a/static/db/jave/block/glenyn.svg b/static/db/jave/block/glenyn.svg new file mode 100644 index 0000000..c72fca6 --- /dev/null +++ b/static/db/jave/block/glenyn.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + . + + + + + + + + + + diff --git a/db/jave/block/jacky.flf b/static/db/jave/block/jacky.flf similarity index 100% rename from db/jave/block/jacky.flf rename to static/db/jave/block/jacky.flf diff --git a/static/db/jave/block/jacky.svg b/static/db/jave/block/jacky.svg new file mode 100644 index 0000000..308c1fd --- /dev/null +++ b/static/db/jave/block/jacky.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/lineblocks.flf b/static/db/jave/block/lineblocks.flf similarity index 100% rename from db/jave/block/lineblocks.flf rename to static/db/jave/block/lineblocks.flf diff --git a/static/db/jave/block/lineblocks.svg b/static/db/jave/block/lineblocks.svg new file mode 100644 index 0000000..448a05e --- /dev/null +++ b/static/db/jave/block/lineblocks.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/merlin1.flf b/static/db/jave/block/merlin1.flf similarity index 100% rename from db/jave/block/merlin1.flf rename to static/db/jave/block/merlin1.flf diff --git a/static/db/jave/block/merlin1.svg b/static/db/jave/block/merlin1.svg new file mode 100644 index 0000000..30232f0 --- /dev/null +++ b/static/db/jave/block/merlin1.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + ' + + ' + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/merlin2.flf b/static/db/jave/block/merlin2.flf similarity index 100% rename from db/jave/block/merlin2.flf rename to static/db/jave/block/merlin2.flf diff --git a/static/db/jave/block/merlin2.svg b/static/db/jave/block/merlin2.svg new file mode 100644 index 0000000..63bf86c --- /dev/null +++ b/static/db/jave/block/merlin2.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + :. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/modular.flf b/static/db/jave/block/modular.flf similarity index 100% rename from db/jave/block/modular.flf rename to static/db/jave/block/modular.flf diff --git a/static/db/jave/block/modular.svg b/static/db/jave/block/modular.svg new file mode 100644 index 0000000..ee35653 --- /dev/null +++ b/static/db/jave/block/modular.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/red_phoenix.flf b/static/db/jave/block/red_phoenix.flf similarity index 100% rename from db/jave/block/red_phoenix.flf rename to static/db/jave/block/red_phoenix.flf diff --git a/static/db/jave/block/red_phoenix.svg b/static/db/jave/block/red_phoenix.svg new file mode 100644 index 0000000..85f94f1 --- /dev/null +++ b/static/db/jave/block/red_phoenix.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/smallcaps.flf b/static/db/jave/block/smallcaps.flf similarity index 100% rename from db/jave/block/smallcaps.flf rename to static/db/jave/block/smallcaps.flf diff --git a/static/db/jave/block/smallcaps.svg b/static/db/jave/block/smallcaps.svg new file mode 100644 index 0000000..74fad50 --- /dev/null +++ b/static/db/jave/block/smallcaps.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/soft.flf b/static/db/jave/block/soft.flf similarity index 100% rename from db/jave/block/soft.flf rename to static/db/jave/block/soft.flf diff --git a/static/db/jave/block/soft.svg b/static/db/jave/block/soft.svg new file mode 100644 index 0000000..41fc4e5 --- /dev/null +++ b/static/db/jave/block/soft.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + O + | + | + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/spliff.flf b/static/db/jave/block/spliff.flf similarity index 100% rename from db/jave/block/spliff.flf rename to static/db/jave/block/spliff.flf diff --git a/static/db/jave/block/spliff.svg b/static/db/jave/block/spliff.svg new file mode 100644 index 0000000..3537961 --- /dev/null +++ b/static/db/jave/block/spliff.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/stforek.flf b/static/db/jave/block/stforek.flf similarity index 100% rename from db/jave/block/stforek.flf rename to static/db/jave/block/stforek.flf diff --git a/static/db/jave/block/stforek.svg b/static/db/jave/block/stforek.svg new file mode 100644 index 0000000..de60584 --- /dev/null +++ b/static/db/jave/block/stforek.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + | + | + + + + + + + + + + + + + + + + diff --git a/db/jave/block/sweet.flf b/static/db/jave/block/sweet.flf similarity index 100% rename from db/jave/block/sweet.flf rename to static/db/jave/block/sweet.flf diff --git a/static/db/jave/block/sweet.svg b/static/db/jave/block/sweet.svg new file mode 100644 index 0000000..ebaf1bb --- /dev/null +++ b/static/db/jave/block/sweet.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + . + + , + + ; + '` + ' + + | + ; + ; + ' + ' + `. + + .' + + . + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/block/test1.flf b/static/db/jave/block/test1.flf similarity index 100% rename from db/jave/block/test1.flf rename to static/db/jave/block/test1.flf diff --git a/static/db/jave/block/test1.svg b/static/db/jave/block/test1.svg new file mode 100644 index 0000000..a0c3d69 --- /dev/null +++ b/static/db/jave/block/test1.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + % + `BB' + `BB' + + + + + + + + + + diff --git a/db/jave/block/varsity.flf b/static/db/jave/block/varsity.flf similarity index 100% rename from db/jave/block/varsity.flf rename to static/db/jave/block/varsity.flf diff --git a/static/db/jave/block/varsity.svg b/static/db/jave/block/varsity.svg new file mode 100644 index 0000000..b289b3e --- /dev/null +++ b/static/db/jave/block/varsity.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/code/ICL-1900.flf b/static/db/jave/code/ICL-1900.flf similarity index 100% rename from db/jave/code/ICL-1900.flf rename to static/db/jave/code/ICL-1900.flf diff --git a/db/jave/code/binary.flf b/static/db/jave/code/binary.flf similarity index 100% rename from db/jave/code/binary.flf rename to static/db/jave/code/binary.flf diff --git a/db/jave/code/dosrebel.flf b/static/db/jave/code/dosrebel.flf similarity index 100% rename from db/jave/code/dosrebel.flf rename to static/db/jave/code/dosrebel.flf diff --git a/db/jave/code/mnemonic.flf b/static/db/jave/code/mnemonic.flf similarity index 100% rename from db/jave/code/mnemonic.flf rename to static/db/jave/code/mnemonic.flf diff --git a/db/jave/code/morse.flf b/static/db/jave/code/morse.flf similarity index 100% rename from db/jave/code/morse.flf rename to static/db/jave/code/morse.flf diff --git a/db/jave/code/morse2.flf b/static/db/jave/code/morse2.flf similarity index 100% rename from db/jave/code/morse2.flf rename to static/db/jave/code/morse2.flf diff --git a/db/jave/dingbat/DANC4.flf b/static/db/jave/dingbat/DANC4.flf similarity index 100% rename from db/jave/dingbat/DANC4.flf rename to static/db/jave/dingbat/DANC4.flf diff --git a/db/jave/dingbat/hieroglyphs.flf b/static/db/jave/dingbat/hieroglyphs.flf similarity index 100% rename from db/jave/dingbat/hieroglyphs.flf rename to static/db/jave/dingbat/hieroglyphs.flf diff --git a/db/jave/directions/flipped.flf b/static/db/jave/directions/flipped.flf similarity index 100% rename from db/jave/directions/flipped.flf rename to static/db/jave/directions/flipped.flf diff --git a/db/jave/directions/horizontalleft.flf b/static/db/jave/directions/horizontalleft.flf similarity index 100% rename from db/jave/directions/horizontalleft.flf rename to static/db/jave/directions/horizontalleft.flf diff --git a/db/jave/directions/horizontalright.flf b/static/db/jave/directions/horizontalright.flf similarity index 100% rename from db/jave/directions/horizontalright.flf rename to static/db/jave/directions/horizontalright.flf diff --git a/db/jave/directions/knob.flf b/static/db/jave/directions/knob.flf similarity index 100% rename from db/jave/directions/knob.flf rename to static/db/jave/directions/knob.flf diff --git a/db/jave/directions/rotated.flf b/static/db/jave/directions/rotated.flf similarity index 100% rename from db/jave/directions/rotated.flf rename to static/db/jave/directions/rotated.flf diff --git a/db/jave/effect/dancingfont.flf b/static/db/jave/effect/dancingfont.flf similarity index 100% rename from db/jave/effect/dancingfont.flf rename to static/db/jave/effect/dancingfont.flf diff --git a/static/db/jave/effect/dancingfont.svg b/static/db/jave/effect/dancingfont.svg new file mode 100644 index 0000000..572f960 --- /dev/null +++ b/static/db/jave/effect/dancingfont.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + U + " + u + + > + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/fire_font-k.flf b/static/db/jave/effect/fire_font-k.flf similarity index 100% rename from db/jave/effect/fire_font-k.flf rename to static/db/jave/effect/fire_font-k.flf diff --git a/static/db/jave/effect/fire_font-k.svg b/static/db/jave/effect/fire_font-k.svg new file mode 100644 index 0000000..26f058d --- /dev/null +++ b/static/db/jave/effect/fire_font-k.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/fire_font-s.flf b/static/db/jave/effect/fire_font-s.flf similarity index 100% rename from db/jave/effect/fire_font-s.flf rename to static/db/jave/effect/fire_font-s.flf diff --git a/static/db/jave/effect/fire_font-s.svg b/static/db/jave/effect/fire_font-s.svg new file mode 100644 index 0000000..26f058d --- /dev/null +++ b/static/db/jave/effect/fire_font-s.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/flowerpower.flf b/static/db/jave/effect/flowerpower.flf similarity index 100% rename from db/jave/effect/flowerpower.flf rename to static/db/jave/effect/flowerpower.flf diff --git a/static/db/jave/effect/flowerpower.svg b/static/db/jave/effect/flowerpower.svg new file mode 100644 index 0000000..b4086af --- /dev/null +++ b/static/db/jave/effect/flowerpower.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + ' + ` + ' + ` + + ' + + o + '. + , + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/funface.flf b/static/db/jave/effect/funface.flf similarity index 100% rename from db/jave/effect/funface.flf rename to static/db/jave/effect/funface.flf diff --git a/static/db/jave/effect/funface.svg b/static/db/jave/effect/funface.svg new file mode 100644 index 0000000..4256d04 --- /dev/null +++ b/static/db/jave/effect/funface.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + O + + | + | + + , + + + ' + ' + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/funfaces.flf b/static/db/jave/effect/funfaces.flf similarity index 100% rename from db/jave/effect/funfaces.flf rename to static/db/jave/effect/funfaces.flf diff --git a/static/db/jave/effect/funfaces.svg b/static/db/jave/effect/funfaces.svg new file mode 100644 index 0000000..4256d04 --- /dev/null +++ b/static/db/jave/effect/funfaces.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + O + + | + | + + , + + + ' + ' + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/ghost.flf b/static/db/jave/effect/ghost.flf similarity index 100% rename from db/jave/effect/ghost.flf rename to static/db/jave/effect/ghost.flf diff --git a/static/db/jave/effect/ghost.svg b/static/db/jave/effect/ghost.svg new file mode 100644 index 0000000..5195566 --- /dev/null +++ b/static/db/jave/effect/ghost.svg @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + ' + OO + . + + . + . + + ' + | + + . + | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/lildevil.flf b/static/db/jave/effect/lildevil.flf similarity index 100% rename from db/jave/effect/lildevil.flf rename to static/db/jave/effect/lildevil.flf diff --git a/static/db/jave/effect/lildevil.svg b/static/db/jave/effect/lildevil.svg new file mode 100644 index 0000000..b863175 --- /dev/null +++ b/static/db/jave/effect/lildevil.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + ` + + ' + + O + . + , + `. + ' + .' + | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/rammstein.flf b/static/db/jave/effect/rammstein.flf similarity index 100% rename from db/jave/effect/rammstein.flf rename to static/db/jave/effect/rammstein.flf diff --git a/static/db/jave/effect/rammstein.svg b/static/db/jave/effect/rammstein.svg new file mode 100644 index 0000000..eca6fe1 --- /dev/null +++ b/static/db/jave/effect/rammstein.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/train.flf b/static/db/jave/effect/train.flf similarity index 100% rename from db/jave/effect/train.flf rename to static/db/jave/effect/train.flf diff --git a/static/db/jave/effect/train.svg b/static/db/jave/effect/train.svg new file mode 100644 index 0000000..53b13c5 --- /dev/null +++ b/static/db/jave/effect/train.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + " + " + 0 + + 0 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/twisted.flf b/static/db/jave/effect/twisted.flf similarity index 100% rename from db/jave/effect/twisted.flf rename to static/db/jave/effect/twisted.flf diff --git a/static/db/jave/effect/twisted.svg b/static/db/jave/effect/twisted.svg new file mode 100644 index 0000000..7507e78 --- /dev/null +++ b/static/db/jave/effect/twisted.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/effect/wetletter.flf b/static/db/jave/effect/wetletter.flf similarity index 100% rename from db/jave/effect/wetletter.flf rename to static/db/jave/effect/wetletter.flf diff --git a/static/db/jave/effect/wetletter.svg b/static/db/jave/effect/wetletter.svg new file mode 100644 index 0000000..ca42140 --- /dev/null +++ b/static/db/jave/effect/wetletter.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + ( + + ) + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/fill/4max.flf b/static/db/jave/fill/4max.flf similarity index 100% rename from db/jave/fill/4max.flf rename to static/db/jave/fill/4max.flf diff --git a/static/db/jave/fill/4max.svg b/static/db/jave/fill/4max.svg new file mode 100644 index 0000000..987da55 --- /dev/null +++ b/static/db/jave/fill/4max.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + db + dPYb + dP + + Yb + dP + Yb + + + diff --git a/db/jave/fill/Georgia11.flf b/static/db/jave/fill/Georgia11.flf similarity index 100% rename from db/jave/fill/Georgia11.flf rename to static/db/jave/fill/Georgia11.flf diff --git a/static/db/jave/fill/Georgia11.svg b/static/db/jave/fill/Georgia11.svg new file mode 100644 index 0000000..d2cff7d --- /dev/null +++ b/static/db/jave/fill/Georgia11.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + db + ;MM: + ,V^MM. + ,M + `MM + AbmmmqMA + A' + VML + .AMA. + .AMMA. + diff --git a/db/jave/fill/alligator3.flf b/static/db/jave/fill/alligator3.flf similarity index 100% rename from db/jave/fill/alligator3.flf rename to static/db/jave/fill/alligator3.flf diff --git a/static/db/jave/fill/alligator3.svg b/static/db/jave/fill/alligator3.svg new file mode 100644 index 0000000..a6302d9 --- /dev/null +++ b/static/db/jave/fill/alligator3.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + : + + + + + + : + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/fill/amc3liv1.flf b/static/db/jave/fill/amc3liv1.flf similarity index 100% rename from db/jave/fill/amc3liv1.flf rename to static/db/jave/fill/amc3liv1.flf diff --git a/static/db/jave/fill/amc3liv1.svg b/static/db/jave/fill/amc3liv1.svg new file mode 100644 index 0000000..cbbfabd --- /dev/null +++ b/static/db/jave/fill/amc3liv1.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + .:;S;:. + S + S + `:;S;:' + diff --git a/db/jave/fill/amcaaa01.flf b/static/db/jave/fill/amcaaa01.flf similarity index 100% rename from db/jave/fill/amcaaa01.flf rename to static/db/jave/fill/amcaaa01.flf diff --git a/static/db/jave/fill/amcaaa01.svg b/static/db/jave/fill/amcaaa01.svg new file mode 100644 index 0000000..009006e --- /dev/null +++ b/static/db/jave/fill/amcaaa01.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + .S + + SSSs + .SS + + SSSSS + S%S + SSSS + S%S + S%S + S%S + SSSS%S + S&S + SSS%S + S&S + S&S + S&S + S&S + S*S + S&S + S*S + S*S + S*S + S*S + SSS + S*S + SP + Y + diff --git a/db/jave/fill/amcneko.flf b/static/db/jave/fill/amcneko.flf similarity index 100% rename from db/jave/fill/amcneko.flf rename to static/db/jave/fill/amcneko.flf diff --git a/static/db/jave/fill/amcneko.svg b/static/db/jave/fill/amcneko.svg new file mode 100644 index 0000000..5a85bee --- /dev/null +++ b/static/db/jave/fill/amcneko.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + .sSSSSs. + SSSSSSSSSs. + S + SSS + SSSSS + S + SS + SSSSS + S + + + SSsSSSSS + S:::S + SSSSS + S;;;S + SSSSS + S%%%S + SSSSS + SSSSS + SSSSS + diff --git a/db/jave/fill/amcslash.flf b/static/db/jave/fill/amcslash.flf similarity index 100% rename from db/jave/fill/amcslash.flf rename to static/db/jave/fill/amcslash.flf diff --git a/static/db/jave/fill/amcslash.svg b/static/db/jave/fill/amcslash.svg new file mode 100644 index 0000000..3191f7c --- /dev/null +++ b/static/db/jave/fill/amcslash.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + .s5SSSs. + SS. + S%S + S%S + S%S + S%S + `:; + ;,. + ;:' + sS + SS + SSSs. + SS + SS + SS + :; + diff --git a/db/jave/fill/amctubes.flf b/static/db/jave/fill/amctubes.flf similarity index 100% rename from db/jave/fill/amctubes.flf rename to static/db/jave/fill/amctubes.flf diff --git a/static/db/jave/fill/amctubes.svg b/static/db/jave/fill/amctubes.svg new file mode 100644 index 0000000..5421559 --- /dev/null +++ b/static/db/jave/fill/amctubes.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + d + S + S + S + S + S + P + s. + + `b + sSSO + O + O + P + diff --git a/db/jave/fill/bolger.flf b/static/db/jave/fill/bolger.flf similarity index 100% rename from db/jave/fill/bolger.flf rename to static/db/jave/fill/bolger.flf diff --git a/static/db/jave/fill/bolger.svg b/static/db/jave/fill/bolger.svg new file mode 100644 index 0000000..71307b3 --- /dev/null +++ b/static/db/jave/fill/bolger.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + e + d8b + Y88b + Y88b + Y88b + Y88b + + + + + diff --git a/db/jave/fill/bright.flf b/static/db/jave/fill/bright.flf similarity index 100% rename from db/jave/fill/bright.flf rename to static/db/jave/fill/bright.flf diff --git a/static/db/jave/fill/bright.svg b/static/db/jave/fill/bright.svg new file mode 100644 index 0000000..abf2225 --- /dev/null +++ b/static/db/jave/fill/bright.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + . + + + + + + + . + . + + + + + + + + + . + . + + + + + + + + + + + . + . + + + + + .. + + + + + . + . + + + .. + + + . + ........ + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/fill/defleppard.flf b/static/db/jave/fill/defleppard.flf similarity index 100% rename from db/jave/fill/defleppard.flf rename to static/db/jave/fill/defleppard.flf diff --git a/static/db/jave/fill/defleppard.svg b/static/db/jave/fill/defleppard.svg new file mode 100644 index 0000000..bc3ace7 --- /dev/null +++ b/static/db/jave/fill/defleppard.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + .. + ;W, + j + + + + + , + G + + + + + + + , + :E + + + + + + + , + ;W + + + DG + + + + + , + j + + + + + DW + + + + + , + G + + + + i,,G + + + + + , + :K#K: + L + + + + + , + ; + + + + D. + L + + + , + ,,, + .,, + diff --git a/db/jave/fill/filter.flf b/static/db/jave/fill/filter.flf similarity index 100% rename from db/jave/fill/filter.flf rename to static/db/jave/fill/filter.flf diff --git a/static/db/jave/fill/filter.svg b/static/db/jave/fill/filter.svg new file mode 100644 index 0000000..e822986 --- /dev/null +++ b/static/db/jave/fill/filter.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + ,8b. + 88'8o + 88PPY8. + 8b + `Y' + diff --git a/db/jave/fill/georgi16.flf b/static/db/jave/fill/georgi16.flf similarity index 100% rename from db/jave/fill/georgi16.flf rename to static/db/jave/fill/georgi16.flf diff --git a/static/db/jave/fill/georgi16.svg b/static/db/jave/fill/georgi16.svg new file mode 100644 index 0000000..c283f16 --- /dev/null +++ b/static/db/jave/fill/georgi16.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + dM. + ,MMb + d'YM. + ,P + `Mb + d' + YM. + ,P + `Mb + d' + YM. + ,MMMMMMMMb + d' + YM. + + dM + + + dMM + + diff --git a/db/jave/fill/konto.flf b/static/db/jave/fill/konto.flf similarity index 100% rename from db/jave/fill/konto.flf rename to static/db/jave/fill/konto.flf diff --git a/static/db/jave/fill/konto.svg b/static/db/jave/fill/konto.svg new file mode 100644 index 0000000..ee8c8c1 --- /dev/null +++ b/static/db/jave/fill/konto.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + .^. + I^I + diff --git a/db/jave/fill/kontoslant.flf b/static/db/jave/fill/kontoslant.flf similarity index 100% rename from db/jave/fill/kontoslant.flf rename to static/db/jave/fill/kontoslant.flf diff --git a/static/db/jave/fill/kontoslant.svg b/static/db/jave/fill/kontoslant.svg new file mode 100644 index 0000000..87afe84 --- /dev/null +++ b/static/db/jave/fill/kontoslant.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + 1 + diff --git a/db/jave/fill/nancyj-improved.flf b/static/db/jave/fill/nancyj-improved.flf similarity index 100% rename from db/jave/fill/nancyj-improved.flf rename to static/db/jave/fill/nancyj-improved.flf diff --git a/static/db/jave/fill/nancyj-improved.svg b/static/db/jave/fill/nancyj-improved.svg new file mode 100644 index 0000000..ab72dcc --- /dev/null +++ b/static/db/jave/fill/nancyj-improved.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + .d888888 + d8' + 88 + 88aaaaa88a + 88 + 88 + 88 + 88 + 88 + 88 + diff --git a/db/jave/fill/nscript.flf b/static/db/jave/fill/nscript.flf similarity index 100% rename from db/jave/fill/nscript.flf rename to static/db/jave/fill/nscript.flf diff --git a/static/db/jave/fill/nscript.svg b/static/db/jave/fill/nscript.svg new file mode 100644 index 0000000..9976f52 --- /dev/null +++ b/static/db/jave/fill/nscript.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + ,ggg, + dP + 8I + dP + 88 + dP + 88 + ,8' + 88 + d88888888 + + ,8" + 88 + dP" + ,8P + Y8 + Yb, + + ,dP + `8b, + `Y8 + + Y8P + diff --git a/db/jave/fill/oldbanner.flf b/static/db/jave/fill/oldbanner.flf similarity index 100% rename from db/jave/fill/oldbanner.flf rename to static/db/jave/fill/oldbanner.flf diff --git a/static/db/jave/fill/oldbanner.svg b/static/db/jave/fill/oldbanner.svg new file mode 100644 index 0000000..745f34e --- /dev/null +++ b/static/db/jave/fill/oldbanner.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + # + # + # + # + # + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/fill/smpoison.flf b/static/db/jave/fill/smpoison.flf similarity index 100% rename from db/jave/fill/smpoison.flf rename to static/db/jave/fill/smpoison.flf diff --git a/static/db/jave/fill/smpoison.svg b/static/db/jave/fill/smpoison.svg new file mode 100644 index 0000000..9eb0f4f --- /dev/null +++ b/static/db/jave/fill/smpoison.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + @@@@@@ + @@! + @@@ + @ + + @!@ + + @ + + ! + : + ! + diff --git a/db/jave/fill/tengwar.flf b/static/db/jave/fill/tengwar.flf similarity index 100% rename from db/jave/fill/tengwar.flf rename to static/db/jave/fill/tengwar.flf diff --git a/static/db/jave/fill/tengwar.svg b/static/db/jave/fill/tengwar.svg new file mode 100644 index 0000000..38efe94 --- /dev/null +++ b/static/db/jave/fill/tengwar.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + db + db + db + 'Yb + 88 + 88 + .8P + diff --git a/db/jave/fill/tiles.flf b/static/db/jave/fill/tiles.flf similarity index 100% rename from db/jave/fill/tiles.flf rename to static/db/jave/fill/tiles.flf diff --git a/static/db/jave/fill/tiles.svg b/static/db/jave/fill/tiles.svg new file mode 100644 index 0000000..b7a812e --- /dev/null +++ b/static/db/jave/fill/tiles.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + [. + [. + .. + [. + [.. + [.. + [.. + [...... + [.. + [.. + [.. + [.. + [.. + diff --git a/db/jave/frame/bear.flf b/static/db/jave/frame/bear.flf similarity index 100% rename from db/jave/frame/bear.flf rename to static/db/jave/frame/bear.flf diff --git a/db/jave/frame/cards.flf b/static/db/jave/frame/cards.flf similarity index 100% rename from db/jave/frame/cards.flf rename to static/db/jave/frame/cards.flf diff --git a/db/jave/frame/heart_left.flf b/static/db/jave/frame/heart_left.flf similarity index 100% rename from db/jave/frame/heart_left.flf rename to static/db/jave/frame/heart_left.flf diff --git a/db/jave/frame/heart_right.flf b/static/db/jave/frame/heart_right.flf similarity index 100% rename from db/jave/frame/heart_right.flf rename to static/db/jave/frame/heart_right.flf diff --git a/db/jave/frame/keyboard.flf b/static/db/jave/frame/keyboard.flf similarity index 100% rename from db/jave/frame/keyboard.flf rename to static/db/jave/frame/keyboard.flf diff --git a/db/jave/frame/puzzle.flf b/static/db/jave/frame/puzzle.flf similarity index 100% rename from db/jave/frame/puzzle.flf rename to static/db/jave/frame/puzzle.flf diff --git a/db/jave/non-latin/greek.flf b/static/db/jave/non-latin/greek.flf similarity index 100% rename from db/jave/non-latin/greek.flf rename to static/db/jave/non-latin/greek.flf diff --git a/db/jave/non-latin/jerusalem.flf b/static/db/jave/non-latin/jerusalem.flf similarity index 100% rename from db/jave/non-latin/jerusalem.flf rename to static/db/jave/non-latin/jerusalem.flf diff --git a/db/jave/non-latin/moscow.flf b/static/db/jave/non-latin/moscow.flf similarity index 100% rename from db/jave/non-latin/moscow.flf rename to static/db/jave/non-latin/moscow.flf diff --git a/db/jave/non-latin/mshebrew210.flf b/static/db/jave/non-latin/mshebrew210.flf similarity index 100% rename from db/jave/non-latin/mshebrew210.flf rename to static/db/jave/non-latin/mshebrew210.flf diff --git a/db/jave/non-latin/ntgreek.flf b/static/db/jave/non-latin/ntgreek.flf similarity index 100% rename from db/jave/non-latin/ntgreek.flf rename to static/db/jave/non-latin/ntgreek.flf diff --git a/db/jave/non-latin/runic.flf b/static/db/jave/non-latin/runic.flf similarity index 100% rename from db/jave/non-latin/runic.flf rename to static/db/jave/non-latin/runic.flf diff --git a/db/jave/non-latin/smtengwar.flf b/static/db/jave/non-latin/smtengwar.flf similarity index 100% rename from db/jave/non-latin/smtengwar.flf rename to static/db/jave/non-latin/smtengwar.flf diff --git a/db/jave/outline/amcrazo2.flf b/static/db/jave/outline/amcrazo2.flf similarity index 100% rename from db/jave/outline/amcrazo2.flf rename to static/db/jave/outline/amcrazo2.flf diff --git a/static/db/jave/outline/amcrazo2.svg b/static/db/jave/outline/amcrazo2.svg new file mode 100644 index 0000000..0413d70 --- /dev/null +++ b/static/db/jave/outline/amcrazo2.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + ` + + + . + .. + + + + + + + + + + + + + + diff --git a/db/jave/outline/amcrazor.flf b/static/db/jave/outline/amcrazor.flf similarity index 100% rename from db/jave/outline/amcrazor.flf rename to static/db/jave/outline/amcrazor.flf diff --git a/static/db/jave/outline/amcrazor.svg b/static/db/jave/outline/amcrazor.svg new file mode 100644 index 0000000..47aae71 --- /dev/null +++ b/static/db/jave/outline/amcrazor.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + ' + + + ` + + + + + + + + + + + + + + diff --git a/db/jave/outline/amcthin.flf b/static/db/jave/outline/amcthin.flf similarity index 100% rename from db/jave/outline/amcthin.flf rename to static/db/jave/outline/amcthin.flf diff --git a/static/db/jave/outline/amcthin.svg b/static/db/jave/outline/amcthin.svg new file mode 100644 index 0000000..097e141 --- /dev/null +++ b/static/db/jave/outline/amcthin.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + . + + . + + . + + . + + diff --git a/db/jave/outline/amcun1.flf b/static/db/jave/outline/amcun1.flf similarity index 100% rename from db/jave/outline/amcun1.flf rename to static/db/jave/outline/amcun1.flf diff --git a/static/db/jave/outline/amcun1.svg b/static/db/jave/outline/amcun1.svg new file mode 100644 index 0000000..1189562 --- /dev/null +++ b/static/db/jave/outline/amcun1.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + ,'',,''', + ; + ;', + ; + ; + ;,' + ; + ; + ;', + ; + ; + ; + ; + ; + ; + ; + ; + ; + ',,' + ',,' + diff --git a/db/jave/outline/broadway_kb.flf b/static/db/jave/outline/broadway_kb.flf similarity index 100% rename from db/jave/outline/broadway_kb.flf rename to static/db/jave/outline/broadway_kb.flf diff --git a/static/db/jave/outline/broadway_kb.svg b/static/db/jave/outline/broadway_kb.svg new file mode 100644 index 0000000..e7bd8f0 --- /dev/null +++ b/static/db/jave/outline/broadway_kb.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/outline/doubleshorts.flf b/static/db/jave/outline/doubleshorts.flf similarity index 100% rename from db/jave/outline/doubleshorts.flf rename to static/db/jave/outline/doubleshorts.flf diff --git a/static/db/jave/outline/doubleshorts.svg b/static/db/jave/outline/doubleshorts.svg new file mode 100644 index 0000000..1d3b873 --- /dev/null +++ b/static/db/jave/outline/doubleshorts.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/pattern/arrows.flf b/static/db/jave/pattern/arrows.flf similarity index 100% rename from db/jave/pattern/arrows.flf rename to static/db/jave/pattern/arrows.flf diff --git a/static/db/jave/pattern/arrows.svg b/static/db/jave/pattern/arrows.svg new file mode 100644 index 0000000..d18e8c4 --- /dev/null +++ b/static/db/jave/pattern/arrows.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + > + + > + + + + > + > + + > + + + > + > + + + > + > + + + > + > + + + > + + + + > + > + + + > + > + + + > + > + + + > + > + + + > + diff --git a/db/jave/pattern/peaksslant.flf b/static/db/jave/pattern/peaksslant.flf similarity index 100% rename from db/jave/pattern/peaksslant.flf rename to static/db/jave/pattern/peaksslant.flf diff --git a/static/db/jave/pattern/peaksslant.svg b/static/db/jave/pattern/peaksslant.svg new file mode 100644 index 0000000..9b10eec --- /dev/null +++ b/static/db/jave/pattern/peaksslant.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/pattern/reverse.flf b/static/db/jave/pattern/reverse.flf similarity index 100% rename from db/jave/pattern/reverse.flf rename to static/db/jave/pattern/reverse.flf diff --git a/static/db/jave/pattern/reverse.svg b/static/db/jave/pattern/reverse.svg new file mode 100644 index 0000000..fe1d640 --- /dev/null +++ b/static/db/jave/pattern/reverse.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/pattern/s-relief.flf b/static/db/jave/pattern/s-relief.flf similarity index 100% rename from db/jave/pattern/s-relief.flf rename to static/db/jave/pattern/s-relief.flf diff --git a/static/db/jave/pattern/s-relief.svg b/static/db/jave/pattern/s-relief.svg new file mode 100644 index 0000000..0f7403e --- /dev/null +++ b/static/db/jave/pattern/s-relief.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/pattern/starstrips.flf b/static/db/jave/pattern/starstrips.flf similarity index 100% rename from db/jave/pattern/starstrips.flf rename to static/db/jave/pattern/starstrips.flf diff --git a/static/db/jave/pattern/starstrips.svg b/static/db/jave/pattern/starstrips.svg new file mode 100644 index 0000000..5133c61 --- /dev/null +++ b/static/db/jave/pattern/starstrips.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/pattern/tubular.flf b/static/db/jave/pattern/tubular.flf similarity index 100% rename from db/jave/pattern/tubular.flf rename to static/db/jave/pattern/tubular.flf diff --git a/static/db/jave/pattern/tubular.svg b/static/db/jave/pattern/tubular.svg new file mode 100644 index 0000000..773d6f9 --- /dev/null +++ b/static/db/jave/pattern/tubular.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/script/cola.flf b/static/db/jave/script/cola.flf similarity index 100% rename from db/jave/script/cola.flf rename to static/db/jave/script/cola.flf diff --git a/static/db/jave/script/cola.svg b/static/db/jave/script/cola.svg new file mode 100644 index 0000000..734a326 --- /dev/null +++ b/static/db/jave/script/cola.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + . + . + + .' + :' + . + ' + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/script/dietcola.flf b/static/db/jave/script/dietcola.flf similarity index 100% rename from db/jave/script/dietcola.flf rename to static/db/jave/script/dietcola.flf diff --git a/static/db/jave/script/dietcola.svg b/static/db/jave/script/dietcola.svg new file mode 100644 index 0000000..734a326 --- /dev/null +++ b/static/db/jave/script/dietcola.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + . + . + + .' + :' + . + ' + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/script/santaclara.flf b/static/db/jave/script/santaclara.flf similarity index 100% rename from db/jave/script/santaclara.flf rename to static/db/jave/script/santaclara.flf diff --git a/static/db/jave/script/santaclara.svg b/static/db/jave/script/santaclara.svg new file mode 100644 index 0000000..2d3a159 --- /dev/null +++ b/static/db/jave/script/santaclara.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + , + + + + + + + + + diff --git a/db/jave/stroke/1row.flf b/static/db/jave/stroke/1row.flf similarity index 100% rename from db/jave/stroke/1row.flf rename to static/db/jave/stroke/1row.flf diff --git a/static/db/jave/stroke/1row.svg b/static/db/jave/stroke/1row.svg new file mode 100644 index 0000000..7f74bf5 --- /dev/null +++ b/static/db/jave/stroke/1row.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/stroke/B1FF.flf b/static/db/jave/stroke/B1FF.flf similarity index 100% rename from db/jave/stroke/B1FF.flf rename to static/db/jave/stroke/B1FF.flf diff --git a/static/db/jave/stroke/B1FF.svg b/static/db/jave/stroke/B1FF.svg new file mode 100644 index 0000000..dcbf904 --- /dev/null +++ b/static/db/jave/stroke/B1FF.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/stroke/amc3line.flf b/static/db/jave/stroke/amc3line.flf similarity index 100% rename from db/jave/stroke/amc3line.flf rename to static/db/jave/stroke/amc3line.flf diff --git a/static/db/jave/stroke/amc3line.svg b/static/db/jave/stroke/amc3line.svg new file mode 100644 index 0000000..63d7d62 --- /dev/null +++ b/static/db/jave/stroke/amc3line.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + ` + + + + + + + + + diff --git a/db/jave/stroke/amcslder.flf b/static/db/jave/stroke/amcslder.flf similarity index 100% rename from db/jave/stroke/amcslder.flf rename to static/db/jave/stroke/amcslder.flf diff --git a/static/db/jave/stroke/amcslder.svg b/static/db/jave/stroke/amcslder.svg new file mode 100644 index 0000000..e794274 --- /dev/null +++ b/static/db/jave/stroke/amcslder.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + '`` + '. + + . + . + diff --git a/db/jave/stroke/ascii_new_roman.flf b/static/db/jave/stroke/ascii_new_roman.flf similarity index 100% rename from db/jave/stroke/ascii_new_roman.flf rename to static/db/jave/stroke/ascii_new_roman.flf diff --git a/static/db/jave/stroke/ascii_new_roman.svg b/static/db/jave/stroke/ascii_new_roman.svg new file mode 100644 index 0000000..c0511b6 --- /dev/null +++ b/static/db/jave/stroke/ascii_new_roman.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + , + , + + + + + + + + + + + diff --git a/db/jave/stroke/benjamin.flf b/static/db/jave/stroke/benjamin.flf similarity index 100% rename from db/jave/stroke/benjamin.flf rename to static/db/jave/stroke/benjamin.flf diff --git a/static/db/jave/stroke/benjamin.svg b/static/db/jave/stroke/benjamin.svg new file mode 100644 index 0000000..dcbf904 --- /dev/null +++ b/static/db/jave/stroke/benjamin.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/stroke/bigfig.flf b/static/db/jave/stroke/bigfig.flf similarity index 100% rename from db/jave/stroke/bigfig.flf rename to static/db/jave/stroke/bigfig.flf diff --git a/static/db/jave/stroke/bigfig.svg b/static/db/jave/stroke/bigfig.svg new file mode 100644 index 0000000..4149fac --- /dev/null +++ b/static/db/jave/stroke/bigfig.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/stroke/cygnet.flf b/static/db/jave/stroke/cygnet.flf similarity index 100% rename from db/jave/stroke/cygnet.flf rename to static/db/jave/stroke/cygnet.flf diff --git a/static/db/jave/stroke/cygnet.svg b/static/db/jave/stroke/cygnet.svg new file mode 100644 index 0000000..4dff90f --- /dev/null +++ b/static/db/jave/stroke/cygnet.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + ' + ' + + + + + + diff --git a/db/jave/stroke/muzzle.flf b/static/db/jave/stroke/muzzle.flf similarity index 100% rename from db/jave/stroke/muzzle.flf rename to static/db/jave/stroke/muzzle.flf diff --git a/static/db/jave/stroke/muzzle.svg b/static/db/jave/stroke/muzzle.svg new file mode 100644 index 0000000..f2e53e4 --- /dev/null +++ b/static/db/jave/stroke/muzzle.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + >< + + + + + + diff --git a/db/jave/stroke/shimrod.flf b/static/db/jave/stroke/shimrod.flf similarity index 100% rename from db/jave/stroke/shimrod.flf rename to static/db/jave/stroke/shimrod.flf diff --git a/static/db/jave/stroke/shimrod.svg b/static/db/jave/stroke/shimrod.svg new file mode 100644 index 0000000..c7fc113 --- /dev/null +++ b/static/db/jave/stroke/shimrod.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + ,. + + + + + + + + diff --git a/db/jave/stroke/stampate.flf b/static/db/jave/stroke/stampate.flf similarity index 100% rename from db/jave/stroke/stampate.flf rename to static/db/jave/stroke/stampate.flf diff --git a/static/db/jave/stroke/stampate.svg b/static/db/jave/stroke/stampate.svg new file mode 100644 index 0000000..07c2f69 --- /dev/null +++ b/static/db/jave/stroke/stampate.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + , + ,' + + + + + + + + + + + diff --git a/db/jave/stroke/swan.flf b/static/db/jave/stroke/swan.flf similarity index 100% rename from db/jave/stroke/swan.flf rename to static/db/jave/stroke/swan.flf diff --git a/static/db/jave/stroke/swan.svg b/static/db/jave/stroke/swan.svg new file mode 100644 index 0000000..2671745 --- /dev/null +++ b/static/db/jave/stroke/swan.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + ' + ` + + + + + + diff --git a/db/jave/stroke/wavy.flf b/static/db/jave/stroke/wavy.flf similarity index 100% rename from db/jave/stroke/wavy.flf rename to static/db/jave/stroke/wavy.flf diff --git a/static/db/jave/stroke/wavy.svg b/static/db/jave/stroke/wavy.svg new file mode 100644 index 0000000..2ab4e79 --- /dev/null +++ b/static/db/jave/stroke/wavy.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/db/jave/stroke/wow.flf b/static/db/jave/stroke/wow.flf similarity index 100% rename from db/jave/stroke/wow.flf rename to static/db/jave/stroke/wow.flf diff --git a/static/db/jave/stroke/wow.svg b/static/db/jave/stroke/wow.svg new file mode 100644 index 0000000..8945535 --- /dev/null +++ b/static/db/jave/stroke/wow.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/base.html b/templates/base.html index 6aa467d..91500c2 100644 --- a/templates/base.html +++ b/templates/base.html @@ -11,10 +11,12 @@ - + + + - + {% block head %}{% endblock %} diff --git a/templates/catalogue.html b/templates/catalogue.html index 78addbe..1a0654e 100644 --- a/templates/catalogue.html +++ b/templates/catalogue.html @@ -5,55 +5,60 @@ {% block body %}
- -
- mini +
+ swan.flf
{% for type, type_data in collection.items()%}
{{type}} {{type_data['ascii']}} -
+
+ {% for database in databases.keys() %} {% set fonts = type_data['fonts']|selectattr('database', 'equalto', database) %} {% for f in fonts %} -
{{f['name']}}
+
+ + {{f['name']}} +
{% endfor %} {% endfor %} + see all {{type}} +
{% endfor %} +
+ {% for database, legend in databases.items() %} +
{{database}} {{legend}}
+ {% endfor %} +
+
+ -
- - - - - + class="body-class-check" value="check-fix" checked/> -->
-
-
@@ -61,6 +66,8 @@ let button_svg = document.getElementById('button-svg'); let svg_iframe = document.getElementById('svg-iframe'); let pad_iframe = document.getElementById('pad-iframe'); + let figfonts = document.querySelectorAll('.figfont'); + let current = document.getElementById('current-figfont'); let new_url = new URL(svg_iframe.src); @@ -76,6 +83,28 @@ frame.src = new_src; } + // --- change current figfont + for(let figfont of figfonts){ + figfont.addEventListener('click', function(){ + let encoded_path = figfont.dataset.path.split('/').join('$'); + let figname = figfont.dataset.name; + + let svg_src = svg_iframe.src; + svg_src = svg_src.split('/'); + + svg_src[svg_src.length-1] = encoded_path; + svg_src = svg_src.join('/'); + + current.innerHTML = figname; + + new_url = new URL(svg_src); + + document.getElementById('main').classList.add("reload"); + document.getElementById('collection-menu').removeAttribute("open"); + svg_iframe.src = svg_src; + }); + } + // --- svg generation button button_svg.addEventListener('click', function(){ svg_iframe.src = new_url; diff --git a/templates/draw.html b/templates/draw.html index 6f6a813..1e7637a 100644 --- a/templates/draw.html +++ b/templates/draw.html @@ -16,11 +16,6 @@ - -
@@ -56,7 +51,6 @@ button_pad.addEventListener('click', function(){ let input = document.getElementById(button_pad.dataset.use); let value = input.value; - let param = input.dataset.name; let pad_src = pad_iframe.src; pad_src = pad_src.split('-'); @@ -69,10 +63,9 @@ svg_src[svg_src.length-1] = value; svg_src = svg_src.join('/'); - new_url = new URL(svg_iframe.src); - + new_url = new URL(svg_src); + svg_iframe.src = new_url; document.getElementById('main').classList.add("reload"); - svg_iframe.src = svg_src; }); // --- svg generation button diff --git a/templates/drawing.html b/templates/drawing.html index b7e8055..3e89930 100644 --- a/templates/drawing.html +++ b/templates/drawing.html @@ -4,27 +4,7 @@ - + @@ -32,23 +12,31 @@ {{ svg|safe }}
+ +
- +
{{ svg|safe }} + +
+ + + + +
{{ ascii|safe }}
-
- - -
-