jekyll_draft 2.0.1 → 2.1.0
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 +4 -4
- data/.rubocop.yml +4 -1
- data/CHANGELOG.md +19 -0
- data/README.md +397 -69
- data/jekyll_draft.gemspec +12 -11
- data/lib/{draft_html.rb → jekyll_draft/common/draft_html.rb} +5 -4
- data/lib/jekyll_draft/common/else.rb +35 -0
- data/lib/{filters.rb → jekyll_draft/common/filters.rb} +3 -6
- data/lib/jekyll_draft/common/module_functions.rb +90 -0
- data/lib/{if_draft.rb → jekyll_draft/containing_page/if_draft.rb} +5 -7
- data/lib/jekyll_draft/other_page/filters.rb +14 -0
- data/lib/jekyll_draft/other_page/if_draft.rb +95 -0
- data/lib/jekyll_draft/version.rb +1 -1
- data/lib/jekyll_draft.rb +12 -5
- data/spec/jekyll/mocks.rb +1 -0
- metadata +12 -12
- data/lib/draft.rb +0 -54
- data/lib/else.rb +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86ee1458ee28aab9d7f99d46deeff46e98a795cb6d3737a84b2e0e9f17f68632
|
4
|
+
data.tar.gz: a1abc81b94ccfdc3ee46ec312324d0d086567bbabcaa40784fca3d8d1c8415e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a70c60fa72cfb2dc9a8842e5b54ec9f0dec2746976edd90ed174990dcf24a14aadf801246258c257ac375c68fd72a518c9e9bc55bbbf975498c43d09a5a94774
|
7
|
+
data.tar.gz: 030ef794350d158b43395d957ce6f080c8497dde0db7005dacc96dd2900cacbc712c353addf1cb2443f8261e2e2fee471d9e1f39c7f7c9a758776f23a7ca56d5
|
data/.rubocop.yml
CHANGED
@@ -55,7 +55,7 @@ Metrics/BlockLength:
|
|
55
55
|
Metrics/ClassLength:
|
56
56
|
Exclude:
|
57
57
|
- spec/**/*
|
58
|
-
Max:
|
58
|
+
Max: 60
|
59
59
|
|
60
60
|
Metrics/CyclomaticComplexity:
|
61
61
|
Max: 20
|
@@ -73,6 +73,9 @@ Naming/FileName:
|
|
73
73
|
RSpec/ExampleLength:
|
74
74
|
Max: 20
|
75
75
|
|
76
|
+
RSpec/IndexedLet:
|
77
|
+
Enabled: false
|
78
|
+
|
76
79
|
RSpec/MultipleExpectations:
|
77
80
|
Max: 15
|
78
81
|
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,24 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 2.1.0 / 2025-02-07
|
4
|
+
|
5
|
+
* Added ability to return a page in any collection, or those not in a collection,
|
6
|
+
whose path uniquely contains a string is a draft or not.
|
7
|
+
* Uses the binary search added in `jekyll_all_collections` v0.4.0 to find `APage`s whose `href` matches a suffix.
|
8
|
+
* Added the `bin/release_port` script that kills hung processes being debugged
|
9
|
+
|
10
|
+
|
11
|
+
## 2.0.2 / 2024-07-24
|
12
|
+
|
13
|
+
* Compatible with `jekyll_plugin_support` v1.0.0
|
14
|
+
|
15
|
+
|
16
|
+
## 2.0.1 / 2024-02-07
|
17
|
+
|
18
|
+
* Added Jekyll inline tag: `unless_draft_only`.
|
19
|
+
* Added method `draft_only?` to API module `Jekyll::Draft`.
|
20
|
+
|
21
|
+
|
3
22
|
## 2.0.1 / 2023-11-30
|
4
23
|
|
5
24
|
* Jekyll block tags: `if_draft` and `unless_draft`.
|
data/README.md
CHANGED
@@ -1,24 +1,39 @@
|
|
1
1
|
# jekyll_draft [](https://badge.fury.io/rb/jekyll_draft)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
Jekyll has various ways of specifying that a page or document will be
|
4
|
+
visible when the website is published in `production` mode.
|
5
|
+
The Jekyll documentation is scattered and incomplete regarding detecting draft pages and documents.
|
6
|
+
This plugin provides standard ways for detecting draft pages and documents.
|
7
|
+
|
8
|
+
`Jekyll_draft` provides the following:
|
9
|
+
|
10
|
+
* Jekyll block tags: `if_draft`, `if_page_draft`, `unless_draft`, and `unless_page_draft`.
|
11
|
+
* Jekyll inline tags: `else_if_draft`, `else_if_page_draft`,
|
12
|
+
`else_unless_draft` and `else_unless_page_draft`.
|
13
|
+
These are meant for use within the above block tags.
|
14
|
+
They are all identical; they are provided so usage seems natural.
|
15
|
+
* Jekyll inline tag `draft_html`, which generates HTML that indicates if
|
16
|
+
the enclosing document or a specified is a draft.
|
10
17
|
* Liquid filters:
|
11
18
|
* `is_draft` returns a boolean indicating if the document passed to it is a draft.
|
19
|
+
* `page_match_is_draft` is like `is_draft`, but works on other pages.
|
12
20
|
* `draft_html` returns the same string the `draft_html` tag returns,
|
13
|
-
indicating if the
|
21
|
+
indicating if the <code>Jekyll::Page</code> passed to the filter is a draft.
|
22
|
+
* `page_match_draft_html` is like `draft_html` but works on other pages.
|
23
|
+
It accepts a string that will be matched against
|
24
|
+
[`APage.href`](https://github.com/mslinn/jekyll_all_collections?tab=readme-ov-file#the-apage-class)
|
25
|
+
values in <code>site.everything</code>.
|
14
26
|
* Module `Jekyll::Draft` defines an API that your plugin can call.
|
15
27
|
It has the following methods:
|
16
|
-
* `draft?` returns a boolean indicating if the
|
17
|
-
|
18
|
-
|
28
|
+
* `draft?` returns a boolean indicating if the object passed to it is a draft.
|
29
|
+
It handles `AllCollectionsHooks::APage` instances, `Jekyll::Page` instances,
|
30
|
+
and `Jekyll::Document` instances.
|
31
|
+
* `draft_html` accepts the same parameter types as `draft?`,
|
32
|
+
and returns the same string that `draft_html` tag returns.
|
33
|
+
The response indicates if the document passed to it is a draft.
|
34
|
+
* `page_match` returns the `APage` whose `href` uniquely ends with the string passed to it.
|
19
35
|
* `root` returns the path to the root of the collection that the document passed to it is a member of.
|
20
|
-
This method is not functionally related to Jekyll draft documents
|
21
|
-
it should be packaged separately ... maybe one day...
|
36
|
+
This method is not functionally related to Jekyll draft documents.
|
22
37
|
|
23
38
|
The difference between the tag called `draft_html` and the filter of the same name
|
24
39
|
is that the tag only works on the document that it is embedded in,
|
@@ -28,11 +43,27 @@ Both the tag and the filter call the same API methods defined in the `Jekyll::Dr
|
|
28
43
|
More information is available on [Mike Slinn’s website](https://www.mslinn.com/jekyll_plugins/jekyll_draft.html).
|
29
44
|
|
30
45
|
|
46
|
+
## Front Matter
|
47
|
+
|
48
|
+
To mark a blog as a draft, put it in the `_drafts` directory.
|
49
|
+
|
50
|
+
To mark any other article as a draft, add the following to its front matter:
|
51
|
+
|
52
|
+
```text
|
53
|
+
---
|
54
|
+
published: false
|
55
|
+
---
|
56
|
+
```
|
57
|
+
|
58
|
+
|
31
59
|
## Demo
|
32
60
|
|
33
|
-
The [demo](demo) subdirectory has working examples of this Jekyll plugin's functionality
|
61
|
+
The [demo/](demo) subdirectory has working examples of this Jekyll plugin's functionality
|
34
62
|
in a demonstration website.
|
35
|
-
|
63
|
+
It can be used to debug the plugin or it can run freely.
|
64
|
+
Please examine the <code>HTML</code> files in the demo to see how the plugin works.
|
65
|
+
|
66
|
+
To run the demo freely from the command line, type:
|
36
67
|
|
37
68
|
```console
|
38
69
|
$ demo/_bin/debug -r
|
@@ -56,50 +87,109 @@ so you can learn how to write Jekyll pages that include this functionality.
|
|
56
87
|
|
57
88
|
### For Use In A Jekyll Website
|
58
89
|
|
59
|
-
Add the CSS found in [`demo/assets/css/jekyll_draft.css`](demo/assets/css/jekyll_draft.css) to your Jekyll layout(s).
|
90
|
+
1. Add the CSS found in [`demo/assets/css/jekyll_draft.css`](demo/assets/css/jekyll_draft.css) to your Jekyll layout(s).
|
60
91
|
|
61
|
-
Add the following to your Jekyll website's `Gemfile`, within the `jekyll_plugins` group:
|
92
|
+
2. Add the following to your Jekyll website's `Gemfile`, within the `jekyll_plugins` group:
|
62
93
|
|
63
|
-
```ruby
|
64
|
-
group :jekyll_plugins do
|
65
|
-
|
66
|
-
|
67
|
-
|
94
|
+
```ruby
|
95
|
+
group :jekyll_plugins do
|
96
|
+
gem 'jekyll_all_collections', '>= 0.3.8'
|
97
|
+
gem 'jekyll_draft', '>=2.1.0'
|
98
|
+
end
|
99
|
+
```
|
68
100
|
|
69
|
-
|
101
|
+
3. Type:
|
70
102
|
|
71
|
-
```shell
|
72
|
-
$ bundle
|
73
|
-
```
|
103
|
+
```shell
|
104
|
+
$ bundle
|
105
|
+
```
|
106
|
+
|
107
|
+
4. Restart Jekyll.
|
74
108
|
|
75
109
|
|
76
110
|
### For Use In a Gem
|
77
111
|
|
78
|
-
Add the following to your gem’s `.gemspec`:
|
112
|
+
1. Add the following to your gem’s `.gemspec`:
|
79
113
|
|
80
|
-
```ruby
|
81
|
-
spec.add_dependency '
|
82
|
-
|
114
|
+
```ruby
|
115
|
+
spec.add_dependency 'jekyll_all_collections', '>= 0.3.8'
|
116
|
+
spec.add_dependency 'jekyll_draft', '>=2.1.0'
|
117
|
+
```
|
83
118
|
|
84
|
-
|
119
|
+
2. Type:
|
85
120
|
|
86
|
-
```shell
|
87
|
-
$ bundle
|
121
|
+
```shell
|
122
|
+
$ bundle
|
123
|
+
```
|
124
|
+
|
125
|
+
|
126
|
+
## Configuration
|
127
|
+
|
128
|
+
### _config.yml
|
129
|
+
|
130
|
+
The default settings run more quickly than id `verify_unique_match` is enabled,
|
131
|
+
which guarantee that no broken internal links exist.
|
132
|
+
If a Jekyll web page has hundreds or thousands of pages,
|
133
|
+
site generation can take many minutes if `verify_unique_match` is enabled.
|
134
|
+
|
135
|
+
The following settings are the default values for `_config.yml`.
|
136
|
+
They apply to all tags defined by this plugin
|
137
|
+
(`if_draft`, `unless_draft`, `if_page_draft`, `unless_page_draft`)
|
138
|
+
except `draft_html` tag, which does not reference these settings:
|
139
|
+
|
140
|
+
```yaml
|
141
|
+
if_draft:
|
142
|
+
error_if_no_match: true
|
143
|
+
verify_unique_match: false
|
88
144
|
```
|
89
145
|
|
146
|
+
### Environment Variables
|
147
|
+
|
148
|
+
Environment variables override `_config.yml` settings.
|
149
|
+
|
150
|
+
* `if_draft_error_if_no_match` overrides `if_draft.error_if_no_match`
|
151
|
+
* `if_draft_verify_unique_match` overrides `if_draft.verify_unique_match`
|
152
|
+
|
153
|
+
|
154
|
+
## Usage in a Web Page
|
155
|
+
|
156
|
+
This section documents the usage of the inline and block tags described [above](#top).
|
157
|
+
|
158
|
+
The `if_draft` and `if_page_draft` block tags act as `if-then` or `if-then-else` programming constructs.
|
159
|
+
Draft documents only exist in development mode.
|
160
|
+
In production mode, there is no way to programmatically detect if a draft document exists in development mode.
|
161
|
+
|
162
|
+
Thus, `if_draft` and `if_page_draft` actually mean "if in development mode and the document is a draft".
|
163
|
+
|
164
|
+
Furthermore, `unless_draft` and `unless_page_draft` actually mean "if in production mode or the document is not a draft".
|
165
|
+
These block tags act as Ruby
|
166
|
+
[`unless-then`](https://rubystyle.guide/#unless-for-negatives) and
|
167
|
+
[`unless-then-else`](https://rubystyle.guide/#no-else-with-unless) programming constructs.
|
168
|
+
|
169
|
+
The `draft_html` inline tag generates HTML that indicates if a page is a draft or not.
|
90
170
|
|
91
|
-
## Usage
|
92
171
|
|
93
172
|
### `if_draft` and `unless_draft` Block Tags
|
94
173
|
|
95
|
-
|
174
|
+
These tags consider the status of the document that the tag is embedded in.
|
175
|
+
|
176
|
+
The <code>if_draft</code> block tag acts as an <code>if-then</code> or an <code>if-then-else</code> programming construct.
|
177
|
+
|
178
|
+
The following generates `<p>This is a draft document!</p>`
|
179
|
+
if the document it is embedded in is a draft,
|
180
|
+
and the Jekyll website generation was performed in development mode:
|
96
181
|
|
97
182
|
```html
|
98
183
|
{% if_draft %}
|
99
|
-
<p>This is a draft document
|
184
|
+
<p>This is a draft document.</p>
|
100
185
|
{% endif_draft %}
|
101
186
|
```
|
102
187
|
|
188
|
+
The following enhances the previous example by generating `<p>This is not a draft document!</p>`
|
189
|
+
if the document this code is embedded in is not a draft.
|
190
|
+
The message for the else clause is generated for documents that are not drafts,
|
191
|
+
regardless of whether Jekyll is in `production` or `development` mode.
|
192
|
+
|
103
193
|
```html
|
104
194
|
{% if_draft %}
|
105
195
|
<p>This is a draft document!</p>
|
@@ -108,8 +198,9 @@ The `if_draft` block tag acts as an `if-then` or an `if-then-else` programming c
|
|
108
198
|
{% endif_draft %}
|
109
199
|
```
|
110
200
|
|
111
|
-
The `unless_draft` block tag
|
112
|
-
|
201
|
+
The `unless_draft` block tag switches the then and else clauses of the `if_draft` block tag.
|
202
|
+
It acts as a Ruby [<code>unless-then</code>](https://rubystyle.guide/#unless-for-negatives) or
|
203
|
+
[<code>unless-then-else</code>](https://rubystyle.guide/#no-else-with-unless) programming construct.
|
113
204
|
|
114
205
|
```html
|
115
206
|
{% unless_draft %}
|
@@ -120,68 +211,161 @@ an [unless-then-else](https://rubystyle.guide/#no-else-with-unless) programming
|
|
120
211
|
```html
|
121
212
|
{% unless_draft %}
|
122
213
|
<p>This is not a draft document!</p>
|
123
|
-
{%
|
214
|
+
{% else_unless_draft %}
|
124
215
|
<p>This is a draft document!</p>
|
125
216
|
{% endunless_draft %}
|
126
217
|
```
|
127
218
|
|
128
|
-
|
129
|
-
|
219
|
+
|
220
|
+
### `if_page_draft` and `unless_page_draft` Block Tags
|
221
|
+
|
222
|
+
These tags consider the status of the document whose url uniquely includes the specified string.
|
223
|
+
|
224
|
+
An error is raised in `development` mode if no page exists whose URL contains the matching string.
|
225
|
+
|
226
|
+
The following generates `<p><code>/directory/blah_blah.html</code> is a draft document!</p>`
|
227
|
+
if the rendered page with a url that ends with the string `blah.html` in is a draft,
|
228
|
+
and the Jekyll website generation was performed in development mode,
|
229
|
+
and the only page with a matching URL is <code>/directory/blah_blah.html</code>:
|
230
|
+
|
231
|
+
```html
|
232
|
+
{% if_page_draft blah.html %}
|
233
|
+
<p><code>{{matched_page.url}}</code> is a draft document.</p>
|
234
|
+
{% endif_page_draft %}
|
235
|
+
```
|
236
|
+
|
237
|
+
Notice the reference to a Jekyll variable called `matched_page` in the above example.
|
238
|
+
It is set to the Jekyll `Page` whose `url` uniquely matched the string following the `if_page_draft` tag.
|
239
|
+
This variable is only defined for `development` mode within the `then` clause of the `if_page_draft` tag,
|
240
|
+
and for the `else` clause of the `unless_page_draft` block tag.
|
241
|
+
|
242
|
+
You can specify any `Page` attribute with `matched_page`, for example {{matched_page.title}}.
|
243
|
+
|
244
|
+
The following generates `<p><code>/directory/blah_blah.html</code> is not a draft document!</p>`
|
245
|
+
if the `/directory/blah_blah.html` in is a draft document,
|
246
|
+
and the Jekyll website generation was performed in development mode:
|
247
|
+
|
248
|
+
```html
|
249
|
+
{% unless_page_draft blah.html %}
|
250
|
+
<p><code>{{matched_page.url}}</code> is not a draft document!</p>
|
251
|
+
{% endunless_draft %}
|
252
|
+
```
|
253
|
+
|
254
|
+
The following shows how to specify `else` clauses for `if_page_draft` and `unless_page_draft`.
|
255
|
+
Note that the `if_draft` else clause activates in `production` mode regardless of whether a page matches or not,
|
256
|
+
so you should not reference `matched_page` in an else clause without testing
|
257
|
+
[`jekyll.environment`](https://jekyllrb.com/docs/configuration/environments/).
|
258
|
+
Instead, you can reference the match string with `{{path_portion}}`:
|
259
|
+
|
260
|
+
```html
|
261
|
+
{% if_page_draft blah.html %}
|
262
|
+
<p><code>{{matched_page.url}}</code> is a draft document!</p>
|
263
|
+
{% else_if_page_draft %}
|
264
|
+
{% if jekyll.environment == 'development' %}
|
265
|
+
<p><code>{{matched_page.url}}</code> is not a draft document!</p>
|
266
|
+
{% else %}
|
267
|
+
<p>Production mode cannot detect if <code>{{path_portion}}</code> matches a draft document or not.</p>
|
268
|
+
{% endif %}
|
269
|
+
{% endif_page_draft %}
|
270
|
+
```
|
271
|
+
|
272
|
+
Similarly, the `unless_draft` then clause activates in `production` mode regardless of whether a page matches or not,
|
273
|
+
so you should not reference `matched_page` in a then clause without testing
|
274
|
+
[`jekyll.environment`](https://jekyllrb.com/docs/configuration/environments/).
|
275
|
+
|
276
|
+
```html
|
277
|
+
{% unless_page_draft blah.html %}
|
278
|
+
{% if jekyll.environment == 'development' %}
|
279
|
+
<p>The page whose URL contains <code>{{path_portion}}</code> is not a draft document!</p>
|
280
|
+
{% else %}
|
281
|
+
<p>Production mode cannot detect if <code>{{path_portion}}</code> matches a draft document or not.</p>
|
282
|
+
{% endif %}
|
283
|
+
{% else_unless_page_draft %}
|
284
|
+
<p><code>{{matched_page.url}}</code> is a draft document!</p>
|
285
|
+
{% endunless_page_draft %}
|
286
|
+
```
|
287
|
+
|
288
|
+
As with the `if_page_draft` and `unless_page_draft` examples, the above example
|
289
|
+
references scoped Jekyll variables called `matched_page` and `path_portion`.
|
290
|
+
These variables are only defined within the body of `if_page_draft` and `unless_page_draft` blocks.
|
291
|
+
|
292
|
+
|
293
|
+
### Else Clauses
|
294
|
+
|
295
|
+
You can use the keywords
|
296
|
+
`else_if_draft`, `else_if_page_draft`, `else_unless_draft`, and `else_unless_page_draft` interchangeably.
|
297
|
+
They are actually made by registering the same code multiple times with different subclass names.
|
130
298
|
Use the keyword that makes the most sense to you.
|
131
299
|
|
132
300
|
|
133
301
|
### `draft_html` Inline Tag
|
134
302
|
|
303
|
+
#### Default Behavior
|
304
|
+
|
305
|
+
The `draft_html` inline tag can return the status of the page it is embedded in, or any other page that exists.
|
306
|
+
Recall that draft pages do not exist in `production` mode.
|
307
|
+
|
135
308
|
Here is an example of embedding the `draft_html` inline tag into an HTML document:
|
136
309
|
|
137
310
|
```html
|
138
311
|
<p>Is this a draft document? Look here to see: {% draft_html %}</p>
|
139
312
|
```
|
140
313
|
|
141
|
-
By default,
|
314
|
+
By default, if the document is a draft, and the Jekyll website generation was performed in development mode,
|
315
|
+
`draft_html` emits ` <i class='jekyll_draft>Draft</i>`,
|
142
316
|
otherwise it does not emit anything.
|
143
317
|
|
144
|
-
You can change this behavior several ways
|
145
|
-
|
146
|
-
* Add the `published_output` parameter to specify the HTML that should be emitted if the document is not a draft.
|
147
|
-
The default message will continue to be output for draft documents when the `published_output` parameter is used.
|
148
|
-
|
149
|
-
```html
|
150
|
-
{% draft_html published_output="<p>Not a draft</p>" %}
|
151
|
-
```
|
318
|
+
<p>You can change this behavior in several ways:</p>
|
152
319
|
|
153
|
-
* Add the
|
320
|
+
* Add the <code>draft_output</code> parameter to specify the HTML that should be
|
321
|
+
emitted if the document is a draft,
|
322
|
+
and the Jekyll website generation was performed in development mode:
|
154
323
|
|
155
|
-
```
|
324
|
+
```text
|
156
325
|
{% draft_html
|
157
326
|
draft_output="<p>Is a draft</p>"
|
158
327
|
%}
|
328
|
+
|
159
329
|
{% draft_html
|
160
330
|
draft_output="<p>Is a draft</p>"
|
161
331
|
published_output="<p>Not a draft</p>"
|
162
332
|
%}
|
163
333
|
```
|
164
334
|
|
165
|
-
* Add the
|
166
|
-
|
335
|
+
* Add the <code>published_output</code> parameter to specify the HTML that
|
336
|
+
should be emitted if the document is not a draft.
|
337
|
+
The default message will continue to be output for draft documents when the
|
338
|
+
<code>published_output</code> parameter is used.
|
167
339
|
|
168
|
-
```
|
340
|
+
```text
|
341
|
+
{% draft_html published_output="<p>Not a draft</p>" %}
|
342
|
+
```
|
343
|
+
|
344
|
+
* Add the <code>draft_class</code> parameter to specify the CSS class that should be added
|
345
|
+
to the emitted HTML if the document is a draft,
|
346
|
+
and the Jekyll website generation was performed in development mode:
|
347
|
+
|
348
|
+
```text
|
169
349
|
{% draft_html draft_class="my_draft_class" %}
|
350
|
+
|
170
351
|
{% draft_html
|
171
352
|
draft_class="my_draft_class"
|
172
353
|
published_output="<p>Not a draft</p>"
|
173
354
|
%}
|
174
355
|
```
|
175
356
|
|
176
|
-
* Add the
|
177
|
-
to the emitted HTML if the document is a draft
|
357
|
+
* Add the <code>draft_style</code> parameter to specify the CSS class that should be added
|
358
|
+
to the emitted HTML if the document is a draft,
|
359
|
+
and the Jekyll website generation was performed in development mode:
|
178
360
|
|
179
|
-
```
|
361
|
+
```text
|
180
362
|
{% draft_html draft_style="font-size: 24pt;" %}
|
363
|
+
|
181
364
|
{% draft_html
|
182
365
|
draft_class="my_draft_class"
|
183
366
|
draft_style="font-size: 24pt;"
|
184
367
|
%}
|
368
|
+
|
185
369
|
{% draft_html
|
186
370
|
draft_class="my_draft_class"
|
187
371
|
draft_style="font-size: 24pt;"
|
@@ -190,31 +374,149 @@ The default message will continue to be output for draft documents when the `pub
|
|
190
374
|
```
|
191
375
|
|
192
376
|
|
193
|
-
|
377
|
+
#### Testing Another Page
|
194
378
|
|
195
|
-
|
379
|
+
The `path_portion` option enables the `draft_html` tag to report on the draft status
|
380
|
+
of other pages when Jekyll is in `development` mode.
|
381
|
+
By default, an empty string is always returned when in `production` mode.
|
196
382
|
|
197
|
-
|
198
|
-
|
383
|
+
```html
|
384
|
+
<p>
|
385
|
+
Is <code>/directory/blah_blah.html</code> a draft document?
|
386
|
+
Look here to see: {% draft_html path_portion='blah.html' %}
|
387
|
+
</p>
|
388
|
+
```
|
389
|
+
|
390
|
+
It might be desirable to enclose the above in a test for Jekyll mode as follows:
|
199
391
|
|
200
392
|
```html
|
201
|
-
{
|
393
|
+
{% if jekyll.environment == "development" %}
|
394
|
+
<p>
|
395
|
+
Is <code>/directory/blah_blah.html</code> a draft document?
|
396
|
+
Look here to see: {% draft_html path_portion='blah.html' %}
|
397
|
+
</p>
|
398
|
+
{% endif %}
|
202
399
|
```
|
203
400
|
|
204
401
|
|
402
|
+
#### Additional Options
|
403
|
+
|
404
|
+
In addition to the `path_portion` option, the following can be also be specified:
|
405
|
+
|
406
|
+
* Add the `published_output` parameter to specify the HTML that should be emitted if the document is not a draft,
|
407
|
+
and the Jekyll website generation was performed in development mode.
|
408
|
+
The default message will continue to be output for draft documents when the `published_output` parameter is used.
|
409
|
+
|
410
|
+
```html
|
411
|
+
{% draft_html published_output="<p>Not a draft</p>" %}
|
412
|
+
```
|
413
|
+
|
414
|
+
* Add the `draft_output` parameter to specify the HTML that should be emitted if the document is a draft,
|
415
|
+
and the Jekyll website generation was performed in development mode:
|
416
|
+
|
417
|
+
```html
|
418
|
+
{% draft_html
|
419
|
+
draft_output="<p>Is a draft</p>"
|
420
|
+
%}
|
421
|
+
{% draft_html
|
422
|
+
draft_output="<p>Is a draft</p>"
|
423
|
+
published_output="<p>Not a draft</p>"
|
424
|
+
%}
|
425
|
+
```
|
426
|
+
|
427
|
+
* Add the `draft_class` parameter to specify the CSS class that should be added
|
428
|
+
to the emitted HTML if the document is a draft
|
429
|
+
and the Jekyll website generation was performed in development mode:
|
430
|
+
|
431
|
+
```html
|
432
|
+
{% draft_html draft_class="my_draft_class" %}
|
433
|
+
{% draft_html
|
434
|
+
draft_class="my_draft_class"
|
435
|
+
published_output="<p>Not a draft</p>"
|
436
|
+
%}
|
437
|
+
```
|
438
|
+
|
439
|
+
* Add the `draft_style` parameter to specify the CSS class that should be added
|
440
|
+
to the emitted HTML if the document is a draft,
|
441
|
+
and the Jekyll website generation was performed in development mode:
|
442
|
+
|
443
|
+
```html
|
444
|
+
{% draft_html draft_style="font-size: 24pt;" %}
|
445
|
+
{% draft_html
|
446
|
+
draft_class="my_draft_class"
|
447
|
+
draft_style="font-size: 24pt;"
|
448
|
+
%}
|
449
|
+
{% draft_html
|
450
|
+
draft_class="my_draft_class"
|
451
|
+
draft_style="font-size: 24pt;"
|
452
|
+
published_output="<p>Not a draft</p>"
|
453
|
+
%}
|
454
|
+
```
|
455
|
+
|
456
|
+
|
457
|
+
### Liquid Filters
|
458
|
+
|
205
459
|
#### `draft_html`
|
206
460
|
|
207
|
-
|
208
|
-
If the page is not a draft then the empty string is returned.
|
209
|
-
|
461
|
+
By default, the draft_html Liquid filter generates HTML if a page is invisible when published in `production` mode.
|
462
|
+
If the page is not a draft, then the empty string is returned.
|
463
|
+
|
464
|
+
The optional parameters for the `draft_html` inline tag are not available for
|
465
|
+
use with the `draft_html` filter.
|
466
|
+
|
467
|
+
The default generated HTML for draft pages is:<br>
|
210
468
|
`" <i class='jekyll_draft'>Draft</i>"`
|
211
469
|
|
470
|
+
Invoke the filter like the following; the output depends on whether the document is a draft:
|
471
|
+
|
212
472
|
```html
|
213
473
|
{{ page | draft_html }} => " <i class='jekyll_draft'>Draft</i>"
|
214
474
|
```
|
215
475
|
|
216
|
-
|
217
|
-
|
476
|
+
Here is a code snippet that shows the <code>draft_html</code> filter in use:
|
477
|
+
|
478
|
+
```html
|
479
|
+
{% assign docs = site.myCollection | sort: "order" %}
|
480
|
+
<ol id="titles">
|
481
|
+
{% for doc in docs %}
|
482
|
+
<li>
|
483
|
+
<a href="{{doc.url}}" class="title">{{doc.title}}</a>{{ doc | draft_html }}
|
484
|
+
</li>
|
485
|
+
{% endfor %}
|
486
|
+
</ol>
|
487
|
+
```
|
488
|
+
|
489
|
+
|
490
|
+
#### `page_match_draft_html`
|
491
|
+
|
492
|
+
This filter detects if the page whose URL uniquely contains a string is
|
493
|
+
invisible when published in `production` mode,
|
494
|
+
and returns the same strings that `draft_html` returns.
|
495
|
+
|
496
|
+
```html
|
497
|
+
{{ "unpublished.html" | page_match_draft_html }}
|
498
|
+
```
|
499
|
+
|
500
|
+
|
501
|
+
#### `is_draft`
|
502
|
+
|
503
|
+
This filter detects if a page is invisible when published in `production` mode,
|
504
|
+
and returns `true` or `false`.
|
505
|
+
|
506
|
+
```html
|
507
|
+
{{ page | is_draft }} <!-- true for draft documents in development mode -->
|
508
|
+
```
|
509
|
+
|
510
|
+
|
511
|
+
#### `page_match_is_draft`
|
512
|
+
|
513
|
+
This filter detects if the page whose URL uniquely contains a string is
|
514
|
+
invisible when published in `production` mode,
|
515
|
+
and returns `true` or `false`.
|
516
|
+
|
517
|
+
```html
|
518
|
+
{{ "unpublished.html" | page_match_is_draft }}
|
519
|
+
```
|
218
520
|
|
219
521
|
|
220
522
|
### Invoking From Another Jekyll Plugin
|
@@ -222,12 +524,38 @@ use with the `draft_html` filter.
|
|
222
524
|
```ruby
|
223
525
|
require 'jekyll_draft'
|
224
526
|
|
225
|
-
puts 'Found a draft' if Jekyll::Draft.
|
527
|
+
puts 'Found a draft' if Jekyll::Draft.draft? post
|
226
528
|
|
227
529
|
draft = Jekyll::Draft.draft_html post
|
228
530
|
```
|
229
531
|
|
230
532
|
|
533
|
+
### Usage in a Plugin
|
534
|
+
|
535
|
+
The methods in `lib/draft_html.rb` can be invoked by qualifying them with `Jekyll::Draft`.
|
536
|
+
Here is a complete example of a Jekyll Support plugin that displays an indication of whether the page is a draft or not:
|
537
|
+
|
538
|
+
```ruby
|
539
|
+
require 'jekyll_plugin_support'
|
540
|
+
|
541
|
+
module MyPluginTag
|
542
|
+
MyPluginError = JekyllSupport.define_error
|
543
|
+
PLUGIN_NAME = 'my_plugin'.freeze
|
544
|
+
VERSION = '0.1.0'.freeze
|
545
|
+
|
546
|
+
class MyPluginTag < JekyllSupport::JekyllTag
|
547
|
+
def render_impl
|
548
|
+
<<~HEREDOC
|
549
|
+
Draft or not? #{Jekyll::Draft.draft_html(@page)}
|
550
|
+
HEREDOC
|
551
|
+
end
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
555
|
+
Liquid::Template.register_tag(MyPluginTag::PLUGIN_NAME, MyPluginTag::MyPluginTag)
|
556
|
+
PluginMetaLogger.instance.info { "Loaded #{MyPluginTag::PLUGIN_NAME} v#{MyPluginTag::VERSION} plugin." }
|
557
|
+
```
|
558
|
+
|
231
559
|
|
232
560
|
## Development
|
233
561
|
|
data/jekyll_draft.gemspec
CHANGED
@@ -3,15 +3,15 @@ require_relative 'lib/jekyll_draft/version'
|
|
3
3
|
Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
4
4
|
github = 'https://github.com/mslinn/jekyll_draft'
|
5
5
|
|
6
|
-
spec.authors
|
7
|
-
spec.bindir
|
6
|
+
spec.authors = ['Mike Slinn']
|
7
|
+
spec.bindir = 'exe'
|
8
8
|
spec.description = <<~END_OF_DESC
|
9
9
|
This Jekyll filter detects draft documents.
|
10
10
|
END_OF_DESC
|
11
|
-
spec.email
|
12
|
-
spec.files
|
11
|
+
spec.email = ['mslinn@mslinn.com']
|
12
|
+
spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md']
|
13
13
|
spec.homepage = 'https://www.mslinn.com/jekyll_plugins/jekyll_draft.html'
|
14
|
-
spec.license
|
14
|
+
spec.license = 'MIT'
|
15
15
|
spec.metadata = {
|
16
16
|
'allowed_push_host' => 'https://rubygems.org',
|
17
17
|
'bug_tracker_uri' => "#{github}/issues",
|
@@ -19,18 +19,19 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
19
19
|
'homepage_uri' => spec.homepage,
|
20
20
|
'source_code_uri' => github,
|
21
21
|
}
|
22
|
-
spec.name
|
22
|
+
spec.name = 'jekyll_draft'
|
23
|
+
spec.platform = Gem::Platform::RUBY
|
23
24
|
spec.post_install_message = <<~END_MESSAGE
|
24
25
|
|
25
26
|
Thanks for installing #{spec.name}!
|
26
27
|
|
27
28
|
END_MESSAGE
|
28
|
-
spec.require_paths
|
29
|
+
spec.require_paths = ['lib']
|
29
30
|
spec.required_ruby_version = '>= 2.6.0'
|
30
|
-
spec.summary
|
31
|
-
spec.test_files
|
32
|
-
spec.version
|
31
|
+
spec.summary = 'This Jekyll filter detects draft documents.'
|
32
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
33
|
+
spec.version = DraftVersion::VERSION
|
33
34
|
|
34
35
|
spec.add_dependency 'jekyll', '>= 3.5.0'
|
35
|
-
spec.add_dependency 'jekyll_plugin_support'
|
36
|
+
spec.add_dependency 'jekyll_plugin_support', '>=1.1.0'
|
36
37
|
end
|
@@ -1,11 +1,12 @@
|
|
1
|
-
require 'jekyll_plugin_support'
|
2
|
-
|
3
1
|
class DraftHtml < JekyllSupport::JekyllTag
|
4
2
|
VERSION = '0.1.0'.freeze
|
5
3
|
DRAFT_HTML = 'draft_html'.freeze unless defined? Else::VERSION
|
6
4
|
|
7
5
|
def render_impl
|
8
|
-
|
6
|
+
path_portion = @helper.parameter_specified? 'path_portion'
|
7
|
+
page = path_portion ? page_match(path_portion) : @page
|
8
|
+
|
9
|
+
is_draft = Jekyll::Draft.draft? page
|
9
10
|
|
10
11
|
published_output = @helper.parameter_specified? 'published_output'
|
11
12
|
return published_output if !is_draft && published_output
|
@@ -23,5 +24,5 @@ class DraftHtml < JekyllSupport::JekyllTag
|
|
23
24
|
" <i class='jekyll_draft#{dc}'#{ds}>Draft</i>"
|
24
25
|
end
|
25
26
|
|
26
|
-
JekyllPluginHelper.register(self, DRAFT_HTML)
|
27
|
+
::JekyllSupport::JekyllPluginHelper.register(self, DRAFT_HTML)
|
27
28
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'jekyll_plugin_support'
|
2
|
+
|
3
|
+
class ElseBase < JekyllSupport::JekyllTag
|
4
|
+
VERSION = '0.1.0'.freeze
|
5
|
+
|
6
|
+
ELSE_DRAFT = 'else_if_draft'.freeze
|
7
|
+
ELSE_IF_NOT_DRAFT = 'else_if_not_draft'.freeze
|
8
|
+
ELSE_IF_PAGE_DRAFT = 'else_if_page_draft'.freeze
|
9
|
+
ELSE_UNLESS_DRAFT = 'else_unless_draft'.freeze
|
10
|
+
ELSE_UNLESS_PAGE_DRAFT = 'else_unless_page_draft'.freeze
|
11
|
+
|
12
|
+
def render_impl
|
13
|
+
RECORD_SEPARATOR
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
class ElseDraft < ElseBase
|
18
|
+
::JekyllSupport::JekyllPluginHelper.register(self, ELSE_DRAFT, quiet: true)
|
19
|
+
end
|
20
|
+
|
21
|
+
class ElseNotDraft < ElseBase
|
22
|
+
::JekyllSupport::JekyllPluginHelper.register(self, ELSE_IF_NOT_DRAFT, quiet: true)
|
23
|
+
end
|
24
|
+
|
25
|
+
class ElsePageDraft < ElseBase
|
26
|
+
::JekyllSupport::JekyllPluginHelper.register(self, ELSE_IF_PAGE_DRAFT, quiet: true)
|
27
|
+
end
|
28
|
+
|
29
|
+
class ElseUnlessDraft < ElseBase
|
30
|
+
::JekyllSupport::JekyllPluginHelper.register(self, ELSE_UNLESS_DRAFT, quiet: true)
|
31
|
+
end
|
32
|
+
|
33
|
+
class ElseUnlessPageDraft < ElseBase
|
34
|
+
::JekyllSupport::JekyllPluginHelper.register(self, ELSE_UNLESS_PAGE_DRAFT, quiet: true)
|
35
|
+
end
|
@@ -1,9 +1,6 @@
|
|
1
|
-
|
2
|
-
require 'yaml'
|
3
|
-
|
4
|
-
# Jekyll filters that detect draft documents
|
1
|
+
# Jekyll filters that detects if the containing page is a draft document
|
5
2
|
module Jekyll
|
6
|
-
module
|
3
|
+
module ContainingPageFilters
|
7
4
|
def is_draft(doc) # rubocop:disable Naming/PredicateName
|
8
5
|
Draft.draft? doc
|
9
6
|
end
|
@@ -17,5 +14,5 @@ module Jekyll
|
|
17
14
|
end
|
18
15
|
end
|
19
16
|
|
20
|
-
Liquid::Template.register_filter(
|
17
|
+
Liquid::Template.register_filter(ContainingPageFilters)
|
21
18
|
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# Define these methods outside of the JekyllDraft class so they can be invoked externally and tested more easily
|
2
|
+
module Jekyll
|
3
|
+
module Draft
|
4
|
+
class << self
|
5
|
+
attr_accessor :logger
|
6
|
+
end
|
7
|
+
Draft.logger = PluginMetaLogger.instance.new_logger(self, PluginMetaLogger.instance.config)
|
8
|
+
|
9
|
+
# @parameter doc [AllCollectionsHooks::APage|Jekyll::Page|Jekyll::Document]
|
10
|
+
# @return true by checking in this order:
|
11
|
+
# - document is in _drafts directory, detectable by doc['draft']==true
|
12
|
+
# - document front matter contains 'published: false'
|
13
|
+
def draft?(doc)
|
14
|
+
if doc.respond_to?(:data) && doc.data.respond_to?(:key?)
|
15
|
+
return !doc.data['published'] if doc.data.key? 'published'
|
16
|
+
return doc.data['draft'] if doc.data.key? 'draft'
|
17
|
+
end
|
18
|
+
if doc.respond_to?(:key?)
|
19
|
+
return !doc['published'] if doc.key? 'published'
|
20
|
+
return doc['draft'] if doc.key? 'draft'
|
21
|
+
end
|
22
|
+
|
23
|
+
return doc.draft if doc.respond_to? :draft
|
24
|
+
|
25
|
+
false
|
26
|
+
rescue StandardError => e
|
27
|
+
Draft.logger.error { e.full_message }
|
28
|
+
false
|
29
|
+
end
|
30
|
+
|
31
|
+
# @param doc [Jekyll::Drops::DocumentDrop]
|
32
|
+
# @return HTML that indicates if a doc is a draft or not
|
33
|
+
def draft_html(doc)
|
34
|
+
return '' unless draft? doc
|
35
|
+
|
36
|
+
" <i class='jekyll_draft'>Draft</i>"
|
37
|
+
rescue StandardError => e
|
38
|
+
Draft.logger.error { e.full_message }
|
39
|
+
''
|
40
|
+
end
|
41
|
+
|
42
|
+
# This is a computationally intense method, and really slows down site generation.
|
43
|
+
# TODO: implement cache in front of sorted objects containing paths and page reference
|
44
|
+
# This cache is also needed by compute_link_and_text in jekyll_href
|
45
|
+
# @return APage whose href uniquely contains path_portion,
|
46
|
+
# or `path_portion` as a String for non-local URLs.
|
47
|
+
def page_match(path_portion, error_if_no_match: true, verify_unique_match: false)
|
48
|
+
return :non_local_url if path_portion.start_with? 'http:', 'https:', 'mailto'
|
49
|
+
|
50
|
+
matching_pages = if verify_unique_match
|
51
|
+
::AllCollectionsHooks.sorted_lru_files.select path_portion
|
52
|
+
else
|
53
|
+
match = ::AllCollectionsHooks.sorted_lru_files.find path_portion
|
54
|
+
match.nil? ? [] : [match]
|
55
|
+
end
|
56
|
+
case matching_pages.length
|
57
|
+
when 0
|
58
|
+
return '' unless error_if_no_match
|
59
|
+
|
60
|
+
Draft.logger.error do
|
61
|
+
"No page or asset path has a href that includes the string '#{path_portion}'"
|
62
|
+
end
|
63
|
+
exit! 1 if @error_if_no_match
|
64
|
+
when 1
|
65
|
+
matching_pages.first
|
66
|
+
else
|
67
|
+
Draft.logger.error do # :\n #{matching_pages.map(&:href).join("\n ")}
|
68
|
+
"More than one page or asset path has a href that includes the string '#{path_portion}'"
|
69
|
+
end
|
70
|
+
exit! 2 # The user should fix this problem before allowing the website to generate
|
71
|
+
end
|
72
|
+
rescue StandardError => e
|
73
|
+
puts e.full_message
|
74
|
+
end
|
75
|
+
|
76
|
+
# @return path to root of the collection that doc is a member of
|
77
|
+
def root(doc, site)
|
78
|
+
return '/index.html' unless doc.respond_to?(:collection)
|
79
|
+
|
80
|
+
collection_name = doc.collection
|
81
|
+
docs = site.key?(collection_name) ? site[collection_name] : site.collections[collection_name].docs
|
82
|
+
index = docs.find { |d| d.href.end_with? 'index.html' }
|
83
|
+
return index.href if index
|
84
|
+
|
85
|
+
docs.min.href
|
86
|
+
end
|
87
|
+
|
88
|
+
module_function :draft?, :draft_html, :page_match, :root
|
89
|
+
end
|
90
|
+
end
|
@@ -1,5 +1,3 @@
|
|
1
|
-
require 'jekyll_plugin_support'
|
2
|
-
|
3
1
|
# Jekyll block tags that detect draft documents
|
4
2
|
class DraftBase < JekyllSupport::JekyllBlock
|
5
3
|
IF_DRAFT = 'if_draft'.freeze
|
@@ -8,20 +6,20 @@ class DraftBase < JekyllSupport::JekyllBlock
|
|
8
6
|
|
9
7
|
def render_impl(content)
|
10
8
|
true_value, false_value, extra = content.split(RECORD_SEPARATOR)
|
11
|
-
raise DraftError,
|
9
|
+
raise DraftError, 'Warning: More than one else clause detected' if extra
|
12
10
|
|
13
11
|
if @tag_name == IF_DRAFT
|
14
|
-
return Jekyll::Draft.draft?(@page) ? true_value : false_value
|
12
|
+
return ::Jekyll::Draft.draft?(@page) ? true_value : false_value
|
15
13
|
end
|
16
14
|
|
17
|
-
Jekyll::Draft.draft?(@page) ? false_value : true_value
|
15
|
+
::Jekyll::Draft.draft?(@page) ? false_value : true_value
|
18
16
|
end
|
19
17
|
end
|
20
18
|
|
21
19
|
class IfDraft < DraftBase
|
22
|
-
JekyllPluginHelper.register(self, IF_DRAFT)
|
20
|
+
::JekyllSupport::JekyllPluginHelper.register(self, IF_DRAFT)
|
23
21
|
end
|
24
22
|
|
25
23
|
class UnlessDraft < DraftBase
|
26
|
-
JekyllPluginHelper.register(self, UNLESS_DRAFT)
|
24
|
+
::JekyllSupport::JekyllPluginHelper.register(self, UNLESS_DRAFT, quiet: true)
|
27
25
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Jekyll filters that detect if the page that uniquely contains a string is a draft document
|
2
|
+
module Jekyll
|
3
|
+
module OtherPageFilters
|
4
|
+
def page_match_is_draft(path_portion)
|
5
|
+
Draft.draft? Draft.page_match path_portion
|
6
|
+
end
|
7
|
+
|
8
|
+
def page_match_draft_html(path_portion)
|
9
|
+
Draft.draft_html Draft.page_match path_portion
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
Liquid::Template.register_filter(OtherPageFilters)
|
14
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
# Jekyll block tags that detect draft documents
|
2
|
+
class DraftPageBase < JekyllSupport::JekyllBlock
|
3
|
+
IF_DRAFT = 'if_page_draft'.freeze
|
4
|
+
UNLESS_DRAFT = 'unless_page_draft'.freeze
|
5
|
+
VERSION = DraftVersion::VERSION.freeze
|
6
|
+
|
7
|
+
# Content has a true clause, and optionally might have an else clause
|
8
|
+
# Clauses can reference two variables: path_portion and matched_page
|
9
|
+
# path_portion is specified as the sole argument to this block tag
|
10
|
+
# matched_path is the APage with an href that uniquely includes path_portion,
|
11
|
+
# or nil if no matching APage was found
|
12
|
+
def render_impl(content)
|
13
|
+
true_content, false_content, extra_content = content.split(RECORD_SEPARATOR)
|
14
|
+
raise DraftError, 'Warning: More than one else clause detected' if extra_content
|
15
|
+
|
16
|
+
@path_portion = @argument_string.strip
|
17
|
+
raise DraftError, 'Error: path_portion was not specified' unless @path_portion
|
18
|
+
|
19
|
+
configure
|
20
|
+
|
21
|
+
@matched_page = if @path_portion.start_with?('#')
|
22
|
+
@page
|
23
|
+
else
|
24
|
+
Jekyll::Draft.page_match(@path_portion, error_if_no_match: @error_if_no_match,
|
25
|
+
verify_unique_match: @verify_unique_match)
|
26
|
+
end
|
27
|
+
raise DraftError, "Error: path_portion='#{@path_portion}' does not specify a local page." if @matched_page == :non_local_url
|
28
|
+
|
29
|
+
is_draft = Jekyll::Draft.draft? @matched_page
|
30
|
+
clause_value = if @tag_name == IF_DRAFT
|
31
|
+
is_draft ? true_content : false_content
|
32
|
+
else # UNLESS_DRAFT
|
33
|
+
is_draft ? false_content : true_content
|
34
|
+
end
|
35
|
+
process_variables clause_value
|
36
|
+
rescue StandardError => e
|
37
|
+
puts e.full_message
|
38
|
+
exit!
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def configure
|
44
|
+
tag_config = @config['if_draft']
|
45
|
+
if tag_config
|
46
|
+
@error_if_no_match = tag_config['error_if_no_match'] # defaults true
|
47
|
+
@error_if_no_match = @error_if_no_match ? @error_if_no_match == true : true
|
48
|
+
|
49
|
+
@verify_unique_match = tag_config['verify_unique_match'] == true # defaults false
|
50
|
+
else
|
51
|
+
@logger.warn { "There is no entry for #{@tag_name} in _config.yml; default values were applied." }
|
52
|
+
end
|
53
|
+
|
54
|
+
env_var = ENV.fetch('if_draft_error_if_no_match', nil) # Environment variable overrides _config.yml setting
|
55
|
+
@error_if_no_match = env_var != 'false' if env_var
|
56
|
+
|
57
|
+
env_var = ENV.fetch('if_draft_verify_unique_match', nil) # Environment variable overrides _config.yml setting
|
58
|
+
@verify_unique_match = env_var != 'false' if env_var
|
59
|
+
end
|
60
|
+
|
61
|
+
def process_variables(markup)
|
62
|
+
return '' unless markup
|
63
|
+
|
64
|
+
path_portion = @path_portion # add this to the binding
|
65
|
+
matched_page = @matched_page # add this to the binding
|
66
|
+
_ = path_portion == matched_page # Just to keep the lint checker happy
|
67
|
+
markup.gsub!(/(<<([^<>]*)>>)/) do
|
68
|
+
token = Regexp.last_match[1] # gsub replaces token with the return value of this block
|
69
|
+
expression = Regexp.last_match[2]
|
70
|
+
if expression == 'matched_page' && matched_page.class != String
|
71
|
+
@logger.warn do
|
72
|
+
expression = 'matched_page.href'
|
73
|
+
<<~END_MSG
|
74
|
+
The expression #{token} should either specify a property, for example <<matched_page.href>>,
|
75
|
+
or a hash value, for example <<matched_page['title']>>.
|
76
|
+
The expression was modified to <<matched_page.href>> for you.
|
77
|
+
END_MSG
|
78
|
+
end
|
79
|
+
end
|
80
|
+
result = eval expression, binding # rubocop:disable Security/Eval
|
81
|
+
result.to_s
|
82
|
+
end
|
83
|
+
markup
|
84
|
+
rescue StandardError => e
|
85
|
+
@logger.error { e.full_message }
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
class IfPageDraft < DraftPageBase
|
90
|
+
JekyllSupport::JekyllPluginHelper.register(self, IF_DRAFT, quiet: true)
|
91
|
+
end
|
92
|
+
|
93
|
+
class UnlessPageDraft < DraftPageBase
|
94
|
+
JekyllSupport::JekyllPluginHelper.register(self, UNLESS_DRAFT, quiet: true)
|
95
|
+
end
|
data/lib/jekyll_draft/version.rb
CHANGED
data/lib/jekyll_draft.rb
CHANGED
@@ -9,8 +9,15 @@ RECORD_SEPARATOR = "\u{241E}".freeze
|
|
9
9
|
|
10
10
|
DraftError = JekyllSupport.define_error
|
11
11
|
|
12
|
-
|
13
|
-
require_relative '
|
14
|
-
require_relative 'else'
|
15
|
-
require_relative '
|
16
|
-
require_relative '
|
12
|
+
# Common code
|
13
|
+
require_relative 'jekyll_draft/common/draft_html'
|
14
|
+
require_relative 'jekyll_draft/common/else'
|
15
|
+
require_relative 'jekyll_draft/common/filters'
|
16
|
+
require_relative 'jekyll_draft/common/module_functions'
|
17
|
+
|
18
|
+
# Code related to processing other pages
|
19
|
+
require_relative 'jekyll_draft/other_page/filters'
|
20
|
+
require_relative 'jekyll_draft/other_page/if_draft'
|
21
|
+
|
22
|
+
# Code related to processing the containing page
|
23
|
+
require_relative 'jekyll_draft/containing_page/if_draft'
|
data/spec/jekyll/mocks.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_draft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-07 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: jekyll
|
@@ -30,14 +29,14 @@ dependencies:
|
|
30
29
|
requirements:
|
31
30
|
- - ">="
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
32
|
+
version: 1.1.0
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - ">="
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
39
|
+
version: 1.1.0
|
41
40
|
description: 'This Jekyll filter detects draft documents.
|
42
41
|
|
43
42
|
'
|
@@ -53,12 +52,14 @@ files:
|
|
53
52
|
- README.md
|
54
53
|
- Rakefile
|
55
54
|
- jekyll_draft.gemspec
|
56
|
-
- lib/draft.rb
|
57
|
-
- lib/draft_html.rb
|
58
|
-
- lib/else.rb
|
59
|
-
- lib/filters.rb
|
60
|
-
- lib/if_draft.rb
|
61
55
|
- lib/jekyll_draft.rb
|
56
|
+
- lib/jekyll_draft/common/draft_html.rb
|
57
|
+
- lib/jekyll_draft/common/else.rb
|
58
|
+
- lib/jekyll_draft/common/filters.rb
|
59
|
+
- lib/jekyll_draft/common/module_functions.rb
|
60
|
+
- lib/jekyll_draft/containing_page/if_draft.rb
|
61
|
+
- lib/jekyll_draft/other_page/filters.rb
|
62
|
+
- lib/jekyll_draft/other_page/if_draft.rb
|
62
63
|
- lib/jekyll_draft/version.rb
|
63
64
|
- spec/draft_spec.rb
|
64
65
|
- spec/jekyll/draft_spec.rb
|
@@ -92,8 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
93
|
- !ruby/object:Gem::Version
|
93
94
|
version: '0'
|
94
95
|
requirements: []
|
95
|
-
rubygems_version: 3.3
|
96
|
-
signing_key:
|
96
|
+
rubygems_version: 3.6.3
|
97
97
|
specification_version: 4
|
98
98
|
summary: This Jekyll filter detects draft documents.
|
99
99
|
test_files:
|
data/lib/draft.rb
DELETED
@@ -1,54 +0,0 @@
|
|
1
|
-
require 'jekyll_plugin_logger'
|
2
|
-
|
3
|
-
# Define these methods outside of the JekyllDraft class so they can be invoked externally and tested more easily
|
4
|
-
module Jekyll
|
5
|
-
module Draft
|
6
|
-
@logger = PluginMetaLogger.instance.new_logger(self, PluginMetaLogger.instance.config)
|
7
|
-
|
8
|
-
# @return true by checking in this order:
|
9
|
-
# - document is in _drafts directory, detectable by doc['draft']==true
|
10
|
-
# - document front matter contains 'published: false'
|
11
|
-
def draft?(doc)
|
12
|
-
if doc.respond_to? :data
|
13
|
-
return !doc.data['published'] if doc.data.key? 'published'
|
14
|
-
return doc.data['draft'] if doc.data.key? 'draft'
|
15
|
-
end
|
16
|
-
if doc.respond_to? :[]
|
17
|
-
return !doc['published'] if doc.key? 'published'
|
18
|
-
return doc['draft'] if doc.key? 'draft'
|
19
|
-
end
|
20
|
-
|
21
|
-
return doc.draft if doc.respond_to? :draft
|
22
|
-
|
23
|
-
false
|
24
|
-
rescue StandardError => e
|
25
|
-
@logger.error { e }
|
26
|
-
false
|
27
|
-
end
|
28
|
-
|
29
|
-
# @param doc [Jekyll::Drops::DocumentDrop]
|
30
|
-
# @return HTML that indicates if a doc is a draft or not
|
31
|
-
def draft_html(doc)
|
32
|
-
return '' unless draft? doc
|
33
|
-
|
34
|
-
" <i class='jekyll_draft'>Draft</i>"
|
35
|
-
rescue StandardError => e
|
36
|
-
@logger.error { e.full_message }
|
37
|
-
''
|
38
|
-
end
|
39
|
-
|
40
|
-
# @return path to root of the collection that doc is a member of
|
41
|
-
def root(doc, site)
|
42
|
-
return '/index.html' unless doc.respond_to?(:collection)
|
43
|
-
|
44
|
-
collection_name = doc.collection
|
45
|
-
docs = site.key?(collection_name) ? site[collection_name] : site.collections[collection_name].docs
|
46
|
-
index = docs.find { |d| d.url.end_with? 'index.html' }
|
47
|
-
return index.url if index
|
48
|
-
|
49
|
-
docs.min.url
|
50
|
-
end
|
51
|
-
|
52
|
-
module_function :draft?, :draft_html, :root
|
53
|
-
end
|
54
|
-
end
|
data/lib/else.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'jekyll_plugin_support'
|
2
|
-
|
3
|
-
class ElseBase < JekyllSupport::JekyllTag
|
4
|
-
VERSION = '0.1.0'.freeze
|
5
|
-
ELSE_DRAFT = 'else_if_draft'.freeze
|
6
|
-
ELSE_NOT_DRAFT = 'else_if_not_draft'.freeze
|
7
|
-
|
8
|
-
def render_impl
|
9
|
-
RECORD_SEPARATOR
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
class ElseDraft < ElseBase
|
14
|
-
JekyllPluginHelper.register(self, ELSE_DRAFT)
|
15
|
-
end
|
16
|
-
|
17
|
-
class ElseNotDraft < ElseBase
|
18
|
-
JekyllPluginHelper.register(self, ELSE_NOT_DRAFT)
|
19
|
-
end
|