Compare commits

...

9 Commits
v1 ... gh-pages

26 changed files with 2041 additions and 67 deletions

15
.github/files-to-cache.lst vendored Normal file
View File

@ -0,0 +1,15 @@
codemirror-5.60.0/lib/codemirror.css
codemirror-5.60.0/lib/codemirror.js
codemirror-5.60.0/mode/javascript/javascript.js
sha1.js/sha1.js
pako/pako.min.js
Viz.js/viz.js
FileSaver.js/FileSaver.js
Blob.js/Blob.js
JSZip/jszip.min.js
git-tutorial.css
git-tutorial.js
sha256.js
micro_ipfs.js
directory_hashes.js
favicon.ico

8
.github/github_install_ipfs.sh vendored Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euET -o pipefail
cd /tmp
wget https://dist.ipfs.tech/kubo/v0.19.1/kubo_v0.19.1_linux-amd64.tar.gz
tar -zxf kubo_v0.19.1_linux-amd64.tar.gz
PATH="/tmp/kubo:$PATH" ipfs init --profile=lowpower

18
.github/github_update_homepage.sh vendored Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euET -o pipefail
echo "Hashing repository contents with IPFS..."
h="$(result/www/ipfs-add.sh --pin=true)"
printf "The new homepage URL will be: https://%s.ipfs.dweb.link/\n" "$h"
# Update Homepage URL on GitHub
curl -L \
-X PATCH \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $API_TOKEN_FOR_UPDATE_HOMEPAGE"\
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/ligolang/bounties \
-d '{"name":"bounties", "homepage":"https://dweb.link/ipfs/'"$h"'"}' > /dev/null

59
.github/pin-using-ipfs.sh vendored Executable file
View File

@ -0,0 +1,59 @@
#!/usr/bin/env bash
set -euET -o pipefail
echo "Hashing repository contents with IPFS..."
h="$(result/www/ipfs-add.sh --pin=true)"
printf "Pinning ipfs://%s/\n" "$h"
echo 0 > ipfs-pin-global-exitcode
if test -n "${IPFS_REMOTE_API_ENDPOINT:-}" && test -n "${IPFS_REMOTE_TOKEN:-}" && test -n "${IPFS_SWARM_CONNECT_TO:-}"; then
# Wait for IPFS daemon to be ready
echo 'Starting IPFS daemon...'
tail -F /tmp/ipfs-daemon.logs -n +1 & pid=$!
ipfs daemon >/tmp/ipfs-daemon.logs 2>&1 &
while ! grep 'Daemon is ready' /tmp/ipfs-daemon.logs; do sleep 1; date; done
echo 'IPFS daemon started, killing log tail...'
kill "$pid"
echo 'log tail killed'
printf %s\\n "$IPFS_SWARM_CONNECT_TO" | (i=1; while read multiaddr; do
printf "Connecting to IPFS node %s...\n" "$i"
(
ipfs swarm connect "$multiaddr" &
) > /dev/null 2>&1
i=$((i+1))
done)
sleep 10
printf %s\\n "$IPFS_REMOTE_API_ENDPOINT" | (i=1; while read api_endpoint; do
printf "Extracting token %s from environment...\n" "$i"
token="$( (printf %s\\n "$IPFS_REMOTE_TOKEN" | tail -n +"$i" | head -n 1) 2>/dev/null )"
#(printf %s "$token" | sha256sum | sha256sum | sha256sum) 2>/dev/null # for debugging without leaking the token
# Pin this hash
printf "Adding remote pinning service %s...\n" "$i"
(
ipfs pin remote service add my-remote-pin-"$i" "$api_endpoint" "$token"
) > /dev/null 2>&1
printf "Pinning %s on the remote service %s...\n" "$h" "$i"
(
if ipfs pin remote add --service=my-remote-pin-"$i" --name="site-bounties-$(TZ=UTC git log -1 --format=%cd --date=iso-strict-local HEAD)-$GITHUB_SHA" "$h"; then
echo $? > ipfs-pin-remote-add-exitcode
else
echo $? > ipfs-pin-remote-add-exitcode
fi
) > /dev/null 2>&1
printf "Finished pinning %s on the remote service %s, exitcode=%s\n" "$h" "$i" "$(cat ipfs-pin-remote-add-exitcode)"
if test "$(cat ipfs-pin-remote-add-exitcode)" != 0; then
echo 1 > ipfs-pin-global-exitcode
fi
i=$((i+1))
done)
fi
# Fail job if one of the pinning services didn't work
exit "$(cat ipfs-pin-global-exitcode)"

13
.github/print-and-compare-ipfs.sh vendored Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euET -o pipefail
h1="ipfs://$(./result/www/ipfs-add.sh --pin=false)"
h2="ipfs://$(./ipfs-add.sh --pin=false)"
h3="$(cat result/ipfs.url)"
echo "$h1"
echo "$h2"
echo "$h3"
test "$h1" = "$h2" && test "$h2" = "$h3"

49
.github/update-ovh.py vendored Executable file
View File

@ -0,0 +1,49 @@
# -*- encoding: utf-8 -*-
'''
First, install the latest release of Python wrapper: $ pip install ovh
To create an API token, visit:
OVH_DNS_DOMAIN=foobar.com
OVH_DNS_RECORD_ID=??????
x-www-browser https://www.ovh.com/auth/api/createToken?GET=/domain/zone/"$OVH_DNS_DOMAIN"/record/"$OVH_DNS_RECORD_ID"&PUT=/domain/zone/"$OVH_DNS_DOMAIN"/record/"$OVH_DNS_RECORD_ID"&POST=/domain/zone/"$OVH_DNS_DOMAIN"/refresh
This should create an API key with the following.
Add the last one and uncomment the code a few lines
below to be able to obtain the "$OVH_DNS_RECORD_ID" number.
GET /domain/zone/"$OVH_DNS_DOMAIN"/record/"$OVH_DNS_RECORD_ID"
PUT /domain/zone/"$OVH_DNS_DOMAIN"/record/"$OVH_DNS_RECORD_ID"
POST /domain/zone/"$OVH_DNS_DOMAIN"/refresh
#GET /domain/zone/"$OVH_DNS_DOMAIN"/record
'''
import os
import json
import ovh
# Instanciate an OVH Client.
# You can generate new credentials with full access to your account on
# the token creation page
client = ovh.Client(
endpoint=os.environ['API_OVH_ENDPOINT'],
application_key=os.environ['API_OVH_APPLICATION_KEY'],
application_secret=os.environ['API_OVH_APPLICATION_SECRET'],
consumer_key=os.environ['API_OVH_CONSUMER_KEY'],
)
# Uncomment to get the OVH_DNS_RECORD_ID number (needs GET /domain/zone/"$OVH_DNS_DOMAIN"/record allowed in the API token)
#result = client.get('/domain/zone/'+os.environ['OVH_DNS_DOMAIN']+'/record',
# fieldType='TXT',
# subDomain='_dnslink.git-tutorial',
#)
#print(json.dumps(result, indent=4))
if client.get('/domain/zone/'+os.environ['OVH_DNS_DOMAIN']+'/record/'+os.environ['OVH_DNS_RECORD_ID'])['subDomain'] == '_dnslink.git-tutorial':
result = client.put('/domain/zone/'+os.environ['OVH_DNS_DOMAIN']+'/record/'+os.environ['OVH_DNS_RECORD_ID'],
subDomain='_dnslink.git-tutorial',
target='dnslink=/ipfs/bafybeigexuwmsjhnitngyacj5ja7nqigddyekkhcsz6ejntrgpwcwtusoy',
ttl=60,
)
print(json.dumps(result, indent=4))
result = client.post('/domain/zone/'+os.environ['OVH_DNS_DOMAIN']+'/refresh')
print(json.dumps(result, indent=4))

30
.github/warm-up-gateway-caches.sh vendored Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env bash
set -euET -o pipefail
echo "Warm up cache on a couple of IPFS gateways"
h="$(result/www/ipfs-add.sh --pin=true)"
#wget --reject-regex ".*\?.*" -r -np --timeout=2 --tries=1 "https://cloudflare-ipfs.com/ipfs/$h" 2>&1 | grep '^--' & pid_cloudflare="$!"
#wget --reject-regex ".*\?.*" -r -np --timeout=2 --tries=1 "https://$h.ipfs.dweb.link/" 2>&1 | grep '^--' & pid_dweb="$!"
#wait "$pid_cloudflare" || true
#wait "$pid_dweb" || true
# Download the files, twice (a few files in the first attempt would likely fail as the DHT propagation is not instantaneous?)
for i in `seq 2`; do
#ipfs add --progress=false --ignore-rules-path "result/www/.ipfsignore" --pin=false --hidden -r result/www \
#| cut -d ' ' -f 3- \
#| sed -e 's~^www/*~~' \
cat .github/files-to-cache.lst \
| while read f; do
if (printf %s\\n "$IPFS_REMOTE_API_ENDPOINT" | grep pinata) >/dev/null 2>&1; then
printf "Warming up pinata cache for %s (attempt %d)...\n" "$f" "$i"
wget --tries=1 --timeout=10 -O- "https://gateway.pinata.cloud/ipfs/$h/$f" > /dev/null || true
fi
printf "Warming up Cloudflare cache for %s (attempt %d)...\n" "$f" "$i"
wget --tries=1 --timeout=10 -O- "https://cloudflare-ipfs.com/ipfs/$h/$f" > /dev/null || true
printf "Warming up dweb.link cache for %s (attempt %d)...\n" "$f" "$i"
wget --tries=1 --timeout=10 -O- "https://$h.ipfs.dweb.link/$f" > /dev/null || true
done
done

View File

@ -0,0 +1,80 @@
# Simple workflow for deploying static content to GitHub Pages
name: Upload to IPFS
on:
# Runs on pushes targeting the default branch
push:
branches: ["gh-pages"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install Nix
uses: cachix/install-nix-action@v17
- name: Build website
run: nix build
- name: Download IPFS
run: ./.github/github_install_ipfs.sh
- name: Print and compare IPFS hahes
run: export PATH="/tmp/kubo:$PATH"; .github/print-and-compare-ipfs.sh
- name: Make tarball of website
run: mkdir -p "$RUNNER_TEMP" && tar --directory result/www/ -cvf "$RUNNER_TEMP/artifact.tar" .
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: github-pages
path: ${{ runner.temp }}/artifact.tar
if-no-files-found: error
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
- name: Upload to IPFS
run: PATH="/tmp/kubo:$PATH" ./.github/pin-using-ipfs.sh
continue-on-error: true
env:
IPFS_SWARM_CONNECT_TO: ${{ secrets.IPFS_SWARM_CONNECT_TO }}
IPFS_REMOTE_API_ENDPOINT: ${{ secrets.IPFS_REMOTE_API_ENDPOINT }}
IPFS_REMOTE_TOKEN: ${{ secrets.IPFS_REMOTE_TOKEN }}
- name: Install OVH pip package
run: pip install ovh
- name: Update OVH _dnslink
run: python ./.github/update-ovh.py >/dev/null 2>&1
env:
API_OVH_APPLICATION_KEY: ${{ secrets.API_OVH_APPLICATION_KEY }}
API_OVH_APPLICATION_SECRET: ${{ secrets.API_OVH_APPLICATION_SECRET }}
API_OVH_CONSUMER_KEY: ${{ secrets.API_OVH_CONSUMER_KEY }}
API_OVH_ENDPOINT: ${{ secrets.API_OVH_ENDPOINT }}
OVH_DNS_DOMAIN: ${{ secrets.OVH_DNS_DOMAIN }}
OVH_DNS_RECORD_ID: ${{ secrets.OVH_DNS_RECORD_ID }}
- name: Warm up IPFS gateway caches
run: PATH="/tmp/kubo:$PATH" ./.github/warm-up-gateway-caches.sh
# - name: Update homepage URL
# run: PATH="/tmp/kubo:$PATH" ./.github/github_update_homepage.sh
# env:
# API_TOKEN_FOR_UPDATE_HOMEPAGE: ${{ secrets.API_TOKEN_FOR_UPDATE_HOMEPAGE }}
# - name: Setup Pages
# uses: actions/configure-pages@v3

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/result

2
.ipfsignore Normal file
View File

@ -0,0 +1,2 @@
/.git
/result

0
.nojekyll Normal file
View File

1
CNAME Normal file
View File

@ -0,0 +1 @@
git-tutorial.suzanne.soy

7
README
View File

@ -4,4 +4,9 @@ pako 2.0.3: https://github.com/nodeca/pako license (MIT AND Zlib)
Viz.js v2.1.2: https://github.com/mdaines/viz.js license MIT
FileSaver.js: https://github.com/eligrey/FileSaver.js license MIT
Blob.js: https://github.com/eligrey/Blob.js license MIT license
JSZip v1.8.2: https://github.com/Stuk/jszip/tree/v2.6.1 license (MIT OR GPLv3)
JSZip v1.8.2: https://github.com/Stuk/jszip/tree/v2.6.1 license (MIT OR GPLv3)
GitHub depoloyment environment variables:
* IPFS_REMOTE_API_ENDPOINT: one per line
* IPFS_REMOTE_TOKEN: one per line (same order as IPFS_REMOTE_API_ENDPOINT)
* IPFS_SWARM_CONNECT_TO: multiaddr of peers to connect to, to help as intermediaries when connecting to the DHT & pinning services (can be multiaddr of the pinning node itself if known)

15
build-and-update.sh Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euET -o pipefail
nix build
cp result/www/directory_hashes.js directory_hashes.js
cp result/www/favicon.ico favicon.ico
cp result/www/sitemap.html sitemap.html
if test -n "$(git status --short)"; then git commit -a --amend; fi
nix build
diff result/www/directory_hashes.js directory_hashes.js
diff result/www/favicon.ico favicon.ico
diff result/www/sitemap.html sitemap.html
./.github/print-and-compare-ipfs.sh

View File

@ -3,44 +3,31 @@
set -euET -o pipefail
usage() {
printf 'Usage: ./deploy.sh v1'\\n
printf ' v1 will be used as the tag name for this version'\\n
printf 'Usage: ./deploy.sh v1.0.0'\\n
printf ' v1.0.0 will be used as the tag name for this version'\\n
}
if [ $# -ne 1 ]; then usage; exit 1; fi
if [ "x$1" = "x-h" ] || [ "x$1" = "x--help" ]; then usage; exit 1; fi
if [ "x$1" = "x-h" ] || [ "x$1" = "x--help" ]; then usage; exit 0; fi
# e.g. v1
# e.g. v1.0.0
version="$1"
commit_hash="$(git log --format=%H -1 HEAD)"
tempdir="$(mktemp -d)"
tempdirgit="$(mktemp -d)"
this_repo="$PWD"
printf "Temporary directory: %s"\\n "$tempdir"
# Clone this specific commit (could use a worktree, but I prefer not modifying the original repo if it can be avoided)
git init "$tempdir"
(cd "$tempdir"; git fetch --depth=1 "$this_repo" "$commit_hash")
(cd "$tempdir"; git checkout "$commit_hash")
(cd "$tempdir"; git log)
(set -x; mv "$tempdir/.git" "$tempdirgit/")
ls -a "$tempdir"
if ! grep '<a id="this-version" href="https://github.com/jsmaniac/git-tutorial/tree/'"$version"'">'"$version"'</a>' "$tempdir/index.html"; then
if ! grep '<a id="this-version" href="https://github.com/jsmaniac/git-tutorial/tree/'"$version"'">'"$version"'</a>' "index.html"; then
printf "Error: The version number given on the command-line does not match the one in the HTML source code."\\n
exit 1
fi
# Add to IPFS and get the hash
ipfs_hash="$(ipfs add --pin=true --recursive --hidden --progress --quieter "$tempdir")"
ipfs_hash="$(ipfs cid base32 "$ipfs_hash")"
printf \\n
./build-and-update.sh
# Add to IPFS and get the hash
ipfs_hash="$(./result/www/ipfs-add.sh --pin=true)"
printf %s\\n "$ipfs_hash"
ipfs name publish --key=git-tutorial "/ipfs/$ipfs_hash"
sed -i -e 's~ipfs-this-hash-placeholder" href="#"~ipfs-this-hash-placeholder" href="ipfs://'"$ipfs_hash"'/"~' index.html
git commit -m 'Stored IPFS hash of this version' index.html
git tag "$1"
git tag "ipfs-$1-${ipfs_hash}"
git push origin HEAD:gh-pages
git push origin "$1"
git push origin "ipfs-$1-${ipfs_hash}"
ipfs name publish --key=git-tutorial "/ipfs/$ipfs_hash"

1
directory_hashes.js Normal file
View File

@ -0,0 +1 @@
jsonp_ipfs_directory_hashes({"vanity_text":"soy","vanity_number":862,"tree":{"Links":[{"Name":".github","Hash":"QmVQymgJYtsWZiVSaxdXxCrovGsdsxTPNWW9K2LXmNWmrk","Size":10687},{"Name":".gitignore","Hash":"QmW9iMXzmPqLSnzL4p6DKsvsL3nC1xKS3teRB4SRdukfrz","Size":16},{"Name":".ipfsignore","Hash":"QmPpQN29FbeaNwGsXbebbv588UZtSLCGRffa3Zrz68RAMp","Size":22},{"Name":".nojekyll","Hash":"QmbFMke1KXqnYyBBWxB74N4c5SBnJMVAiMNRcGu6x1AwQH","Size":6},{"Name":"Blob.js","Hash":"QmSxKmtcBxBRkmkLGpnXAGrRc16kPrJx5Hmdsvt6LRWeSG","Size":21833},{"Name":"CNAME","Hash":"QmT3mZdxv3tQQGq9mwMmjnhXDaDAnkrcwmh2Hvy8gQhRyr","Size":32},{"Name":"FileSaver.js","Hash":"QmUgg2HLo4W9bpf92CkHH6WWVFfg2DmNqJrz2Z46L7VmUq","Size":7367},{"Name":"JSZip","Hash":"QmWW2hDPrMU5e5KgSAMiqfM2YW5RSiZzWiNJSQ7w63ngiL","Size":422094},{"Name":"README","Hash":"QmVPSdJVXbYuQSN5v3VXqZcYKJuuzvv4ZArg8S7u1MF85F","Size":810},{"Name":"Viz.js","Hash":"QmaxUCu1gnFwTTpDoTAPB3fMQQav1NJZrZ7LGqLXECidKj","Size":3564410},{"Name":"build-and-update.sh","Hash":"QmRypwTrHQq6Ftrb3ygJZ2E4haqqvNZxxZrm4sVnbJuaHH","Size":448},{"Name":"codemirror-5.60.0","Hash":"QmXPbArMAid8MbC5G7HCyWz2PUkfSMWZaUQpnq63x8Dw2y","Size":4669604},{"Name":"deploy.sh","Hash":"QmdgLSVN4UedbKuyAbsCQhiHjxdWpyxMqjdW4cDsvfzDNF","Size":901},{"Name":"directory_hashes.js","Hash":"","Size":0},{"Name":"favicon.ico","Hash":"QmUq6pQamF58ZDNpPSvF3C2bcCWEJSjx3dFZZLjkSCrYpi","Size":32052},{"Name":"favicon.svg","Hash":"QmesnKGtStCZGpiTjoAcAETdSZgUUQ3wzekn1LSQMFtbgn","Size":3272},{"Name":"flake.lock","Hash":"QmdkX8PkV6j2sLH1JSPD1z4533rEGTa6JKSfsJcYAGSrvx","Size":1475},{"Name":"flake.nix","Hash":"Qmaa8dpTGb7T2KJLiPxjR4HrmGmffDWHrCn2G5FmhjhZXb","Size":1642},{"Name":"git-tutorial.css","Hash":"QmdsWg4RVZR3kRA7xFchoWLEQQzLpzVyspTtKwa9qttDMF","Size":10842},{"Name":"git-tutorial.js","Hash":"QmTpny5DSeUzCULRtYH2YJSgLx57KuYPr2LRR7N2A2K4Qg","Size":47919},{"Name":"index.html","Hash":"QmSAqYiSkbR1xhZU6FLMUFTtfXBNXrbqtYb6hJ78Zq1ibB","Size":118368},{"Name":"ipfs-add.sh","Hash":"QmXSLYLy13efSFVEN3Ej3A3vyimH618Vrt82hoBKeKYgDB","Size":473},{"Name":"micro_ipfs.js","Hash":"QmeWPj4vzN66eCUwQkjjzTgfciBLBzNjQQdvqEBL8x1pmh","Size":16738},{"Name":"pako","Hash":"QmRtJhu2rJCe59JPS9UiyAja5iUZNmJ8nyBijdZpLLEgG9","Size":178431},{"Name":"sha1.js","Hash":"QmP7HPPYQqwKXYyDrkDm9vKt8FZE1WsDUJG8cLnjFf4a11","Size":7966},{"Name":"sha256.js","Hash":"QmRhgx5Fq4JqfCgsPcMxNSYwt8M9WRBkec9omPWzJ7gdwL","Size":8553},{"Name":"sitemap.html","Hash":"QmdxctnkjqpH4JrwhnxA8NHuGK3QqUTe2nnGXuWKc6pM3k","Size":71800}],"Data":"\b\u0001"}});

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

86
favicon.svg Normal file
View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
viewBox="0 0 67.733332 67.733335"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="favigon.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="108.409"
inkscape:cy="84.650401"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:snap-intersection-paths="true"
inkscape:window-width="1912"
inkscape:window-height="1001"
inkscape:window-x="4"
inkscape:window-y="75"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-229.26665)">
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path4550"
d="m 18.62666,299.6681 -4e-6,-8.84464 c 0,-16.66872 30.48,-16.66872 30.48,-31.04128 l 2e-6,-17.43416 -11.481026,11.48104"
style="fill:none;stroke:#3da425;stroke-width:5.715;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path4552"
d="m 60.587699,253.82906 -11.481041,-11.48104 -2e-6,17.43416 c 0,14.37256 -30.48,14.37256 -30.48,31.04128 l 4e-6,8.84464"
style="fill:none;stroke:#3da425;stroke-width:5.715;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#f69f0a;stroke-width:5.71500015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 18.62666,299.6681 V 242.34802 L 7.1456345,253.82906"
id="path4518"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#f69f0a;stroke-width:5.71500015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 30.1077,253.82906 18.626656,242.34802 v 56.12952"
id="path4522"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<g
id="g4546"
transform="matrix(7.2,0,0,7.2,3.3186256,-1842.984)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

59
flake.lock Normal file
View File

@ -0,0 +1,59 @@
{
"nodes": {
"archivable": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1700523797,
"narHash": "sha256-aY7CqvgpJ9TOGIWJjpu0PmMGzXe36GXMHTMgAVlzZ8o=",
"owner": "SuzanneSoy",
"repo": "archivable",
"rev": "c35dc8f760f5640e0c769a6814568d6fe71e5726",
"type": "github"
},
"original": {
"owner": "SuzanneSoy",
"repo": "archivable",
"rev": "c35dc8f760f5640e0c769a6814568d6fe71e5726",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1700108881,
"narHash": "sha256-+Lqybl8kj0+nD/IlAWPPG/RDTa47gff9nbei0u7BntE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "7414e9ee0b3e9903c24d3379f577a417f0aae5f1",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1700108881,
"narHash": "sha256-+Lqybl8kj0+nD/IlAWPPG/RDTa47gff9nbei0u7BntE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "7414e9ee0b3e9903c24d3379f577a417f0aae5f1",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"archivable": "archivable",
"nixpkgs": "nixpkgs_2"
}
}
},
"root": "root",
"version": 7
}

41
flake.nix Normal file
View File

@ -0,0 +1,41 @@
{
description = "GIT tutorial";
inputs.archivable.url = github:SuzanneSoy/archivable/c35dc8f760f5640e0c769a6814568d6fe71e5726;
outputs = { self, nixpkgs, archivable }: {
defaultPackage.x86_64-linux = self.packages.x86_64-linux.website;
packages.x86_64-linux.website =
let pkgs = import nixpkgs { system = "x86_64-linux"; }; in
pkgs.stdenv.mkDerivation {
name = "git-tutorial";
src = self;
buildInputs = with pkgs; [kubo jq nodejs-slim imagemagick];
buildPhase = ''
# TODO: remove files ignored by .ipfsignore during build process
convert -background none favicon.svg -define icon:auto-resize=64,48,32,16 favicon.ico
mkdir "$out"
cp -ai . "$out/www"
touch "$out/www/sitemap.html"
(
cd "$out/www";
echo '<!DOCTYPE html><html><head><title>Sitemap</title></head><body>'
# TODO: honor .ipfsignore
find | sort | sed -e 's~.*~<a href="\0">\0</a>~'
echo '</body></html>'
) > "$out/www/sitemap.html"
export HOME=.
ipfs init
${archivable.packages.x86_64-linux.update-directory-hashes}/bin/update-directory-hashes "$out/www/" 'soy'
printf 'ipfs://%s\n' "$(ipfs cid base32 "$(ipfs add --ignore-rules-path "$out/www/.ipfsignore" --pin=false --hidden -Qr "$out/www")")" > "$out/ipfs.url" 2>&1
'';
# Prevent automatic modification of files in the output.
dontInstall = true;
dontFixup = true;
dontPatchELF = true;
dontPatchShebangs = true;
};
};
}

View File

@ -73,7 +73,7 @@ function ___to_hex_for_printf(str) {
return '<span style="display: block;">' + hex + '</span>';
}
function ___specialchars_and_colour(s) {
return s.replace(/[^-a-zA-Z0-9+_/!%$@.()':]/g, function (c) {
return s.replace(/[^-a-zA-Z0-9+_/!%$@.()':^]/g, function (c) {
switch (c) {
case " ": return '<span class="space"> </span>';
case "\\": return '<span class="specialchar">\\\\</span>';
@ -733,6 +733,23 @@ var ___script_log_header = '' +
/*+*/ '})(window.console);\n' +
/*+*/ '\n';
function ___escape_gv(name) {
return name.replace(/[^- a-zA-Z0-9+_/!%$@.()':&<>'…^]/g, function (c) {
switch (c) {
case "\\": return '\\\\\\\\';
case "\0": return '\\\\000';
case "\r": return '\\\\r';
case "\n": return '\\\\n';
case "\t": return '\\\\t';
case '"': return '\\"';
default: return '\\\\x'+___left_pad(c.charCodeAt(0).toString(16), 0, 2)+'';
}
});
}
function ___quote_gv(name) {
return '"' + ___escape_gv(name) + '"';
}
function ___file_contents_to_graphview(filesystem, path_of_this_file, s) {
var gv = '';
var s2 = null;
@ -771,11 +788,6 @@ var ___previous_file_node_style = 'color = "#808080", fontcolor = "#808080", cla
var ___previous_directory_node_style = 'color = "#80c5c5", fontcolor = "#80c5c5", class = dimmed_previous_directory';
var ___directory_node_style = 'color = "#008b8b", fontcolor = "#008b8b"'; // darkcyan = #008b8b
function ___quote_gv(name) {
if (window.console && window.console.log) { window.console.log('TODO: escape GV'); }
return '"' + name.replace('\n', '\\n') + '"';
}
function ___entry_to_graphview(previous_filesystem, filesystem, x) {
var gv = '';
gv += ___quote_gv(x[0]) + '\n';
@ -783,6 +795,7 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
var components = x[0].split('/');
var shortname = components[components.length - 1];
var type = null;
if (___is_hashed_object_path(x[0])) {
// var hash = components.slice(components.length-2).join('');
shortname = shortname.substr(0, 3) + '…';
@ -791,8 +804,10 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
var parent = components.slice(0, components.length - 1).join('/');
if (parent != '') {
if (filesystem.hasOwnProperty(parent)) {
// show arrow from the parent to this element, if the parent directory exists in the filesystem.
gv += ___quote_gv(parent) + ' -> ' + ___quote_gv(x[0]) + ' ['+___directory_edge_style+'];\n';
} else {
// if the parent directory was not created in the filesystem, show the full path
shortname = parent + '/' + shortname;
}
}
@ -800,7 +815,7 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
// Put a transparent background to make the nodes clickable.
gv += ___quote_gv(x[0]) + ' [ style="filled", fillcolor="transparent" ]';
// contents of the file as a tooltip:
// full name of the file as a tooltip:
gv += ___quote_gv(x[0]) + ' [ tooltip = ' + ___quote_gv(x[0]) + ' ]';
var id = 'gv-' + (___global_unique_id++);
@ -808,9 +823,9 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
if (x[1] === null) {
if (shortname.length <= 2) {
shortname = shortname + '\ndir';
type = '(dir)';
} else {
shortname = shortname + '\ndirectory';
type = '(directory)';
}
if (previous_filesystem.hasOwnProperty(x[0])) {
// dim nodes that existed in the previous_filesystem
@ -820,7 +835,7 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
}
} else {
var contents = ___file_contents_to_graphview(filesystem, x[0], x[1]);
shortname = shortname + '\n(' + contents.type + ')';
type = '(' + contents.type + ')';
gv += contents.gv;
if (previous_filesystem.hasOwnProperty(x[0])) {
// dim nodes that existed in the previous_filesystem
@ -829,7 +844,7 @@ function ___entry_to_graphview(previous_filesystem, filesystem, x) {
}
// shortname as a label
gv += ___quote_gv(x[0]) + ' [ label = ' + ___quote_gv(shortname) + ' ]';
gv += ___quote_gv(x[0]) + ' [ label = "' + ___escape_gv(shortname) + (type == null ? '' : '\\n' + ___escape_gv(type)) + '" ]';
return { id:id, gv:gv };
}
@ -1162,7 +1177,12 @@ function ___scrollToLine(editor, line) {
editor.addLineClass(line, 'background', 'scrolled-to-line');
var editorOffset = ___getOffset(editor.getScrollerElement()).top;
var lineOffset = editor.charCoords({line: line, ch: 0}, "local").top;
document.body.scrollTo(0, editorOffset + lineOffset - window.innerHeight/2);
var toOffset = editorOffset + lineOffset - window.innerHeight/2;
document.body.parentElement.scrollTo(0, toOffset);
if (document.body.parentElement.scrollTop == 0) {
// depending on the CSS, the scrollbar can belong to the HTML element or to the body element.
document.body.scrollTo(0, toOffset);
}
}
function ___toCodeMirror(ta) {
var editor = CodeMirror.fromTextArea(ta, {

View File

@ -4,14 +4,12 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" lang="en-GB" xml:lang="en-GB" />
<title>GIT tutorial</title>
<!-- Replace the "ipfs://…" string below with "#" to obtain the original copy as hosted on IPFS. -->
<link rel="canonical" class="ipfs-this-hash-placeholder" href="ipfs://bafybeiciboq5zritmgkvmzucvuokajozit7hfwhmappxwmrh2p5zdovdie/" />
<link rel="alternate" href="https://suzanne.soy/git-tutorial/" />
<link rel="canonical" class="ipfs-permalink-href" href="#" />
<link rel="alternate" href="https://git-tutorial.suzanne.soy/" />
<!-- These rel="duplicate" links use an HTML encoding of the rfc6249 Metalink/HTTP -->
<!-- Replace the "ipfs://…" string below with "#" to obtain the original copy as hosted on IPFS. -->
<link rel="duplicate" class="ipfs-this-hash-placeholder" href="ipfs://bafybeiciboq5zritmgkvmzucvuokajozit7hfwhmappxwmrh2p5zdovdie/" />
<link rel="duplicate" href="https://suzanne.soy/git-tutorial/" />
<link rel="duplicate" class="ipfs-permalink-href" href="#" />
<link rel="duplicate" href="https://git-tutorial.suzanne.soy/" />
<!-- Third-party libraries: -->
<link rel="stylesheet" href="codemirror-5.60.0/lib/codemirror.css">
@ -54,13 +52,17 @@ function ___example(id, f) {
<a href="#" class="permalink"><h1 itemprop="headline">Git tutorial: reimplementing part of GIT in JavaScript</h1></a>
<p class="article-metadata">By <a href="https://suzanne.soy/" itemprop="author" rel="author" itemscope="itemscope" itemtype="https://schema.org/Person">Suzanne Soy</a> for <a href="https://ligolang.org/" itemprop="copyrightHolder" itemscope="itemscope" itemtype="https://schema.org/Organization">LIGO</a>. <time itemprop="dateCreated datePublished" datetime="2021-06-29">02021-06-29</time>.</p>
<p>Please send remarks and suggestions to <a href="mailto:git-tutorial@suzanne.soy">git-tutorial@suzanne.soy</a> or simply fork <a href="https://github.com/jsmaniac/git-tutorial">this repository on GitHub</a>.</p>
<p>This version of the site matches the tag <a id="this-version" href="https://github.com/jsmaniac/git-tutorial/tree/v1">v1</a> on GitHub.
You can access snapshots of this site via IPFS:
<!-- Replace the "ipfs://…" string below with "#" to obtain the original copy as hosted on IPFS. -->
<a class="ipfs-this-hash-placeholder" href="ipfs://bafybeiciboq5zritmgkvmzucvuokajozit7hfwhmappxwmrh2p5zdovdie/" title="published shortly after 02021-06-29">v1 (permalink)</a>,
or check the
<a href="ipns://k51qzi5uqu5dggo2mzf6enn9dpcb2qmd4t9tipend4ikqvvmljo6i63lae4soy/">latest version via IPNS/IPFS</a> or
<a href="https://suzanne.soy/git-tutorial/">via HTTPS</a>.</p>
<p>This version of the site matches the tag <a id="this-version" href="https://github.com/jsmaniac/git-tutorial/tree/v1.1.0">v1.1.0</a> on GitHub.
Permalinks to snapshots of this site are available via IPFS:
<a class="ipfs-permalink-href" href="#" title="published on 02023-11-21">v1.1.0 (this version)<span class="while-computing-ipfs-permalink"> [computing URL…]</span></a>,
<a href="ipfs://bafybeigexuwmsjhnitngyacj5ja7nqigddyekkhcsz6ejntrgpwcwtusoy/" title="">v1.0.2 (02023-11-21)</a>,
<a href="ipfs://bafybeie6rfdvlkl5raju4m4vqjrofwm3jl4gghjfm2xv2rljyahdl5nsoy/" title="">v1.0.1 (02023-11-21)</a>,
<a href="ipfs://bafybeiciboq5zritmgkvmzucvuokajozit7hfwhmappxwmrh2p5zdovdie/" title="published shortly after 02021-06-29">v1 (02021-06-29)</a>,
Alternatively check the
<a href="ipns://git-tutorial.suzanne.soy/">latest version via IPNS/IPFS</a>
or
<a href="https://git-tutorial.suzanne.soy/">latest via HTTPS</a>.
See the <a href="#changelog">Changelog</a> section for errata, and the <a href="sitemap.html">sitemap</a> for a list of contents.</p>
<section id="credits-license">
<h2>Credits and license</h2>
@ -1190,30 +1192,36 @@ This is done by creating a <em>tree</em> object</p>
});
</script>
<p>In the contents of a tree, subdirectories (trees) are listed before files (blobs);
within each group the entries are ordered alphabetically.</p>
<p>In the contents of a tree, the entries are ordered alphabetically.</p>
<textarea id="in8">
// base_directory is a string
// filenames is a list of strings
// subtrees is a list of {name, hash} objects.
function store_tree(base_directory, filenames, subtrees) {
function get_file_hash(filename) {
var path = join_paths(base_directory, filename);
var hash = hash_object(true, 'blob', false, path)
return hex_to_raw_bytes(hash);
// entries will contain {name:'…', entry:'…'} objects
var entries = [];
for (var i = 0; i < filenames.length; i++) {
var path = join_paths(base_directory, filenames[i]);
var hash = hash_object(true, 'blob', false, path);
var entry = "100644 " + filenames[i] + "\0" + hex_to_raw_bytes(hash);
entries.push({ name: filenames[i], entry: entry });
}
var blobs = filenames.map(function (filename) {
return "100644 " + filename + "\0" + get_file_hash(filename);
for (var j = 0; j < subtrees.length; j++) {
var entry = "40000 " + subtrees[j].name + "\0" + hex_to_raw_bytes(subtrees[j].hash);
entries.push({ name: subtrees[j], entry: entry });
}
// Sort the entries by name, alphabetically.
// Note that this won't work with e.g. unicode names.
entries.sort(function (a,b) {
return (a.name < b.name ? -1 : (a.name > b.name ? 1 : 0));
});
var trees = subtrees.map(function (subtree) {
return "40000 " + subtree.name + "\0" + hex_to_raw_bytes(subtree.hash);
});
// blobs are listed before subtrees
var tree_content = blobs.join('') + trees.join('');
// concatenate the entries
var tree_content = entries.map(function (entry) { return entry.entry; }).join('');
// cat tree_content | git hash-object -w -t tree --stdin
return hash_object(true, 'tree', true, tree_content);
@ -2427,6 +2435,18 @@ commands.</p>
</section>
</section>
<section id="changelog-errata">
<h2>Changelog and errata</h2>
<dl>
<dt>v1</dt><dd>Initial version.</dd>
<dt>v1.0.1</dt><dd>Internal changes to provide IPFS links.</dd>
<dt>v1.0.2</dt><dd>Added a sitemap for download tools.</dd>
<dt>v1.1.0</dt><dd>The <a href="storing-trees">section on storing tres</a> used to indicate that subtrees appear before blobs in the
binary representation of a tree. This was incorrect, the entries are simply sorted alphabetically without any
consideration of their type. Thanks to Exe for spotting this. Internal change: escaped some strings.</dd>
</dl>
</section>
<div id="toc"></div>
</article>
@ -2451,5 +2471,19 @@ commands.</p>
})();
___git_tutorial_onload()
</script>
<!-- IPFS -->
<script src="sha256.js"></script>
<script src="micro_ipfs.js"></script>
<script src="directory_hashes.js"></script>
<script>
(function() {
var hash = ipfs_self_hash.get_link();
var elts = document.getElementsByClassName('ipfs-permalink-href');
for (var i = 0; i < elts.length; i++) { elts[i].setAttribute('href', 'ipfs://' + hash); }
//.innerHTML = '<a href="ipfs://' + hash + '/">Permalink: ipfs://'+hash.substring(0,4)+'…'+hash.substring(53)+'/</a>';
var elts2 = document.getElementsByClassName('while-computing-ipfs-permalink');
for (var i = 0; i < elts2.length; i++) { elts2[i].remove(); }
})();
</script>
</body>
</html>

14
ipfs-add.sh Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euET -o pipefail
usage() {
printf "Usage:\n"
printf " %s --pin=true\n" "$0"
printf " %s --pin=false\n" "$0"
}
if test $# -lt 1; then usage; exit 1; fi
if test "x$1" = "x-h" || test "x$1" = "x--help"; then usage; exit 0; fi
if test "x$1" != "x--pin=true" && test "x$1" != "x--pin=false"; then usage; exit 1; fi
ipfs cid base32 "$(ipfs add --ignore-rules-path "$(dirname "$0")/.ipfsignore" "$1" --hidden -Qr "$(dirname "$0")")"

437
micro_ipfs.js Normal file
View File

@ -0,0 +1,437 @@
// for nodejs
if (typeof sha256 == 'undefined' && typeof require != 'undefined') { try { sha256 = require('./sha256.js').sha256; } catch (e) {console.log(e);} }
var micro_ipfs = (function() {
var hexVarintToInteger = function(str) {
var s = String(str);
var total = 0;
var offset = 1;
for (var i = 0; i < s.length; i += 2) {
var byte = parseInt(s.substring(i, i+2), 16);
var isLast = null;
if (byte >= 128) {
byte -= 128;
isLast = false;
} else {
isLast = true;
}
total += byte * offset;
offset *= Math.pow(2,7);
}
return total;
};
var hexStringToIntegerList = function(str) {
var s = String(str);
var result = [];
for (var i = 0; i < s.length; i+=2) {
result[i/2] = parseInt(s.substring(i, i+2), 16);
}
return result;
};
var hexStringToString = function(str) {
var s = String(str);
var result = '';
for (var i = 0; i < s.length; i+=2) {
result += String.fromCharCode(parseInt(s.substring(i, i+2), 16));
}
return result;
};
var sha256IntegerListToMultihash = function(base, lst) {
// 0x20 is the length of the hash.
var i = 0;
var result = [];
if (base == 32) {
// For some reason these are present in the base32 CIDs but not in the base16 CIDs
result[i++] = parseInt('01', 16);
result[i++] = parseInt('70', 16);
}
result[i++] = parseInt('12', 16);
result[i++] = parseInt('20', 16);
for (var j = 0; j < lst.length; j++) {
result[j+i] = lst[j];
}
return result;
};
var integerListToLowercaseBase16Multibase = function(lst) {
var result = '';
for (var i = 0; i < lst.length; i++) {
var hex = lst[i].toString(16);
if (hex.length < 2) { hex = '0' + hex; }
result += hex;
}
return 'f' + result;
};
var int8ListToBitList = function(lst) {
var result = [];
for (var i = 0; i < lst.length; i++) {
result[i*8+0] = (lst[i] & 128) ? 1 : 0;
result[i*8+1] = (lst[i] & 64) ? 1 : 0;
result[i*8+2] = (lst[i] & 32) ? 1 : 0;
result[i*8+3] = (lst[i] & 16) ? 1 : 0;
result[i*8+4] = (lst[i] & 8) ? 1 : 0;
result[i*8+5] = (lst[i] & 4) ? 1 : 0;
result[i*8+6] = (lst[i] & 2) ? 1 : 0;
result[i*8+7] = (lst[i] & 1) ? 1 : 0;
}
return result;
};
var base32StringToBitList = function(str) {
var baseChars = 'abcdefghijklmnopqrstuvwxyz234567';
var s = String(str);
var result = [];
for (var i = 0; i < s.length; i++) {
var part = baseChars.indexOf(s[i]);
//for (var j = 0; j < 6; j++) {
// result[i*6+j] = (part & Math.pow(2, 6-1-j)) ? 1 : 0;
//}
result[i*5+0] = (part & 16) ? 1 : 0;
result[i*5+1] = (part & 8) ? 1 : 0;
result[i*5+2] = (part & 4) ? 1 : 0;
result[i*5+3] = (part & 2) ? 1 : 0;
result[i*5+4] = (part & 1) ? 1 : 0;
}
return result;
};
// https://gist.github.com/diafygi/90a3e80ca1c2793220e5/, license: wtfpl
var from_b58 = function(S,A){var d=[],b=[],i,j,c,n;for(i in S){j=0,c=A.indexOf(S[i]);if(c<0)return undefined;c||b.length^i?i:b.push(0);while(j in d||c){n=d[j];n=n?n*58+c:c;c=n>>8;d[j]=n%256;j++}}while(j--)b.push(d[j]);return new Uint8Array(b)};
var base58StringToHexString = function(str) {
var baseChars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz';
var ints = from_b58(String(str), baseChars);
var result = '';
for (var i = 0; i < ints.length; i++) {
var hex = ints[i].toString(16);
if (hex.length < 2) { hex = '0' + hex; }
result += hex;
}
return result;
};
var integerListToLowercaseBase32Multibase = function(lst) {
var baseChars = 'abcdefghijklmnopqrstuvwxyz234567';
var result = '';
var l = int8ListToBitList(lst);
for (var i = 0; i < l.length; i+= 5) {
var get = function(j) { return ((i+j) < l.length) ? l[i+j] : 0; };
var part = get(0) * 16 + get(1) * 8 + get(2) * 4 + get(3) * 2 + get(4) * 1;
result += baseChars[part];
}
return 'b' + result;
};
var base32StringToBase16LowercaseMultibase = function(str) {
var baseChars = '0123456789abcdef';
var result = '';
var l = base32StringToBitList(str);
for (var i = 0; i < l.length; i+= 4) {
var get = function(j) { return ((i+j) < l.length) ? l[i+j] : 0; };
var part = get(0) * 8 + get(1) * 4 + get(2) * 2 + get(3) * 1;
result += baseChars[part];
}
return 'f' + result;
};
var integerToHexVarint = function(i) {
// This function takes a JavaScript integer and returns a hexadecimal string representing that integer encoded as a protobuf varint according to the rules explained at
// https://developers.google.com/protocol-buffers/docs/encoding
var result = '';
if (i < 0) {
throw "Negative integers are supported by Varints but not by this implementation.";
} else if (i == 0) {
return '00';
} else {
while (i > 0) {
// Get the least significant 7 bits (0..127) of the integer and shift the rest
var leastSignificantBits = i & 127;
i = i >> 7;
// if this is not the last chunk, set the most significant bit to indicate that the value will be continued in the next byte(s).
if (i > 0) { leastSignificantBits |= 128; }
// Convert to hexadecimal and pad with 0 to get two digits if needed
var hex = leastSignificantBits.toString(16);
if (hex.length < 2) { hex = '0' + hex; }
result += hex;
}
return result;
}
}
var utf8StringToHex = function(str) {
// The input must already be a string for which .charCodeAt() always returns a value <256 (i.e. a string encoded into utf-8 and those values re-encoded into javascript's internal utf-16)
var s = String(str);
var result = '';
for (var i = 0; i < s.length; i++) {
var hex = s.charCodeAt(i).toString(16);
if (hex.length < 2) { hex = '0' + hex; }
result += hex;
}
return result;
};
var ipfsBlockWithLinks = function(object) {
// object should be an { "Links": links, "Data": hex-encoded string } object
// Aside from encoding differences, it should match the contents of the "ipfs object get --data-encoding=base64 Qm…hash" command
//
// "Links" should be an array of { 'Hash': cidv1Base16Lowercase, 'Size': Integer } objects.
// This functions returns a hexadecimal string which encodes the ipfs block with the given links.
// This is a partial implementation which is barely sufficient for re-hashing a file, many of the configurable values are hardcoded.
// A Qm…hash can be converted to a "CIDv1 base16 lowercase" hash on the command-line using the following code:
// ipfs cid format -v 1 -b base16 -f='%m' Qm…hash
//
// "File" should be the hex-encoded (base 16, lowercase, no prefix) data, or "false" when the entry is not a DAG leaf
//
// The "Data" field as given by the following command
// ipfs object get --data-encoding=base64 Qm…hash | jq -r '.Data' | base64 -d | xxd -ps
// is automatically generated using the "File" field if present and the various sizes etc.
var links = object.Links;
var fileHex = object.File;
var result = '';
for (var i = 0; i < links.length; i++) {
var cid = links[i].Hash;
var size = links[i].Size;
var name = links[i].Name;
var fileHex = object.File;
result += '12';
var encodedLink = ''
// Some sort of separator or terminator
encodedLink += '0a';
// size of the CID (32 bytes + 2 bytes header = 34 bytes = 22 in hex)
encodedLink += '22';
if (cid[0] != 'f' || cid.length != 69) {
if (cid[0] == 'Q' && cid[1] == 'm' && cid.length == 46) {
cid = 'f' + base58StringToHexString(cid);
if (cid[0] != 'f' || cid.length != 69) {
throw "Internal error";
}
} else {
throw "Expected a lowercase base16 CIDv1 or a Qm…hash in base58 (length 46). The base16 encoding should start with 'f'" +
/*+*/ " and have a length of 32 bytes (64 hexadecimal characters) plus the leading prefix 'f1220' (length of 69 characters in total)" +
/*+*/ " as described in https://github.com/multiformats/multibase. The given hash started with " + cid[0] + " and had a length of " + cid.length;
}
}
// Add the CID.
encodedLink += cid.substring(1);
// Add a second hardcoded part of the encoding.
encodedLink += '12';
// length of filename
encodedLink += integerToHexVarint(name.length);
encodedLink += utf8StringToHex(name);
encodedLink += '18';
// Add the size.
encodedLink += integerToHexVarint(size);
var encodedLinkSize = encodedLink.length/2
result += integerToHexVarint(encodedLinkSize);
result += encodedLink;
}
// Generate the "Data" field
var totalSize = (fileHex || '').length / 2;
for (var i = 0; i < object.Links.length; i++) {
totalSize += object.Links[i].ContentSize;
}
var encodedData = '';
if (object.isFile) {
// '08' '02'
encodedData += '08' + '02';
// field 12 seems to be optional (for DAG nodes with links (groups of blocks and directories))
if (fileHex !== false) {
encodedData += '12';
encodedData += integerToHexVarint(totalSize);
encodedData += fileHex;
}
// '18' [8f b0 15 = total size of contents of the file = 35022300]
encodedData += '18' + integerToHexVarint(totalSize);
for (var j = 0; j < object.Links.length; j++) {
// 20 [80 80 10 = size of contents of block 1 = 262144]
// 20 [8f b0 05 = size of contents of block 2 = 88079]
encodedData += '20';
encodedData += integerToHexVarint(object.Links[j].ContentSize);
}
} else {
// directory
encodedData += '08' + '01';
}
// Some sort of separator or terminator
result += '0a';
var encodedDataSize = encodedData.length / 2;
result += integerToHexVarint(encodedDataSize);
result += encodedData;
return result;
};
var ipfsHashWithLinks = function(base, object) {
var block = hexStringToIntegerList(ipfsBlockWithLinks(object));
//console.time('sha256');
var sha = sha256(block);
//console.timeEnd('sha256');
var hash = sha256IntegerListToMultihash(base, sha);
if (base == 16) {
return { "hash" : integerListToLowercaseBase16Multibase(hash), "block" : block };
} else {
return { "hash" : integerListToLowercaseBase32Multibase(hash), "block" : block };
}
};
return {
utf8StringToHex: utf8StringToHex,
hashWithLinks: ipfsHashWithLinks
};
})();
var ipfs_self_hash = (function() {
var ipfs = micro_ipfs;
var get_root_with_vanity = function(vanity_attempt, ipfs_directory_hashes) {
var find_link_entry = function() {
for (var i = 0; i < ipfs_directory_hashes.tree.Links.length; i++) {
if (ipfs_directory_hashes.tree.Links[i].Name == 'directory_hashes.js') {
return i;
}
}
console.error(ipfs_directory_hashes);
console.error(ipfs_directory_hashes.tree.Links);
throw "Could not find entry for directory_hashes.js";
}
var foo_link_entry = find_link_entry();
ipfs_directory_hashes.tree.Links[foo_link_entry].Hash = "";
ipfs_directory_hashes.tree.Links[foo_link_entry].Size = 0;
ipfs_directory_hashes.vanity_number = vanity_attempt;
// TODO: using JSON.stringify to recreate the file is more brittle, better store the stringified version as a hex string, and then decode it?
var file_directory_hashes = 'jsonp_ipfs_directory_hashes(' + JSON.stringify(ipfs_directory_hashes) + ');\n';
var foo = ipfs.hashWithLinks(16, {
"Links": [],
"isFile": true,
"File": ipfs.utf8StringToHex(file_directory_hashes)
});
ipfs_directory_hashes.tree.Links[foo_link_entry].Hash = foo.hash;
ipfs_directory_hashes.tree.Links[foo_link_entry].Size = foo.block.length;
root = ipfs.hashWithLinks(32, ipfs_directory_hashes.tree);
return root;
};
var expected_vanity_attempt = 32*32*32;
var max_vanity_attempt = expected_vanity_attempt*10;
function find_vanity_node(vanity_text, vanity_attempt, ipfs_directory_hashes) {
if ((! (typeof vanity_text == 'string' || vanity_text instanceof String)) || vanity_text.length != 3) {
throw 'find_vanity_node(vanity_text, ...) : expected a string of length 3';
}
var offset = 1;
switch (vanity_text[2]) {
case '4':
case 'a':
case 'e':
case 'i':
case 'm':
case 'q':
case 'u':
case 'y':
offset = 0;
}
while (true) {
if (vanity_attempt > max_vanity_attempt) {
// give up:
throw 'Failed to brute-force a number that generates the desired vanity text.';
} else {
var root = get_root_with_vanity(vanity_attempt, ipfs_directory_hashes);
if (root.hash[root.hash.length-1-offset] == vanity_text[2] && root.hash[root.hash.length-2-offset] == vanity_text[1]) {
console.error(vanity_attempt + ' (' + Math.floor(100*vanity_attempt/expected_vanity_attempt) + '%)');
if (root.hash[root.hash.length-3-offset] == vanity_text[0]) {
return vanity_attempt;
}
}
vanity_attempt++;
}
}
};
function find_vanity_browser_(offset, old_root, vanity_text, vanity_attempt, callback, ipfs_directory_hashes) {
var root = get_root_with_vanity(vanity_attempt, ipfs_directory_hashes);
if (vanity_attempt > max_vanity_attempt) {
// give up:
root = get_root_with_vanity(ipfs_directory_hashes.vanity_number, ipfs_directory_hashes)
callback(root, 'timeout', false);
} else {
if (root.hash[root.hash.length-1-offset] == vanity_text[2]) {
callback(old_root, '… ' + vanity_attempt + ' (' + Math.floor(100*vanity_attempt/expected_vanity_attempt) + '%)', false);
if (root.hash[root.hash.length-2-offset] == vanity_text[1] && root.hash[root.hash.length-3-offset] == vanity_text[0]) {
callback(root, vanity_attempt, true);
} else {
window.setTimeout(function() { find_vanity_browser_(offset, old_root, vanity_text, vanity_attempt + 1, callback, ipfs_directory_hashes); }, 0);
}
} else {
window.setTimeout(function() { find_vanity_browser_(offset, old_root, vanity_text, vanity_attempt + 1, callback, ipfs_directory_hashes); }, 0);
}
}
};
var find_vanity_browser = function(old_root, vanity_text, vanity_attempt, callback, ipfs_directory_hashes) {
if ((! (typeof vanity_text == 'string' || vanity_text instanceof String)) || vanity_text.length != 3) {
throw 'find_vanity_node(vanity_text, ...) : expected a string of length 3';
}
var offset = 1;
switch (vanity_text[2]) {
case '4':
case 'a':
case 'e':
case 'i':
case 'm':
case 'q':
case 'u':
case 'y':
offset = 0;
}
return find_vanity_browser(offset, old_root, vanity_text, vanity_attempt, callback, ipfs_directory_hashes)
};
var debug = function(show_link) {
var root = get_root_with_vanity(ipfs_directory_hashes.vanity_number, ipfs_directory_hashes);
var vanity_text = ipfs_directory_hashes.vanity_text;
if (root.hash[root.hash.length-1] == vanity_text[2] && root.hash[root.hash.length-2] == vanity_text[1] && root.hash[root.hash.length-3] == vanity_text[0]) {
// vanity check is ok
show_link(root, ipfs_directory_hashes.vanity_number, true);
} else {
// Brute-force to try to find a number that gives the desired last 3 characters
show_link(root, '…', false);
find_vanity_browser(root, vanity_text, 0, show_link, ipfs_directory_hashes);
}
};
var get_link = function get_link() {
var root = get_root_with_vanity(ipfs_directory_hashes.vanity_number, ipfs_directory_hashes);
return root.hash;
};
return { get_link: get_link, find_vanity_browser: find_vanity_browser, find_vanity_node: find_vanity_node };
})();
function jsonp_ipfs_directory_hashes(arg) {
ipfs_directory_hashes = arg;
}
if (typeof module != 'undefined') { module.exports = { micro_ipfs : micro_ipfs, ipfs_self_hash : ipfs_self_hash }; }

204
sha256.js Normal file
View File

@ -0,0 +1,204 @@
var sha256 = (function() {
// SHA-256 for JavaScript.
//
// Written in 2014-2016 by Dmitry Chestnykh.
// Modified from https://github.com/dchest/fast-sha256-js/blob/2cee3ccb977bd4b10e8eeb7fa95036b1d08f2529/sha256.js in 2021 by Suzanne Soy
// Unlicense
// Public domain, no warranty.
//
// Function sha256(message) -> hash accepts and returns an Uint8Array
var digestLength = 32;
var blockSize = 64;
// SHA-256 constants
var K = new Uint32Array([
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b,
0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01,
0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7,
0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e5152,
0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc,
0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819,
0xd6990624, 0xf40e3585, 0x106aa070, 0x19a4c116, 0x1e376c08,
0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f,
0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
]);
var hashBlocks = function(w, v, p, pos, len) {
var a, b, c, d, e, f, g, h, u, i, j, t1, t2;
while (len >= 64) {
a = v[0];
b = v[1];
c = v[2];
d = v[3];
e = v[4];
f = v[5];
g = v[6];
h = v[7];
for (i = 0; i < 16; i++) {
j = pos + i * 4;
w[i] = (((p[j] & 0xff) << 24) | ((p[j + 1] & 0xff) << 16) |
((p[j + 2] & 0xff) << 8) | (p[j + 3] & 0xff));
}
for (i = 16; i < 64; i++) {
u = w[i - 2];
t1 = (u >>> 17 | u << (32 - 17)) ^ (u >>> 19 | u << (32 - 19)) ^ (u >>> 10);
u = w[i - 15];
t2 = (u >>> 7 | u << (32 - 7)) ^ (u >>> 18 | u << (32 - 18)) ^ (u >>> 3);
w[i] = (t1 + w[i - 7] | 0) + (t2 + w[i - 16] | 0);
}
for (i = 0; i < 64; i++) {
t1 = (((((e >>> 6 | e << (32 - 6)) ^ (e >>> 11 | e << (32 - 11)) ^
(e >>> 25 | e << (32 - 25))) + ((e & f) ^ (~e & g))) | 0) +
((h + ((K[i] + w[i]) | 0)) | 0)) | 0;
t2 = (((a >>> 2 | a << (32 - 2)) ^ (a >>> 13 | a << (32 - 13)) ^
(a >>> 22 | a << (32 - 22))) + ((a & b) ^ (a & c) ^ (b & c))) | 0;
h = g;
g = f;
f = e;
e = (d + t1) | 0;
d = c;
c = b;
b = a;
a = (t1 + t2) | 0;
}
v[0] += a;
v[1] += b;
v[2] += c;
v[3] += d;
v[4] += e;
v[5] += f;
v[6] += g;
v[7] += h;
pos += 64;
len -= 64;
}
return pos;
}
// Hash implements SHA256 hash algorithm.
var Hash = /** @class */ (function () {
function Hash() {
this.digestLength = digestLength;
this.blockSize = blockSize;
// Note: Int32Array is used instead of Uint32Array for performance reasons.
this.state = new Int32Array(8); // hash state
this.temp = new Int32Array(64); // temporary state
this.buffer = new Uint8Array(128); // buffer for data to hash
this.bufferLength = 0; // number of bytes in buffer
this.bytesHashed = 0; // number of total bytes hashed
this.finished = false; // indicates whether the hash was finalized
this.reset();
}
// Resets hash state making it possible
// to re-use this instance to hash other data.
Hash.prototype.reset = function () {
this.state[0] = 0x6a09e667;
this.state[1] = 0xbb67ae85;
this.state[2] = 0x3c6ef372;
this.state[3] = 0xa54ff53a;
this.state[4] = 0x510e527f;
this.state[5] = 0x9b05688c;
this.state[6] = 0x1f83d9ab;
this.state[7] = 0x5be0cd19;
this.bufferLength = 0;
this.bytesHashed = 0;
this.finished = false;
return this;
};
// Cleans internal buffers and re-initializes hash state.
Hash.prototype.clean = function () {
for (var i = 0; i < this.buffer.length; i++) {
this.buffer[i] = 0;
}
for (var i = 0; i < this.temp.length; i++) {
this.temp[i] = 0;
}
this.reset();
};
// Updates hash state with the given data.
//
// Optionally, length of the data can be specified to hash
// fewer bytes than data.length.
//
// Throws error when trying to update already finalized hash:
// instance must be reset to use it again.
Hash.prototype.update = function (data, dataLength) {
if (dataLength === void 0) { dataLength = data.length; }
if (this.finished) {
throw new Error("SHA256: can't update because hash was finished.");
}
var dataPos = 0;
this.bytesHashed += dataLength;
if (this.bufferLength > 0) {
while (this.bufferLength < 64 && dataLength > 0) {
this.buffer[this.bufferLength++] = data[dataPos++];
dataLength--;
}
if (this.bufferLength === 64) {
hashBlocks(this.temp, this.state, this.buffer, 0, 64);
this.bufferLength = 0;
}
}
if (dataLength >= 64) {
dataPos = hashBlocks(this.temp, this.state, data, dataPos, dataLength);
dataLength %= 64;
}
while (dataLength > 0) {
this.buffer[this.bufferLength++] = data[dataPos++];
dataLength--;
}
return this;
};
// Finalizes hash state and puts hash into out.
//
// If hash was already finalized, puts the same value.
Hash.prototype.finish = function (out) {
if (!this.finished) {
var bytesHashed = this.bytesHashed;
var left = this.bufferLength;
var bitLenHi = (bytesHashed / 0x20000000) | 0;
var bitLenLo = bytesHashed << 3;
var padLength = (bytesHashed % 64 < 56) ? 64 : 128;
this.buffer[left] = 0x80;
for (var i = left + 1; i < padLength - 8; i++) {
this.buffer[i] = 0;
}
this.buffer[padLength - 8] = (bitLenHi >>> 24) & 0xff;
this.buffer[padLength - 7] = (bitLenHi >>> 16) & 0xff;
this.buffer[padLength - 6] = (bitLenHi >>> 8) & 0xff;
this.buffer[padLength - 5] = (bitLenHi >>> 0) & 0xff;
this.buffer[padLength - 4] = (bitLenLo >>> 24) & 0xff;
this.buffer[padLength - 3] = (bitLenLo >>> 16) & 0xff;
this.buffer[padLength - 2] = (bitLenLo >>> 8) & 0xff;
this.buffer[padLength - 1] = (bitLenLo >>> 0) & 0xff;
hashBlocks(this.temp, this.state, this.buffer, 0, padLength);
this.finished = true;
}
for (var i = 0; i < 8; i++) {
out[i * 4 + 0] = (this.state[i] >>> 24) & 0xff;
out[i * 4 + 1] = (this.state[i] >>> 16) & 0xff;
out[i * 4 + 2] = (this.state[i] >>> 8) & 0xff;
out[i * 4 + 3] = (this.state[i] >>> 0) & 0xff;
}
return this;
};
// Returns the final hash digest.
Hash.prototype.digest = function () {
var out = new Uint8Array(this.digestLength);
this.finish(out);
return out;
};
return Hash;
}());
// Returns SHA256 hash of data.
var hash = function(data) {
var h = (new Hash()).update(data);
var digest = h.digest();
h.clean();
return digest;
}
return hash;
})();
if (typeof module != 'undefined') { module.exports = { sha256 : sha256 }; }

795
sitemap.html Normal file
View File

@ -0,0 +1,795 @@
<!DOCTYPE html><html><head><title>Sitemap</title></head><body>
<a href=".">.</a>
<a href="./.github">./.github</a>
<a href="./.github/files-to-cache.lst">./.github/files-to-cache.lst</a>
<a href="./.github/github_install_ipfs.sh">./.github/github_install_ipfs.sh</a>
<a href="./.github/github_update_homepage.sh">./.github/github_update_homepage.sh</a>
<a href="./.github/pin-using-ipfs.sh">./.github/pin-using-ipfs.sh</a>
<a href="./.github/print-and-compare-ipfs.sh">./.github/print-and-compare-ipfs.sh</a>
<a href="./.github/update-ovh.py">./.github/update-ovh.py</a>
<a href="./.github/warm-up-gateway-caches.sh">./.github/warm-up-gateway-caches.sh</a>
<a href="./.github/workflows">./.github/workflows</a>
<a href="./.github/workflows/upload-to-ipfs-and-update-dns.yml">./.github/workflows/upload-to-ipfs-and-update-dns.yml</a>
<a href="./.gitignore">./.gitignore</a>
<a href="./.ipfsignore">./.ipfsignore</a>
<a href="./.nojekyll">./.nojekyll</a>
<a href="./Blob.js">./Blob.js</a>
<a href="./Blob.js/Blob.js">./Blob.js/Blob.js</a>
<a href="./Blob.js/LICENSE.md">./Blob.js/LICENSE.md</a>
<a href="./CNAME">./CNAME</a>
<a href="./FileSaver.js">./FileSaver.js</a>
<a href="./FileSaver.js/FileSaver.js">./FileSaver.js/FileSaver.js</a>
<a href="./FileSaver.js/LICENSE.md">./FileSaver.js/LICENSE.md</a>
<a href="./JSZip">./JSZip</a>
<a href="./JSZip/LICENSE.markdown">./JSZip/LICENSE.markdown</a>
<a href="./JSZip/jszip.js">./JSZip/jszip.js</a>
<a href="./JSZip/jszip.min.js">./JSZip/jszip.min.js</a>
<a href="./README">./README</a>
<a href="./Viz.js">./Viz.js</a>
<a href="./Viz.js/LICENSE">./Viz.js/LICENSE</a>
<a href="./Viz.js/viz-lite.js">./Viz.js/viz-lite.js</a>
<a href="./Viz.js/viz.js">./Viz.js/viz.js</a>
<a href="./build-and-update.sh">./build-and-update.sh</a>
<a href="./codemirror-5.60.0">./codemirror-5.60.0</a>
<a href="./codemirror-5.60.0/.editorconfig">./codemirror-5.60.0/.editorconfig</a>
<a href="./codemirror-5.60.0/.gitattributes">./codemirror-5.60.0/.gitattributes</a>
<a href="./codemirror-5.60.0/.npmignore">./codemirror-5.60.0/.npmignore</a>
<a href="./codemirror-5.60.0/.travis.yml">./codemirror-5.60.0/.travis.yml</a>
<a href="./codemirror-5.60.0/AUTHORS">./codemirror-5.60.0/AUTHORS</a>
<a href="./codemirror-5.60.0/CHANGELOG.md">./codemirror-5.60.0/CHANGELOG.md</a>
<a href="./codemirror-5.60.0/CONTRIBUTING.md">./codemirror-5.60.0/CONTRIBUTING.md</a>
<a href="./codemirror-5.60.0/LICENSE">./codemirror-5.60.0/LICENSE</a>
<a href="./codemirror-5.60.0/README.md">./codemirror-5.60.0/README.md</a>
<a href="./codemirror-5.60.0/addon">./codemirror-5.60.0/addon</a>
<a href="./codemirror-5.60.0/addon/comment">./codemirror-5.60.0/addon/comment</a>
<a href="./codemirror-5.60.0/addon/comment/comment.js">./codemirror-5.60.0/addon/comment/comment.js</a>
<a href="./codemirror-5.60.0/addon/comment/continuecomment.js">./codemirror-5.60.0/addon/comment/continuecomment.js</a>
<a href="./codemirror-5.60.0/addon/dialog">./codemirror-5.60.0/addon/dialog</a>
<a href="./codemirror-5.60.0/addon/dialog/dialog.css">./codemirror-5.60.0/addon/dialog/dialog.css</a>
<a href="./codemirror-5.60.0/addon/dialog/dialog.js">./codemirror-5.60.0/addon/dialog/dialog.js</a>
<a href="./codemirror-5.60.0/addon/display">./codemirror-5.60.0/addon/display</a>
<a href="./codemirror-5.60.0/addon/display/autorefresh.js">./codemirror-5.60.0/addon/display/autorefresh.js</a>
<a href="./codemirror-5.60.0/addon/display/fullscreen.css">./codemirror-5.60.0/addon/display/fullscreen.css</a>
<a href="./codemirror-5.60.0/addon/display/fullscreen.js">./codemirror-5.60.0/addon/display/fullscreen.js</a>
<a href="./codemirror-5.60.0/addon/display/panel.js">./codemirror-5.60.0/addon/display/panel.js</a>
<a href="./codemirror-5.60.0/addon/display/placeholder.js">./codemirror-5.60.0/addon/display/placeholder.js</a>
<a href="./codemirror-5.60.0/addon/display/rulers.js">./codemirror-5.60.0/addon/display/rulers.js</a>
<a href="./codemirror-5.60.0/addon/edit">./codemirror-5.60.0/addon/edit</a>
<a href="./codemirror-5.60.0/addon/edit/closebrackets.js">./codemirror-5.60.0/addon/edit/closebrackets.js</a>
<a href="./codemirror-5.60.0/addon/edit/closetag.js">./codemirror-5.60.0/addon/edit/closetag.js</a>
<a href="./codemirror-5.60.0/addon/edit/continuelist.js">./codemirror-5.60.0/addon/edit/continuelist.js</a>
<a href="./codemirror-5.60.0/addon/edit/matchbrackets.js">./codemirror-5.60.0/addon/edit/matchbrackets.js</a>
<a href="./codemirror-5.60.0/addon/edit/matchtags.js">./codemirror-5.60.0/addon/edit/matchtags.js</a>
<a href="./codemirror-5.60.0/addon/edit/trailingspace.js">./codemirror-5.60.0/addon/edit/trailingspace.js</a>
<a href="./codemirror-5.60.0/addon/fold">./codemirror-5.60.0/addon/fold</a>
<a href="./codemirror-5.60.0/addon/fold/brace-fold.js">./codemirror-5.60.0/addon/fold/brace-fold.js</a>
<a href="./codemirror-5.60.0/addon/fold/comment-fold.js">./codemirror-5.60.0/addon/fold/comment-fold.js</a>
<a href="./codemirror-5.60.0/addon/fold/foldcode.js">./codemirror-5.60.0/addon/fold/foldcode.js</a>
<a href="./codemirror-5.60.0/addon/fold/foldgutter.css">./codemirror-5.60.0/addon/fold/foldgutter.css</a>
<a href="./codemirror-5.60.0/addon/fold/foldgutter.js">./codemirror-5.60.0/addon/fold/foldgutter.js</a>
<a href="./codemirror-5.60.0/addon/fold/indent-fold.js">./codemirror-5.60.0/addon/fold/indent-fold.js</a>
<a href="./codemirror-5.60.0/addon/fold/markdown-fold.js">./codemirror-5.60.0/addon/fold/markdown-fold.js</a>
<a href="./codemirror-5.60.0/addon/fold/xml-fold.js">./codemirror-5.60.0/addon/fold/xml-fold.js</a>
<a href="./codemirror-5.60.0/addon/hint">./codemirror-5.60.0/addon/hint</a>
<a href="./codemirror-5.60.0/addon/hint/anyword-hint.js">./codemirror-5.60.0/addon/hint/anyword-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/css-hint.js">./codemirror-5.60.0/addon/hint/css-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/html-hint.js">./codemirror-5.60.0/addon/hint/html-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/javascript-hint.js">./codemirror-5.60.0/addon/hint/javascript-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/show-hint.css">./codemirror-5.60.0/addon/hint/show-hint.css</a>
<a href="./codemirror-5.60.0/addon/hint/show-hint.js">./codemirror-5.60.0/addon/hint/show-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/sql-hint.js">./codemirror-5.60.0/addon/hint/sql-hint.js</a>
<a href="./codemirror-5.60.0/addon/hint/xml-hint.js">./codemirror-5.60.0/addon/hint/xml-hint.js</a>
<a href="./codemirror-5.60.0/addon/lint">./codemirror-5.60.0/addon/lint</a>
<a href="./codemirror-5.60.0/addon/lint/coffeescript-lint.js">./codemirror-5.60.0/addon/lint/coffeescript-lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/css-lint.js">./codemirror-5.60.0/addon/lint/css-lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/html-lint.js">./codemirror-5.60.0/addon/lint/html-lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/javascript-lint.js">./codemirror-5.60.0/addon/lint/javascript-lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/json-lint.js">./codemirror-5.60.0/addon/lint/json-lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/lint.css">./codemirror-5.60.0/addon/lint/lint.css</a>
<a href="./codemirror-5.60.0/addon/lint/lint.js">./codemirror-5.60.0/addon/lint/lint.js</a>
<a href="./codemirror-5.60.0/addon/lint/yaml-lint.js">./codemirror-5.60.0/addon/lint/yaml-lint.js</a>
<a href="./codemirror-5.60.0/addon/merge">./codemirror-5.60.0/addon/merge</a>
<a href="./codemirror-5.60.0/addon/merge/merge.css">./codemirror-5.60.0/addon/merge/merge.css</a>
<a href="./codemirror-5.60.0/addon/merge/merge.js">./codemirror-5.60.0/addon/merge/merge.js</a>
<a href="./codemirror-5.60.0/addon/mode">./codemirror-5.60.0/addon/mode</a>
<a href="./codemirror-5.60.0/addon/mode/loadmode.js">./codemirror-5.60.0/addon/mode/loadmode.js</a>
<a href="./codemirror-5.60.0/addon/mode/multiplex.js">./codemirror-5.60.0/addon/mode/multiplex.js</a>
<a href="./codemirror-5.60.0/addon/mode/multiplex_test.js">./codemirror-5.60.0/addon/mode/multiplex_test.js</a>
<a href="./codemirror-5.60.0/addon/mode/overlay.js">./codemirror-5.60.0/addon/mode/overlay.js</a>
<a href="./codemirror-5.60.0/addon/mode/simple.js">./codemirror-5.60.0/addon/mode/simple.js</a>
<a href="./codemirror-5.60.0/addon/runmode">./codemirror-5.60.0/addon/runmode</a>
<a href="./codemirror-5.60.0/addon/runmode/colorize.js">./codemirror-5.60.0/addon/runmode/colorize.js</a>
<a href="./codemirror-5.60.0/addon/runmode/runmode-standalone.js">./codemirror-5.60.0/addon/runmode/runmode-standalone.js</a>
<a href="./codemirror-5.60.0/addon/runmode/runmode.js">./codemirror-5.60.0/addon/runmode/runmode.js</a>
<a href="./codemirror-5.60.0/addon/runmode/runmode.node.js">./codemirror-5.60.0/addon/runmode/runmode.node.js</a>
<a href="./codemirror-5.60.0/addon/scroll">./codemirror-5.60.0/addon/scroll</a>
<a href="./codemirror-5.60.0/addon/scroll/annotatescrollbar.js">./codemirror-5.60.0/addon/scroll/annotatescrollbar.js</a>
<a href="./codemirror-5.60.0/addon/scroll/scrollpastend.js">./codemirror-5.60.0/addon/scroll/scrollpastend.js</a>
<a href="./codemirror-5.60.0/addon/scroll/simplescrollbars.css">./codemirror-5.60.0/addon/scroll/simplescrollbars.css</a>
<a href="./codemirror-5.60.0/addon/scroll/simplescrollbars.js">./codemirror-5.60.0/addon/scroll/simplescrollbars.js</a>
<a href="./codemirror-5.60.0/addon/search">./codemirror-5.60.0/addon/search</a>
<a href="./codemirror-5.60.0/addon/search/jump-to-line.js">./codemirror-5.60.0/addon/search/jump-to-line.js</a>
<a href="./codemirror-5.60.0/addon/search/match-highlighter.js">./codemirror-5.60.0/addon/search/match-highlighter.js</a>
<a href="./codemirror-5.60.0/addon/search/matchesonscrollbar.css">./codemirror-5.60.0/addon/search/matchesonscrollbar.css</a>
<a href="./codemirror-5.60.0/addon/search/matchesonscrollbar.js">./codemirror-5.60.0/addon/search/matchesonscrollbar.js</a>
<a href="./codemirror-5.60.0/addon/search/search.js">./codemirror-5.60.0/addon/search/search.js</a>
<a href="./codemirror-5.60.0/addon/search/searchcursor.js">./codemirror-5.60.0/addon/search/searchcursor.js</a>
<a href="./codemirror-5.60.0/addon/selection">./codemirror-5.60.0/addon/selection</a>
<a href="./codemirror-5.60.0/addon/selection/active-line.js">./codemirror-5.60.0/addon/selection/active-line.js</a>
<a href="./codemirror-5.60.0/addon/selection/mark-selection.js">./codemirror-5.60.0/addon/selection/mark-selection.js</a>
<a href="./codemirror-5.60.0/addon/selection/selection-pointer.js">./codemirror-5.60.0/addon/selection/selection-pointer.js</a>
<a href="./codemirror-5.60.0/addon/tern">./codemirror-5.60.0/addon/tern</a>
<a href="./codemirror-5.60.0/addon/tern/tern.css">./codemirror-5.60.0/addon/tern/tern.css</a>
<a href="./codemirror-5.60.0/addon/tern/tern.js">./codemirror-5.60.0/addon/tern/tern.js</a>
<a href="./codemirror-5.60.0/addon/tern/worker.js">./codemirror-5.60.0/addon/tern/worker.js</a>
<a href="./codemirror-5.60.0/addon/wrap">./codemirror-5.60.0/addon/wrap</a>
<a href="./codemirror-5.60.0/addon/wrap/hardwrap.js">./codemirror-5.60.0/addon/wrap/hardwrap.js</a>
<a href="./codemirror-5.60.0/bin">./codemirror-5.60.0/bin</a>
<a href="./codemirror-5.60.0/bin/authors.sh">./codemirror-5.60.0/bin/authors.sh</a>
<a href="./codemirror-5.60.0/bin/lint">./codemirror-5.60.0/bin/lint</a>
<a href="./codemirror-5.60.0/bin/release">./codemirror-5.60.0/bin/release</a>
<a href="./codemirror-5.60.0/bin/source-highlight">./codemirror-5.60.0/bin/source-highlight</a>
<a href="./codemirror-5.60.0/bin/upload-release.js">./codemirror-5.60.0/bin/upload-release.js</a>
<a href="./codemirror-5.60.0/demo">./codemirror-5.60.0/demo</a>
<a href="./codemirror-5.60.0/demo/activeline.html">./codemirror-5.60.0/demo/activeline.html</a>
<a href="./codemirror-5.60.0/demo/anywordhint.html">./codemirror-5.60.0/demo/anywordhint.html</a>
<a href="./codemirror-5.60.0/demo/bidi.html">./codemirror-5.60.0/demo/bidi.html</a>
<a href="./codemirror-5.60.0/demo/btree.html">./codemirror-5.60.0/demo/btree.html</a>
<a href="./codemirror-5.60.0/demo/buffers.html">./codemirror-5.60.0/demo/buffers.html</a>
<a href="./codemirror-5.60.0/demo/changemode.html">./codemirror-5.60.0/demo/changemode.html</a>
<a href="./codemirror-5.60.0/demo/closebrackets.html">./codemirror-5.60.0/demo/closebrackets.html</a>
<a href="./codemirror-5.60.0/demo/closetag.html">./codemirror-5.60.0/demo/closetag.html</a>
<a href="./codemirror-5.60.0/demo/complete.html">./codemirror-5.60.0/demo/complete.html</a>
<a href="./codemirror-5.60.0/demo/emacs.html">./codemirror-5.60.0/demo/emacs.html</a>
<a href="./codemirror-5.60.0/demo/folding.html">./codemirror-5.60.0/demo/folding.html</a>
<a href="./codemirror-5.60.0/demo/fullscreen.html">./codemirror-5.60.0/demo/fullscreen.html</a>
<a href="./codemirror-5.60.0/demo/hardwrap.html">./codemirror-5.60.0/demo/hardwrap.html</a>
<a href="./codemirror-5.60.0/demo/html5complete.html">./codemirror-5.60.0/demo/html5complete.html</a>
<a href="./codemirror-5.60.0/demo/indentwrap.html">./codemirror-5.60.0/demo/indentwrap.html</a>
<a href="./codemirror-5.60.0/demo/lint.html">./codemirror-5.60.0/demo/lint.html</a>
<a href="./codemirror-5.60.0/demo/loadmode.html">./codemirror-5.60.0/demo/loadmode.html</a>
<a href="./codemirror-5.60.0/demo/marker.html">./codemirror-5.60.0/demo/marker.html</a>
<a href="./codemirror-5.60.0/demo/markselection.html">./codemirror-5.60.0/demo/markselection.html</a>
<a href="./codemirror-5.60.0/demo/matchhighlighter.html">./codemirror-5.60.0/demo/matchhighlighter.html</a>
<a href="./codemirror-5.60.0/demo/matchtags.html">./codemirror-5.60.0/demo/matchtags.html</a>
<a href="./codemirror-5.60.0/demo/merge.html">./codemirror-5.60.0/demo/merge.html</a>
<a href="./codemirror-5.60.0/demo/multiplex.html">./codemirror-5.60.0/demo/multiplex.html</a>
<a href="./codemirror-5.60.0/demo/mustache.html">./codemirror-5.60.0/demo/mustache.html</a>
<a href="./codemirror-5.60.0/demo/panel.html">./codemirror-5.60.0/demo/panel.html</a>
<a href="./codemirror-5.60.0/demo/placeholder.html">./codemirror-5.60.0/demo/placeholder.html</a>
<a href="./codemirror-5.60.0/demo/preview.html">./codemirror-5.60.0/demo/preview.html</a>
<a href="./codemirror-5.60.0/demo/requirejs.html">./codemirror-5.60.0/demo/requirejs.html</a>
<a href="./codemirror-5.60.0/demo/resize.html">./codemirror-5.60.0/demo/resize.html</a>
<a href="./codemirror-5.60.0/demo/rulers.html">./codemirror-5.60.0/demo/rulers.html</a>
<a href="./codemirror-5.60.0/demo/runmode-standalone.html">./codemirror-5.60.0/demo/runmode-standalone.html</a>
<a href="./codemirror-5.60.0/demo/runmode.html">./codemirror-5.60.0/demo/runmode.html</a>
<a href="./codemirror-5.60.0/demo/search.html">./codemirror-5.60.0/demo/search.html</a>
<a href="./codemirror-5.60.0/demo/simplemode.html">./codemirror-5.60.0/demo/simplemode.html</a>
<a href="./codemirror-5.60.0/demo/simplescrollbars.html">./codemirror-5.60.0/demo/simplescrollbars.html</a>
<a href="./codemirror-5.60.0/demo/spanaffectswrapping_shim.html">./codemirror-5.60.0/demo/spanaffectswrapping_shim.html</a>
<a href="./codemirror-5.60.0/demo/sublime.html">./codemirror-5.60.0/demo/sublime.html</a>
<a href="./codemirror-5.60.0/demo/tern.html">./codemirror-5.60.0/demo/tern.html</a>
<a href="./codemirror-5.60.0/demo/theme.html">./codemirror-5.60.0/demo/theme.html</a>
<a href="./codemirror-5.60.0/demo/trailingspace.html">./codemirror-5.60.0/demo/trailingspace.html</a>
<a href="./codemirror-5.60.0/demo/variableheight.html">./codemirror-5.60.0/demo/variableheight.html</a>
<a href="./codemirror-5.60.0/demo/vim.html">./codemirror-5.60.0/demo/vim.html</a>
<a href="./codemirror-5.60.0/demo/visibletabs.html">./codemirror-5.60.0/demo/visibletabs.html</a>
<a href="./codemirror-5.60.0/demo/widget.html">./codemirror-5.60.0/demo/widget.html</a>
<a href="./codemirror-5.60.0/demo/xmlcomplete.html">./codemirror-5.60.0/demo/xmlcomplete.html</a>
<a href="./codemirror-5.60.0/doc">./codemirror-5.60.0/doc</a>
<a href="./codemirror-5.60.0/doc/activebookmark.js">./codemirror-5.60.0/doc/activebookmark.js</a>
<a href="./codemirror-5.60.0/doc/docs.css">./codemirror-5.60.0/doc/docs.css</a>
<a href="./codemirror-5.60.0/doc/internals.html">./codemirror-5.60.0/doc/internals.html</a>
<a href="./codemirror-5.60.0/doc/logo.png">./codemirror-5.60.0/doc/logo.png</a>
<a href="./codemirror-5.60.0/doc/logo.svg">./codemirror-5.60.0/doc/logo.svg</a>
<a href="./codemirror-5.60.0/doc/manual.html">./codemirror-5.60.0/doc/manual.html</a>
<a href="./codemirror-5.60.0/doc/realworld.html">./codemirror-5.60.0/doc/realworld.html</a>
<a href="./codemirror-5.60.0/doc/releases.html">./codemirror-5.60.0/doc/releases.html</a>
<a href="./codemirror-5.60.0/doc/reporting.html">./codemirror-5.60.0/doc/reporting.html</a>
<a href="./codemirror-5.60.0/doc/upgrade_v2.2.html">./codemirror-5.60.0/doc/upgrade_v2.2.html</a>
<a href="./codemirror-5.60.0/doc/upgrade_v3.html">./codemirror-5.60.0/doc/upgrade_v3.html</a>
<a href="./codemirror-5.60.0/doc/upgrade_v4.html">./codemirror-5.60.0/doc/upgrade_v4.html</a>
<a href="./codemirror-5.60.0/doc/yinyang.png">./codemirror-5.60.0/doc/yinyang.png</a>
<a href="./codemirror-5.60.0/index.html">./codemirror-5.60.0/index.html</a>
<a href="./codemirror-5.60.0/keymap">./codemirror-5.60.0/keymap</a>
<a href="./codemirror-5.60.0/keymap/emacs.js">./codemirror-5.60.0/keymap/emacs.js</a>
<a href="./codemirror-5.60.0/keymap/sublime.js">./codemirror-5.60.0/keymap/sublime.js</a>
<a href="./codemirror-5.60.0/keymap/vim.js">./codemirror-5.60.0/keymap/vim.js</a>
<a href="./codemirror-5.60.0/lib">./codemirror-5.60.0/lib</a>
<a href="./codemirror-5.60.0/lib/codemirror.css">./codemirror-5.60.0/lib/codemirror.css</a>
<a href="./codemirror-5.60.0/lib/codemirror.js">./codemirror-5.60.0/lib/codemirror.js</a>
<a href="./codemirror-5.60.0/mode">./codemirror-5.60.0/mode</a>
<a href="./codemirror-5.60.0/mode/apl">./codemirror-5.60.0/mode/apl</a>
<a href="./codemirror-5.60.0/mode/apl/apl.js">./codemirror-5.60.0/mode/apl/apl.js</a>
<a href="./codemirror-5.60.0/mode/apl/index.html">./codemirror-5.60.0/mode/apl/index.html</a>
<a href="./codemirror-5.60.0/mode/asciiarmor">./codemirror-5.60.0/mode/asciiarmor</a>
<a href="./codemirror-5.60.0/mode/asciiarmor/asciiarmor.js">./codemirror-5.60.0/mode/asciiarmor/asciiarmor.js</a>
<a href="./codemirror-5.60.0/mode/asciiarmor/index.html">./codemirror-5.60.0/mode/asciiarmor/index.html</a>
<a href="./codemirror-5.60.0/mode/asn.1">./codemirror-5.60.0/mode/asn.1</a>
<a href="./codemirror-5.60.0/mode/asn.1/asn.1.js">./codemirror-5.60.0/mode/asn.1/asn.1.js</a>
<a href="./codemirror-5.60.0/mode/asn.1/index.html">./codemirror-5.60.0/mode/asn.1/index.html</a>
<a href="./codemirror-5.60.0/mode/asterisk">./codemirror-5.60.0/mode/asterisk</a>
<a href="./codemirror-5.60.0/mode/asterisk/asterisk.js">./codemirror-5.60.0/mode/asterisk/asterisk.js</a>
<a href="./codemirror-5.60.0/mode/asterisk/index.html">./codemirror-5.60.0/mode/asterisk/index.html</a>
<a href="./codemirror-5.60.0/mode/brainfuck">./codemirror-5.60.0/mode/brainfuck</a>
<a href="./codemirror-5.60.0/mode/brainfuck/brainfuck.js">./codemirror-5.60.0/mode/brainfuck/brainfuck.js</a>
<a href="./codemirror-5.60.0/mode/brainfuck/index.html">./codemirror-5.60.0/mode/brainfuck/index.html</a>
<a href="./codemirror-5.60.0/mode/clike">./codemirror-5.60.0/mode/clike</a>
<a href="./codemirror-5.60.0/mode/clike/clike.js">./codemirror-5.60.0/mode/clike/clike.js</a>
<a href="./codemirror-5.60.0/mode/clike/index.html">./codemirror-5.60.0/mode/clike/index.html</a>
<a href="./codemirror-5.60.0/mode/clike/scala.html">./codemirror-5.60.0/mode/clike/scala.html</a>
<a href="./codemirror-5.60.0/mode/clike/test.js">./codemirror-5.60.0/mode/clike/test.js</a>
<a href="./codemirror-5.60.0/mode/clojure">./codemirror-5.60.0/mode/clojure</a>
<a href="./codemirror-5.60.0/mode/clojure/clojure.js">./codemirror-5.60.0/mode/clojure/clojure.js</a>
<a href="./codemirror-5.60.0/mode/clojure/index.html">./codemirror-5.60.0/mode/clojure/index.html</a>
<a href="./codemirror-5.60.0/mode/clojure/test.js">./codemirror-5.60.0/mode/clojure/test.js</a>
<a href="./codemirror-5.60.0/mode/cmake">./codemirror-5.60.0/mode/cmake</a>
<a href="./codemirror-5.60.0/mode/cmake/cmake.js">./codemirror-5.60.0/mode/cmake/cmake.js</a>
<a href="./codemirror-5.60.0/mode/cmake/index.html">./codemirror-5.60.0/mode/cmake/index.html</a>
<a href="./codemirror-5.60.0/mode/cobol">./codemirror-5.60.0/mode/cobol</a>
<a href="./codemirror-5.60.0/mode/cobol/cobol.js">./codemirror-5.60.0/mode/cobol/cobol.js</a>
<a href="./codemirror-5.60.0/mode/cobol/index.html">./codemirror-5.60.0/mode/cobol/index.html</a>
<a href="./codemirror-5.60.0/mode/coffeescript">./codemirror-5.60.0/mode/coffeescript</a>
<a href="./codemirror-5.60.0/mode/coffeescript/coffeescript.js">./codemirror-5.60.0/mode/coffeescript/coffeescript.js</a>
<a href="./codemirror-5.60.0/mode/coffeescript/index.html">./codemirror-5.60.0/mode/coffeescript/index.html</a>
<a href="./codemirror-5.60.0/mode/commonlisp">./codemirror-5.60.0/mode/commonlisp</a>
<a href="./codemirror-5.60.0/mode/commonlisp/commonlisp.js">./codemirror-5.60.0/mode/commonlisp/commonlisp.js</a>
<a href="./codemirror-5.60.0/mode/commonlisp/index.html">./codemirror-5.60.0/mode/commonlisp/index.html</a>
<a href="./codemirror-5.60.0/mode/crystal">./codemirror-5.60.0/mode/crystal</a>
<a href="./codemirror-5.60.0/mode/crystal/crystal.js">./codemirror-5.60.0/mode/crystal/crystal.js</a>
<a href="./codemirror-5.60.0/mode/crystal/index.html">./codemirror-5.60.0/mode/crystal/index.html</a>
<a href="./codemirror-5.60.0/mode/css">./codemirror-5.60.0/mode/css</a>
<a href="./codemirror-5.60.0/mode/css/css.js">./codemirror-5.60.0/mode/css/css.js</a>
<a href="./codemirror-5.60.0/mode/css/gss.html">./codemirror-5.60.0/mode/css/gss.html</a>
<a href="./codemirror-5.60.0/mode/css/gss_test.js">./codemirror-5.60.0/mode/css/gss_test.js</a>
<a href="./codemirror-5.60.0/mode/css/index.html">./codemirror-5.60.0/mode/css/index.html</a>
<a href="./codemirror-5.60.0/mode/css/less.html">./codemirror-5.60.0/mode/css/less.html</a>
<a href="./codemirror-5.60.0/mode/css/less_test.js">./codemirror-5.60.0/mode/css/less_test.js</a>
<a href="./codemirror-5.60.0/mode/css/scss.html">./codemirror-5.60.0/mode/css/scss.html</a>
<a href="./codemirror-5.60.0/mode/css/scss_test.js">./codemirror-5.60.0/mode/css/scss_test.js</a>
<a href="./codemirror-5.60.0/mode/css/test.js">./codemirror-5.60.0/mode/css/test.js</a>
<a href="./codemirror-5.60.0/mode/cypher">./codemirror-5.60.0/mode/cypher</a>
<a href="./codemirror-5.60.0/mode/cypher/cypher.js">./codemirror-5.60.0/mode/cypher/cypher.js</a>
<a href="./codemirror-5.60.0/mode/cypher/index.html">./codemirror-5.60.0/mode/cypher/index.html</a>
<a href="./codemirror-5.60.0/mode/cypher/test.js">./codemirror-5.60.0/mode/cypher/test.js</a>
<a href="./codemirror-5.60.0/mode/d">./codemirror-5.60.0/mode/d</a>
<a href="./codemirror-5.60.0/mode/d/d.js">./codemirror-5.60.0/mode/d/d.js</a>
<a href="./codemirror-5.60.0/mode/d/index.html">./codemirror-5.60.0/mode/d/index.html</a>
<a href="./codemirror-5.60.0/mode/d/test.js">./codemirror-5.60.0/mode/d/test.js</a>
<a href="./codemirror-5.60.0/mode/dart">./codemirror-5.60.0/mode/dart</a>
<a href="./codemirror-5.60.0/mode/dart/dart.js">./codemirror-5.60.0/mode/dart/dart.js</a>
<a href="./codemirror-5.60.0/mode/dart/index.html">./codemirror-5.60.0/mode/dart/index.html</a>
<a href="./codemirror-5.60.0/mode/diff">./codemirror-5.60.0/mode/diff</a>
<a href="./codemirror-5.60.0/mode/diff/diff.js">./codemirror-5.60.0/mode/diff/diff.js</a>
<a href="./codemirror-5.60.0/mode/diff/index.html">./codemirror-5.60.0/mode/diff/index.html</a>
<a href="./codemirror-5.60.0/mode/django">./codemirror-5.60.0/mode/django</a>
<a href="./codemirror-5.60.0/mode/django/django.js">./codemirror-5.60.0/mode/django/django.js</a>
<a href="./codemirror-5.60.0/mode/django/index.html">./codemirror-5.60.0/mode/django/index.html</a>
<a href="./codemirror-5.60.0/mode/dockerfile">./codemirror-5.60.0/mode/dockerfile</a>
<a href="./codemirror-5.60.0/mode/dockerfile/dockerfile.js">./codemirror-5.60.0/mode/dockerfile/dockerfile.js</a>
<a href="./codemirror-5.60.0/mode/dockerfile/index.html">./codemirror-5.60.0/mode/dockerfile/index.html</a>
<a href="./codemirror-5.60.0/mode/dockerfile/test.js">./codemirror-5.60.0/mode/dockerfile/test.js</a>
<a href="./codemirror-5.60.0/mode/dtd">./codemirror-5.60.0/mode/dtd</a>
<a href="./codemirror-5.60.0/mode/dtd/dtd.js">./codemirror-5.60.0/mode/dtd/dtd.js</a>
<a href="./codemirror-5.60.0/mode/dtd/index.html">./codemirror-5.60.0/mode/dtd/index.html</a>
<a href="./codemirror-5.60.0/mode/dylan">./codemirror-5.60.0/mode/dylan</a>
<a href="./codemirror-5.60.0/mode/dylan/dylan.js">./codemirror-5.60.0/mode/dylan/dylan.js</a>
<a href="./codemirror-5.60.0/mode/dylan/index.html">./codemirror-5.60.0/mode/dylan/index.html</a>
<a href="./codemirror-5.60.0/mode/dylan/test.js">./codemirror-5.60.0/mode/dylan/test.js</a>
<a href="./codemirror-5.60.0/mode/ebnf">./codemirror-5.60.0/mode/ebnf</a>
<a href="./codemirror-5.60.0/mode/ebnf/ebnf.js">./codemirror-5.60.0/mode/ebnf/ebnf.js</a>
<a href="./codemirror-5.60.0/mode/ebnf/index.html">./codemirror-5.60.0/mode/ebnf/index.html</a>
<a href="./codemirror-5.60.0/mode/ecl">./codemirror-5.60.0/mode/ecl</a>
<a href="./codemirror-5.60.0/mode/ecl/ecl.js">./codemirror-5.60.0/mode/ecl/ecl.js</a>
<a href="./codemirror-5.60.0/mode/ecl/index.html">./codemirror-5.60.0/mode/ecl/index.html</a>
<a href="./codemirror-5.60.0/mode/eiffel">./codemirror-5.60.0/mode/eiffel</a>
<a href="./codemirror-5.60.0/mode/eiffel/eiffel.js">./codemirror-5.60.0/mode/eiffel/eiffel.js</a>
<a href="./codemirror-5.60.0/mode/eiffel/index.html">./codemirror-5.60.0/mode/eiffel/index.html</a>
<a href="./codemirror-5.60.0/mode/elm">./codemirror-5.60.0/mode/elm</a>
<a href="./codemirror-5.60.0/mode/elm/elm.js">./codemirror-5.60.0/mode/elm/elm.js</a>
<a href="./codemirror-5.60.0/mode/elm/index.html">./codemirror-5.60.0/mode/elm/index.html</a>
<a href="./codemirror-5.60.0/mode/erlang">./codemirror-5.60.0/mode/erlang</a>
<a href="./codemirror-5.60.0/mode/erlang/erlang.js">./codemirror-5.60.0/mode/erlang/erlang.js</a>
<a href="./codemirror-5.60.0/mode/erlang/index.html">./codemirror-5.60.0/mode/erlang/index.html</a>
<a href="./codemirror-5.60.0/mode/factor">./codemirror-5.60.0/mode/factor</a>
<a href="./codemirror-5.60.0/mode/factor/factor.js">./codemirror-5.60.0/mode/factor/factor.js</a>
<a href="./codemirror-5.60.0/mode/factor/index.html">./codemirror-5.60.0/mode/factor/index.html</a>
<a href="./codemirror-5.60.0/mode/fcl">./codemirror-5.60.0/mode/fcl</a>
<a href="./codemirror-5.60.0/mode/fcl/fcl.js">./codemirror-5.60.0/mode/fcl/fcl.js</a>
<a href="./codemirror-5.60.0/mode/fcl/index.html">./codemirror-5.60.0/mode/fcl/index.html</a>
<a href="./codemirror-5.60.0/mode/forth">./codemirror-5.60.0/mode/forth</a>
<a href="./codemirror-5.60.0/mode/forth/forth.js">./codemirror-5.60.0/mode/forth/forth.js</a>
<a href="./codemirror-5.60.0/mode/forth/index.html">./codemirror-5.60.0/mode/forth/index.html</a>
<a href="./codemirror-5.60.0/mode/fortran">./codemirror-5.60.0/mode/fortran</a>
<a href="./codemirror-5.60.0/mode/fortran/fortran.js">./codemirror-5.60.0/mode/fortran/fortran.js</a>
<a href="./codemirror-5.60.0/mode/fortran/index.html">./codemirror-5.60.0/mode/fortran/index.html</a>
<a href="./codemirror-5.60.0/mode/gas">./codemirror-5.60.0/mode/gas</a>
<a href="./codemirror-5.60.0/mode/gas/gas.js">./codemirror-5.60.0/mode/gas/gas.js</a>
<a href="./codemirror-5.60.0/mode/gas/index.html">./codemirror-5.60.0/mode/gas/index.html</a>
<a href="./codemirror-5.60.0/mode/gfm">./codemirror-5.60.0/mode/gfm</a>
<a href="./codemirror-5.60.0/mode/gfm/gfm.js">./codemirror-5.60.0/mode/gfm/gfm.js</a>
<a href="./codemirror-5.60.0/mode/gfm/index.html">./codemirror-5.60.0/mode/gfm/index.html</a>
<a href="./codemirror-5.60.0/mode/gfm/test.js">./codemirror-5.60.0/mode/gfm/test.js</a>
<a href="./codemirror-5.60.0/mode/gherkin">./codemirror-5.60.0/mode/gherkin</a>
<a href="./codemirror-5.60.0/mode/gherkin/gherkin.js">./codemirror-5.60.0/mode/gherkin/gherkin.js</a>
<a href="./codemirror-5.60.0/mode/gherkin/index.html">./codemirror-5.60.0/mode/gherkin/index.html</a>
<a href="./codemirror-5.60.0/mode/go">./codemirror-5.60.0/mode/go</a>
<a href="./codemirror-5.60.0/mode/go/go.js">./codemirror-5.60.0/mode/go/go.js</a>
<a href="./codemirror-5.60.0/mode/go/index.html">./codemirror-5.60.0/mode/go/index.html</a>
<a href="./codemirror-5.60.0/mode/groovy">./codemirror-5.60.0/mode/groovy</a>
<a href="./codemirror-5.60.0/mode/groovy/groovy.js">./codemirror-5.60.0/mode/groovy/groovy.js</a>
<a href="./codemirror-5.60.0/mode/groovy/index.html">./codemirror-5.60.0/mode/groovy/index.html</a>
<a href="./codemirror-5.60.0/mode/haml">./codemirror-5.60.0/mode/haml</a>
<a href="./codemirror-5.60.0/mode/haml/haml.js">./codemirror-5.60.0/mode/haml/haml.js</a>
<a href="./codemirror-5.60.0/mode/haml/index.html">./codemirror-5.60.0/mode/haml/index.html</a>
<a href="./codemirror-5.60.0/mode/haml/test.js">./codemirror-5.60.0/mode/haml/test.js</a>
<a href="./codemirror-5.60.0/mode/handlebars">./codemirror-5.60.0/mode/handlebars</a>
<a href="./codemirror-5.60.0/mode/handlebars/handlebars.js">./codemirror-5.60.0/mode/handlebars/handlebars.js</a>
<a href="./codemirror-5.60.0/mode/handlebars/index.html">./codemirror-5.60.0/mode/handlebars/index.html</a>
<a href="./codemirror-5.60.0/mode/haskell">./codemirror-5.60.0/mode/haskell</a>
<a href="./codemirror-5.60.0/mode/haskell-literate">./codemirror-5.60.0/mode/haskell-literate</a>
<a href="./codemirror-5.60.0/mode/haskell-literate/haskell-literate.js">./codemirror-5.60.0/mode/haskell-literate/haskell-literate.js</a>
<a href="./codemirror-5.60.0/mode/haskell-literate/index.html">./codemirror-5.60.0/mode/haskell-literate/index.html</a>
<a href="./codemirror-5.60.0/mode/haskell/haskell.js">./codemirror-5.60.0/mode/haskell/haskell.js</a>
<a href="./codemirror-5.60.0/mode/haskell/index.html">./codemirror-5.60.0/mode/haskell/index.html</a>
<a href="./codemirror-5.60.0/mode/haxe">./codemirror-5.60.0/mode/haxe</a>
<a href="./codemirror-5.60.0/mode/haxe/haxe.js">./codemirror-5.60.0/mode/haxe/haxe.js</a>
<a href="./codemirror-5.60.0/mode/haxe/index.html">./codemirror-5.60.0/mode/haxe/index.html</a>
<a href="./codemirror-5.60.0/mode/htmlembedded">./codemirror-5.60.0/mode/htmlembedded</a>
<a href="./codemirror-5.60.0/mode/htmlembedded/htmlembedded.js">./codemirror-5.60.0/mode/htmlembedded/htmlembedded.js</a>
<a href="./codemirror-5.60.0/mode/htmlembedded/index.html">./codemirror-5.60.0/mode/htmlembedded/index.html</a>
<a href="./codemirror-5.60.0/mode/htmlmixed">./codemirror-5.60.0/mode/htmlmixed</a>
<a href="./codemirror-5.60.0/mode/htmlmixed/htmlmixed.js">./codemirror-5.60.0/mode/htmlmixed/htmlmixed.js</a>
<a href="./codemirror-5.60.0/mode/htmlmixed/index.html">./codemirror-5.60.0/mode/htmlmixed/index.html</a>
<a href="./codemirror-5.60.0/mode/http">./codemirror-5.60.0/mode/http</a>
<a href="./codemirror-5.60.0/mode/http/http.js">./codemirror-5.60.0/mode/http/http.js</a>
<a href="./codemirror-5.60.0/mode/http/index.html">./codemirror-5.60.0/mode/http/index.html</a>
<a href="./codemirror-5.60.0/mode/idl">./codemirror-5.60.0/mode/idl</a>
<a href="./codemirror-5.60.0/mode/idl/idl.js">./codemirror-5.60.0/mode/idl/idl.js</a>
<a href="./codemirror-5.60.0/mode/idl/index.html">./codemirror-5.60.0/mode/idl/index.html</a>
<a href="./codemirror-5.60.0/mode/index.html">./codemirror-5.60.0/mode/index.html</a>
<a href="./codemirror-5.60.0/mode/javascript">./codemirror-5.60.0/mode/javascript</a>
<a href="./codemirror-5.60.0/mode/javascript/index.html">./codemirror-5.60.0/mode/javascript/index.html</a>
<a href="./codemirror-5.60.0/mode/javascript/javascript.js">./codemirror-5.60.0/mode/javascript/javascript.js</a>
<a href="./codemirror-5.60.0/mode/javascript/json-ld.html">./codemirror-5.60.0/mode/javascript/json-ld.html</a>
<a href="./codemirror-5.60.0/mode/javascript/test.js">./codemirror-5.60.0/mode/javascript/test.js</a>
<a href="./codemirror-5.60.0/mode/javascript/typescript.html">./codemirror-5.60.0/mode/javascript/typescript.html</a>
<a href="./codemirror-5.60.0/mode/jinja2">./codemirror-5.60.0/mode/jinja2</a>
<a href="./codemirror-5.60.0/mode/jinja2/index.html">./codemirror-5.60.0/mode/jinja2/index.html</a>
<a href="./codemirror-5.60.0/mode/jinja2/jinja2.js">./codemirror-5.60.0/mode/jinja2/jinja2.js</a>
<a href="./codemirror-5.60.0/mode/jsx">./codemirror-5.60.0/mode/jsx</a>
<a href="./codemirror-5.60.0/mode/jsx/index.html">./codemirror-5.60.0/mode/jsx/index.html</a>
<a href="./codemirror-5.60.0/mode/jsx/jsx.js">./codemirror-5.60.0/mode/jsx/jsx.js</a>
<a href="./codemirror-5.60.0/mode/jsx/test.js">./codemirror-5.60.0/mode/jsx/test.js</a>
<a href="./codemirror-5.60.0/mode/julia">./codemirror-5.60.0/mode/julia</a>
<a href="./codemirror-5.60.0/mode/julia/index.html">./codemirror-5.60.0/mode/julia/index.html</a>
<a href="./codemirror-5.60.0/mode/julia/julia.js">./codemirror-5.60.0/mode/julia/julia.js</a>
<a href="./codemirror-5.60.0/mode/livescript">./codemirror-5.60.0/mode/livescript</a>
<a href="./codemirror-5.60.0/mode/livescript/index.html">./codemirror-5.60.0/mode/livescript/index.html</a>
<a href="./codemirror-5.60.0/mode/livescript/livescript.js">./codemirror-5.60.0/mode/livescript/livescript.js</a>
<a href="./codemirror-5.60.0/mode/lua">./codemirror-5.60.0/mode/lua</a>
<a href="./codemirror-5.60.0/mode/lua/index.html">./codemirror-5.60.0/mode/lua/index.html</a>
<a href="./codemirror-5.60.0/mode/lua/lua.js">./codemirror-5.60.0/mode/lua/lua.js</a>
<a href="./codemirror-5.60.0/mode/markdown">./codemirror-5.60.0/mode/markdown</a>
<a href="./codemirror-5.60.0/mode/markdown/index.html">./codemirror-5.60.0/mode/markdown/index.html</a>
<a href="./codemirror-5.60.0/mode/markdown/markdown.js">./codemirror-5.60.0/mode/markdown/markdown.js</a>
<a href="./codemirror-5.60.0/mode/markdown/test.js">./codemirror-5.60.0/mode/markdown/test.js</a>
<a href="./codemirror-5.60.0/mode/mathematica">./codemirror-5.60.0/mode/mathematica</a>
<a href="./codemirror-5.60.0/mode/mathematica/index.html">./codemirror-5.60.0/mode/mathematica/index.html</a>
<a href="./codemirror-5.60.0/mode/mathematica/mathematica.js">./codemirror-5.60.0/mode/mathematica/mathematica.js</a>
<a href="./codemirror-5.60.0/mode/mbox">./codemirror-5.60.0/mode/mbox</a>
<a href="./codemirror-5.60.0/mode/mbox/index.html">./codemirror-5.60.0/mode/mbox/index.html</a>
<a href="./codemirror-5.60.0/mode/mbox/mbox.js">./codemirror-5.60.0/mode/mbox/mbox.js</a>
<a href="./codemirror-5.60.0/mode/meta.js">./codemirror-5.60.0/mode/meta.js</a>
<a href="./codemirror-5.60.0/mode/mirc">./codemirror-5.60.0/mode/mirc</a>
<a href="./codemirror-5.60.0/mode/mirc/index.html">./codemirror-5.60.0/mode/mirc/index.html</a>
<a href="./codemirror-5.60.0/mode/mirc/mirc.js">./codemirror-5.60.0/mode/mirc/mirc.js</a>
<a href="./codemirror-5.60.0/mode/mllike">./codemirror-5.60.0/mode/mllike</a>
<a href="./codemirror-5.60.0/mode/mllike/index.html">./codemirror-5.60.0/mode/mllike/index.html</a>
<a href="./codemirror-5.60.0/mode/mllike/mllike.js">./codemirror-5.60.0/mode/mllike/mllike.js</a>
<a href="./codemirror-5.60.0/mode/modelica">./codemirror-5.60.0/mode/modelica</a>
<a href="./codemirror-5.60.0/mode/modelica/index.html">./codemirror-5.60.0/mode/modelica/index.html</a>
<a href="./codemirror-5.60.0/mode/modelica/modelica.js">./codemirror-5.60.0/mode/modelica/modelica.js</a>
<a href="./codemirror-5.60.0/mode/mscgen">./codemirror-5.60.0/mode/mscgen</a>
<a href="./codemirror-5.60.0/mode/mscgen/index.html">./codemirror-5.60.0/mode/mscgen/index.html</a>
<a href="./codemirror-5.60.0/mode/mscgen/mscgen.js">./codemirror-5.60.0/mode/mscgen/mscgen.js</a>
<a href="./codemirror-5.60.0/mode/mscgen/mscgen_test.js">./codemirror-5.60.0/mode/mscgen/mscgen_test.js</a>
<a href="./codemirror-5.60.0/mode/mscgen/msgenny_test.js">./codemirror-5.60.0/mode/mscgen/msgenny_test.js</a>
<a href="./codemirror-5.60.0/mode/mscgen/xu_test.js">./codemirror-5.60.0/mode/mscgen/xu_test.js</a>
<a href="./codemirror-5.60.0/mode/mumps">./codemirror-5.60.0/mode/mumps</a>
<a href="./codemirror-5.60.0/mode/mumps/index.html">./codemirror-5.60.0/mode/mumps/index.html</a>
<a href="./codemirror-5.60.0/mode/mumps/mumps.js">./codemirror-5.60.0/mode/mumps/mumps.js</a>
<a href="./codemirror-5.60.0/mode/nginx">./codemirror-5.60.0/mode/nginx</a>
<a href="./codemirror-5.60.0/mode/nginx/index.html">./codemirror-5.60.0/mode/nginx/index.html</a>
<a href="./codemirror-5.60.0/mode/nginx/nginx.js">./codemirror-5.60.0/mode/nginx/nginx.js</a>
<a href="./codemirror-5.60.0/mode/nsis">./codemirror-5.60.0/mode/nsis</a>
<a href="./codemirror-5.60.0/mode/nsis/index.html">./codemirror-5.60.0/mode/nsis/index.html</a>
<a href="./codemirror-5.60.0/mode/nsis/nsis.js">./codemirror-5.60.0/mode/nsis/nsis.js</a>
<a href="./codemirror-5.60.0/mode/ntriples">./codemirror-5.60.0/mode/ntriples</a>
<a href="./codemirror-5.60.0/mode/ntriples/index.html">./codemirror-5.60.0/mode/ntriples/index.html</a>
<a href="./codemirror-5.60.0/mode/ntriples/ntriples.js">./codemirror-5.60.0/mode/ntriples/ntriples.js</a>
<a href="./codemirror-5.60.0/mode/octave">./codemirror-5.60.0/mode/octave</a>
<a href="./codemirror-5.60.0/mode/octave/index.html">./codemirror-5.60.0/mode/octave/index.html</a>
<a href="./codemirror-5.60.0/mode/octave/octave.js">./codemirror-5.60.0/mode/octave/octave.js</a>
<a href="./codemirror-5.60.0/mode/oz">./codemirror-5.60.0/mode/oz</a>
<a href="./codemirror-5.60.0/mode/oz/index.html">./codemirror-5.60.0/mode/oz/index.html</a>
<a href="./codemirror-5.60.0/mode/oz/oz.js">./codemirror-5.60.0/mode/oz/oz.js</a>
<a href="./codemirror-5.60.0/mode/pascal">./codemirror-5.60.0/mode/pascal</a>
<a href="./codemirror-5.60.0/mode/pascal/index.html">./codemirror-5.60.0/mode/pascal/index.html</a>
<a href="./codemirror-5.60.0/mode/pascal/pascal.js">./codemirror-5.60.0/mode/pascal/pascal.js</a>
<a href="./codemirror-5.60.0/mode/pegjs">./codemirror-5.60.0/mode/pegjs</a>
<a href="./codemirror-5.60.0/mode/pegjs/index.html">./codemirror-5.60.0/mode/pegjs/index.html</a>
<a href="./codemirror-5.60.0/mode/pegjs/pegjs.js">./codemirror-5.60.0/mode/pegjs/pegjs.js</a>
<a href="./codemirror-5.60.0/mode/perl">./codemirror-5.60.0/mode/perl</a>
<a href="./codemirror-5.60.0/mode/perl/index.html">./codemirror-5.60.0/mode/perl/index.html</a>
<a href="./codemirror-5.60.0/mode/perl/perl.js">./codemirror-5.60.0/mode/perl/perl.js</a>
<a href="./codemirror-5.60.0/mode/php">./codemirror-5.60.0/mode/php</a>
<a href="./codemirror-5.60.0/mode/php/index.html">./codemirror-5.60.0/mode/php/index.html</a>
<a href="./codemirror-5.60.0/mode/php/php.js">./codemirror-5.60.0/mode/php/php.js</a>
<a href="./codemirror-5.60.0/mode/php/test.js">./codemirror-5.60.0/mode/php/test.js</a>
<a href="./codemirror-5.60.0/mode/pig">./codemirror-5.60.0/mode/pig</a>
<a href="./codemirror-5.60.0/mode/pig/index.html">./codemirror-5.60.0/mode/pig/index.html</a>
<a href="./codemirror-5.60.0/mode/pig/pig.js">./codemirror-5.60.0/mode/pig/pig.js</a>
<a href="./codemirror-5.60.0/mode/powershell">./codemirror-5.60.0/mode/powershell</a>
<a href="./codemirror-5.60.0/mode/powershell/index.html">./codemirror-5.60.0/mode/powershell/index.html</a>
<a href="./codemirror-5.60.0/mode/powershell/powershell.js">./codemirror-5.60.0/mode/powershell/powershell.js</a>
<a href="./codemirror-5.60.0/mode/powershell/test.js">./codemirror-5.60.0/mode/powershell/test.js</a>
<a href="./codemirror-5.60.0/mode/properties">./codemirror-5.60.0/mode/properties</a>
<a href="./codemirror-5.60.0/mode/properties/index.html">./codemirror-5.60.0/mode/properties/index.html</a>
<a href="./codemirror-5.60.0/mode/properties/properties.js">./codemirror-5.60.0/mode/properties/properties.js</a>
<a href="./codemirror-5.60.0/mode/protobuf">./codemirror-5.60.0/mode/protobuf</a>
<a href="./codemirror-5.60.0/mode/protobuf/index.html">./codemirror-5.60.0/mode/protobuf/index.html</a>
<a href="./codemirror-5.60.0/mode/protobuf/protobuf.js">./codemirror-5.60.0/mode/protobuf/protobuf.js</a>
<a href="./codemirror-5.60.0/mode/pug">./codemirror-5.60.0/mode/pug</a>
<a href="./codemirror-5.60.0/mode/pug/index.html">./codemirror-5.60.0/mode/pug/index.html</a>
<a href="./codemirror-5.60.0/mode/pug/pug.js">./codemirror-5.60.0/mode/pug/pug.js</a>
<a href="./codemirror-5.60.0/mode/puppet">./codemirror-5.60.0/mode/puppet</a>
<a href="./codemirror-5.60.0/mode/puppet/index.html">./codemirror-5.60.0/mode/puppet/index.html</a>
<a href="./codemirror-5.60.0/mode/puppet/puppet.js">./codemirror-5.60.0/mode/puppet/puppet.js</a>
<a href="./codemirror-5.60.0/mode/python">./codemirror-5.60.0/mode/python</a>
<a href="./codemirror-5.60.0/mode/python/index.html">./codemirror-5.60.0/mode/python/index.html</a>
<a href="./codemirror-5.60.0/mode/python/python.js">./codemirror-5.60.0/mode/python/python.js</a>
<a href="./codemirror-5.60.0/mode/python/test.js">./codemirror-5.60.0/mode/python/test.js</a>
<a href="./codemirror-5.60.0/mode/q">./codemirror-5.60.0/mode/q</a>
<a href="./codemirror-5.60.0/mode/q/index.html">./codemirror-5.60.0/mode/q/index.html</a>
<a href="./codemirror-5.60.0/mode/q/q.js">./codemirror-5.60.0/mode/q/q.js</a>
<a href="./codemirror-5.60.0/mode/r">./codemirror-5.60.0/mode/r</a>
<a href="./codemirror-5.60.0/mode/r/index.html">./codemirror-5.60.0/mode/r/index.html</a>
<a href="./codemirror-5.60.0/mode/r/r.js">./codemirror-5.60.0/mode/r/r.js</a>
<a href="./codemirror-5.60.0/mode/rpm">./codemirror-5.60.0/mode/rpm</a>
<a href="./codemirror-5.60.0/mode/rpm/changes">./codemirror-5.60.0/mode/rpm/changes</a>
<a href="./codemirror-5.60.0/mode/rpm/changes/index.html">./codemirror-5.60.0/mode/rpm/changes/index.html</a>
<a href="./codemirror-5.60.0/mode/rpm/index.html">./codemirror-5.60.0/mode/rpm/index.html</a>
<a href="./codemirror-5.60.0/mode/rpm/rpm.js">./codemirror-5.60.0/mode/rpm/rpm.js</a>
<a href="./codemirror-5.60.0/mode/rst">./codemirror-5.60.0/mode/rst</a>
<a href="./codemirror-5.60.0/mode/rst/index.html">./codemirror-5.60.0/mode/rst/index.html</a>
<a href="./codemirror-5.60.0/mode/rst/rst.js">./codemirror-5.60.0/mode/rst/rst.js</a>
<a href="./codemirror-5.60.0/mode/ruby">./codemirror-5.60.0/mode/ruby</a>
<a href="./codemirror-5.60.0/mode/ruby/index.html">./codemirror-5.60.0/mode/ruby/index.html</a>
<a href="./codemirror-5.60.0/mode/ruby/ruby.js">./codemirror-5.60.0/mode/ruby/ruby.js</a>
<a href="./codemirror-5.60.0/mode/ruby/test.js">./codemirror-5.60.0/mode/ruby/test.js</a>
<a href="./codemirror-5.60.0/mode/rust">./codemirror-5.60.0/mode/rust</a>
<a href="./codemirror-5.60.0/mode/rust/index.html">./codemirror-5.60.0/mode/rust/index.html</a>
<a href="./codemirror-5.60.0/mode/rust/rust.js">./codemirror-5.60.0/mode/rust/rust.js</a>
<a href="./codemirror-5.60.0/mode/rust/test.js">./codemirror-5.60.0/mode/rust/test.js</a>
<a href="./codemirror-5.60.0/mode/sas">./codemirror-5.60.0/mode/sas</a>
<a href="./codemirror-5.60.0/mode/sas/index.html">./codemirror-5.60.0/mode/sas/index.html</a>
<a href="./codemirror-5.60.0/mode/sas/sas.js">./codemirror-5.60.0/mode/sas/sas.js</a>
<a href="./codemirror-5.60.0/mode/sass">./codemirror-5.60.0/mode/sass</a>
<a href="./codemirror-5.60.0/mode/sass/index.html">./codemirror-5.60.0/mode/sass/index.html</a>
<a href="./codemirror-5.60.0/mode/sass/sass.js">./codemirror-5.60.0/mode/sass/sass.js</a>
<a href="./codemirror-5.60.0/mode/sass/test.js">./codemirror-5.60.0/mode/sass/test.js</a>
<a href="./codemirror-5.60.0/mode/scheme">./codemirror-5.60.0/mode/scheme</a>
<a href="./codemirror-5.60.0/mode/scheme/index.html">./codemirror-5.60.0/mode/scheme/index.html</a>
<a href="./codemirror-5.60.0/mode/scheme/scheme.js">./codemirror-5.60.0/mode/scheme/scheme.js</a>
<a href="./codemirror-5.60.0/mode/shell">./codemirror-5.60.0/mode/shell</a>
<a href="./codemirror-5.60.0/mode/shell/index.html">./codemirror-5.60.0/mode/shell/index.html</a>
<a href="./codemirror-5.60.0/mode/shell/shell.js">./codemirror-5.60.0/mode/shell/shell.js</a>
<a href="./codemirror-5.60.0/mode/shell/test.js">./codemirror-5.60.0/mode/shell/test.js</a>
<a href="./codemirror-5.60.0/mode/sieve">./codemirror-5.60.0/mode/sieve</a>
<a href="./codemirror-5.60.0/mode/sieve/index.html">./codemirror-5.60.0/mode/sieve/index.html</a>
<a href="./codemirror-5.60.0/mode/sieve/sieve.js">./codemirror-5.60.0/mode/sieve/sieve.js</a>
<a href="./codemirror-5.60.0/mode/slim">./codemirror-5.60.0/mode/slim</a>
<a href="./codemirror-5.60.0/mode/slim/index.html">./codemirror-5.60.0/mode/slim/index.html</a>
<a href="./codemirror-5.60.0/mode/slim/slim.js">./codemirror-5.60.0/mode/slim/slim.js</a>
<a href="./codemirror-5.60.0/mode/slim/test.js">./codemirror-5.60.0/mode/slim/test.js</a>
<a href="./codemirror-5.60.0/mode/smalltalk">./codemirror-5.60.0/mode/smalltalk</a>
<a href="./codemirror-5.60.0/mode/smalltalk/index.html">./codemirror-5.60.0/mode/smalltalk/index.html</a>
<a href="./codemirror-5.60.0/mode/smalltalk/smalltalk.js">./codemirror-5.60.0/mode/smalltalk/smalltalk.js</a>
<a href="./codemirror-5.60.0/mode/smarty">./codemirror-5.60.0/mode/smarty</a>
<a href="./codemirror-5.60.0/mode/smarty/index.html">./codemirror-5.60.0/mode/smarty/index.html</a>
<a href="./codemirror-5.60.0/mode/smarty/smarty.js">./codemirror-5.60.0/mode/smarty/smarty.js</a>
<a href="./codemirror-5.60.0/mode/solr">./codemirror-5.60.0/mode/solr</a>
<a href="./codemirror-5.60.0/mode/solr/index.html">./codemirror-5.60.0/mode/solr/index.html</a>
<a href="./codemirror-5.60.0/mode/solr/solr.js">./codemirror-5.60.0/mode/solr/solr.js</a>
<a href="./codemirror-5.60.0/mode/soy">./codemirror-5.60.0/mode/soy</a>
<a href="./codemirror-5.60.0/mode/soy/index.html">./codemirror-5.60.0/mode/soy/index.html</a>
<a href="./codemirror-5.60.0/mode/soy/soy.js">./codemirror-5.60.0/mode/soy/soy.js</a>
<a href="./codemirror-5.60.0/mode/soy/test.js">./codemirror-5.60.0/mode/soy/test.js</a>
<a href="./codemirror-5.60.0/mode/sparql">./codemirror-5.60.0/mode/sparql</a>
<a href="./codemirror-5.60.0/mode/sparql/index.html">./codemirror-5.60.0/mode/sparql/index.html</a>
<a href="./codemirror-5.60.0/mode/sparql/sparql.js">./codemirror-5.60.0/mode/sparql/sparql.js</a>
<a href="./codemirror-5.60.0/mode/spreadsheet">./codemirror-5.60.0/mode/spreadsheet</a>
<a href="./codemirror-5.60.0/mode/spreadsheet/index.html">./codemirror-5.60.0/mode/spreadsheet/index.html</a>
<a href="./codemirror-5.60.0/mode/spreadsheet/spreadsheet.js">./codemirror-5.60.0/mode/spreadsheet/spreadsheet.js</a>
<a href="./codemirror-5.60.0/mode/sql">./codemirror-5.60.0/mode/sql</a>
<a href="./codemirror-5.60.0/mode/sql/index.html">./codemirror-5.60.0/mode/sql/index.html</a>
<a href="./codemirror-5.60.0/mode/sql/sql.js">./codemirror-5.60.0/mode/sql/sql.js</a>
<a href="./codemirror-5.60.0/mode/stex">./codemirror-5.60.0/mode/stex</a>
<a href="./codemirror-5.60.0/mode/stex/index.html">./codemirror-5.60.0/mode/stex/index.html</a>
<a href="./codemirror-5.60.0/mode/stex/stex.js">./codemirror-5.60.0/mode/stex/stex.js</a>
<a href="./codemirror-5.60.0/mode/stex/test.js">./codemirror-5.60.0/mode/stex/test.js</a>
<a href="./codemirror-5.60.0/mode/stylus">./codemirror-5.60.0/mode/stylus</a>
<a href="./codemirror-5.60.0/mode/stylus/index.html">./codemirror-5.60.0/mode/stylus/index.html</a>
<a href="./codemirror-5.60.0/mode/stylus/stylus.js">./codemirror-5.60.0/mode/stylus/stylus.js</a>
<a href="./codemirror-5.60.0/mode/swift">./codemirror-5.60.0/mode/swift</a>
<a href="./codemirror-5.60.0/mode/swift/index.html">./codemirror-5.60.0/mode/swift/index.html</a>
<a href="./codemirror-5.60.0/mode/swift/swift.js">./codemirror-5.60.0/mode/swift/swift.js</a>
<a href="./codemirror-5.60.0/mode/swift/test.js">./codemirror-5.60.0/mode/swift/test.js</a>
<a href="./codemirror-5.60.0/mode/tcl">./codemirror-5.60.0/mode/tcl</a>
<a href="./codemirror-5.60.0/mode/tcl/index.html">./codemirror-5.60.0/mode/tcl/index.html</a>
<a href="./codemirror-5.60.0/mode/tcl/tcl.js">./codemirror-5.60.0/mode/tcl/tcl.js</a>
<a href="./codemirror-5.60.0/mode/textile">./codemirror-5.60.0/mode/textile</a>
<a href="./codemirror-5.60.0/mode/textile/index.html">./codemirror-5.60.0/mode/textile/index.html</a>
<a href="./codemirror-5.60.0/mode/textile/test.js">./codemirror-5.60.0/mode/textile/test.js</a>
<a href="./codemirror-5.60.0/mode/textile/textile.js">./codemirror-5.60.0/mode/textile/textile.js</a>
<a href="./codemirror-5.60.0/mode/tiddlywiki">./codemirror-5.60.0/mode/tiddlywiki</a>
<a href="./codemirror-5.60.0/mode/tiddlywiki/index.html">./codemirror-5.60.0/mode/tiddlywiki/index.html</a>
<a href="./codemirror-5.60.0/mode/tiddlywiki/tiddlywiki.css">./codemirror-5.60.0/mode/tiddlywiki/tiddlywiki.css</a>
<a href="./codemirror-5.60.0/mode/tiddlywiki/tiddlywiki.js">./codemirror-5.60.0/mode/tiddlywiki/tiddlywiki.js</a>
<a href="./codemirror-5.60.0/mode/tiki">./codemirror-5.60.0/mode/tiki</a>
<a href="./codemirror-5.60.0/mode/tiki/index.html">./codemirror-5.60.0/mode/tiki/index.html</a>
<a href="./codemirror-5.60.0/mode/tiki/tiki.css">./codemirror-5.60.0/mode/tiki/tiki.css</a>
<a href="./codemirror-5.60.0/mode/tiki/tiki.js">./codemirror-5.60.0/mode/tiki/tiki.js</a>
<a href="./codemirror-5.60.0/mode/toml">./codemirror-5.60.0/mode/toml</a>
<a href="./codemirror-5.60.0/mode/toml/index.html">./codemirror-5.60.0/mode/toml/index.html</a>
<a href="./codemirror-5.60.0/mode/toml/toml.js">./codemirror-5.60.0/mode/toml/toml.js</a>
<a href="./codemirror-5.60.0/mode/tornado">./codemirror-5.60.0/mode/tornado</a>
<a href="./codemirror-5.60.0/mode/tornado/index.html">./codemirror-5.60.0/mode/tornado/index.html</a>
<a href="./codemirror-5.60.0/mode/tornado/tornado.js">./codemirror-5.60.0/mode/tornado/tornado.js</a>
<a href="./codemirror-5.60.0/mode/troff">./codemirror-5.60.0/mode/troff</a>
<a href="./codemirror-5.60.0/mode/troff/index.html">./codemirror-5.60.0/mode/troff/index.html</a>
<a href="./codemirror-5.60.0/mode/troff/troff.js">./codemirror-5.60.0/mode/troff/troff.js</a>
<a href="./codemirror-5.60.0/mode/ttcn">./codemirror-5.60.0/mode/ttcn</a>
<a href="./codemirror-5.60.0/mode/ttcn-cfg">./codemirror-5.60.0/mode/ttcn-cfg</a>
<a href="./codemirror-5.60.0/mode/ttcn-cfg/index.html">./codemirror-5.60.0/mode/ttcn-cfg/index.html</a>
<a href="./codemirror-5.60.0/mode/ttcn-cfg/ttcn-cfg.js">./codemirror-5.60.0/mode/ttcn-cfg/ttcn-cfg.js</a>
<a href="./codemirror-5.60.0/mode/ttcn/index.html">./codemirror-5.60.0/mode/ttcn/index.html</a>
<a href="./codemirror-5.60.0/mode/ttcn/ttcn.js">./codemirror-5.60.0/mode/ttcn/ttcn.js</a>
<a href="./codemirror-5.60.0/mode/turtle">./codemirror-5.60.0/mode/turtle</a>
<a href="./codemirror-5.60.0/mode/turtle/index.html">./codemirror-5.60.0/mode/turtle/index.html</a>
<a href="./codemirror-5.60.0/mode/turtle/turtle.js">./codemirror-5.60.0/mode/turtle/turtle.js</a>
<a href="./codemirror-5.60.0/mode/twig">./codemirror-5.60.0/mode/twig</a>
<a href="./codemirror-5.60.0/mode/twig/index.html">./codemirror-5.60.0/mode/twig/index.html</a>
<a href="./codemirror-5.60.0/mode/twig/twig.js">./codemirror-5.60.0/mode/twig/twig.js</a>
<a href="./codemirror-5.60.0/mode/vb">./codemirror-5.60.0/mode/vb</a>
<a href="./codemirror-5.60.0/mode/vb/index.html">./codemirror-5.60.0/mode/vb/index.html</a>
<a href="./codemirror-5.60.0/mode/vb/vb.js">./codemirror-5.60.0/mode/vb/vb.js</a>
<a href="./codemirror-5.60.0/mode/vbscript">./codemirror-5.60.0/mode/vbscript</a>
<a href="./codemirror-5.60.0/mode/vbscript/index.html">./codemirror-5.60.0/mode/vbscript/index.html</a>
<a href="./codemirror-5.60.0/mode/vbscript/vbscript.js">./codemirror-5.60.0/mode/vbscript/vbscript.js</a>
<a href="./codemirror-5.60.0/mode/velocity">./codemirror-5.60.0/mode/velocity</a>
<a href="./codemirror-5.60.0/mode/velocity/index.html">./codemirror-5.60.0/mode/velocity/index.html</a>
<a href="./codemirror-5.60.0/mode/velocity/velocity.js">./codemirror-5.60.0/mode/velocity/velocity.js</a>
<a href="./codemirror-5.60.0/mode/verilog">./codemirror-5.60.0/mode/verilog</a>
<a href="./codemirror-5.60.0/mode/verilog/index.html">./codemirror-5.60.0/mode/verilog/index.html</a>
<a href="./codemirror-5.60.0/mode/verilog/test.js">./codemirror-5.60.0/mode/verilog/test.js</a>
<a href="./codemirror-5.60.0/mode/verilog/verilog.js">./codemirror-5.60.0/mode/verilog/verilog.js</a>
<a href="./codemirror-5.60.0/mode/vhdl">./codemirror-5.60.0/mode/vhdl</a>
<a href="./codemirror-5.60.0/mode/vhdl/index.html">./codemirror-5.60.0/mode/vhdl/index.html</a>
<a href="./codemirror-5.60.0/mode/vhdl/vhdl.js">./codemirror-5.60.0/mode/vhdl/vhdl.js</a>
<a href="./codemirror-5.60.0/mode/vue">./codemirror-5.60.0/mode/vue</a>
<a href="./codemirror-5.60.0/mode/vue/index.html">./codemirror-5.60.0/mode/vue/index.html</a>
<a href="./codemirror-5.60.0/mode/vue/vue.js">./codemirror-5.60.0/mode/vue/vue.js</a>
<a href="./codemirror-5.60.0/mode/wast">./codemirror-5.60.0/mode/wast</a>
<a href="./codemirror-5.60.0/mode/wast/index.html">./codemirror-5.60.0/mode/wast/index.html</a>
<a href="./codemirror-5.60.0/mode/wast/test.js">./codemirror-5.60.0/mode/wast/test.js</a>
<a href="./codemirror-5.60.0/mode/wast/wast.js">./codemirror-5.60.0/mode/wast/wast.js</a>
<a href="./codemirror-5.60.0/mode/webidl">./codemirror-5.60.0/mode/webidl</a>
<a href="./codemirror-5.60.0/mode/webidl/index.html">./codemirror-5.60.0/mode/webidl/index.html</a>
<a href="./codemirror-5.60.0/mode/webidl/webidl.js">./codemirror-5.60.0/mode/webidl/webidl.js</a>
<a href="./codemirror-5.60.0/mode/xml">./codemirror-5.60.0/mode/xml</a>
<a href="./codemirror-5.60.0/mode/xml/index.html">./codemirror-5.60.0/mode/xml/index.html</a>
<a href="./codemirror-5.60.0/mode/xml/test.js">./codemirror-5.60.0/mode/xml/test.js</a>
<a href="./codemirror-5.60.0/mode/xml/xml.js">./codemirror-5.60.0/mode/xml/xml.js</a>
<a href="./codemirror-5.60.0/mode/xquery">./codemirror-5.60.0/mode/xquery</a>
<a href="./codemirror-5.60.0/mode/xquery/index.html">./codemirror-5.60.0/mode/xquery/index.html</a>
<a href="./codemirror-5.60.0/mode/xquery/test.js">./codemirror-5.60.0/mode/xquery/test.js</a>
<a href="./codemirror-5.60.0/mode/xquery/xquery.js">./codemirror-5.60.0/mode/xquery/xquery.js</a>
<a href="./codemirror-5.60.0/mode/yacas">./codemirror-5.60.0/mode/yacas</a>
<a href="./codemirror-5.60.0/mode/yacas/index.html">./codemirror-5.60.0/mode/yacas/index.html</a>
<a href="./codemirror-5.60.0/mode/yacas/yacas.js">./codemirror-5.60.0/mode/yacas/yacas.js</a>
<a href="./codemirror-5.60.0/mode/yaml">./codemirror-5.60.0/mode/yaml</a>
<a href="./codemirror-5.60.0/mode/yaml-frontmatter">./codemirror-5.60.0/mode/yaml-frontmatter</a>
<a href="./codemirror-5.60.0/mode/yaml-frontmatter/index.html">./codemirror-5.60.0/mode/yaml-frontmatter/index.html</a>
<a href="./codemirror-5.60.0/mode/yaml-frontmatter/yaml-frontmatter.js">./codemirror-5.60.0/mode/yaml-frontmatter/yaml-frontmatter.js</a>
<a href="./codemirror-5.60.0/mode/yaml/index.html">./codemirror-5.60.0/mode/yaml/index.html</a>
<a href="./codemirror-5.60.0/mode/yaml/yaml.js">./codemirror-5.60.0/mode/yaml/yaml.js</a>
<a href="./codemirror-5.60.0/mode/z80">./codemirror-5.60.0/mode/z80</a>
<a href="./codemirror-5.60.0/mode/z80/index.html">./codemirror-5.60.0/mode/z80/index.html</a>
<a href="./codemirror-5.60.0/mode/z80/z80.js">./codemirror-5.60.0/mode/z80/z80.js</a>
<a href="./codemirror-5.60.0/package.json">./codemirror-5.60.0/package.json</a>
<a href="./codemirror-5.60.0/rollup.config.js">./codemirror-5.60.0/rollup.config.js</a>
<a href="./codemirror-5.60.0/src">./codemirror-5.60.0/src</a>
<a href="./codemirror-5.60.0/src/addon">./codemirror-5.60.0/src/addon</a>
<a href="./codemirror-5.60.0/src/addon/runmode">./codemirror-5.60.0/src/addon/runmode</a>
<a href="./codemirror-5.60.0/src/addon/runmode/codemirror-standalone.js">./codemirror-5.60.0/src/addon/runmode/codemirror-standalone.js</a>
<a href="./codemirror-5.60.0/src/addon/runmode/codemirror.node.js">./codemirror-5.60.0/src/addon/runmode/codemirror.node.js</a>
<a href="./codemirror-5.60.0/src/addon/runmode/runmode-standalone.js">./codemirror-5.60.0/src/addon/runmode/runmode-standalone.js</a>
<a href="./codemirror-5.60.0/src/addon/runmode/runmode.node.js">./codemirror-5.60.0/src/addon/runmode/runmode.node.js</a>
<a href="./codemirror-5.60.0/src/codemirror.js">./codemirror-5.60.0/src/codemirror.js</a>
<a href="./codemirror-5.60.0/src/display">./codemirror-5.60.0/src/display</a>
<a href="./codemirror-5.60.0/src/display/Display.js">./codemirror-5.60.0/src/display/Display.js</a>
<a href="./codemirror-5.60.0/src/display/focus.js">./codemirror-5.60.0/src/display/focus.js</a>
<a href="./codemirror-5.60.0/src/display/gutters.js">./codemirror-5.60.0/src/display/gutters.js</a>
<a href="./codemirror-5.60.0/src/display/highlight_worker.js">./codemirror-5.60.0/src/display/highlight_worker.js</a>
<a href="./codemirror-5.60.0/src/display/line_numbers.js">./codemirror-5.60.0/src/display/line_numbers.js</a>
<a href="./codemirror-5.60.0/src/display/mode_state.js">./codemirror-5.60.0/src/display/mode_state.js</a>
<a href="./codemirror-5.60.0/src/display/operations.js">./codemirror-5.60.0/src/display/operations.js</a>
<a href="./codemirror-5.60.0/src/display/scroll_events.js">./codemirror-5.60.0/src/display/scroll_events.js</a>
<a href="./codemirror-5.60.0/src/display/scrollbars.js">./codemirror-5.60.0/src/display/scrollbars.js</a>
<a href="./codemirror-5.60.0/src/display/scrolling.js">./codemirror-5.60.0/src/display/scrolling.js</a>
<a href="./codemirror-5.60.0/src/display/selection.js">./codemirror-5.60.0/src/display/selection.js</a>
<a href="./codemirror-5.60.0/src/display/update_display.js">./codemirror-5.60.0/src/display/update_display.js</a>
<a href="./codemirror-5.60.0/src/display/update_line.js">./codemirror-5.60.0/src/display/update_line.js</a>
<a href="./codemirror-5.60.0/src/display/update_lines.js">./codemirror-5.60.0/src/display/update_lines.js</a>
<a href="./codemirror-5.60.0/src/display/view_tracking.js">./codemirror-5.60.0/src/display/view_tracking.js</a>
<a href="./codemirror-5.60.0/src/edit">./codemirror-5.60.0/src/edit</a>
<a href="./codemirror-5.60.0/src/edit/CodeMirror.js">./codemirror-5.60.0/src/edit/CodeMirror.js</a>
<a href="./codemirror-5.60.0/src/edit/commands.js">./codemirror-5.60.0/src/edit/commands.js</a>
<a href="./codemirror-5.60.0/src/edit/deleteNearSelection.js">./codemirror-5.60.0/src/edit/deleteNearSelection.js</a>
<a href="./codemirror-5.60.0/src/edit/drop_events.js">./codemirror-5.60.0/src/edit/drop_events.js</a>
<a href="./codemirror-5.60.0/src/edit/fromTextArea.js">./codemirror-5.60.0/src/edit/fromTextArea.js</a>
<a href="./codemirror-5.60.0/src/edit/global_events.js">./codemirror-5.60.0/src/edit/global_events.js</a>
<a href="./codemirror-5.60.0/src/edit/key_events.js">./codemirror-5.60.0/src/edit/key_events.js</a>
<a href="./codemirror-5.60.0/src/edit/legacy.js">./codemirror-5.60.0/src/edit/legacy.js</a>
<a href="./codemirror-5.60.0/src/edit/main.js">./codemirror-5.60.0/src/edit/main.js</a>
<a href="./codemirror-5.60.0/src/edit/methods.js">./codemirror-5.60.0/src/edit/methods.js</a>
<a href="./codemirror-5.60.0/src/edit/mouse_events.js">./codemirror-5.60.0/src/edit/mouse_events.js</a>
<a href="./codemirror-5.60.0/src/edit/options.js">./codemirror-5.60.0/src/edit/options.js</a>
<a href="./codemirror-5.60.0/src/edit/utils.js">./codemirror-5.60.0/src/edit/utils.js</a>
<a href="./codemirror-5.60.0/src/input">./codemirror-5.60.0/src/input</a>
<a href="./codemirror-5.60.0/src/input/ContentEditableInput.js">./codemirror-5.60.0/src/input/ContentEditableInput.js</a>
<a href="./codemirror-5.60.0/src/input/TextareaInput.js">./codemirror-5.60.0/src/input/TextareaInput.js</a>
<a href="./codemirror-5.60.0/src/input/indent.js">./codemirror-5.60.0/src/input/indent.js</a>
<a href="./codemirror-5.60.0/src/input/input.js">./codemirror-5.60.0/src/input/input.js</a>
<a href="./codemirror-5.60.0/src/input/keymap.js">./codemirror-5.60.0/src/input/keymap.js</a>
<a href="./codemirror-5.60.0/src/input/keynames.js">./codemirror-5.60.0/src/input/keynames.js</a>
<a href="./codemirror-5.60.0/src/input/movement.js">./codemirror-5.60.0/src/input/movement.js</a>
<a href="./codemirror-5.60.0/src/line">./codemirror-5.60.0/src/line</a>
<a href="./codemirror-5.60.0/src/line/highlight.js">./codemirror-5.60.0/src/line/highlight.js</a>
<a href="./codemirror-5.60.0/src/line/line_data.js">./codemirror-5.60.0/src/line/line_data.js</a>
<a href="./codemirror-5.60.0/src/line/pos.js">./codemirror-5.60.0/src/line/pos.js</a>
<a href="./codemirror-5.60.0/src/line/saw_special_spans.js">./codemirror-5.60.0/src/line/saw_special_spans.js</a>
<a href="./codemirror-5.60.0/src/line/spans.js">./codemirror-5.60.0/src/line/spans.js</a>
<a href="./codemirror-5.60.0/src/line/utils_line.js">./codemirror-5.60.0/src/line/utils_line.js</a>
<a href="./codemirror-5.60.0/src/measurement">./codemirror-5.60.0/src/measurement</a>
<a href="./codemirror-5.60.0/src/measurement/position_measurement.js">./codemirror-5.60.0/src/measurement/position_measurement.js</a>
<a href="./codemirror-5.60.0/src/measurement/widgets.js">./codemirror-5.60.0/src/measurement/widgets.js</a>
<a href="./codemirror-5.60.0/src/model">./codemirror-5.60.0/src/model</a>
<a href="./codemirror-5.60.0/src/model/Doc.js">./codemirror-5.60.0/src/model/Doc.js</a>
<a href="./codemirror-5.60.0/src/model/change_measurement.js">./codemirror-5.60.0/src/model/change_measurement.js</a>
<a href="./codemirror-5.60.0/src/model/changes.js">./codemirror-5.60.0/src/model/changes.js</a>
<a href="./codemirror-5.60.0/src/model/chunk.js">./codemirror-5.60.0/src/model/chunk.js</a>
<a href="./codemirror-5.60.0/src/model/document_data.js">./codemirror-5.60.0/src/model/document_data.js</a>
<a href="./codemirror-5.60.0/src/model/history.js">./codemirror-5.60.0/src/model/history.js</a>
<a href="./codemirror-5.60.0/src/model/line_widget.js">./codemirror-5.60.0/src/model/line_widget.js</a>
<a href="./codemirror-5.60.0/src/model/mark_text.js">./codemirror-5.60.0/src/model/mark_text.js</a>
<a href="./codemirror-5.60.0/src/model/selection.js">./codemirror-5.60.0/src/model/selection.js</a>
<a href="./codemirror-5.60.0/src/model/selection_updates.js">./codemirror-5.60.0/src/model/selection_updates.js</a>
<a href="./codemirror-5.60.0/src/modes.js">./codemirror-5.60.0/src/modes.js</a>
<a href="./codemirror-5.60.0/src/util">./codemirror-5.60.0/src/util</a>
<a href="./codemirror-5.60.0/src/util/StringStream.js">./codemirror-5.60.0/src/util/StringStream.js</a>
<a href="./codemirror-5.60.0/src/util/bidi.js">./codemirror-5.60.0/src/util/bidi.js</a>
<a href="./codemirror-5.60.0/src/util/browser.js">./codemirror-5.60.0/src/util/browser.js</a>
<a href="./codemirror-5.60.0/src/util/dom.js">./codemirror-5.60.0/src/util/dom.js</a>
<a href="./codemirror-5.60.0/src/util/event.js">./codemirror-5.60.0/src/util/event.js</a>
<a href="./codemirror-5.60.0/src/util/feature_detection.js">./codemirror-5.60.0/src/util/feature_detection.js</a>
<a href="./codemirror-5.60.0/src/util/misc.js">./codemirror-5.60.0/src/util/misc.js</a>
<a href="./codemirror-5.60.0/src/util/operation_group.js">./codemirror-5.60.0/src/util/operation_group.js</a>
<a href="./codemirror-5.60.0/test">./codemirror-5.60.0/test</a>
<a href="./codemirror-5.60.0/test/annotatescrollbar.js">./codemirror-5.60.0/test/annotatescrollbar.js</a>
<a href="./codemirror-5.60.0/test/comment_test.js">./codemirror-5.60.0/test/comment_test.js</a>
<a href="./codemirror-5.60.0/test/contenteditable_test.js">./codemirror-5.60.0/test/contenteditable_test.js</a>
<a href="./codemirror-5.60.0/test/doc_test.js">./codemirror-5.60.0/test/doc_test.js</a>
<a href="./codemirror-5.60.0/test/driver.js">./codemirror-5.60.0/test/driver.js</a>
<a href="./codemirror-5.60.0/test/emacs_test.js">./codemirror-5.60.0/test/emacs_test.js</a>
<a href="./codemirror-5.60.0/test/html-hint-test.js">./codemirror-5.60.0/test/html-hint-test.js</a>
<a href="./codemirror-5.60.0/test/index.html">./codemirror-5.60.0/test/index.html</a>
<a href="./codemirror-5.60.0/test/lint.js">./codemirror-5.60.0/test/lint.js</a>
<a href="./codemirror-5.60.0/test/mode_test.css">./codemirror-5.60.0/test/mode_test.css</a>
<a href="./codemirror-5.60.0/test/mode_test.js">./codemirror-5.60.0/test/mode_test.js</a>
<a href="./codemirror-5.60.0/test/multi_test.js">./codemirror-5.60.0/test/multi_test.js</a>
<a href="./codemirror-5.60.0/test/run.js">./codemirror-5.60.0/test/run.js</a>
<a href="./codemirror-5.60.0/test/scroll_test.js">./codemirror-5.60.0/test/scroll_test.js</a>
<a href="./codemirror-5.60.0/test/search_test.js">./codemirror-5.60.0/test/search_test.js</a>
<a href="./codemirror-5.60.0/test/sql-hint-test.js">./codemirror-5.60.0/test/sql-hint-test.js</a>
<a href="./codemirror-5.60.0/test/sublime_test.js">./codemirror-5.60.0/test/sublime_test.js</a>
<a href="./codemirror-5.60.0/test/test.js">./codemirror-5.60.0/test/test.js</a>
<a href="./codemirror-5.60.0/test/vim_test.js">./codemirror-5.60.0/test/vim_test.js</a>
<a href="./codemirror-5.60.0/theme">./codemirror-5.60.0/theme</a>
<a href="./codemirror-5.60.0/theme/3024-day.css">./codemirror-5.60.0/theme/3024-day.css</a>
<a href="./codemirror-5.60.0/theme/3024-night.css">./codemirror-5.60.0/theme/3024-night.css</a>
<a href="./codemirror-5.60.0/theme/abcdef.css">./codemirror-5.60.0/theme/abcdef.css</a>
<a href="./codemirror-5.60.0/theme/ambiance-mobile.css">./codemirror-5.60.0/theme/ambiance-mobile.css</a>
<a href="./codemirror-5.60.0/theme/ambiance.css">./codemirror-5.60.0/theme/ambiance.css</a>
<a href="./codemirror-5.60.0/theme/ayu-dark.css">./codemirror-5.60.0/theme/ayu-dark.css</a>
<a href="./codemirror-5.60.0/theme/ayu-mirage.css">./codemirror-5.60.0/theme/ayu-mirage.css</a>
<a href="./codemirror-5.60.0/theme/base16-dark.css">./codemirror-5.60.0/theme/base16-dark.css</a>
<a href="./codemirror-5.60.0/theme/base16-light.css">./codemirror-5.60.0/theme/base16-light.css</a>
<a href="./codemirror-5.60.0/theme/bespin.css">./codemirror-5.60.0/theme/bespin.css</a>
<a href="./codemirror-5.60.0/theme/blackboard.css">./codemirror-5.60.0/theme/blackboard.css</a>
<a href="./codemirror-5.60.0/theme/cobalt.css">./codemirror-5.60.0/theme/cobalt.css</a>
<a href="./codemirror-5.60.0/theme/colorforth.css">./codemirror-5.60.0/theme/colorforth.css</a>
<a href="./codemirror-5.60.0/theme/darcula.css">./codemirror-5.60.0/theme/darcula.css</a>
<a href="./codemirror-5.60.0/theme/dracula.css">./codemirror-5.60.0/theme/dracula.css</a>
<a href="./codemirror-5.60.0/theme/duotone-dark.css">./codemirror-5.60.0/theme/duotone-dark.css</a>
<a href="./codemirror-5.60.0/theme/duotone-light.css">./codemirror-5.60.0/theme/duotone-light.css</a>
<a href="./codemirror-5.60.0/theme/eclipse.css">./codemirror-5.60.0/theme/eclipse.css</a>
<a href="./codemirror-5.60.0/theme/elegant.css">./codemirror-5.60.0/theme/elegant.css</a>
<a href="./codemirror-5.60.0/theme/erlang-dark.css">./codemirror-5.60.0/theme/erlang-dark.css</a>
<a href="./codemirror-5.60.0/theme/gruvbox-dark.css">./codemirror-5.60.0/theme/gruvbox-dark.css</a>
<a href="./codemirror-5.60.0/theme/hopscotch.css">./codemirror-5.60.0/theme/hopscotch.css</a>
<a href="./codemirror-5.60.0/theme/icecoder.css">./codemirror-5.60.0/theme/icecoder.css</a>
<a href="./codemirror-5.60.0/theme/idea.css">./codemirror-5.60.0/theme/idea.css</a>
<a href="./codemirror-5.60.0/theme/isotope.css">./codemirror-5.60.0/theme/isotope.css</a>
<a href="./codemirror-5.60.0/theme/lesser-dark.css">./codemirror-5.60.0/theme/lesser-dark.css</a>
<a href="./codemirror-5.60.0/theme/liquibyte.css">./codemirror-5.60.0/theme/liquibyte.css</a>
<a href="./codemirror-5.60.0/theme/lucario.css">./codemirror-5.60.0/theme/lucario.css</a>
<a href="./codemirror-5.60.0/theme/material-darker.css">./codemirror-5.60.0/theme/material-darker.css</a>
<a href="./codemirror-5.60.0/theme/material-ocean.css">./codemirror-5.60.0/theme/material-ocean.css</a>
<a href="./codemirror-5.60.0/theme/material-palenight.css">./codemirror-5.60.0/theme/material-palenight.css</a>
<a href="./codemirror-5.60.0/theme/material.css">./codemirror-5.60.0/theme/material.css</a>
<a href="./codemirror-5.60.0/theme/mbo.css">./codemirror-5.60.0/theme/mbo.css</a>
<a href="./codemirror-5.60.0/theme/mdn-like.css">./codemirror-5.60.0/theme/mdn-like.css</a>
<a href="./codemirror-5.60.0/theme/midnight.css">./codemirror-5.60.0/theme/midnight.css</a>
<a href="./codemirror-5.60.0/theme/monokai.css">./codemirror-5.60.0/theme/monokai.css</a>
<a href="./codemirror-5.60.0/theme/moxer.css">./codemirror-5.60.0/theme/moxer.css</a>
<a href="./codemirror-5.60.0/theme/neat.css">./codemirror-5.60.0/theme/neat.css</a>
<a href="./codemirror-5.60.0/theme/neo.css">./codemirror-5.60.0/theme/neo.css</a>
<a href="./codemirror-5.60.0/theme/night.css">./codemirror-5.60.0/theme/night.css</a>
<a href="./codemirror-5.60.0/theme/nord.css">./codemirror-5.60.0/theme/nord.css</a>
<a href="./codemirror-5.60.0/theme/oceanic-next.css">./codemirror-5.60.0/theme/oceanic-next.css</a>
<a href="./codemirror-5.60.0/theme/panda-syntax.css">./codemirror-5.60.0/theme/panda-syntax.css</a>
<a href="./codemirror-5.60.0/theme/paraiso-dark.css">./codemirror-5.60.0/theme/paraiso-dark.css</a>
<a href="./codemirror-5.60.0/theme/paraiso-light.css">./codemirror-5.60.0/theme/paraiso-light.css</a>
<a href="./codemirror-5.60.0/theme/pastel-on-dark.css">./codemirror-5.60.0/theme/pastel-on-dark.css</a>
<a href="./codemirror-5.60.0/theme/railscasts.css">./codemirror-5.60.0/theme/railscasts.css</a>
<a href="./codemirror-5.60.0/theme/rubyblue.css">./codemirror-5.60.0/theme/rubyblue.css</a>
<a href="./codemirror-5.60.0/theme/seti.css">./codemirror-5.60.0/theme/seti.css</a>
<a href="./codemirror-5.60.0/theme/shadowfox.css">./codemirror-5.60.0/theme/shadowfox.css</a>
<a href="./codemirror-5.60.0/theme/solarized.css">./codemirror-5.60.0/theme/solarized.css</a>
<a href="./codemirror-5.60.0/theme/ssms.css">./codemirror-5.60.0/theme/ssms.css</a>
<a href="./codemirror-5.60.0/theme/the-matrix.css">./codemirror-5.60.0/theme/the-matrix.css</a>
<a href="./codemirror-5.60.0/theme/tomorrow-night-bright.css">./codemirror-5.60.0/theme/tomorrow-night-bright.css</a>
<a href="./codemirror-5.60.0/theme/tomorrow-night-eighties.css">./codemirror-5.60.0/theme/tomorrow-night-eighties.css</a>
<a href="./codemirror-5.60.0/theme/ttcn.css">./codemirror-5.60.0/theme/ttcn.css</a>
<a href="./codemirror-5.60.0/theme/twilight.css">./codemirror-5.60.0/theme/twilight.css</a>
<a href="./codemirror-5.60.0/theme/vibrant-ink.css">./codemirror-5.60.0/theme/vibrant-ink.css</a>
<a href="./codemirror-5.60.0/theme/xq-dark.css">./codemirror-5.60.0/theme/xq-dark.css</a>
<a href="./codemirror-5.60.0/theme/xq-light.css">./codemirror-5.60.0/theme/xq-light.css</a>
<a href="./codemirror-5.60.0/theme/yeti.css">./codemirror-5.60.0/theme/yeti.css</a>
<a href="./codemirror-5.60.0/theme/yonce.css">./codemirror-5.60.0/theme/yonce.css</a>
<a href="./codemirror-5.60.0/theme/zenburn.css">./codemirror-5.60.0/theme/zenburn.css</a>
<a href="./deploy.sh">./deploy.sh</a>
<a href="./directory_hashes.js">./directory_hashes.js</a>
<a href="./favicon.ico">./favicon.ico</a>
<a href="./favicon.svg">./favicon.svg</a>
<a href="./flake.lock">./flake.lock</a>
<a href="./flake.nix">./flake.nix</a>
<a href="./git-tutorial.css">./git-tutorial.css</a>
<a href="./git-tutorial.js">./git-tutorial.js</a>
<a href="./index.html">./index.html</a>
<a href="./ipfs-add.sh">./ipfs-add.sh</a>
<a href="./micro_ipfs.js">./micro_ipfs.js</a>
<a href="./pako">./pako</a>
<a href="./pako/LICENSE">./pako/LICENSE</a>
<a href="./pako/MIT-LICENSE">./pako/MIT-LICENSE</a>
<a href="./pako/lib-slash-zlib-slash-README">./pako/lib-slash-zlib-slash-README</a>
<a href="./pako/pako.min.js">./pako/pako.min.js</a>
<a href="./sha1.js">./sha1.js</a>
<a href="./sha1.js/LICENSE">./sha1.js/LICENSE</a>
<a href="./sha1.js/sha1.js">./sha1.js/sha1.js</a>
<a href="./sha256.js">./sha256.js</a>
<a href="./sitemap.html">./sitemap.html</a>
</body></html>