j1-template 2022.5.0.rc1 → 2022.5.0.rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58daec030f31a6fa5caeb9ae6c5f0e1f5e6e450ff392ce6955ce92a9508ba710
4
- data.tar.gz: 8ab409d01bec956c89435f06f8f2b4b5480bbc102d50af09cf48fbb5e166f24e
3
+ metadata.gz: 8c5ad71157d60ce5e3975c6bcb89839b2d30d7f6af3fc4de24c51a18221924bb
4
+ data.tar.gz: 6b24a88d755146b5a753b5c524e2f8068e6d40ea6cb23567905fdac9f2423d73
5
5
  SHA512:
6
- metadata.gz: ab4befb171aaec5cc5dc3d19cd265156e2597c5a5a893cd9ed515f8a4f65daf6673aeca2fea38e5d98d74226cb71444f2887ad5e5926333af2a2469aba40e7b8
7
- data.tar.gz: 8cea5ab9ba630cc038b5883581b4cefcbe45600e75708112ab4520d997207f012fee2438ea9cfe1aa2cb165fd2d118478d8518eeaaa9dc659f7ba165acc9a3d3
6
+ metadata.gz: e66784d64e00c10425bfe73710f22502d2dcc08751d24b181ec06f48a42e686fd4295e3c5537f4b12f9f283aa816114909e5269bc72aeca6a7477ecb85325766
7
+ data.tar.gz: a286f04797efd0dd665419a7fb5d3757005c6e44ae73303387ed76deac87bccf1db212b0fd1899226de64777f959123258a0ef69118cf210ac4e7eeb84ce69f2
data/lib/j1/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module J1
2
- VERSION = '2022.5.0.rc1'
2
+ VERSION = '2022.5.0.rc2'
3
3
  end
@@ -1,270 +1,270 @@
1
- # ------------------------------------------------------------------------------
2
- # ~/Gemfile (runtime)
3
- # Provides package information to bundle all Ruby gem needed
4
- # for Jekyll and J1 template (managed by Ruby Gem Bundler)
5
- #
6
- # Product/Info:
7
- # https://jekyll.one
8
- #
9
- # Copyright (C) 2022 Juergen Adams
10
- #
11
- # J1 Template is licensed under the MIT License.
12
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
- # ------------------------------------------------------------------------------
14
-
15
- # ------------------------------------------------------------------------------
16
- # NOTE:
17
- # To install all gem needed for Jekyll and J1 Template:
18
- # bundle install
19
- #
20
- # TIP:
21
- # If all packages needed are installed, a list of all gem and dependencies
22
- # installed for the bundle canbe created by running:
23
- # bundle list
24
- #
25
- # ------------------------------------------------------------------------------
26
- # NOTE:
27
- # If you see warnings like:
28
- # WARN: Unresolved specs during Gem::Specification.reset
29
- # you may need to cleanup your bundle by running:
30
- # gem cleanup
31
- #
32
- # ------------------------------------------------------------------------------
33
-
34
- # ------------------------------------------------------------------------------
35
- # Define the (download) source, Ruby GEMs are to be loaded from REMOTE
36
- #
37
- source 'https://rubygems.org'
38
-
39
- # ------------------------------------------------------------------------------
40
- # Specify your Ruby version if the J1 Project is used as an container-based
41
- # web application. This makes sure to use identical Ruby runtime environments
42
- # for BUILD and RUN (e.g. for Docker images or a Dyno on Heroku).
43
- #
44
- # ruby '3.1'
45
-
46
- # ------------------------------------------------------------------------------
47
- # Jekyll
48
- # ------------------------------------------------------------------------------
49
- # NOTE:
50
- # J1 Template is using Jekyll v4.0 and above
51
- #
52
- # ------------------------------------------------------------------------------
53
- # NOTE:
54
- # Use|Install a Jekyll version loaded from 'Github' (branch: master):
55
- # gem 'jekyll', github: 'jekyll/jekyll'
56
- # ------------------------------------------------------------------------------
57
- # NOTE:
58
- # For default, the Jekyll GEM is loaded from REMOTE
59
- # ------------------------------------------------------------------------------
60
- #
61
- gem 'jekyll', '~> 4.0'
62
-
63
- # ------------------------------------------------------------------------------
64
- # Install Webrick GEM (internally used Web Server) if Ruby V3 is used
65
- #
66
- install_if -> { RUBY_VERSION =~ /3/ } do
67
- gem 'webrick', '~> 1.7'
68
- end
69
-
70
- # ------------------------------------------------------------------------------
71
- # Specify the THEME GEM used for the project
72
- #
73
- gem 'j1-template', '~> 2022.5.0.rc1'
74
-
75
- # ------------------------------------------------------------------------------
76
- # PRODUCTION: Gem needed for the Jekyll and J1 prod environment
77
- #
78
-
79
- # ------------------------------------------------------------------------------
80
- # Code Highlighter Rouge
81
- #
82
- gem 'rouge', '~> 3.3'
83
-
84
- # ------------------------------------------------------------------------------
85
- # XML|HTML processing
86
- #
87
- gem 'builder', '~> 3.2'
88
- gem 'nokogiri', '>= 1.10.3'
89
- gem 'nokogiri-pretty', '>= 0.1.0'
90
- gem 'htmlbeautifier', '>= 1.2.1'
91
-
92
- # ------------------------------------------------------------------------------
93
- # Compress JS and JSON files
94
- #
95
- gem 'uglifier', '~> 4.2'
96
- gem 'json-minify', '~> 0.0.3'
97
-
98
- # ------------------------------------------------------------------------------
99
- # Run JS code (from Ruby) to create the index for Lunr
100
- #
101
- gem 'execjs', '~> 2.7'
102
-
103
- # ------------------------------------------------------------------------------
104
- # Timezone support (multi-platform)
105
- #
106
- gem 'tzinfo', '>= 1.2.2'
107
-
108
- # ------------------------------------------------------------------------------
109
- # Platform specific GEM
110
- #
111
- # NOTE:
112
- # Windows does not include zoneinfo files (timezone support).
113
- # To provide zoneinfo, tzinfo-data gem is bundled on win platforms
114
- #
115
- # ------------------------------------------------------------------------------
116
- # NOTE:
117
- # Windows Directory Monitor (WDM) required to monitor directories
118
- # for changes
119
- #
120
- # ------------------------------------------------------------------------------
121
- #
122
- install_if -> { Gem.win_platform? } do
123
- gem 'tzinfo-data'
124
- gem 'wdm', '>= 0.1.1'
125
- end
126
-
127
- # ------------------------------------------------------------------------------
128
- # Jekyll Plugins
129
- # If any (additional) Jekyll Plugins are used, they goes here
130
- #
131
- group :jekyll_plugins do
132
- # Base Jekyll Plugins (required)
133
- #
134
- gem 'asciidoctor', '~> 2.0'
135
- gem 'jekyll-asciidoc', '>= 3.0.0'
136
- gem 'j1-paginator', '>= 2021.1.1'
137
- #
138
- # Additional Supporting GEMs (optional)
139
- #
140
- # gem 'algolia', '~> 2.0', '>= 2.0.4' # Required for Algolia support only
141
- # gem 'asciidoctor-pdf', '>= 1.5.4' # Required for Asciidoctor PDF creation only
142
- # gem 'jekyll-sass-converter', '>= 2.1.0' # Required for Jekyll|SASS (file) conversion support
143
- #
144
- # Additional Jekyll Plugins (optional)
145
- #
146
- gem 'jekyll-sitemap', '>= 1.2.0' # Create XML sitemap (recommended)
147
- # gem 'jekyll-feed', ">= 0.15.1"
148
- # gem 'jekyll-gist', '>= 1.5.0'
149
- # gem 'jekyll-redirect-from', '>= 0.16.0'
150
- end
151
-
152
- # ------------------------------------------------------------------------------
153
- # GEM needed for the Jekyll and J1 dev environment
154
- #
155
- # NOTE:
156
- # For the build (npm|yarn), J1 Template is using scss_lint
157
- # for linting the SCSS (Sass) components.
158
- #
159
- # ------------------------------------------------------------------------------
160
- # NOTE:
161
- # scss_lint is based on old gem 'sass', '~> 3.5.5'. A replacement
162
- # is needed (?) for a linter using the new Ruby Sass GEM (sassc)
163
- # gem 'scss_lint', '~> 0.56.0', require: false
164
- #
165
- # ------------------------------------------------------------------------------
166
- gem 'sassc', '~> 2.4'
167
- gem 'bump', '~> 0.10'
168
-
169
- # ------------------------------------------------------------------------------
170
- # Web Application specific RubyGems
171
- #
172
-
173
- # ------------------------------------------------------------------------------
174
- # Ruby Task Manager
175
- #
176
- # NOTE:
177
- # Enable the `rake` Gem if needed. For container-based apps, Rake can
178
- # be used as a pre-processor engine running # tasks defined by a
179
- # Rakefile prior running the app|web.
180
- #
181
- # ------------------------------------------------------------------------------
182
- # gem 'rake', '~> 12.0'
183
-
184
- # html-proofer. Automate the process of checking links on your site
185
- #
186
- # bundle exec htmlproofer \
187
- # --allow_missing_href \
188
- # --allow_hash_href \
189
- # --assume_extension \
190
- # --directory_index_file \
191
- # --directory_index_file \
192
- # --empty_alt_ignore ./_site/index.html &> out.txt
193
- #
194
- # gem 'html-proofer', '~> 3.10'
195
-
196
- # ------------------------------------------------------------------------------
197
- # Web server used by applications
198
- #
199
- # NOTE:
200
- # Define the build environment and the web server for J1 sites that
201
- # runs as an web application. To improve the production (run-time)
202
- # performance for the web, the RubyGems e.g Puma or Passenger can be
203
- # used to replace the internal server WEBrick used by Jekyll for
204
- # default.
205
- # The web server Puma, a multi-threaded native Ruy-based web server
206
- # can be used on ALL platforms. Passenger integrates the web server
207
- # NginX but supported for Linux and Unix platforms only.
208
- # For container-based apps, Rake can be used as a pre-processor engine
209
- # running # tasks defined by a Rakefile prior running the app|web.
210
- #
211
- # ------------------------------------------------------------------------------
212
- #
213
- # gem 'passenger', '>= 5.3'
214
- gem 'puma', '>= 5.5.2'
215
-
216
- # ------------------------------------------------------------------------------
217
- # Data encryption (currently NOT supported)
218
- #
219
- # NOTE:
220
- # OpenSSL provides SSL, TLS and general purpose cryptography. Used to
221
- # encrypt 'private' data used by applications.
222
- #
223
- # ------------------------------------------------------------------------------
224
- # gem 'openssl'
225
-
226
- # ------------------------------------------------------------------------------
227
- # Runtime environment for applications
228
- #
229
- # NOTE:
230
- # If J1 is transformed into a (Rack and Sinatra based) Web
231
- # application, the site can be secured using user authentication
232
- # for accessing private pages. J1 is using the Omniauth stack for
233
- # authentication. For default, the Omniauth (authentication) strategies
234
- # for Github, Twitter, Facebook and Patreon are implemented.
235
- #
236
- # ------------------------------------------------------------------------------
237
- gem 'rack', '~> 2.2', '>= 2.2.3'
238
- gem 'rack-protection', '~> 2.0'
239
- gem 'rack-ssl-enforcer', '~> 0.2'
240
- gem 'rest-client', '~> 2.0'
241
- gem 'sinatra', '~> 2.0'
242
- gem 'warden', '~> 1.2'
243
-
244
- # ------------------------------------------------------------------------------
245
- # Authentication
246
- #
247
- # NOTE:
248
- # For the base gem omniauth, the currtent version >= 2 cannot be
249
- # used. For unknown reason, a WRONG redirect URL is calculated
250
- # e.g. for strategy oauth2/github
251
- # Wrong: http://localhost:xxx/auth/github
252
- # Correct: https://github.com/login?client_id=xx&return=yyy
253
- #
254
- # ------------------------------------------------------------------------------
255
- # Note:
256
- # For upcoming J1 versions, v2.x version will be used
257
- # gem 'omniauth', '~> 2.0'
258
- # ------------------------------------------------------------------------------
259
- gem 'omniauth', '~> 1.9'
260
- gem 'omniauth-oauth2', '~> 1.7'
261
-
262
- # ------------------------------------------------------------------------------
263
- # Logging
264
- # GEM required for J1 logger based on log4r (middleware)
265
- # ------------------------------------------------------------------------------
266
- gem 'log4r', '~> 1.1', '>= 1.1.10'
267
- gem 'date', '~> 2.0'
268
-
269
- # ------------------------------------------------------------------------------
270
- # END
1
+ # ------------------------------------------------------------------------------
2
+ # ~/Gemfile (runtime)
3
+ # Provides package information to bundle all Ruby gem needed
4
+ # for Jekyll and J1 template (managed by Ruby Gem Bundler)
5
+ #
6
+ # Product/Info:
7
+ # https://jekyll.one
8
+ #
9
+ # Copyright (C) 2022 Juergen Adams
10
+ #
11
+ # J1 Template is licensed under the MIT License.
12
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
+ # ------------------------------------------------------------------------------
14
+
15
+ # ------------------------------------------------------------------------------
16
+ # NOTE:
17
+ # To install all gem needed for Jekyll and J1 Template:
18
+ # bundle install
19
+ #
20
+ # TIP:
21
+ # If all packages needed are installed, a list of all gem and dependencies
22
+ # installed for the bundle canbe created by running:
23
+ # bundle list
24
+ #
25
+ # ------------------------------------------------------------------------------
26
+ # NOTE:
27
+ # If you see warnings like:
28
+ # WARN: Unresolved specs during Gem::Specification.reset
29
+ # you may need to cleanup your bundle by running:
30
+ # gem cleanup
31
+ #
32
+ # ------------------------------------------------------------------------------
33
+
34
+ # ------------------------------------------------------------------------------
35
+ # Define the (download) source, Ruby GEMs are to be loaded from REMOTE
36
+ #
37
+ source 'https://rubygems.org'
38
+
39
+ # ------------------------------------------------------------------------------
40
+ # Specify your Ruby version if the J1 Project is used as an container-based
41
+ # web application. This makes sure to use identical Ruby runtime environments
42
+ # for BUILD and RUN (e.g. for Docker images or a Dyno on Heroku).
43
+ #
44
+ # ruby '3.1'
45
+
46
+ # ------------------------------------------------------------------------------
47
+ # Jekyll
48
+ # ------------------------------------------------------------------------------
49
+ # NOTE:
50
+ # J1 Template is using Jekyll v4.0 and above
51
+ #
52
+ # ------------------------------------------------------------------------------
53
+ # NOTE:
54
+ # Use|Install a Jekyll version loaded from 'Github' (branch: master):
55
+ # gem 'jekyll', github: 'jekyll/jekyll'
56
+ # ------------------------------------------------------------------------------
57
+ # NOTE:
58
+ # For default, the Jekyll GEM is loaded from REMOTE
59
+ # ------------------------------------------------------------------------------
60
+ #
61
+ gem 'jekyll', '~> 4.0'
62
+
63
+ # ------------------------------------------------------------------------------
64
+ # Install Webrick GEM (internally used Web Server) if Ruby V3 is used
65
+ #
66
+ install_if -> { RUBY_VERSION =~ /3/ } do
67
+ gem 'webrick', '~> 1.7'
68
+ end
69
+
70
+ # ------------------------------------------------------------------------------
71
+ # Specify the THEME GEM used for the project
72
+ #
73
+ gem 'j1-template', '~> 2022.5.0.rc2'
74
+
75
+ # ------------------------------------------------------------------------------
76
+ # PRODUCTION: Gem needed for the Jekyll and J1 prod environment
77
+ #
78
+
79
+ # ------------------------------------------------------------------------------
80
+ # Code Highlighter Rouge
81
+ #
82
+ gem 'rouge', '~> 3.3'
83
+
84
+ # ------------------------------------------------------------------------------
85
+ # XML|HTML processing
86
+ #
87
+ gem 'builder', '~> 3.2'
88
+ gem 'nokogiri', '>= 1.10.3'
89
+ gem 'nokogiri-pretty', '>= 0.1.0'
90
+ gem 'htmlbeautifier', '>= 1.2.1'
91
+
92
+ # ------------------------------------------------------------------------------
93
+ # Compress JS and JSON files
94
+ #
95
+ gem 'uglifier', '~> 4.2'
96
+ gem 'json-minify', '~> 0.0.3'
97
+
98
+ # ------------------------------------------------------------------------------
99
+ # Run JS code (from Ruby) to create the index for Lunr
100
+ #
101
+ gem 'execjs', '~> 2.7'
102
+
103
+ # ------------------------------------------------------------------------------
104
+ # Timezone support (multi-platform)
105
+ #
106
+ gem 'tzinfo', '>= 1.2.2'
107
+
108
+ # ------------------------------------------------------------------------------
109
+ # Platform specific GEM
110
+ #
111
+ # NOTE:
112
+ # Windows does not include zoneinfo files (timezone support).
113
+ # To provide zoneinfo, tzinfo-data gem is bundled on win platforms
114
+ #
115
+ # ------------------------------------------------------------------------------
116
+ # NOTE:
117
+ # Windows Directory Monitor (WDM) required to monitor directories
118
+ # for changes
119
+ #
120
+ # ------------------------------------------------------------------------------
121
+ #
122
+ install_if -> { Gem.win_platform? } do
123
+ gem 'tzinfo-data'
124
+ gem 'wdm', '>= 0.1.1'
125
+ end
126
+
127
+ # ------------------------------------------------------------------------------
128
+ # Jekyll Plugins
129
+ # If any (additional) Jekyll Plugins are used, they goes here
130
+ #
131
+ group :jekyll_plugins do
132
+ # Base Jekyll Plugins (required)
133
+ #
134
+ gem 'asciidoctor', '~> 2.0'
135
+ gem 'jekyll-asciidoc', '>= 3.0.0'
136
+ gem 'j1-paginator', '>= 2021.1.1'
137
+ #
138
+ # Additional Supporting GEMs (optional)
139
+ #
140
+ # gem 'algolia', '~> 2.0', '>= 2.0.4' # Required for Algolia support only
141
+ # gem 'asciidoctor-pdf', '>= 1.5.4' # Required for Asciidoctor PDF creation only
142
+ # gem 'jekyll-sass-converter', '>= 2.1.0' # Required for Jekyll|SASS (file) conversion support
143
+ #
144
+ # Additional Jekyll Plugins (optional)
145
+ #
146
+ gem 'jekyll-sitemap', '>= 1.2.0' # Create XML sitemap (recommended)
147
+ # gem 'jekyll-feed', ">= 0.15.1"
148
+ # gem 'jekyll-gist', '>= 1.5.0'
149
+ # gem 'jekyll-redirect-from', '>= 0.16.0'
150
+ end
151
+
152
+ # ------------------------------------------------------------------------------
153
+ # GEM needed for the Jekyll and J1 dev environment
154
+ #
155
+ # NOTE:
156
+ # For the build (npm|yarn), J1 Template is using scss_lint
157
+ # for linting the SCSS (Sass) components.
158
+ #
159
+ # ------------------------------------------------------------------------------
160
+ # NOTE:
161
+ # scss_lint is based on old gem 'sass', '~> 3.5.5'. A replacement
162
+ # is needed (?) for a linter using the new Ruby Sass GEM (sassc)
163
+ # gem 'scss_lint', '~> 0.56.0', require: false
164
+ #
165
+ # ------------------------------------------------------------------------------
166
+ gem 'sassc', '~> 2.4'
167
+ gem 'bump', '~> 0.10'
168
+
169
+ # ------------------------------------------------------------------------------
170
+ # Web Application specific RubyGems
171
+ #
172
+
173
+ # ------------------------------------------------------------------------------
174
+ # Ruby Task Manager
175
+ #
176
+ # NOTE:
177
+ # Enable the `rake` Gem if needed. For container-based apps, Rake can
178
+ # be used as a pre-processor engine running # tasks defined by a
179
+ # Rakefile prior running the app|web.
180
+ #
181
+ # ------------------------------------------------------------------------------
182
+ # gem 'rake', '~> 12.0'
183
+
184
+ # html-proofer. Automate the process of checking links on your site
185
+ #
186
+ # bundle exec htmlproofer \
187
+ # --allow_missing_href \
188
+ # --allow_hash_href \
189
+ # --assume_extension \
190
+ # --directory_index_file \
191
+ # --directory_index_file \
192
+ # --empty_alt_ignore ./_site/index.html &> out.txt
193
+ #
194
+ # gem 'html-proofer', '~> 3.10'
195
+
196
+ # ------------------------------------------------------------------------------
197
+ # Web server used by applications
198
+ #
199
+ # NOTE:
200
+ # Define the build environment and the web server for J1 sites that
201
+ # runs as an web application. To improve the production (run-time)
202
+ # performance for the web, the RubyGems e.g Puma or Passenger can be
203
+ # used to replace the internal server WEBrick used by Jekyll for
204
+ # default.
205
+ # The web server Puma, a multi-threaded native Ruy-based web server
206
+ # can be used on ALL platforms. Passenger integrates the web server
207
+ # NginX but supported for Linux and Unix platforms only.
208
+ # For container-based apps, Rake can be used as a pre-processor engine
209
+ # running # tasks defined by a Rakefile prior running the app|web.
210
+ #
211
+ # ------------------------------------------------------------------------------
212
+ #
213
+ # gem 'passenger', '>= 5.3'
214
+ gem 'puma', '>= 5.5.2'
215
+
216
+ # ------------------------------------------------------------------------------
217
+ # Data encryption (currently NOT supported)
218
+ #
219
+ # NOTE:
220
+ # OpenSSL provides SSL, TLS and general purpose cryptography. Used to
221
+ # encrypt 'private' data used by applications.
222
+ #
223
+ # ------------------------------------------------------------------------------
224
+ # gem 'openssl'
225
+
226
+ # ------------------------------------------------------------------------------
227
+ # Runtime environment for applications
228
+ #
229
+ # NOTE:
230
+ # If J1 is transformed into a (Rack and Sinatra based) Web
231
+ # application, the site can be secured using user authentication
232
+ # for accessing private pages. J1 is using the Omniauth stack for
233
+ # authentication. For default, the Omniauth (authentication) strategies
234
+ # for Github, Twitter, Facebook and Patreon are implemented.
235
+ #
236
+ # ------------------------------------------------------------------------------
237
+ gem 'rack', '~> 2.2', '>= 2.2.3'
238
+ gem 'rack-protection', '~> 2.0'
239
+ gem 'rack-ssl-enforcer', '~> 0.2'
240
+ gem 'rest-client', '~> 2.0'
241
+ gem 'sinatra', '~> 2.0'
242
+ gem 'warden', '~> 1.2'
243
+
244
+ # ------------------------------------------------------------------------------
245
+ # Authentication
246
+ #
247
+ # NOTE:
248
+ # For the base gem omniauth, the currtent version >= 2 cannot be
249
+ # used. For unknown reason, a WRONG redirect URL is calculated
250
+ # e.g. for strategy oauth2/github
251
+ # Wrong: http://localhost:xxx/auth/github
252
+ # Correct: https://github.com/login?client_id=xx&return=yyy
253
+ #
254
+ # ------------------------------------------------------------------------------
255
+ # Note:
256
+ # For upcoming J1 versions, v2.x version will be used
257
+ # gem 'omniauth', '~> 2.0'
258
+ # ------------------------------------------------------------------------------
259
+ gem 'omniauth', '~> 1.9'
260
+ gem 'omniauth-oauth2', '~> 1.7'
261
+
262
+ # ------------------------------------------------------------------------------
263
+ # Logging
264
+ # GEM required for J1 logger based on log4r (middleware)
265
+ # ------------------------------------------------------------------------------
266
+ gem 'log4r', '~> 1.1', '>= 1.1.10'
267
+ gem 'date', '~> 2.0'
268
+
269
+ # ------------------------------------------------------------------------------
270
+ # END
@@ -55,7 +55,7 @@ environment: development
55
55
  # ------------------------------------------------------------------------------
56
56
  # Sets the build version of J1 Template Gem
57
57
  #
58
- version: 2022.5.0.rc1
58
+ version: 2022.5.0.rc2
59
59
 
60
60
  # version
61
61
  # ------------------------------------------------------------------------------
@@ -147,6 +147,7 @@
147
147
  href: /pages/public/skeleton/documentation/
148
148
  icon: book-open-blank-variant
149
149
 
150
+
150
151
  # ------------------------------------------------------------------------------
151
152
  # Menu BLOG
152
153
  #
@@ -165,158 +166,6 @@
165
166
  href: /pages/public/blog/navigator/archive/
166
167
  icon: archive
167
168
 
168
- # ------------------------------------------------------------------------------
169
- # Menu ONLINE
170
- #
171
- - item: Online
172
- megamenu:
173
- - title: Sites
174
- icon: web
175
- column:
176
- - title: Jekyll Home
177
- href: https://jekyllrb.com/
178
- target: _blank
179
- icon: flask
180
- - title: Ruby
181
- href: https://www.ruby-lang.org/en/
182
- target: _blank
183
- icon: language-ruby
184
- - title: RubyGems
185
- href: https://rubygems.org/gems/j1-template/
186
- target: _blank
187
- icon: language-ruby
188
- - title: NpmJS
189
- href: https://www.npmjs.com/
190
- target: _blank
191
- icon: language-javascript
192
- - title: Bootstrap Home
193
- href: http://getbootstrap.com/
194
- target: _blank
195
- icon: bootstrap
196
- - title: Bootstrap CDN
197
- href: https://www.bootstrapcdn.com/
198
- target: _blank
199
- icon: bootstrap
200
- - title: FA Icons
201
- href: http://fontawesome.io/icons/
202
- target: _blank
203
- icon: font-awesome
204
- - title: MD Icons
205
- href: https://materialdesignicons.com/
206
- target: _blank
207
- icon: google
208
- - title: Fonts
209
- href: https://fonts.google.com/
210
- target: _blank
211
- icon: google
212
- - title: cdnJS
213
- href: https://cdnjs.com/
214
- target: _blank
215
- icon: arrow-down-bold-hexagon-outline
216
-
217
- - title: Knowledge
218
- icon: lightbulb-on
219
- column:
220
- - title: Learn Jekyll at CloudCannon
221
- href: http://jekyll.tips/
222
- target: _blank
223
- icon: flask
224
- - title: Jekyll Cheat Sheet
225
- href: https://learn.cloudcannon.com/jekyll-cheat-sheet/
226
- target: _blank
227
- icon: flask
228
- - title: Jekyll Stackoverflow
229
- href: https://stackoverflow.com/questions/tagged/jekyll
230
- target: _blank
231
- icon: flask
232
- - title: BS 4 Stackoverflow
233
- href: https://stackoverflow.com/questions/tagged/bootstrap-4
234
- target: _blank
235
- icon: bootstrap
236
- - title: W3 Schools
237
- href: http://www.w3schools.com/
238
- target: _blank
239
- icon: xml
240
- - title: SelfHTML
241
- href: https://wiki.selfhtml.org/
242
- target: _blank
243
- icon: language-html5
244
- - title: LearnCSS
245
- href: https://developer.mozilla.org/en-US/docs/Learn/CSS
246
- target: _blank
247
- icon: language-css3
248
- - title: Asciidoc Language
249
- href: https://docs.asciidoctor.org/asciidoc/latest/
250
- target: _blank
251
- icon: format-color-text
252
- - title: Asciidoc FAQ
253
- href: http://www.methods.co.nz/asciidoc/faq.html
254
- target: _blank
255
- icon: format-color-text
256
- - title: Asciidoctor
257
- href: http://asciidoctor.org/
258
- target: _blank
259
- icon: hospital
260
-
261
- - title: Tools
262
- icon: wrench
263
- column:
264
- - title: FreeFormatter
265
- href: http://www.freeformatter.com/
266
- target: _blank
267
- icon: cached
268
- - title: Convert CSS to Sass
269
- href: http://sebastianpontow.de/css2compass/
270
- target: _blank
271
- icon: language-css3
272
- - title: CSS Matic Tools
273
- href: https://www.cssmatic.com
274
- target: _blank
275
- icon: language-css3
276
- - title: JSON Editor
277
- href: https://jsoneditoronline.org/
278
- target: _blank
279
- icon: code-json
280
- - title: YAML Parser
281
- href: http://yaml-online-parser.appspot.com/
282
- target: _blank
283
- icon: code-braces
284
- - title: XML-YAML Converter
285
- href: http://codebeautify.org/xml-to-yaml
286
- target: _blank
287
- icon: xml
288
- - title: Character Codes
289
- href: http://character-code.com/
290
- target: _blank
291
- icon: alpha-a-box-outline
292
- - title: Wordcloud Generator
293
- href: https://www.jasondavies.com/wordcloud/
294
- target: _blank
295
- icon: cloud
296
- - title: RegEx 101
297
- href: https://regex101.com/
298
- target: _blank
299
- icon: regex
300
- - title: RegEx Library
301
- href: http://www.regexlib.com/
302
- target: _blank
303
- icon: regex
304
-
305
- # ------------------------------------------------------------------------------
306
- # Menu Themes
307
- #
308
- - item: Themes
309
- theme_select:
310
- - local_themes: enabled
311
- title: Jekyll One
312
- icon: alpha-j-box
313
- - bootswatch_themes: enabled
314
- title: Bootswatch
315
- icon: bootstrap
316
- - preview: enabled
317
- title: Preview
318
- href: /pages/public/previewer/current_theme/
319
- icon: theme-light-dark
320
169
 
321
170
  # ------------------------------------------------------------------------------
322
171
  # Menu MANUALS
@@ -334,9 +183,11 @@
334
183
  - title: Pandoc
335
184
  href: "https://jekyll.one/pages/public/manuals/pandoc/"
336
185
  icon: cog-transfer
186
+ target: _blank
337
187
  - title: Platform Info
338
188
  href: "https://jekyll.one/pages/public/manuals/platform/"
339
189
  icon: folder-information
190
+ target: _blank
340
191
 
341
192
  # --------------------------------------------------------------------------
342
193
  # AsciiDoc
@@ -370,9 +221,11 @@
370
221
  - title: User Guide
371
222
  href: "https://jekyll.one/pages/public/manuals/yaml/user_guide/"
372
223
  icon: book-open-page-variant
224
+ target: _blank
373
225
  - title: YAML Reference Guide
374
226
  href: "https://jekyll.one/pages/public/manuals/yaml/quick_reference/"
375
227
  icon: book-open
228
+ target: _blank
376
229
 
377
230
  # --------------------------------------------------------------------------
378
231
  # Modules
@@ -384,50 +237,64 @@
384
237
  - title: Attic
385
238
  href: "https://jekyll.one/pages/public/manuals/modules/attic/"
386
239
  icon: window-shutter
240
+ target: _blank
387
241
  - title: Lightbox
388
242
  href: "https://jekyll.one/pages/public/manuals/modules/lightbox/"
389
243
  icon: flashlight
244
+ target: _blank
390
245
  - title: Navigator
391
246
  # href: "https://jekyll.one/pages/public/manuals/modules/navigatior/"
392
247
  href: '#'
393
248
  icon: near-me
249
+ target: _blank
394
250
  - title: Toccer
395
251
  # href: "https://jekyll.one/pages/public/manuals/modules/toccer/"
396
252
  href: '#'
397
253
  icon: wrap
254
+ target: _blank
398
255
  - title: Carousel
399
256
  href: "https://jekyll.one/pages/public/manuals/modules/carousel/"
400
257
  icon: view-carousel
258
+ target: _blank
401
259
  - title: Themer
402
260
  # href: "https://jekyll.one/pages/public/manuals/modules/themer/"
403
261
  href: '#'
404
262
  icon: theme-light-dark
263
+ target: _blank
405
264
  - title: Galleries
406
265
  href: "https://jekyll.one/pages/public/manuals/modules/gallery/"
407
266
  icon: view-dashboard-variant
267
+ target: _blank
408
268
  - title: Cookie Consent
409
269
  # href: "https://jekyll.one/pages/public/manuals/modules/cookie_consent/"
410
270
  href: '#'
411
271
  icon: cookie
272
+ target: _blank
412
273
  - title: Logger
413
274
  href: "https://jekyll.one/pages/public/manuals/modules/logger/"
414
275
  icon: math-log
276
+ target: _blank
415
277
 
416
278
  - title: Master Slider
417
279
  href: "https://jekyll.one/pages/public/manuals/modules/masterslider/"
418
280
  icon: gesture-swipe
281
+ target: _blank
419
282
  - title: Range Slider
420
283
  href: "https://jekyll.one/pages/public/manuals/modules/rangeslider/"
421
284
  icon: distribute-vertical-center
285
+ target: _blank
422
286
  - title: Code Hightlighter Rouge
423
287
  href: "https://jekyll.one/pages/public/manuals/rouge/user_guide/"
424
288
  icon: format-color-fill
289
+ target: _blank
425
290
  - title: Menu Dropdown
426
291
  href: "https://jekyll.one/pages/public/manuals/msdropdown/"
427
292
  icon: form-dropdown
293
+ target: _blank
428
294
  - title: Mobile Menu
429
295
  href: "https://jekyll.one/pages/public/manuals/mmenu/"
430
296
  icon: menu
297
+ target: _blank
431
298
 
432
299
  # --------------------------------------------------------------------------
433
300
  # J1 Components
@@ -440,11 +307,13 @@
440
307
  # href: "https://jekyll.one/pages/public/manuals/j1/resources/"
441
308
  href: '#'
442
309
  icon: garage
310
+ target: _blank
443
311
 
444
312
  - title: Layouts
445
313
  # href: "https://jekyll.one/pages/public/manuals/j1/layouts/"
446
314
  href: '#'
447
315
  icon: page-layout-body
316
+ target: _blank
448
317
 
449
318
  - title: Blocks
450
319
  icon: page-layout-header-footer
@@ -454,10 +323,12 @@
454
323
  # href: "https://jekyll.one/pages/public/manuals/j1/blocks/banner/"
455
324
  href: '#'
456
325
  icon: order-bool-ascending
326
+ target: _blank
457
327
  - title: Panel
458
328
  # href: "https://jekyll.one/pages/public/manuals/j1/blocks/panel/"
459
329
  href: '#'
460
330
  icon: order-bool-ascending-variant
331
+ target: _blank
461
332
 
462
333
  - title: Content
463
334
  icon: file
@@ -466,12 +337,15 @@
466
337
  - title: Pages
467
338
  href: "https://jekyll.one/pages/public/manuals/j1/content/pages/"
468
339
  icon: file-document
340
+ target: _blank
469
341
  - title: Posts
470
342
  href: "https://jekyll.one/pages/public/manuals/j1/content/posts/"
471
343
  icon: file-delimited
344
+ target: _blank
472
345
  - title: Collections
473
346
  href: "https://jekyll.one/pages/public/manuals/j1/content/collections/"
474
347
  icon: file-percent
348
+ target: _blank
475
349
 
476
350
  - title: Plugins
477
351
  icon: power-plug
@@ -481,12 +355,15 @@
481
355
  # href: "https://jekyll.one/pages/public/manuals/j1/plugins/sitemap/"
482
356
  href: '#'
483
357
  icon: map-marker-path
358
+ target: _blank
484
359
  - title: Asciidoctor
485
360
  href: "https://jekyll.one/pages/public/manuals/j1/plugins/asciidoctor/"
486
361
  icon: hospital
362
+ target: _blank
487
363
  - title: J1 Paginator
488
364
  href: "https://jekyll.one/pages/public/manuals/j1/plugins/j1_paginator/"
489
365
  icon: page-last
366
+ target: _blank
490
367
 
491
368
  # --------------------------------------------------------------------------
492
369
  # J1 Integrations
@@ -498,12 +375,15 @@
498
375
  - title: Google Translate
499
376
  href: '#'
500
377
  icon: google-translate
378
+ target: _blank
501
379
  - title: Google Analytics
502
380
  href: '#'
503
381
  icon: google-analytics
382
+ target: _blank
504
383
  - title: Google Ads
505
384
  href: '#'
506
385
  icon: google-ads
386
+ target: _blank
507
387
 
508
388
  - title: Jupyter Notebooks
509
389
  icon: microsoft-onenote
@@ -512,15 +392,19 @@
512
392
  - title: NBI Module Integration
513
393
  href: "https://jekyll.one/pages/public/jupyter/docs/j1-nbinteract-docs/"
514
394
  icon: alpha-j-box
395
+ target: _blank
515
396
  - title: NBI Module Wigets
516
397
  href: "https://jekyll.one/pages/public/jupyter/docs/nbi-widgets/"
517
398
  icon: alpha-j-box
399
+ target: _blank
518
400
  - title: BinderHub API
519
401
  href: "https://jekyll.one/pages/public/jupyter/docs/binderhub/"
520
402
  icon: book
403
+ target: _blank
521
404
  - title: JupyterHub API
522
405
  href: "https://jekyll.one/pages/public/jupyter/docs/jupyterhub/"
523
406
  icon: book
407
+ target: _blank
524
408
 
525
409
  - title: Comment Providers
526
410
  icon: comment
@@ -529,9 +413,11 @@
529
413
  - title: Disqus
530
414
  href: '#'
531
415
  icon: disqus
416
+ target: _blank
532
417
  - title: Hyvor Talk
533
418
  href: '#'
534
419
  icon: disqus
420
+ target: _blank
535
421
 
536
422
  # --------------------------------------------------------------------------
537
423
  # J1 Plugins
@@ -543,12 +429,15 @@
543
429
  - title: SiteMap
544
430
  href: '#'
545
431
  icon: map-marker-path
432
+ target: _blank
546
433
  - title: Asciidoctor
547
434
  href: "https://jekyll.one/pages/public/manuals/jekyll/plugin/asciidoctor/"
548
435
  icon: hospital
436
+ target: _blank
549
437
  - title: J1 Paginator
550
438
  href: "https://jekyll.one/pages/public/manuals/jekyll/plugins/paginator_v2/"
551
439
  icon: page-last
440
+ target: _blank
552
441
 
553
442
  # --------------------------------------------------------------------------
554
443
  # Jekyll
@@ -560,15 +449,19 @@
560
449
  - title: Liquid
561
450
  href: "https://jekyll.one/pages/public/manuals/liquid/user_guide/"
562
451
  icon: layers
452
+ target: _blank
563
453
  - title: Commandline
564
454
  href: "https://jekyll.one/pages/public/manuals/jekyll/user_guide/commandline/"
565
455
  icon: console-line
456
+ target: _blank
566
457
  - title: Configuration
567
458
  href: "https://jekyll.one/pages/public/manuals/jekyll/user_guide/configuration/"
568
459
  icon: code-braces
460
+ target: _blank
569
461
  - title: Date formats
570
462
  href: "https://jekyll.one/pages/public/manuals/jekyll/user_guide/date_formats/"
571
463
  icon: calendar-blank
464
+ target: _blank
572
465
 
573
466
 
574
467
  # ------------------------------------------------------------------------------
@@ -587,27 +480,35 @@
587
480
  - title: Current Theme
588
481
  href: /pages/public/previewer/current_theme/
589
482
  icon: theme-light-dark
483
+ target: _blank
590
484
  - title: MD Color Palette
591
485
  href: "https://jekyll.one/pages/public/previewer/color_palette/"
592
486
  icon: format-color-fill
487
+ target: _blank
593
488
  - title: Master Slider
594
489
  href: "https://jekyll.one/pages/public/previewer/masterslider/"
595
490
  icon: gesture-swipe
491
+ target: _blank
596
492
  - title: Country Flags
597
493
  href: "https://jekyll.one/pages/public/previewer/country_flags/"
598
494
  icon: flag
495
+ target: _blank
599
496
  - title: MDI Icons (regular)
600
497
  href: "https://jekyll.one/pages/public/previewer/mdi_font/"
601
498
  icon: alarm-light
499
+ target: _blank
602
500
  - title: MDI Icons (light)
603
501
  href: "https://jekyll.one/pages/public/previewer/mdil_font/"
604
502
  icon: alarm-light-outline
503
+ target: _blank
605
504
  - title: Rouge Themes
606
505
  href: "https://jekyll.one/pages/public/previewer/rouge/"
607
506
  icon: code-parentheses
507
+ target: _blank
608
508
  - title: Justified Gallery
609
509
  href: "https://jekyll.one/pages/public/previewer/justified_gallery/"
610
510
  icon: view-dashboard
511
+ target: _blank
611
512
 
612
513
  # --------------------------------------------------------------------------
613
514
  # CheatSheets
@@ -623,6 +524,163 @@
623
524
  - title: Editor Atom Quick Reference
624
525
  href: "https://jekyll.one/pages/public/cheatsheets/atom/"
625
526
  icon: atom
527
+ target: _blank
528
+
529
+
530
+ # ------------------------------------------------------------------------------
531
+ # Menu ONLINE
532
+ #
533
+ - item: Online
534
+ megamenu:
535
+ - title: Sites
536
+ icon: web
537
+ column:
538
+ - title: Jekyll Home
539
+ href: https://jekyllrb.com/
540
+ target: _blank
541
+ icon: flask
542
+ - title: Ruby
543
+ href: https://www.ruby-lang.org/en/
544
+ target: _blank
545
+ icon: language-ruby
546
+ - title: RubyGems
547
+ href: https://rubygems.org/gems/j1-template/
548
+ target: _blank
549
+ icon: language-ruby
550
+ - title: NpmJS
551
+ href: https://www.npmjs.com/
552
+ target: _blank
553
+ icon: language-javascript
554
+ - title: Bootstrap Home
555
+ href: http://getbootstrap.com/
556
+ target: _blank
557
+ icon: bootstrap
558
+ - title: Bootstrap CDN
559
+ href: https://www.bootstrapcdn.com/
560
+ target: _blank
561
+ icon: bootstrap
562
+ - title: FA Icons
563
+ href: http://fontawesome.io/icons/
564
+ target: _blank
565
+ icon: font-awesome
566
+ - title: MD Icons
567
+ href: https://materialdesignicons.com/
568
+ target: _blank
569
+ icon: google
570
+ - title: Fonts
571
+ href: https://fonts.google.com/
572
+ target: _blank
573
+ icon: google
574
+ - title: cdnJS
575
+ href: https://cdnjs.com/
576
+ target: _blank
577
+ icon: arrow-down-bold-hexagon-outline
578
+
579
+ - title: Knowledge
580
+ icon: lightbulb-on
581
+ column:
582
+ - title: Learn Jekyll at CloudCannon
583
+ href: http://jekyll.tips/
584
+ target: _blank
585
+ icon: flask
586
+ - title: Jekyll Cheat Sheet
587
+ href: https://learn.cloudcannon.com/jekyll-cheat-sheet/
588
+ target: _blank
589
+ icon: flask
590
+ - title: Jekyll Stackoverflow
591
+ href: https://stackoverflow.com/questions/tagged/jekyll
592
+ target: _blank
593
+ icon: flask
594
+ - title: BS 4 Stackoverflow
595
+ href: https://stackoverflow.com/questions/tagged/bootstrap-4
596
+ target: _blank
597
+ icon: bootstrap
598
+ - title: W3 Schools
599
+ href: http://www.w3schools.com/
600
+ target: _blank
601
+ icon: xml
602
+ - title: SelfHTML
603
+ href: https://wiki.selfhtml.org/
604
+ target: _blank
605
+ icon: language-html5
606
+ - title: LearnCSS
607
+ href: https://developer.mozilla.org/en-US/docs/Learn/CSS
608
+ target: _blank
609
+ icon: language-css3
610
+ - title: Asciidoc Language
611
+ href: https://docs.asciidoctor.org/asciidoc/latest/
612
+ target: _blank
613
+ icon: format-color-text
614
+ - title: Asciidoc FAQ
615
+ href: http://www.methods.co.nz/asciidoc/faq.html
616
+ target: _blank
617
+ icon: format-color-text
618
+ - title: Asciidoctor
619
+ href: http://asciidoctor.org/
620
+ target: _blank
621
+ icon: hospital
622
+
623
+ - title: Tools
624
+ icon: wrench
625
+ column:
626
+ - title: FreeFormatter
627
+ href: http://www.freeformatter.com/
628
+ target: _blank
629
+ icon: cached
630
+ - title: Convert CSS to Sass
631
+ href: http://sebastianpontow.de/css2compass/
632
+ target: _blank
633
+ icon: language-css3
634
+ - title: CSS Matic Tools
635
+ href: https://www.cssmatic.com
636
+ target: _blank
637
+ icon: language-css3
638
+ - title: JSON Editor
639
+ href: https://jsoneditoronline.org/
640
+ target: _blank
641
+ icon: code-json
642
+ - title: YAML Parser
643
+ href: http://yaml-online-parser.appspot.com/
644
+ target: _blank
645
+ icon: code-braces
646
+ - title: XML-YAML Converter
647
+ href: http://codebeautify.org/xml-to-yaml
648
+ target: _blank
649
+ icon: xml
650
+ - title: Character Codes
651
+ href: http://character-code.com/
652
+ target: _blank
653
+ icon: alpha-a-box-outline
654
+ - title: Wordcloud Generator
655
+ href: https://www.jasondavies.com/wordcloud/
656
+ target: _blank
657
+ icon: cloud
658
+ - title: RegEx 101
659
+ href: https://regex101.com/
660
+ target: _blank
661
+ icon: regex
662
+ - title: RegEx Library
663
+ href: http://www.regexlib.com/
664
+ target: _blank
665
+ icon: regex
666
+
667
+
668
+ # ------------------------------------------------------------------------------
669
+ # Menu Themes
670
+ #
671
+ - item: Themes
672
+ theme_select:
673
+ - local_themes: enabled
674
+ title: Jekyll One
675
+ icon: alpha-j-box
676
+ - bootswatch_themes: enabled
677
+ title: Bootswatch
678
+ icon: bootstrap
679
+ - preview: enabled
680
+ title: Preview
681
+ href: /pages/public/previewer/current_theme/
682
+ icon: theme-light-dark
683
+
626
684
 
627
685
  # ------------------------------------------------------------------------------
628
686
  # Menu ABOUT
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1",
4
- "version": "2022.5.0-rc1",
4
+ "version": "2022.5.0-rc2",
5
5
  "description": "J1 Template Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2022.5.0-rc1",
4
+ "version": "2022.5.0-rc2",
5
5
  "description": "J1 Template Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2022.5.0-rc1",
4
+ "version": "2022.5.0-rc2",
5
5
  "description": "J1 Template Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: j1-template
3
3
  version: !ruby/object:Gem::Version
4
- version: 2022.5.0.rc1
4
+ version: 2022.5.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - juergen_jekyll_one