gollum 6.0.0 → 6.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +2 -0
- data/Dockerfile +4 -4
- data/Gemfile +11 -0
- data/HISTORY.md +35 -0
- data/LATEST_CHANGES.md +4 -17
- data/README.md +2 -0
- data/Rakefile +2 -2
- data/bin/gollum +4 -4
- data/docker-run.sh +8 -1
- data/gollum.gemspec +6 -5
- data/lib/gollum/app.rb +7 -5
- data/lib/gollum/public/assets/.sprockets-manifest-6c4a0bc907c3e25cb7e69c0faf6e71d2.json +1 -1
- data/lib/gollum/public/assets/app-05adca32f8f4f3effe10f8f4cf26dfd6a419ba986bce60d3f51a97e4055d4113.js.gz +0 -0
- data/lib/gollum/public/assets/app-e224b375d824f0171fc926d624dc0887bf453db83f485b1992bc0859c4110e3e.css.gz +0 -0
- data/lib/gollum/public/assets/criticmarkup-7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405.css.gz +0 -0
- data/lib/gollum/public/assets/{editor-5ac2983673c8540e50683c3ae37f1635882e94a04a1e823776a663740fdb3aa7.js → editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js} +3 -3
- data/lib/gollum/public/assets/editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js.gz +0 -0
- data/lib/gollum/public/assets/gollum.katex-e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68.js.gz +0 -0
- data/lib/gollum/public/assets/gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js +118 -0
- data/lib/gollum/public/assets/gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js.gz +0 -0
- data/lib/gollum/public/assets/katex/dist/katex-709d4191c4f005516a709377f79e468d343f4e6c91a29a6ff188d13d124ba55f.css.gz +0 -0
- data/lib/gollum/public/assets/print-512498c368be0d3fb1ba105dfa84289ae48380ec9fcbef948bd4e23b0b095bfb.css.gz +0 -0
- data/lib/gollum.rb +1 -1
- data/package.json +1 -1
- data/yarn.lock +517 -379
- metadata +21 -7
- data/lib/gollum/public/assets/editor-5ac2983673c8540e50683c3ae37f1635882e94a04a1e823776a663740fdb3aa7.js.gz +0 -0
- data/lib/gollum/public/assets/gollum.mermaid-ccc590b7d9655deec94c9975f25d74fbe38f703c927e26cf81169d63fea7cd50.js +0 -117
- data/lib/gollum/public/assets/gollum.mermaid-ccc590b7d9655deec94c9975f25d74fbe38f703c927e26cf81169d63fea7cd50.js.gz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d92e7f609dd007e366009ec8c451349f988c7e39f2d69b172165f6a3cdf1196
|
4
|
+
data.tar.gz: c527dfaaab7d77bdbd0218e18849734ad5bf994aaaeb1f25964fc054d5d89c4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5404211ceae4fac51554bf3d2f147f23fe3984b41529d205bdc8f3e69da615b79e1acde3a3ff2fbe471360a8047ad72928c94a7e3fdd002e696a8a4aa7ab083f
|
7
|
+
data.tar.gz: 9378bdf8cdeba9fbcbcf4b93ecdfe34345b93d2fb4a84b45ad95ed5138bbb631e3094328e3c2c3d18080bd892fdacd6600b90d515a23ad9df9d7f84b2c97c4ac
|
data/CONTRIBUTING.md
CHANGED
@@ -181,6 +181,8 @@ git push ../lotr.git/ master
|
|
181
181
|
|
182
182
|
Gollum uses [yarn](https://yarnpkg.com/) and [sprockets](https://github.com/rails/sprockets) to manage assets. By default, Gollum uses the precompiled static assets that are packaged with the gem (under `lib/gollum/public/assets`). If you're making changes to Gollum's JavaScript or (S)CSS assets, you might want to develop by calling `gollum` with the `--development-assets` flag. This will cause the application to use the unpackaged assets that you are editing (under `lib/gollum/public/gollum/` and in your local `node_modules` directory), so you can test and tweak. Once you are satisfied with your changes, it's time to [update the static assets](#updating-static-assets)!
|
183
183
|
|
184
|
+
You can also enable the use of development assets by setting the `APP_ENV` environment variable to `gollum_development`: for example, with `APP_ENV=gollum_development bundle exec gollum ...`.
|
185
|
+
|
184
186
|
For convenience, Gollum also allows developers to set a custom location for `node_modules` (by default expected to be in the root of the project) when using `--development-assets`. Set the `GOLLUM_DEV_ASSETS` environment variable to do this, e.g.: `GOLLUM_DEV_ASSETS=/path/to/my/node_modules gollum --development-assets`
|
185
187
|
|
186
188
|
## Updating static assets
|
data/Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
FROM ruby:3.
|
1
|
+
FROM ruby:3.3-alpine AS builder
|
2
2
|
|
3
3
|
RUN apk add --update \
|
4
4
|
--no-cache \
|
@@ -28,10 +28,10 @@ WORKDIR /app
|
|
28
28
|
COPY . /app
|
29
29
|
RUN bundle exec rake install
|
30
30
|
|
31
|
-
FROM ruby:3.
|
31
|
+
FROM ruby:3.3-alpine
|
32
32
|
|
33
|
-
ARG UID
|
34
|
-
ARG GID
|
33
|
+
ARG UID=1000
|
34
|
+
ARG GID=1000
|
35
35
|
|
36
36
|
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
|
37
37
|
|
data/Gemfile
CHANGED
@@ -2,6 +2,17 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
gem 'warbler', git: 'https://github.com/jruby/warbler' if RUBY_PLATFORM == 'java'
|
4
4
|
|
5
|
+
# FIXME: There is an upstream JRuby 9.4.9.0 issue with `psych` and the latest
|
6
|
+
# version of `jar-dependencies`. The issue will be resolved with the release of
|
7
|
+
# 9.4.10.0. Then, we can remove this `jar-dependencies` dependency lock.
|
8
|
+
#
|
9
|
+
# Gollum end users using JRuby may need to add this lock to their own project
|
10
|
+
# Gemfiles, too, unfortunately. :-(
|
11
|
+
#
|
12
|
+
# For more information, see: https://github.com/jruby/jruby/issues/8488
|
13
|
+
#
|
14
|
+
gem 'jar-dependencies', '< 0.5'
|
15
|
+
|
5
16
|
group :test do
|
6
17
|
gem 'selenium-webdriver', require: false
|
7
18
|
gem 'capybara', require: false
|
data/HISTORY.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1
|
+
# 6.1.0 / 2024-12-23
|
2
|
+
|
3
|
+
## Fixes & Improvements
|
4
|
+
* Fixed a typo in the deprecation message for `--mathjax` (@DavidForster)
|
5
|
+
* Update Mermaid to 11.4
|
6
|
+
* Add wiki permission check to docker run script
|
7
|
+
|
8
|
+
# 6.0.1 / 2024-07-25
|
9
|
+
|
10
|
+
## Fixes & Improvements
|
11
|
+
|
12
|
+
* Use static assets when `APP_ENV` is `development` (@dometto)
|
13
|
+
* Explicitly require Rack 3 or greater (@dometto)
|
14
|
+
* Let the `--base-path` wiki option handle prefixed and suffixed slashes in path values. (i.e. `--base-path /my-wiki`) (@dometto)
|
15
|
+
|
16
|
+
# 6.0.0 / 2024-05-03
|
17
|
+
|
18
|
+
# Breaking Changes
|
19
|
+
|
20
|
+
* Docker image: removed deprecated automatic activation of --mathjax. Pass '--math mathjax' to continue using mathjax, or '--math' to use KaTeX (see below).
|
21
|
+
* RACK_ENV is ignored, please use APP_ENV instead (@svoop).
|
22
|
+
|
23
|
+
## New features
|
24
|
+
|
25
|
+
* Add support for Mermaid diagrams (@dometto).
|
26
|
+
* Add support for downloading page sources with ?raw (@tstein).
|
27
|
+
* Add openssh client to docker images for ssh: repo support. (@jagerkin).
|
28
|
+
* Add support for mathematical typesetting using KaTeX (@dometto). Users can now choose between MathJax and KaTeX with the --math flag.
|
29
|
+
* Add support for more languages (Chinese).
|
30
|
+
|
31
|
+
## Fixes & Improvements
|
32
|
+
|
33
|
+
* Fix (Docker image): add git configuration for `/wiki` as safe directory. #2006
|
34
|
+
* Fix: use `base_path` as set in config file.
|
35
|
+
|
1
36
|
# 5.3.0 / 2022-05-25
|
2
37
|
|
3
38
|
* Feature: allow for overriding only specific Mustache templates/partials (@beporter)
|
data/LATEST_CHANGES.md
CHANGED
@@ -1,19 +1,6 @@
|
|
1
|
-
# 6.
|
2
|
-
|
3
|
-
# Breaking Changes
|
4
|
-
|
5
|
-
* Docker image: removed deprecated automatic activation of --mathjax. Pass '--math mathjax' to continue using mathjax, or '--math' to use KaTeX (see below).
|
6
|
-
* RACK_ENV is ignored, please use APP_ENV instead (@svoop).
|
7
|
-
|
8
|
-
## New features
|
9
|
-
|
10
|
-
* Add support for Mermaid diagrams (@dometto).
|
11
|
-
* Add support for downloading page sources with ?raw (@tstein).
|
12
|
-
* Add openssh client to docker images for ssh: repo support. (@jagerkin).
|
13
|
-
* Add support for mathematical typesetting using KaTeX (@dometto). Users can now choose between MathJax and KaTeX with the --math flag.
|
14
|
-
* Add support for more languages (Chinese).
|
1
|
+
# 6.1.0
|
15
2
|
|
16
3
|
## Fixes & Improvements
|
17
|
-
|
18
|
-
*
|
19
|
-
*
|
4
|
+
* Fixed a typo in the deprecation message for `--mathjax` (@DavidForster)
|
5
|
+
* Update Mermaid to 11.4
|
6
|
+
* Add wiki permission check to docker run script
|
data/README.md
CHANGED
@@ -67,6 +67,8 @@ The [latest Release](https://github.com/gollum/gollum/releases/) of Gollum will
|
|
67
67
|
|
68
68
|
`java -jar gollum.war -S gollum <your-gollum-arguments-here>`
|
69
69
|
|
70
|
+
When using the `.war`, please be sure to pass [absolute paths](https://github.com/gollum/gollum/wiki/Gollum-via-Java-WAR#absolute-paths-issue) to your Gollum arguments.
|
71
|
+
|
70
72
|
### Misc
|
71
73
|
|
72
74
|
See [below](#running-from-source) for information on running Gollum from source, as a Rack app, and more.
|
data/Rakefile
CHANGED
@@ -214,7 +214,7 @@ end
|
|
214
214
|
desc 'Build changelog'
|
215
215
|
task :changelog do
|
216
216
|
[latest_changes_file, history_file].each do |f|
|
217
|
-
unless File.
|
217
|
+
unless File.exist?(f)
|
218
218
|
puts "#{f} does not exist but is required to build a new release."
|
219
219
|
exit!
|
220
220
|
end
|
@@ -271,7 +271,7 @@ task :precompile do
|
|
271
271
|
JS_COMPRESSOR = ::Terser.new
|
272
272
|
end
|
273
273
|
end
|
274
|
-
|
274
|
+
|
275
275
|
require './lib/gollum/app.rb'
|
276
276
|
|
277
277
|
# Next, configure the Sprockets asset pipeline and precompile production-
|
data/bin/gollum
CHANGED
@@ -121,7 +121,7 @@ MSG
|
|
121
121
|
puts "To set a custom configuration for #{wiki_options[:math]} please add it to \'#{default_math_config}\' and commit it to the repo."
|
122
122
|
end
|
123
123
|
opts.on('--mathjax', 'Enable rendering of mathematical equations via mathjax.') do |mode|
|
124
|
-
puts 'DEPRECATION WARNING: --mathjax. This switch will be removed in the future. Please use: "--math
|
124
|
+
puts 'DEPRECATION WARNING: --mathjax. This switch will be removed in the future. Please use: "--math mathjax".'
|
125
125
|
puts "If you are using a custom mathjax.config.js, please remame it to #{default_math_config}."
|
126
126
|
wiki_options[:math] = :mathjax
|
127
127
|
wiki_options[:math_config] = default_math_config
|
@@ -293,9 +293,9 @@ else
|
|
293
293
|
if base_path.nil?
|
294
294
|
Precious::App.run!(options)
|
295
295
|
else
|
296
|
-
require '
|
296
|
+
require 'rackup'
|
297
297
|
|
298
|
-
#
|
299
|
-
|
298
|
+
# Rackup::Handler does not work with Ctrl + C. Use Rackup::Server instead.
|
299
|
+
Rackup::Server.new(:app => Precious::MapGollum.new(base_path), :Port => options[:port], :Host => options[:bind]).start
|
300
300
|
end
|
301
301
|
end
|
data/docker-run.sh
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
+
# Check if /wiki directory exists and is writable
|
4
|
+
if [ ! -d "/wiki" ] || [ ! -w "/wiki" ]; then
|
5
|
+
echo "Warning: /wiki directory does not exist or is not writable. Adjust permissions to mapped host volume."
|
6
|
+
else
|
7
|
+
echo "The /wiki directory exists and is writable."
|
8
|
+
fi
|
9
|
+
|
3
10
|
# Initialize the wiki
|
4
11
|
if [ ! -d .git ] && [ "$(git rev-parse --is-bare-repository 2>/dev/null)" != "true" ]; then
|
5
12
|
git init
|
@@ -14,4 +21,4 @@ if [ ${GOLLUM_AUTHOR_EMAIL:+1} ]; then
|
|
14
21
|
fi
|
15
22
|
|
16
23
|
# Start gollum service
|
17
|
-
exec gollum $@
|
24
|
+
exec gollum $@
|
data/gollum.gemspec
CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
|
|
3
3
|
s.required_ruby_version = '>= 2.6'
|
4
4
|
|
5
5
|
s.name = 'gollum'
|
6
|
-
s.version = '6.
|
6
|
+
s.version = '6.1.0'
|
7
7
|
s.license = 'MIT'
|
8
8
|
|
9
9
|
s.summary = 'A simple, Git-powered wiki.'
|
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.add_dependency 'gollum-lib', '~> 6.0'
|
25
25
|
s.add_dependency 'kramdown', '~> 2.3'
|
26
26
|
s.add_dependency 'kramdown-parser-gfm', '~> 1.1.0'
|
27
|
+
s.add_dependency 'rack', '>= 3.0'
|
27
28
|
s.add_dependency 'rackup', '~> 2.1'
|
28
29
|
s.add_dependency 'sinatra', '~> 4.0'
|
29
30
|
s.add_dependency 'sinatra-contrib', '~> 4.0'
|
@@ -79,12 +80,12 @@ Gem::Specification.new do |s|
|
|
79
80
|
lib/gollum/public/assets/app-e224b375d824f0171fc926d624dc0887bf453db83f485b1992bc0859c4110e3e.css.gz
|
80
81
|
lib/gollum/public/assets/criticmarkup-7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405.css
|
81
82
|
lib/gollum/public/assets/criticmarkup-7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405.css.gz
|
82
|
-
lib/gollum/public/assets/editor-
|
83
|
-
lib/gollum/public/assets/editor-
|
83
|
+
lib/gollum/public/assets/editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js
|
84
|
+
lib/gollum/public/assets/editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js.gz
|
84
85
|
lib/gollum/public/assets/gollum.katex-e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68.js
|
85
86
|
lib/gollum/public/assets/gollum.katex-e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68.js.gz
|
86
|
-
lib/gollum/public/assets/gollum.mermaid-
|
87
|
-
lib/gollum/public/assets/gollum.mermaid-
|
87
|
+
lib/gollum/public/assets/gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js
|
88
|
+
lib/gollum/public/assets/gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js.gz
|
88
89
|
lib/gollum/public/assets/katex/dist/fonts/KaTeX_AMS-Regular.woff2
|
89
90
|
lib/gollum/public/assets/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2
|
90
91
|
lib/gollum/public/assets/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2
|
data/lib/gollum/app.rb
CHANGED
@@ -55,17 +55,19 @@ module Precious
|
|
55
55
|
|
56
56
|
# For use with the --base-path option.
|
57
57
|
class MapGollum
|
58
|
+
include Precious::Helpers
|
58
59
|
def initialize(base_path)
|
60
|
+
base_route = "/#{remove_leading_and_trailing_slashes(base_path)}"
|
59
61
|
@mg = Rack::Builder.new do
|
60
62
|
|
61
|
-
map
|
63
|
+
map base_route do
|
62
64
|
run Precious::App
|
63
65
|
end
|
64
66
|
map '/' do
|
65
|
-
run Proc.new { [302, { 'Location' =>
|
67
|
+
run Proc.new { [302, { 'Location' => base_route }, []] }
|
66
68
|
end
|
67
69
|
map '/*' do
|
68
|
-
run Proc.new { [302, { 'Location' =>
|
70
|
+
run Proc.new { [302, { 'Location' => base_route }, []] }
|
69
71
|
end
|
70
72
|
|
71
73
|
end
|
@@ -101,7 +103,7 @@ module Precious
|
|
101
103
|
}
|
102
104
|
|
103
105
|
# Sinatra error handling
|
104
|
-
configure :development, :staging do
|
106
|
+
configure :development, :staging, :gollum_development do
|
105
107
|
enable :show_exceptions, :dump_errors
|
106
108
|
disable :raise_errors, :clean_trace
|
107
109
|
end
|
@@ -136,7 +138,7 @@ module Precious
|
|
136
138
|
@mermaid = settings.wiki_options.fetch(:mermaid, true)
|
137
139
|
Gollum::Filter::Code.language_handlers.delete(/mermaid/) unless @mermaid
|
138
140
|
|
139
|
-
@use_static_assets = settings.wiki_options.fetch(:static, settings.environment != :
|
141
|
+
@use_static_assets = settings.wiki_options.fetch(:static, settings.environment != :gollum_development)
|
140
142
|
@static_assets_path = settings.wiki_options.fetch(:static_assets_path, ::File.join(File.dirname(__FILE__), 'public/assets'))
|
141
143
|
@mathjax_path = ::File.join(File.dirname(__FILE__), 'public/gollum/javascript/MathJax')
|
142
144
|
|
@@ -1 +1 @@
|
|
1
|
-
{"files":{"app-05adca32f8f4f3effe10f8f4cf26dfd6a419ba986bce60d3f51a97e4055d4113.js":{"logical_path":"app.js","mtime":"2024-
|
1
|
+
{"files":{"app-05adca32f8f4f3effe10f8f4cf26dfd6a419ba986bce60d3f51a97e4055d4113.js":{"logical_path":"app.js","mtime":"2024-11-19T15:21:21-08:00","size":192041,"digest":"05adca32f8f4f3effe10f8f4cf26dfd6a419ba986bce60d3f51a97e4055d4113","integrity":"sha256-Ba3KMvj08+/+EPj0zybf1qQZuphrzmDT9RqX5AVdQRM="},"editor-5ac2983673c8540e50683c3ae37f1635882e94a04a1e823776a663740fdb3aa7.js":{"logical_path":"editor.js","mtime":"2024-04-16T09:10:02+02:00","size":859495,"digest":"5ac2983673c8540e50683c3ae37f1635882e94a04a1e823776a663740fdb3aa7","integrity":"sha256-WsKYNnPIVA5QaDw6438WNYgulKBKHoI3dqZjdA/bOqc="},"gollum.mermaid-ccc590b7d9655deec94c9975f25d74fbe38f703c927e26cf81169d63fea7cd50.js":{"logical_path":"gollum.mermaid.js","mtime":"2024-04-16T09:10:02+02:00","size":3322948,"digest":"ccc590b7d9655deec94c9975f25d74fbe38f703c927e26cf81169d63fea7cd50","integrity":"sha256-zMWQt9llXe7JTJl18l10++OPcDySfibPgRadY/6nzVA="},"gollum.katex-e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68.js":{"logical_path":"gollum.katex.js","mtime":"2024-11-19T15:21:21-08:00","size":277670,"digest":"e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68","integrity":"sha256-5wwdUaCOv+dZ7suzP77VTzAMzX+40OhuJRyq9OUPa2g="},"app-e224b375d824f0171fc926d624dc0887bf453db83f485b1992bc0859c4110e3e.css":{"logical_path":"app.css","mtime":"2024-11-19T15:21:21-08:00","size":830320,"digest":"e224b375d824f0171fc926d624dc0887bf453db83f485b1992bc0859c4110e3e","integrity":"sha256-4iSzddgk8BcfySbWJNwIh79FPbg/SFsZkrwIWcQRDj4="},"criticmarkup-7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405.css":{"logical_path":"criticmarkup.css","mtime":"2024-11-19T15:21:21-08:00","size":643,"digest":"7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405","integrity":"sha256-e2b3pTuFS8nkFovltHJco44rxunEHVwFCp9g2alMtAU="},"print-512498c368be0d3fb1ba105dfa84289ae48380ec9fcbef948bd4e23b0b095bfb.css":{"logical_path":"print.css","mtime":"2024-11-19T15:21:21-08:00","size":75,"digest":"512498c368be0d3fb1ba105dfa84289ae48380ec9fcbef948bd4e23b0b095bfb","integrity":"sha256-USSYw2i+DT+xuhBd+oQomuSDgOyfy++Ui9TiOwsJW/s="},"katex/dist/katex-709d4191c4f005516a709377f79e468d343f4e6c91a29a6ff188d13d124ba55f.css":{"logical_path":"katex/dist/katex.css","mtime":"2024-11-19T15:21:21-08:00","size":23381,"digest":"709d4191c4f005516a709377f79e468d343f4e6c91a29a6ff188d13d124ba55f","integrity":"sha256-cJ1BkcTwBVFqcJN3955GjTQ/TmyRoppv8YjRPRJLpV8="},"editor-52c4e18ed80e69236a112b7a226635e8179d790f2c458341af2ed295b260c25c.js":{"logical_path":"editor.js","mtime":"2024-11-09T16:06:31-05:00","size":859489,"digest":"52c4e18ed80e69236a112b7a226635e8179d790f2c458341af2ed295b260c25c","integrity":"sha256-UsThjtgOaSNqESt6ImY16BedeQ8sRYNBry7SlbJgwlw="},"gollum.mermaid-845d23a58401ae1e6573d87a9a050b1f5cea01a0d5b1adc9803194d35cb3e5d5.js":{"logical_path":"gollum.mermaid.js","mtime":"2024-11-09T16:06:31-05:00","size":2547926,"digest":"845d23a58401ae1e6573d87a9a050b1f5cea01a0d5b1adc9803194d35cb3e5d5","integrity":"sha256-hF0jpYQBrh5lc9h6mgULH1zqAaDVsa3JgDGU01yz5dU="},"editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js":{"logical_path":"editor.js","mtime":"2024-11-19T15:21:21-08:00","size":859503,"digest":"9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52","integrity":"sha256-m+9UYrtdri24TW2NU0tVxbtaQw4RNEs8I/nqRBAxL1I="},"gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js":{"logical_path":"gollum.mermaid.js","mtime":"2024-11-19T15:21:21-08:00","size":2547934,"digest":"06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3","integrity":"sha256-Bv0vVJQZnbJQYYBDMSwndwcgUEtQw/bKmdLS31KcfaM="}},"assets":{"app.js":"app-05adca32f8f4f3effe10f8f4cf26dfd6a419ba986bce60d3f51a97e4055d4113.js","editor.js":"editor-9bef5462bb5dae2db84d6d8d534b55c5bb5a430e11344b3c23f9ea4410312f52.js","gollum.mermaid.js":"gollum.mermaid-06fd2f5494199db250618043312c27770720504b50c3f6ca99d2d2df529c7da3.js","gollum.katex.js":"gollum.katex-e70c1d51a08ebfe759eecbb33fbed54f300ccd7fb8d0e86e251caaf4e50f6b68.js","app.css":"app-e224b375d824f0171fc926d624dc0887bf453db83f485b1992bc0859c4110e3e.css","criticmarkup.css":"criticmarkup-7b66f7a53b854bc9e4168be5b4725ca38e2bc6e9c41d5c050a9f60d9a94cb405.css","print.css":"print-512498c368be0d3fb1ba105dfa84289ae48380ec9fcbef948bd4e23b0b095bfb.css","katex/dist/katex.css":"katex/dist/katex-709d4191c4f005516a709377f79e468d343f4e6c91a29a6ff188d13d124ba55f.css"}}
|
Binary file
|
Binary file
|