| puppetfileserver.aug | |
| USEFUL PRIMITIVES | |
| INI File settings | |
| sep_tab | |
| comment | Only supports “#” as commentary |
| entry_re | Regexp for possible entry keyword (path, allow, deny) |
| ENTRY | |
| entry | |
| RECORD | |
| Title definition | |
| title | Uses standard INI File title |
| title | Uses standard INI File record |
| LENS | |
| lns | Uses standard INI File lens |
| filter |
let entry_re = /path|allow|deny/
Regexp for possible entry keyword (path, allow, deny)
let entry = [ Util.del_opt_ws "" . key entry_re . Util.del_ws_spc . store /[^# \n\t]+/ . eol ] | comment
Only supports “#” as commentary
let comment = IniFile.comment "#" "#"
Regexp for possible entry keyword (path, allow, deny)
let entry_re = /path|allow|deny/
let entry = [ Util.del_opt_ws "" . key entry_re . Util.del_ws_spc . store /[^# \n\t]+/ . eol ] | comment
Uses standard INI File title
let title = IniFile.indented_title IniFile.record_re
Uses standard INI File lens
let lns = IniFile.lns record comment