Skip to content

Commit 549e519

Browse files
committed
Reference manual updates for 4.7.0
1 parent 14e9c26 commit 549e519

File tree

1 file changed

+112
-6
lines changed

1 file changed

+112
-6
lines changed

site/reference-manual.md

+112-6
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,21 @@ The value is a <term>Jingoo</term> template. There are following variables in th
218218
* `source_file_base_name` — name of the input file without extensions (like `cat`).
219219
* `target_dir` — output directory path.
220220

221+
## Character encoding
222+
223+
By default, soupault assumes that all pages are stored in UTF-8.
224+
However, if your website uses a different encoding and you have reasons to keep it that way,
225+
you can configure soupault to use it.
226+
227+
```toml
228+
[settings]
229+
page_character_encoding = 'utf-8'
230+
```
231+
232+
The following encodings are supported: `ascii`, `iso-8859-1`, `windows-1251`, `windows-1252`, `utf-8`,
233+
`utf-16`, `utf-16le`, `utf-16be`, `utf-32le`, `utf-32be`, and `ebcdic`.
234+
You can write those options in either upper or lower case (e.g., `UTF-16LE`, `UTF-16le`, and `utf-16le`
235+
are equally acceptable).
221236

222237
## Page processing
223238

@@ -652,6 +667,14 @@ Since soupault 4.0.0, you can also specify index sorting options on a per-view b
652667
strict_sort = false
653668
```
654669

670+
Since 4.7.0, it is possible to limit the number of displayed items with:
671+
672+
```toml
673+
[index.views.main-page-news]
674+
# Display up to ten entries on the main page
675+
max_items = 10
676+
```
677+
655678
### Interaction with widgets
656679

657680
Soupault first inserts rendered index data, then runs widgets. This is to allow widgets to modify HTML generated by index processors.
@@ -726,6 +749,13 @@ or write pages to disk during that first pass.
726749
Then it will make a second pass to generate actual pages as usual, except the `index_entry` variable will contain the complete
727750
site index even for plugins running on content pages.
728751

752+
To help plugins and hooks determine if index data for a page is guaranteed to be available or not yet,
753+
there is a variable named `soupault_pass`.
754+
755+
* 0, if `index_first = false`
756+
* 1, if `index_first = true` and it's the first (index-only) pass.
757+
* 2, if `index_first = true` and it's the second (full page build) pass.
758+
729759
### Exporting metadata to JSON
730760

731761
If built-in functionality is not enough, you can export the site index data to a JSON file
@@ -1603,7 +1633,7 @@ Plugins have access to the following global variables:
16031633
<dt>config</dt>
16041634
<dd>A table with widget config options.</dd>
16051635
<dt>soupault_config</dt>
1606-
<dd>The global soupault config (deserialized contents of <code>soupault.conf</code>).</dd>
1636+
<dd>The global soupault config (deserialized contents of <code>soupault.toml</code>).</dd>
16071637
<dt>site_index</dt>
16081638
<dd>Site index data structure.</dd>
16091639
<dt>index_entry</dt>
@@ -1612,15 +1642,22 @@ Plugins have access to the following global variables:
16121642
<dd>Convenience variables for the corresponding config options.</dd>
16131643
<dt>persistent_data</dt>
16141644
<dd>A table for values supposed to be persistent between different plugin runs.</dd>
1645+
<dt>global_data</dt>
1646+
<dd>A table for values shared between all plugins and hooks.</dd>
1647+
<dt>soupault_pass</dt>
1648+
<dd>
1649+
The number of the website build pass <a href="#making-index-data-available-to-every-page">two-pass workflow</a>.
1650+
Always 0 if <code>index.index_first = false</code>, otherwise 1 on the first pass and 2 on the second pass.
1651+
</dd>
16151652
</dl>
16161653

16171654
<h4 id="plugin-persistent-data">Persistent data</h4>
16181655

1619-
All of these variables _except for `persistent_data`_ are injected into the interpreter environment every time a plugin is executed.
1656+
All of these variables _except for `persistent_data` and `global_data`_ are injected into the interpreter environment every time a plugin is executed.
16201657
If you modify their values, it will only affect the instance of the plugin that is currently running. When soupault finishes processing the current page
16211658
and moves on to a new page, the plugin will start in a clean environment.
16221659

1623-
The `persistent_data` variable is an exception. On soupault startup, its value is set to an empty table.
1660+
The `persistent_data` and `global_data` variables are exception. On soupault startup, their value is set to an empty table.
16241661
When a plugin finishes running, soupault will retrieve it from the Lua interpreter state and pass it to the next plugin run.
16251662
This can be used to avoid running some expensive calculations more than once, or for gathering data from all pages.
16261663

@@ -1936,12 +1973,21 @@ using this function.
19361973

19371974
##### Convenience functions
19381975

1939-
###### <function>HTML.unwrap(element)</function>
1976+
###### <function>HTML.wrap(node, elem)</function> (since 4.7.0)
1977+
1978+
Wraps `node` in `elem`.
1979+
1980+
###### <function>HTML.unwrap(element)</function> (since 4.7.0)
19401981

19411982
Removes the element and inserts its former children in its place.
19421983
For example, `<div> <p>Test!</p> </div>` will remove the outer `<div>`
19431984
and leave just `<p>Test!</p>`.
19441985

1986+
###### <function>HTML.swap(l, r)</function>
1987+
1988+
Swaps two elements in the element tree. Element nodes `l` and `r`, obviously,
1989+
must belong to the same element tree.
1990+
19451991
###### <function>HTML.get_heading_level(element)</function>
19461992

19471993
For elements whose tag name matches `<h[1-9]>` pattern, returns the heading level.
@@ -2425,6 +2471,27 @@ Same as `YAML.from_string`, but returns `nil` on parse errors. Parse error messa
24252471

24262472
</module>
24272473

2474+
<module name="CSV"> (since 4.7.0)
2475+
2476+
##### <function>CSV.from_string(str)</function>
2477+
2478+
Parses CSV data and returns it as a list (i.e., an int-indexed table) of lists.
2479+
2480+
##### <function>CSV.unsafe_from_string(str)</function>
2481+
2482+
Like `CSV.from_string` but returns `nil` on errors instead or raising an exception.
2483+
2484+
##### <function>CSV.to_list_of_tables(csv_data)</function>
2485+
2486+
Converts CSV data returned by `CSV.from_string` into a list of string-indexed tables for easy rendering in templates.
2487+
The data variable must have at least two rows, the first row is assumed to be the header
2488+
and used for field names.
2489+
2490+
All rows must have the same number of columns. If a row is malformed, this function raises an exception.
2491+
There is no unsafe equivalent of it in soupault.
2492+
2493+
</module>
2494+
24282495
<module name="Date">
24292496

24302497
##### <function>Date.now_timestamp()</function>
@@ -2631,8 +2698,8 @@ Page processing hooks allow Lua code to run between processing steps of replace
26312698
They have access to the same API functions as plugins, but their execution environments
26322699
are somewhat different and vary between hooks.
26332700

2634-
Hooks are configured in the `hooks` table. The following hooks are supported as of soupault 4.2.0:
2635-
`pre-parse`, `pre-process`, `post-index`, `render`, `save`, `post-save`.
2701+
Hooks are configured in the `hooks` table. The following hooks are supported as of soupault 4.7.0:
2702+
`pre-parse`, `pre-process`, `post-index`, `render`, `save`, `post-save`, and `post-build`.
26362703

26372704
Like widget subtables, hook subtables can contain arbitrary options.
26382705

@@ -2657,6 +2724,8 @@ It has the following variables in its environment:
26572724
* `soupault_config` — the complete soupault config.
26582725
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
26592726
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
2727+
* `global_data` — the global shared data table.
2728+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
26602729

26612730
For example, this website uses a pre-parse hook to globally replace the `$SOUPAULT_RELEASE$` string
26622731
with the latest soupault release version from custom options.
@@ -2685,6 +2754,8 @@ It has the following variables in its environment:
26852754
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
26862755
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
26872756
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2757+
* `global_data` — the global shared data table.
2758+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
26882759

26892760
Soupault takes back the following variables:
26902761

@@ -2743,6 +2814,8 @@ It has the following variables in its environment:
27432814
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
27442815
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
27452816
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2817+
* `global_data` — the global shared data table.
2818+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
27462819

27472820
The following variables are taken back by soupault:
27482821

@@ -2782,6 +2855,8 @@ It has the following variables in its environment:
27822855
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
27832856
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
27842857
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2858+
* `global_data` — the global shared data table.
2859+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
27852860

27862861
Soupault takes back the following variables:
27872862

@@ -2812,6 +2887,8 @@ It has the following variables in its environment:
28122887
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
28132888
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
28142889
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2890+
* `global_data` — the global shared data table.
2891+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
28152892

28162893
For a trivial example, here’s how to just write the HTML to the default output file:
28172894

@@ -2836,6 +2913,8 @@ It has the following variables in its environment:
28362913
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
28372914
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
28382915
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2916+
* `global_data` — the global shared data table.
2917+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
28392918

28402919
For a trivial example, here’s how to output generated file size using `du` (on UNIX-like systems):
28412920

@@ -2844,6 +2923,33 @@ For a trivial example, here’s how to output generated file size using `du` (on
28442923
lua_source = '''
28452924
page_size = Sys.get_program_output(format("du -h %s", target_file))
28462925
Log.info(format("Page size: %s", page_size))
2926+
'''
2927+
```
2928+
2929+
<h3 id="hooks-post-build">Post-build</h3>
2930+
2931+
The `post-build` hook runs after all pages are processed and soupault is about to terminate.
2932+
It runs once rather than for every page, so it does not have page-specific variables in its environment
2933+
(like `page_file` or `target_file` — they only make sense for hooks that run on every page).
2934+
2935+
It has the following variables in its environment:
2936+
2937+
* `config` (aka `hook_config`) — the hook config table.
2938+
* `soupault_config` — the complete soupault config.
2939+
* `force` — true when soupault is called with `--force` option, plugins are free to interpret it.
2940+
* `site_dir` — the value from `settings.site_dir` or the `--site-dir` option if present.
2941+
* `build_dir` — the output directory from `settings.build_dir` or the `--build-dir` option if present.
2942+
* `soupault_pass` — the number of the pass in the [two-pass workflow](#making-index-data-available-to-every-page).
2943+
* `global_data` — the global shared data table.
2944+
2945+
Example:
2946+
2947+
```toml
2948+
[hooks.post-build]
2949+
lua_source = '''
2950+
Log.debug("The final state of globao_data:")
2951+
Log.debug(JSON.to_string(global_data))
2952+
'''
28472953
```
28482954

28492955
## Glossary

0 commit comments

Comments
 (0)