├── modules ├── httpd │ ├── demos │ │ ├── reply.md │ │ └── server.md │ └── build │ │ └── cuneiform.tcl ├── valtype │ └── include │ │ ├── null.inc │ │ ├── k_luhn.inc │ │ ├── k_luhn5.inc │ │ ├── k_verhoeff.inc │ │ ├── r_luhn.inc │ │ ├── k_iban.inc │ │ └── k_usnpi.inc ├── doctools │ └── tests │ │ ├── fmt │ │ ├── desc │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 23 │ │ │ ├── 24 │ │ │ ├── 25 │ │ │ ├── 26 │ │ │ ├── 27 │ │ │ ├── 28 │ │ │ ├── 00 │ │ │ ├── 01 │ │ │ ├── 03 │ │ │ ├── 04 │ │ │ ├── 05 │ │ │ ├── 06 │ │ │ ├── 07 │ │ │ └── 09 │ │ ├── null │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 23 │ │ │ ├── 24 │ │ │ ├── 25 │ │ │ ├── 26 │ │ │ ├── 27 │ │ │ ├── 28 │ │ │ ├── 00 │ │ │ ├── 01 │ │ │ ├── 02 │ │ │ ├── 03 │ │ │ ├── 04 │ │ │ ├── 05 │ │ │ ├── 06 │ │ │ ├── 07 │ │ │ ├── 08 │ │ │ └── 09 │ │ └── syntax │ │ │ ├── 26 │ │ │ └── 28 │ │ ├── idx │ │ ├── null │ │ │ ├── 00 │ │ │ ├── 01 │ │ │ └── 02 │ │ ├── wiki │ │ │ ├── 00 │ │ │ └── 01 │ │ ├── idx │ │ │ └── 00 │ │ └── markdown │ │ │ └── index │ │ └── toc │ │ ├── null │ │ ├── 00 │ │ ├── 01 │ │ └── 02 │ │ ├── wiki │ │ └── 00 │ │ ├── toc │ │ └── 00 │ │ ├── tmml │ │ └── 00 │ │ └── markdown │ │ └── index ├── doctools2idx │ ├── tests │ │ └── data │ │ │ ├── empty │ │ │ ├── fail │ │ │ ├── docidx │ │ │ │ ├── 17_badempty │ │ │ │ ├── 03_illegalcmd1 │ │ │ │ ├── 02_nonwhitespace2 │ │ │ │ ├── 04_illegalcmd2 │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 13_incnotfound │ │ │ │ ├── 14_incempty │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 07_wrongargs │ │ │ │ ├── 12_incerror │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 27_incbadcmd │ │ │ │ ├── 10_vsetvarerr │ │ │ │ ├── 11_vsetvalueerr │ │ │ │ ├── 25_nobeginend │ │ │ │ ├── 05_nestingbad1 │ │ │ │ ├── 06_nestingbad2 │ │ │ │ ├── 15_incbadeof │ │ │ │ ├── 16_incbadchar │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 08_toomanyargs │ │ │ │ ├── 01_nonwhitespace1 │ │ │ │ ├── 20_latebegin │ │ │ │ └── 24_earlyend │ │ │ ├── json │ │ │ │ ├── 00_short │ │ │ │ ├── 01_tag │ │ │ │ └── 02_cshort │ │ │ ├── ecode │ │ │ │ ├── 24_earlyend │ │ │ │ ├── 26_latekey │ │ │ │ ├── 01_nonwhitespace1 │ │ │ │ ├── 02_nonwhitespace2 │ │ │ │ ├── 03_illegalcmd1 │ │ │ │ ├── 04_illegalcmd2 │ │ │ │ ├── 10_vsetvarerr │ │ │ │ ├── 12_incerror │ │ │ │ ├── 14_incempty │ │ │ │ ├── 17_badempty │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 05_nestingbad1 │ │ │ │ ├── 06_nestingbad2 │ │ │ │ ├── 11_vsetvalueerr │ │ │ │ ├── 20_latebegin │ │ │ │ ├── 07_wrongargs │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 13_incnotfound │ │ │ │ └── 08_toomanyargs │ │ │ ├── emsg │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 26_latekey │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 13_incnotfound │ │ │ │ ├── 14_incempty │ │ │ │ ├── 17_badempty │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 24_earlyend │ │ │ │ ├── 20_latebegin │ │ │ │ └── 03_illegalcmd1 │ │ │ └── json-emsg │ │ │ │ ├── 01_tag │ │ │ │ ├── 13_rtag │ │ │ │ ├── 03_misslabel │ │ │ │ ├── 04_misstitle │ │ │ │ ├── 05_misskeywords │ │ │ │ └── 12_rargs │ │ │ ├── unexpected_eof │ │ │ ├── ok │ │ │ ├── wiki-table │ │ │ │ └── 1_nokeys │ │ │ ├── text │ │ │ │ └── 1_nokeys │ │ │ ├── serial-print │ │ │ │ └── 1_nokeys │ │ │ ├── wiki-list │ │ │ │ └── 1_nokeys │ │ │ ├── docidx │ │ │ │ └── 1_nokeys │ │ │ ├── docidx-aligned │ │ │ │ └── 1_nokeys │ │ │ ├── docidx-compact │ │ │ │ └── 1_nokeys │ │ │ ├── docidx-indalign │ │ │ │ └── 1_nokeys │ │ │ ├── docidx-ultracompact │ │ │ │ └── 1_nokeys │ │ │ ├── nroff-inlined │ │ │ │ └── 1_nokeys │ │ │ ├── docidx-indented │ │ │ │ └── 1_nokeys │ │ │ ├── nroff-external │ │ │ │ └── 1_nokeys │ │ │ └── serial │ │ │ │ └── 1_nokeys │ │ │ ├── bad_command │ │ │ └── unexpected_char │ └── include │ │ ├── export │ │ └── format │ │ │ ├── null.inc │ │ │ ├── json.inc │ │ │ ├── text.inc │ │ │ └── nroff.inc │ │ └── import │ │ ├── config │ │ ├── json.inc │ │ └── docidx.inc │ │ └── format │ │ └── json.inc ├── doctools2toc │ ├── tests │ │ └── data │ │ │ ├── empty │ │ │ ├── fail │ │ │ ├── doctoc │ │ │ │ ├── 17_badempty │ │ │ │ ├── 03_illegalcmd1 │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 02_nonwhitespace2 │ │ │ │ ├── 04_illegalcmd2 │ │ │ │ ├── 07_wrongargs │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 13_incnotfound │ │ │ │ ├── 14_incempty │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 12_incerror │ │ │ │ ├── 27_incbadcmd │ │ │ │ ├── 05_nestingbad1 │ │ │ │ ├── 10_vsetvarerr │ │ │ │ ├── 11_vsetvalueerr │ │ │ │ ├── 06_nestingbad2 │ │ │ │ ├── 15_incbadeof │ │ │ │ ├── 16_incbadchar │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 25_nobeginend │ │ │ │ ├── 01_nonwhitespace1 │ │ │ │ ├── 08_toomanyargs │ │ │ │ ├── 20_latebegin │ │ │ │ ├── 24_earlyend │ │ │ │ ├── 26_nodivbegin │ │ │ │ └── 31_nodivend │ │ │ ├── json │ │ │ │ ├── 00_short │ │ │ │ ├── 01_tag │ │ │ │ └── 02_cshort │ │ │ ├── ecode │ │ │ │ ├── 29_badredef2 │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 24_earlyend │ │ │ │ ├── 28_badredef │ │ │ │ ├── 01_nonwhitespace1 │ │ │ │ ├── 02_nonwhitespace2 │ │ │ │ ├── 03_illegalcmd1 │ │ │ │ ├── 04_illegalcmd2 │ │ │ │ ├── 06_nestingbad2 │ │ │ │ ├── 10_vsetvarerr │ │ │ │ ├── 12_incerror │ │ │ │ ├── 14_incempty │ │ │ │ ├── 17_badempty │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 20_latebegin │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 05_nestingbad1 │ │ │ │ ├── 11_vsetvalueerr │ │ │ │ ├── 26_nodivbegin │ │ │ │ ├── 07_wrongargs │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 13_incnotfound │ │ │ │ └── 08_toomanyargs │ │ │ ├── json-emsg │ │ │ │ ├── 19_duplabel │ │ │ │ ├── 01_tag │ │ │ │ ├── 20_duplabel2 │ │ │ │ ├── 21_duplabel3 │ │ │ │ ├── 08_etag │ │ │ │ ├── 10_missid │ │ │ │ ├── 03_misslabel │ │ │ │ ├── 04_misstitle │ │ │ │ ├── 05_missitems │ │ │ │ ├── 07_cshort2 │ │ │ │ ├── 16_missitems2 │ │ │ │ ├── 11_misslabel2 │ │ │ │ └── 12_missdesc │ │ │ └── emsg │ │ │ │ ├── 09_vsetvarunknown │ │ │ │ ├── 28_badredef │ │ │ │ ├── 14_incempty │ │ │ │ ├── 17_badempty │ │ │ │ ├── 18_nobegin │ │ │ │ ├── 21_noend1 │ │ │ │ ├── 22_noend2 │ │ │ │ ├── 29_badredef2 │ │ │ │ ├── 13_incnotfound │ │ │ │ ├── 24_earlyend │ │ │ │ ├── 20_latebegin │ │ │ │ ├── 03_illegalcmd1 │ │ │ │ ├── 07_wrongargs │ │ │ │ └── 26_nodivbegin │ │ │ ├── ok │ │ │ ├── wiki │ │ │ │ └── 1_empty │ │ │ ├── text │ │ │ │ └── 1_empty │ │ │ ├── doctoc │ │ │ │ └── 1_empty │ │ │ ├── serial-print │ │ │ │ └── 1_empty │ │ │ ├── doctoc-aligned │ │ │ │ └── 1_empty │ │ │ ├── doctoc-compact │ │ │ │ └── 1_empty │ │ │ ├── doctoc-indalign │ │ │ │ └── 1_empty │ │ │ ├── doctoc-indented │ │ │ │ └── 1_empty │ │ │ ├── doctoc-ultracompact │ │ │ │ └── 1_empty │ │ │ ├── serial │ │ │ │ └── 1_empty │ │ │ ├── nroff-inlined │ │ │ │ └── 1_empty │ │ │ └── json-ultracompact │ │ │ │ └── 1_empty │ │ │ ├── unexpected_eof │ │ │ ├── bad_command │ │ │ └── unexpected_char │ └── include │ │ ├── export │ │ └── format │ │ │ ├── null.inc │ │ │ ├── json.inc │ │ │ ├── text.inc │ │ │ └── nroff.inc │ │ └── import │ │ ├── config │ │ ├── json.inc │ │ └── doctoc.inc │ │ └── format │ │ └── json.inc ├── pt │ ├── tests │ │ └── data │ │ │ ├── gr │ │ │ ├── ok-class │ │ │ │ ├── 1_x │ │ │ │ ├── 0_a │ │ │ │ └── 2_e │ │ │ ├── ok-dot │ │ │ │ └── 0_any │ │ │ ├── fail-dot │ │ │ │ └── 0_none │ │ │ ├── fail-pkleene │ │ │ │ └── 0_b │ │ │ ├── fail-sequence │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── ok-alnum │ │ │ │ └── 0_inside │ │ │ ├── ok-alpha │ │ │ │ └── 0_inside │ │ │ ├── ok-ascii │ │ │ │ └── 0_inside │ │ │ ├── ok-class-res │ │ │ │ ├── 0_a │ │ │ │ ├── 1_x │ │ │ │ └── 2_e │ │ │ ├── ok-digit │ │ │ │ └── 0_inside │ │ │ ├── ok-dot-res │ │ │ │ └── 0_any │ │ │ ├── ok-graph │ │ │ │ └── 0_inside │ │ │ ├── ok-kleene-res │ │ │ │ ├── 2_ab │ │ │ │ ├── 3_b │ │ │ │ ├── 0_aaab │ │ │ │ └── 1_aab │ │ │ ├── ok-kleene │ │ │ │ ├── 1_aab │ │ │ │ ├── 2_ab │ │ │ │ ├── 3_b │ │ │ │ └── 0_aaab │ │ │ ├── ok-lower │ │ │ │ └── 0_inside │ │ │ ├── ok-pkleene │ │ │ │ ├── 2_ab │ │ │ │ ├── 0_aaab │ │ │ │ └── 1_aab │ │ │ ├── ok-print │ │ │ │ └── 0_inside │ │ │ ├── ok-punct │ │ │ │ └── 0_inside │ │ │ ├── ok-range-res │ │ │ │ └── 0_a │ │ │ ├── ok-space │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-class │ │ │ │ ├── 1_x │ │ │ │ ├── 0_a │ │ │ │ └── 2_e │ │ │ ├── ok-sym-dot │ │ │ │ └── 0_any │ │ │ ├── ok-sym-kleene │ │ │ │ ├── 3_b │ │ │ │ ├── 1_aab │ │ │ │ ├── 2_ab │ │ │ │ └── 0_aaab │ │ │ ├── ok-upper │ │ │ │ └── 0_inside │ │ │ ├── fail-alnum │ │ │ │ └── 0_outside │ │ │ ├── fail-alpha │ │ │ │ └── 0_outside │ │ │ ├── fail-ascii │ │ │ │ └── 0_outside │ │ │ ├── fail-control │ │ │ │ └── 0_outside │ │ │ ├── fail-ddigit │ │ │ │ └── 0_outside │ │ │ ├── fail-digit │ │ │ │ └── 0_outside │ │ │ ├── fail-graph │ │ │ │ └── 0_outside │ │ │ ├── fail-lower │ │ │ │ └── 0_outside │ │ │ ├── fail-print │ │ │ │ └── 0_outside │ │ │ ├── fail-punct │ │ │ │ └── 0_outside │ │ │ ├── fail-space │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-dot │ │ │ │ └── 0_none │ │ │ ├── fail-sym-pkleene │ │ │ │ └── 0_b │ │ │ ├── fail-sym-sequence │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── fail-upper │ │ │ │ └── 0_outside │ │ │ ├── fail-xdigit │ │ │ │ └── 0_outside │ │ │ ├── ok-ahead-res │ │ │ │ └── 0_match │ │ │ ├── ok-ahead │ │ │ │ └── 0_match │ │ │ ├── ok-alnum-res │ │ │ │ └── 0_inside │ │ │ ├── ok-alpha-res │ │ │ │ └── 0_inside │ │ │ ├── ok-ascii-res │ │ │ │ └── 0_inside │ │ │ ├── ok-choice-res │ │ │ │ ├── 0_alpha │ │ │ │ ├── 1_digit │ │ │ │ └── 2_anumeric │ │ │ ├── ok-choice │ │ │ │ ├── 1_digit │ │ │ │ ├── 0_alpha │ │ │ │ └── 2_anumeric │ │ │ ├── ok-control-res │ │ │ │ └── 0_inside │ │ │ ├── ok-control │ │ │ │ └── 0_inside │ │ │ ├── ok-ddigit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-ddigit │ │ │ │ └── 0_inside │ │ │ ├── ok-digit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-graph-res │ │ │ │ └── 0_inside │ │ │ ├── ok-lower-res │ │ │ │ └── 0_inside │ │ │ ├── ok-notahead-res │ │ │ │ ├── 0_ident │ │ │ │ └── 1_identifierb │ │ │ ├── ok-optional-res │ │ │ │ ├── 0_have │ │ │ │ └── 1_havenot │ │ │ ├── ok-pkleene-res │ │ │ │ ├── 0_aaab │ │ │ │ ├── 1_aab │ │ │ │ └── 2_ab │ │ │ ├── ok-print-res │ │ │ │ └── 0_inside │ │ │ ├── ok-punct-res │ │ │ │ └── 0_inside │ │ │ ├── ok-range │ │ │ │ └── 0_a │ │ │ ├── ok-sequence-res │ │ │ │ └── 0_abc │ │ │ ├── ok-sequence │ │ │ │ └── 0_abc │ │ │ ├── ok-space-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-alnum │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-alpha │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-ascii │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-ddigit │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-digit │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-graph │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-lower │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-pkleene │ │ │ │ ├── 1_aab │ │ │ │ ├── 2_ab │ │ │ │ └── 0_aaab │ │ │ ├── ok-sym-print │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-punct │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-space │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-upper │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-xdigit │ │ │ │ └── 0_inside │ │ │ ├── ok-upper-res │ │ │ │ └── 0_inside │ │ │ ├── ok-wordchar │ │ │ │ └── 0_inside │ │ │ ├── ok-xdigit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-xdigit │ │ │ │ └── 0_inside │ │ │ ├── fail-ahead │ │ │ │ └── 0_notmatch │ │ │ ├── fail-class │ │ │ │ └── 0_beta │ │ │ ├── fail-range │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-alnum │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alpha │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ascii │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-control │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ddigit │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-digit │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-graph │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-lower │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-print │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-punct │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-space │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-upper │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-wordchar │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-xdigit │ │ │ │ └── 0_outside │ │ │ ├── fail-wordchar │ │ │ │ └── 0_outside │ │ │ ├── ok-optional │ │ │ │ ├── 0_have │ │ │ │ └── 1_havenot │ │ │ ├── ok-sym-ahead │ │ │ │ └── 0_match │ │ │ ├── ok-sym-choice │ │ │ │ ├── 1_digit │ │ │ │ ├── 0_alpha │ │ │ │ └── 2_anumeric │ │ │ ├── ok-sym-control │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-dot-res │ │ │ │ └── 0_any │ │ │ ├── ok-sym-kleene-res │ │ │ │ ├── 1_aab │ │ │ │ ├── 2_ab │ │ │ │ ├── 3_b │ │ │ │ └── 0_aaab │ │ │ ├── ok-sym-optional │ │ │ │ ├── 1_havenot │ │ │ │ └── 0_have │ │ │ ├── ok-sym-pkleene-res │ │ │ │ ├── 2_ab │ │ │ │ ├── 0_aaab │ │ │ │ └── 1_aab │ │ │ ├── ok-sym-range │ │ │ │ └── 0_a │ │ │ ├── ok-sym-sequence │ │ │ │ └── 0_abc │ │ │ ├── ok-sym-wordchar │ │ │ │ └── 0_inside │ │ │ ├── ok-wordchar-res │ │ │ │ └── 0_inside │ │ │ ├── fail-choice │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ ├── fail-notahead │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-ahead │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-choice │ │ │ │ ├── 0_aleph │ │ │ │ ├── 2_digup │ │ │ │ ├── 3_other │ │ │ │ └── 1_anumber │ │ │ ├── fail-sym-class │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-notahead │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-range │ │ │ │ └── 0_beta │ │ │ ├── ok-notahead │ │ │ │ ├── 0_ident │ │ │ │ └── 1_identifierb │ │ │ ├── ok-sym-alnum-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-alpha-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-ascii-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-class-res │ │ │ │ ├── 0_a │ │ │ │ ├── 1_x │ │ │ │ └── 2_e │ │ │ ├── ok-sym-control-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-ddigit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-digit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-graph-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-lower-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-notahead-res │ │ │ │ ├── 0_ident │ │ │ │ └── 1_identifierb │ │ │ ├── ok-sym-notahead │ │ │ │ ├── 0_ident │ │ │ │ └── 1_identifierb │ │ │ ├── ok-sym-optional-res │ │ │ │ ├── 0_have │ │ │ │ └── 1_havenot │ │ │ ├── ok-sym-print-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-punct-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-range-res │ │ │ │ └── 0_a │ │ │ ├── ok-sym-space-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-upper-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-wordchar-res │ │ │ │ └── 0_inside │ │ │ ├── ok-sym-xdigit-res │ │ │ │ └── 0_inside │ │ │ ├── ok-ticket-4a4e443ce9 │ │ │ │ └── 0_test │ │ │ ├── ok-sym-ahead-res │ │ │ │ └── 0_match │ │ │ ├── ok-sym-choice-res │ │ │ │ ├── 0_alpha │ │ │ │ ├── 1_digit │ │ │ │ └── 2_anumeric │ │ │ ├── ok-sym-sequence-res │ │ │ │ └── 0_abc │ │ │ ├── def │ │ │ │ ├── 40_dot │ │ │ │ ├── 12_alnum │ │ │ │ ├── 14_alpha │ │ │ │ ├── 16_ascii │ │ │ │ ├── 22_digit │ │ │ │ ├── 24_graph │ │ │ │ ├── 26_lower │ │ │ │ ├── 28_print │ │ │ │ ├── 30_punct │ │ │ │ ├── 32_space │ │ │ │ ├── 34_upper │ │ │ │ ├── 18_control │ │ │ │ ├── 20_ddigit │ │ │ │ ├── 36_wordchar │ │ │ │ ├── 38_xdigit │ │ │ │ ├── 4_class │ │ │ │ ├── 0_sequence │ │ │ │ ├── 10_kleene │ │ │ │ ├── 41_sym-dot │ │ │ │ ├── 42_optional │ │ │ │ ├── 6_range │ │ │ │ ├── 8_pkleene │ │ │ │ ├── 46_ahead │ │ │ │ ├── 13_sym-alnum │ │ │ │ ├── 15_sym-alpha │ │ │ │ ├── 17_sym-ascii │ │ │ │ ├── 21_sym-ddigit │ │ │ │ ├── 23_sym-digit │ │ │ │ ├── 25_sym-graph │ │ │ │ ├── 27_sym-lower │ │ │ │ ├── 29_sym-print │ │ │ │ ├── 31_sym-punct │ │ │ │ ├── 33_sym-space │ │ │ │ ├── 35_sym-upper │ │ │ │ ├── 39_sym-xdigit │ │ │ │ ├── 5_sym-class │ │ │ │ ├── 11_sym-kleene │ │ │ │ ├── 19_sym-control │ │ │ │ ├── 37_sym-wordchar │ │ │ │ ├── 7_sym-range │ │ │ │ ├── 9_sym-pkleene │ │ │ │ ├── 1_sym-sequence │ │ │ │ ├── 2_choice │ │ │ │ ├── 43_sym-optional │ │ │ │ ├── 47_sym-ahead │ │ │ │ └── 3_sym-choice │ │ │ ├── fail-dot-critcl-res │ │ │ │ └── 0_none │ │ │ ├── fail-dot-oo-res │ │ │ │ └── 0_none │ │ │ ├── fail-dot-snit-res │ │ │ │ └── 0_none │ │ │ ├── fail-sym-dot-oo-res │ │ │ │ └── 0_none │ │ │ ├── fail-alnum-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alnum-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alpha-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alpha-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ascii-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ascii-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ddigit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-digit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-digit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-dot-container-res │ │ │ │ └── 0_none │ │ │ ├── fail-graph-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-graph-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-lower-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-lower-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-print-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-print-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-punct-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-punct-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-space-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-space-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-dot-critcl-res │ │ │ │ └── 0_none │ │ │ ├── fail-sym-dot-snit-res │ │ │ │ └── 0_none │ │ │ ├── fail-upper-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-upper-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-xdigit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alnum-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alnum-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alpha-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-alpha-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ascii-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ascii-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-class-oo-res │ │ │ │ └── 0_beta │ │ │ ├── fail-control-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-control-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ddigit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ddigit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-digit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-digit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-graph-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-graph-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-lower-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-lower-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-notahead-critcl-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-notahead-oo-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-notahead-snit-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-pkleene-critcl-res │ │ │ │ └── 0_b │ │ │ ├── fail-pkleene-oo-res │ │ │ │ └── 0_b │ │ │ ├── fail-pkleene-snit-res │ │ │ │ └── 0_b │ │ │ ├── fail-print-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-print-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-punct-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-punct-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-range-oo-res │ │ │ │ └── 0_beta │ │ │ ├── fail-space-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-space-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alnum-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alnum-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alpha-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alpha-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ascii-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ascii-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ddigit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-digit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-digit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-dot-container-res │ │ │ │ └── 0_none │ │ │ ├── fail-sym-graph-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-graph-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-lower-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-lower-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-notahead-oo-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-pkleene-oo-res │ │ │ │ └── 0_b │ │ │ ├── fail-sym-print-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-print-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-punct-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-punct-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-space-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-space-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-upper-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-upper-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-xdigit-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-upper-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-upper-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-wordchar-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-xdigit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-xdigit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-class-critcl-res │ │ │ │ └── 0_beta │ │ │ ├── fail-class-snit-res │ │ │ │ └── 0_beta │ │ │ ├── fail-control-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-control-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ddigit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-notahead-container-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-pkleene-container-res │ │ │ │ └── 0_b │ │ │ ├── fail-range-critcl-res │ │ │ │ └── 0_beta │ │ │ ├── fail-range-snit-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sequence-container-res │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── fail-sequence-critcl-res │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── fail-sequence-oo-res │ │ │ │ ├── 0_abe │ │ │ │ └── 1_b │ │ │ ├── fail-sequence-snit-res │ │ │ │ ├── 0_abe │ │ │ │ └── 1_b │ │ │ ├── fail-sym-alnum-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alnum-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alpha-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-alpha-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ascii-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ascii-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-class-oo-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-control-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-control-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-control-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ddigit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ddigit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-digit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-digit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-graph-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-graph-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-lower-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-lower-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-notahead-critcl-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-notahead-snit-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-pkleene-critcl-res │ │ │ │ └── 0_b │ │ │ ├── fail-sym-pkleene-snit-res │ │ │ │ └── 0_b │ │ │ ├── fail-sym-print-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-print-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-punct-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-punct-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-range-oo-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-sequence-oo-res │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── fail-sym-space-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-space-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-upper-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-upper-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-wordchar-oo-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-wordchar-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-xdigit-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-xdigit-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-wordchar-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-wordchar-snit-res │ │ │ │ └── 0_outside │ │ │ ├── fail-xdigit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ahead-oo-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-ahead-snit-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-choice-container-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ ├── fail-range-container-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-choice-container-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 2_digup │ │ │ │ ├── 1_anumber │ │ │ │ └── 3_other │ │ │ ├── fail-sym-class-critcl-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-class-snit-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-control-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-ddigit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-notahead-container-res │ │ │ │ └── 0_keyword │ │ │ ├── fail-sym-pkleene-container-res │ │ │ │ └── 0_b │ │ │ ├── fail-sym-range-critcl-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-range-snit-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-sequence-container-res │ │ │ │ ├── 0_abe │ │ │ │ └── 1_b │ │ │ ├── fail-sym-sequence-critcl-res │ │ │ │ ├── 1_b │ │ │ │ └── 0_abe │ │ │ ├── fail-sym-sequence-snit-res │ │ │ │ ├── 0_abe │ │ │ │ └── 1_b │ │ │ ├── fail-sym-wordchar-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-wordchar-critcl-res │ │ │ │ └── 0_outside │ │ │ ├── fail-sym-xdigit-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-wordchar-container-res │ │ │ │ └── 0_outside │ │ │ ├── fail-ahead-container-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-ahead-critcl-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-ahead-critcl-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-ahead-oo-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-ahead-snit-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-range-container-res │ │ │ │ └── 0_beta │ │ │ ├── ok-ticket-4a4e443ce9-res │ │ │ │ └── 0_test │ │ │ ├── fail-class-container-res │ │ │ │ └── 0_beta │ │ │ ├── fail-sym-ahead-container-res │ │ │ │ └── 0_notmatch │ │ │ ├── fail-sym-class-container-res │ │ │ │ └── 0_beta │ │ │ ├── fail-ticket-3ed39a451f-oo-res │ │ │ │ └── 0_tinyProg │ │ │ ├── fail-ticket-3ed39a451f-snit-res │ │ │ │ └── 0_tinyProg │ │ │ ├── fail-ticket-3ed39a451f-container-res │ │ │ │ └── 0_tinyProg │ │ │ ├── fail-ticket-3ed39a451f-critcl-res │ │ │ │ └── 0_tinyProg │ │ │ ├── fail-choice-oo-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ ├── fail-choice-snit-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 2_digup │ │ │ │ ├── 3_other │ │ │ │ └── 1_anumber │ │ │ ├── fail-choice-critcl-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ ├── fail-sym-choice-critcl-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ ├── fail-sym-choice-oo-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ └── fail-sym-choice-snit-res │ │ │ │ ├── 0_aleph │ │ │ │ ├── 1_anumber │ │ │ │ ├── 2_digup │ │ │ │ └── 3_other │ │ │ └── ok │ │ │ ├── pe_serial │ │ │ ├── 10_space │ │ │ ├── 11_upper │ │ │ ├── 15_dot │ │ │ ├── 2_alpha │ │ │ ├── 3_alnum │ │ │ ├── 4_ascii │ │ │ ├── 5_digit │ │ │ ├── 6_graph │ │ │ ├── 7_lower │ │ │ ├── 8_print │ │ │ ├── 9_punct │ │ │ ├── 13_xdigit │ │ │ ├── 14_ddigit │ │ │ ├── 17_terminal │ │ │ ├── 18_range │ │ │ ├── 19_ahead │ │ │ ├── 1_epsilon │ │ │ ├── 20_notahead │ │ │ ├── 21_kleene │ │ │ ├── 22_pkleen │ │ │ ├── 23_optional │ │ │ ├── 24_sequence │ │ │ ├── 25_choice │ │ │ ├── 12_wordchar │ │ │ └── 16_nonterminal │ │ │ ├── ast_serial │ │ │ ├── 0_terminal │ │ │ ├── 1_nonterminal │ │ │ └── 2_tree │ │ │ ├── pe_serial-tddump │ │ │ ├── 15_dot │ │ │ ├── 10_space │ │ │ ├── 11_upper │ │ │ ├── 13_xdigit │ │ │ ├── 14_ddigit │ │ │ ├── 17_terminal │ │ │ ├── 18_range │ │ │ ├── 1_epsilon │ │ │ ├── 2_alpha │ │ │ ├── 3_alnum │ │ │ ├── 4_ascii │ │ │ ├── 5_digit │ │ │ ├── 6_graph │ │ │ ├── 7_lower │ │ │ ├── 8_print │ │ │ ├── 9_punct │ │ │ ├── 12_wordchar │ │ │ ├── 16_nonterminal │ │ │ ├── 19_ahead │ │ │ ├── 20_notahead │ │ │ ├── 21_kleene │ │ │ ├── 22_pkleen │ │ │ ├── 23_optional │ │ │ ├── 24_sequence │ │ │ └── 25_choice │ │ │ ├── pe_serial-budump │ │ │ ├── 15_dot │ │ │ ├── 10_space │ │ │ ├── 11_upper │ │ │ ├── 13_xdigit │ │ │ ├── 14_ddigit │ │ │ ├── 17_terminal │ │ │ ├── 18_range │ │ │ ├── 1_epsilon │ │ │ ├── 2_alpha │ │ │ ├── 3_alnum │ │ │ ├── 4_ascii │ │ │ ├── 5_digit │ │ │ ├── 6_graph │ │ │ ├── 7_lower │ │ │ ├── 8_print │ │ │ ├── 9_punct │ │ │ ├── 12_wordchar │ │ │ ├── 16_nonterminal │ │ │ ├── 19_ahead │ │ │ ├── 20_notahead │ │ │ ├── 21_kleene │ │ │ ├── 22_pkleen │ │ │ ├── 23_optional │ │ │ ├── 24_sequence │ │ │ └── 25_choice │ │ │ ├── pe_serial-print │ │ │ ├── 15_dot │ │ │ ├── 10_space │ │ │ ├── 11_upper │ │ │ ├── 13_xdigit │ │ │ ├── 14_ddigit │ │ │ ├── 17_terminal │ │ │ ├── 18_range │ │ │ ├── 2_alpha │ │ │ ├── 3_alnum │ │ │ ├── 4_ascii │ │ │ ├── 5_digit │ │ │ ├── 6_graph │ │ │ ├── 7_lower │ │ │ ├── 8_print │ │ │ ├── 9_punct │ │ │ ├── 12_wordchar │ │ │ ├── 16_nonterminal │ │ │ ├── 19_ahead │ │ │ ├── 1_epsilon │ │ │ ├── 21_kleene │ │ │ ├── 22_pkleen │ │ │ ├── 25_choice │ │ │ ├── 20_notahead │ │ │ ├── 23_optional │ │ │ └── 24_sequence │ │ │ ├── ast_serial-tddump │ │ │ ├── 0_terminal │ │ │ └── 1_nonterminal │ │ │ ├── ast_serial-budump │ │ │ ├── 0_terminal │ │ │ └── 1_nonterminal │ │ │ ├── ast_serial-print │ │ │ ├── 0_terminal │ │ │ └── 1_nonterminal │ │ │ ├── peg_peg │ │ │ ├── 7_kleene │ │ │ ├── 6_optional │ │ │ ├── 8_pkleene │ │ │ ├── 11_epsilon │ │ │ ├── 5_sequence │ │ │ ├── 4_choice │ │ │ └── 9_ahead │ │ │ ├── peg_peg-fused │ │ │ ├── 4_choice │ │ │ ├── 5_sequence │ │ │ ├── 6_optional │ │ │ ├── 7_kleene │ │ │ ├── 8_pkleene │ │ │ └── 11_epsilon │ │ │ ├── peg_serial-canonical │ │ │ ├── 7_kleene │ │ │ ├── 8_pkleene │ │ │ ├── 6_optional │ │ │ ├── 11_epsilon │ │ │ ├── 4_choice │ │ │ └── 5_sequence │ │ │ ├── peg_json-ultracompact │ │ │ ├── 6_optional │ │ │ ├── 7_kleene │ │ │ ├── 8_pkleene │ │ │ ├── 11_epsilon │ │ │ └── 4_choice │ │ │ └── peg_serial │ │ │ ├── 6_optional │ │ │ ├── 7_kleene │ │ │ └── 8_pkleene │ └── include │ │ ├── export │ │ └── format │ │ │ ├── cparam.inc │ │ │ ├── null.inc │ │ │ ├── tclparam.inc │ │ │ ├── param.inc │ │ │ ├── json.inc │ │ │ ├── container.inc │ │ │ └── peg.inc │ │ ├── import │ │ └── format │ │ │ ├── peg.inc │ │ │ └── json.inc │ │ ├── gen_options.inc │ │ ├── example │ │ ├── expr_pe.inc │ │ └── expr_pe_serial.inc │ │ ├── format │ │ └── json.inc │ │ ├── arch_core.png │ │ └── gen_options.png ├── jpeg │ └── test-assets │ │ ├── 1000.thumbexif.txt │ │ ├── IMG_7950_none.exif.txt │ │ ├── 1000.WxH.txt │ │ ├── IMG_7898.WxH.txt │ │ ├── IMG_7917.WxH.txt │ │ ├── IMG_7950.WxH.txt │ │ ├── IMG_7950_none.thumbexif.txt │ │ ├── IMG_7950_none.WxH.txt │ │ ├── 1000.exif.txt │ │ ├── 1000.info.txt │ │ ├── IMG_7898.info.txt │ │ ├── IMG_7917.info.txt │ │ ├── IMG_7950.info.txt │ │ ├── 1000.JPG │ │ └── IMG_7950_none.info.txt ├── json │ └── tests │ │ ├── array.sort │ │ ├── menu.sort │ │ ├── widget.sort │ │ ├── glossary.sort │ │ └── menu2.sort ├── devtools │ └── ca.key.password ├── doctools2base │ └── tests │ │ └── tcl_data │ │ ├── ok │ │ └── in │ │ │ ├── 16_text │ │ │ ├── 01_command1 │ │ │ ├── 02_command2 │ │ │ ├── 03_command3 │ │ │ ├── 04_command4 │ │ │ ├── 05_command5 │ │ │ ├── 06_command6 │ │ │ ├── 07_command7 │ │ │ ├── 08_command8 │ │ │ ├── 14_emptyword1 │ │ │ ├── 15_emptyword2 │ │ │ ├── 09_command_nested │ │ │ ├── 18_command9 │ │ │ ├── 11_continuation1 │ │ │ ├── 17_text_multiline │ │ │ ├── 12_continuation2 │ │ │ └── 13_continuation3 │ │ └── fail │ │ ├── in │ │ ├── 2_unexpected_eof │ │ ├── 1_command │ │ └── 3_unexpected_char │ │ ├── out-ec │ │ ├── 1_command │ │ ├── 2_unexpected_eof │ │ └── 3_unexpected_char │ │ └── out │ │ ├── 2_unexpected_eof │ │ ├── 1_command │ │ └── 3_unexpected_char ├── csv │ └── test-assets │ │ └── 2926387.csv ├── profiler │ └── test-assets │ │ └── tkt-0dd4b31bb8 ├── clay │ └── build │ │ └── footer.txt ├── practcl │ └── build │ │ └── footer.txt ├── dicttool │ └── pkgIndex.tcl ├── httpwget │ └── pkgIndex.tcl ├── inifile │ └── test-assets │ │ └── sample.ini ├── textutil │ └── build │ │ └── alternates │ │ └── check.sh ├── base64 │ ├── yencode.test.out │ └── yencode.test.data ├── oodialect │ └── pkgIndex.tcl ├── common-text │ └── tls-security-notes.inc ├── fileutil │ └── test-assets │ │ └── p.ckout └── png │ └── test-assets │ ├── basi0g01.png │ ├── basi0g02.png │ ├── basi0g04.png │ ├── basi0g08.png │ ├── basi0g16.png │ ├── basi2c08.png │ ├── basi2c16.png │ ├── basi3p01.png │ ├── basi3p02.png │ ├── basi3p04.png │ ├── basi3p08.png │ ├── basi4a08.png │ ├── basi4a16.png │ ├── basi6a08.png │ ├── basi6a16.png │ ├── basn0g01.png │ ├── basn0g02.png │ ├── basn0g04.png │ ├── basn0g08.png │ ├── basn0g16.png │ ├── basn2c08.png │ ├── basn2c16.png │ ├── basn3p01.png │ ├── basn3p02.png │ ├── basn3p04.png │ ├── basn3p08.png │ ├── basn4a08.png │ ├── basn4a16.png │ ├── basn6a08.png │ ├── basn6a16.png │ ├── bgai4a08.png │ ├── bgai4a16.png │ ├── bgan6a08.png │ ├── bgan6a16.png │ ├── bgbn4a08.png │ └── bggn4a16.png ├── examples ├── httpd │ └── htdocs │ │ ├── server.md │ │ ├── content.form.md │ │ └── plume.png ├── transfer │ └── certs │ │ └── ca.key.password ├── nntp │ └── test-account └── README ├── support └── devel │ └── sak │ ├── help │ └── topic.txt │ ├── test │ └── topic.txt │ ├── old │ └── topic.txt │ ├── validate │ └── topic.txt │ ├── doc │ └── topic.txt │ └── review │ └── topic.txt ├── devdoc └── parts │ ├── rm_start.inc │ └── rm_final.inc ├── .fossil-settings └── ignore-glob ├── idoc └── www │ └── image │ ├── flow.png │ ├── expr_ast.png │ ├── architecture.png │ ├── gen_options.png │ ├── arch_user_app.png │ ├── arch_user_pkg.png │ ├── arch_core_export.png │ ├── arch_core_import.png │ └── arch_core_support.png └── embedded └── md └── image ├── flow.png ├── expr_ast.png ├── architecture.png ├── gen_options.png ├── arch_user_app.png └── arch_user_pkg.png /modules/httpd/demos/reply.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/httpd/htdocs/server.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/httpd/demos/server.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/valtype/include/null.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/httpd/htdocs/content.form.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/00: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/03: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/04: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/05: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/06: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/07: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/09: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/14: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/15: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/18: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/19: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/21: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/22: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/23: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/24: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/25: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/26: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/27: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/desc/28: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/00: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/02: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/03: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/04: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/05: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/06: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/07: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/08: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/09: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/14: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/15: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/17: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/18: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/19: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/21: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/22: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/23: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/24: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/25: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/26: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/27: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/null/28: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/syntax/26: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/fmt/syntax/28: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/idx/null/00: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/idx/null/01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/idx/null/02: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/null/00: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/null/01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/null/02: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/httpd/build/cuneiform.tcl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class/1_x: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-dot/0_any: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /modules/jpeg/test-assets/1000.thumbexif.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/json/tests/array.sort: -------------------------------------------------------------------------------- 1 | list dict 2 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/cparam.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/null.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/include/import/format/peg.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-dot/0_none: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-pkleene/0_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence/1_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-alnum/0_inside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-alpha/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ascii/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class-res/0_a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class-res/1_x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class-res/2_e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class/0_a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-class/2_e: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-digit/0_inside: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-dot-res/0_any: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-graph/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene-res/2_ab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene-res/3_b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene/1_aab: -------------------------------------------------------------------------------- 1 | aab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene/2_ab: -------------------------------------------------------------------------------- 1 | ab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene/3_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-lower/0_inside: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene/2_ab: -------------------------------------------------------------------------------- 1 | ab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-print/0_inside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-punct/0_inside: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-range-res/0_a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-space/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class/1_x: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-dot/0_any: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene/3_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-upper/0_inside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950_none.exif.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/tclparam.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alnum/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alpha/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ascii/0_outside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-control/0_outside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ddigit/0_outside: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-digit/0_outside: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-graph/0_outside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-lower/0_outside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-print/0_outside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-punct/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-space/0_outside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-dot/0_none: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-pkleene/0_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence/1_b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-upper/0_outside: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-xdigit/0_outside: -------------------------------------------------------------------------------- 1 | g -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ahead-res/0_match: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ahead/0_match: -------------------------------------------------------------------------------- 1 | abba= -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-alnum-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-alpha-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ascii-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice-res/0_alpha: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice-res/1_digit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice/1_digit: -------------------------------------------------------------------------------- 1 | digit -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-control-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-control/0_inside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ddigit-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ddigit/0_inside: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-digit-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-graph-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene-res/0_aaab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene-res/1_aab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-kleene/0_aaab: -------------------------------------------------------------------------------- 1 | aaab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-lower-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-notahead-res/0_ident: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-optional-res/0_have: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene-res/0_aaab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene-res/1_aab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene-res/2_ab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene/0_aaab: -------------------------------------------------------------------------------- 1 | aaab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-pkleene/1_aab: -------------------------------------------------------------------------------- 1 | aab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-print-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-punct-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-range/0_a: -------------------------------------------------------------------------------- 1 | 0xA 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sequence-res/0_abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sequence/0_abc: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-space-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-alnum/0_inside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-alpha/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ascii/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class/0_a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class/2_e: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ddigit/0_inside: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-digit/0_inside: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-graph/0_inside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene/1_aab: -------------------------------------------------------------------------------- 1 | aab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene/2_ab: -------------------------------------------------------------------------------- 1 | ab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-lower/0_inside: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene/1_aab: -------------------------------------------------------------------------------- 1 | aab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene/2_ab: -------------------------------------------------------------------------------- 1 | ab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-print/0_inside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-punct/0_inside: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-space/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-upper/0_inside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-xdigit/0_inside: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-upper-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-wordchar/0_inside: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-xdigit-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-xdigit/0_inside: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/10_space: -------------------------------------------------------------------------------- 1 | space -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/11_upper: -------------------------------------------------------------------------------- 1 | upper -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/15_dot: -------------------------------------------------------------------------------- 1 | dot -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/2_alpha: -------------------------------------------------------------------------------- 1 | alpha -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/3_alnum: -------------------------------------------------------------------------------- 1 | alnum -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/4_ascii: -------------------------------------------------------------------------------- 1 | ascii -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/5_digit: -------------------------------------------------------------------------------- 1 | digit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/6_graph: -------------------------------------------------------------------------------- 1 | graph -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/7_lower: -------------------------------------------------------------------------------- 1 | lower -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/8_print: -------------------------------------------------------------------------------- 1 | print -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/9_punct: -------------------------------------------------------------------------------- 1 | punct -------------------------------------------------------------------------------- /modules/devtools/ca.key.password: -------------------------------------------------------------------------------- 1 | tcllib-devel 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/export/format/null.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/export/format/null.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/1000.WxH.txt: -------------------------------------------------------------------------------- 1 | 1000 1000 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7898.WxH.txt: -------------------------------------------------------------------------------- 1 | 320 240 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7917.WxH.txt: -------------------------------------------------------------------------------- 1 | 320 240 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950.WxH.txt: -------------------------------------------------------------------------------- 1 | 320 240 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950_none.thumbexif.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ahead/0_notmatch: -------------------------------------------------------------------------------- 1 | abba, -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-class/0_beta: -------------------------------------------------------------------------------- 1 | beta 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-range/0_beta: -------------------------------------------------------------------------------- 1 | 0xbeta 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence/0_abe: -------------------------------------------------------------------------------- 1 | abe 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alnum/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alpha/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ascii/0_outside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-control/0_outside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ddigit/0_outside: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-digit/0_outside: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-graph/0_outside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-lower/0_outside: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-print/0_outside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-punct/0_outside: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-space/0_outside: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-upper/0_outside: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-wordchar/0_outside: -------------------------------------------------------------------------------- 1 | : -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-xdigit/0_outside: -------------------------------------------------------------------------------- 1 | g -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-wordchar/0_outside: -------------------------------------------------------------------------------- 1 | : -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice-res/2_anumeric: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice/0_alpha: -------------------------------------------------------------------------------- 1 | alpha 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-optional-res/1_havenot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-optional/0_have: -------------------------------------------------------------------------------- 1 | havenot -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-optional/1_havenot: -------------------------------------------------------------------------------- 1 | not -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ahead/0_match: -------------------------------------------------------------------------------- 1 | abba= -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice/1_digit: -------------------------------------------------------------------------------- 1 | digit -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-control/0_inside: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-dot-res/0_any: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene-res/1_aab: -------------------------------------------------------------------------------- 1 | N 0 2 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene-res/2_ab: -------------------------------------------------------------------------------- 1 | N 0 1 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene-res/3_b: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene/0_aaab: -------------------------------------------------------------------------------- 1 | aaab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-optional/1_havenot: -------------------------------------------------------------------------------- 1 | not -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene-res/2_ab: -------------------------------------------------------------------------------- 1 | N 0 1 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene/0_aaab: -------------------------------------------------------------------------------- 1 | aaab -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-range/0_a: -------------------------------------------------------------------------------- 1 | 0xA 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-sequence/0_abc: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-wordchar/0_inside: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-wordchar-res/0_inside: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial/0_terminal: -------------------------------------------------------------------------------- 1 | {} 1 1 -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/15_dot: -------------------------------------------------------------------------------- 1 | dot -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/13_xdigit: -------------------------------------------------------------------------------- 1 | xdigit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/14_ddigit: -------------------------------------------------------------------------------- 1 | ddigit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/17_terminal: -------------------------------------------------------------------------------- 1 | t A -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/18_range: -------------------------------------------------------------------------------- 1 | .. A B -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/19_ahead: -------------------------------------------------------------------------------- 1 | & {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/1_epsilon: -------------------------------------------------------------------------------- 1 | epsilon -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/20_notahead: -------------------------------------------------------------------------------- 1 | ! {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/21_kleene: -------------------------------------------------------------------------------- 1 | * {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/22_pkleen: -------------------------------------------------------------------------------- 1 | + {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/23_optional: -------------------------------------------------------------------------------- 1 | ? {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/24_sequence: -------------------------------------------------------------------------------- 1 | x {t A} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/25_choice: -------------------------------------------------------------------------------- 1 | / {t A} -------------------------------------------------------------------------------- /examples/transfer/certs/ca.key.password: -------------------------------------------------------------------------------- 1 | tcllib-devel 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/17_badempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/17_badempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950_none.WxH.txt: -------------------------------------------------------------------------------- 1 | 320 240 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice/0_aleph: -------------------------------------------------------------------------------- 1 | aleph 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice/1_anumber: -------------------------------------------------------------------------------- 1 | anumber 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice/2_digup: -------------------------------------------------------------------------------- 1 | digup 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice/3_other: -------------------------------------------------------------------------------- 1 | other 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-notahead/0_keyword: -------------------------------------------------------------------------------- 1 | serial -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ahead/0_notmatch: -------------------------------------------------------------------------------- 1 | abba, -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice/0_aleph: -------------------------------------------------------------------------------- 1 | aleph 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice/2_digup: -------------------------------------------------------------------------------- 1 | digup 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice/3_other: -------------------------------------------------------------------------------- 1 | other 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-class/0_beta: -------------------------------------------------------------------------------- 1 | beta 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-notahead/0_keyword: -------------------------------------------------------------------------------- 1 | serial -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-range/0_beta: -------------------------------------------------------------------------------- 1 | 0xbeta 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence/0_abe: -------------------------------------------------------------------------------- 1 | abe 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-choice/2_anumeric: -------------------------------------------------------------------------------- 1 | anumeric 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-notahead-res/1_identifierb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-notahead/0_ident: -------------------------------------------------------------------------------- 1 | identifier -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-alnum-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-alpha-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ascii-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice/0_alpha: -------------------------------------------------------------------------------- 1 | alpha 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class-res/0_a: -------------------------------------------------------------------------------- 1 | N 0 0 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class-res/1_x: -------------------------------------------------------------------------------- 1 | N 0 0 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-class-res/2_e: -------------------------------------------------------------------------------- 1 | N 0 0 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-control-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ddigit-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-digit-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-graph-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-kleene-res/0_aaab: -------------------------------------------------------------------------------- 1 | N 0 3 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-lower-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-notahead-res/0_ident: -------------------------------------------------------------------------------- 1 | N 0 9 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-notahead/0_ident: -------------------------------------------------------------------------------- 1 | identifier -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-optional-res/0_have: -------------------------------------------------------------------------------- 1 | N 0 6 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-optional/0_have: -------------------------------------------------------------------------------- 1 | havenot -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene-res/0_aaab: -------------------------------------------------------------------------------- 1 | N 0 3 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-pkleene-res/1_aab: -------------------------------------------------------------------------------- 1 | N 0 2 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-print-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-punct-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-range-res/0_a: -------------------------------------------------------------------------------- 1 | N 0 2 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-space-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-upper-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-wordchar-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-xdigit-res/0_inside: -------------------------------------------------------------------------------- 1 | N 0 0 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ticket-4a4e443ce9/0_test: -------------------------------------------------------------------------------- 1 | zx z -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial/1_nonterminal: -------------------------------------------------------------------------------- 1 | X 10 20 -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/15_dot: -------------------------------------------------------------------------------- 1 | dot 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/15_dot: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/10_space: -------------------------------------------------------------------------------- 1 | space -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/11_upper: -------------------------------------------------------------------------------- 1 | upper -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/13_xdigit: -------------------------------------------------------------------------------- 1 | xdigit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/14_ddigit: -------------------------------------------------------------------------------- 1 | ddigit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/17_terminal: -------------------------------------------------------------------------------- 1 | t A -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/18_range: -------------------------------------------------------------------------------- 1 | .. A B -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/1_epsilon: -------------------------------------------------------------------------------- 1 | epsilon -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/2_alpha: -------------------------------------------------------------------------------- 1 | alpha -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/3_alnum: -------------------------------------------------------------------------------- 1 | alnum -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/4_ascii: -------------------------------------------------------------------------------- 1 | ascii -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/5_digit: -------------------------------------------------------------------------------- 1 | digit -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/6_graph: -------------------------------------------------------------------------------- 1 | graph -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/7_lower: -------------------------------------------------------------------------------- 1 | lower -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/8_print: -------------------------------------------------------------------------------- 1 | print -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/9_punct: -------------------------------------------------------------------------------- 1 | punct -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/12_wordchar: -------------------------------------------------------------------------------- 1 | wordchar -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial/16_nonterminal: -------------------------------------------------------------------------------- 1 | n SYM -------------------------------------------------------------------------------- /modules/valtype/include/k_luhn.inc: -------------------------------------------------------------------------------- 1 | [keywords luhn] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/16_text: -------------------------------------------------------------------------------- 1 | a b c 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json/00_short: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json/00_short: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice/1_anumber: -------------------------------------------------------------------------------- 1 | anumber 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-notahead/1_identifierb: -------------------------------------------------------------------------------- 1 | serialized -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-ahead-res/0_match: -------------------------------------------------------------------------------- 1 | N 0 3 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice-res/0_alpha: -------------------------------------------------------------------------------- 1 | N 0 4 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice-res/1_digit: -------------------------------------------------------------------------------- 1 | N 0 4 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice-res/2_anumeric: -------------------------------------------------------------------------------- 1 | N 0 7 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-choice/2_anumeric: -------------------------------------------------------------------------------- 1 | anumeric 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-notahead-res/1_identifierb: -------------------------------------------------------------------------------- 1 | N 0 9 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-optional-res/1_havenot: -------------------------------------------------------------------------------- 1 | N 0 2 -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-sequence-res/0_abc: -------------------------------------------------------------------------------- 1 | N 0 2 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-tddump/0_terminal: -------------------------------------------------------------------------------- 1 | {} 1 1 -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-tddump/1_nonterminal: -------------------------------------------------------------------------------- 1 | X 10 20 -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/10_space: -------------------------------------------------------------------------------- 1 | space 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/11_upper: -------------------------------------------------------------------------------- 1 | upper 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/13_xdigit: -------------------------------------------------------------------------------- 1 | xdigit 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/14_ddigit: -------------------------------------------------------------------------------- 1 | ddigit 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/17_terminal: -------------------------------------------------------------------------------- 1 | t A 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/18_range: -------------------------------------------------------------------------------- 1 | .. A B 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/1_epsilon: -------------------------------------------------------------------------------- 1 | epsilon 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/2_alpha: -------------------------------------------------------------------------------- 1 | alpha 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/3_alnum: -------------------------------------------------------------------------------- 1 | alnum 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/4_ascii: -------------------------------------------------------------------------------- 1 | ascii 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/5_digit: -------------------------------------------------------------------------------- 1 | digit 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/6_graph: -------------------------------------------------------------------------------- 1 | graph 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/7_lower: -------------------------------------------------------------------------------- 1 | lower 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/8_print: -------------------------------------------------------------------------------- 1 | print 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/9_punct: -------------------------------------------------------------------------------- 1 | punct 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/10_space: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/11_upper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/13_xdigit: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/14_ddigit: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/17_terminal: -------------------------------------------------------------------------------- 1 | 'A' 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/18_range: -------------------------------------------------------------------------------- 1 | range (A .. B) -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/2_alpha: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/3_alnum: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/4_ascii: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/5_digit: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/6_graph: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/7_lower: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/8_print: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/9_punct: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/12_wordchar: -------------------------------------------------------------------------------- 1 | wordchar -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/16_nonterminal: -------------------------------------------------------------------------------- 1 | n SYM -------------------------------------------------------------------------------- /modules/valtype/include/k_luhn5.inc: -------------------------------------------------------------------------------- 1 | [keywords luhn luhn-5] 2 | -------------------------------------------------------------------------------- /modules/valtype/include/k_verhoeff.inc: -------------------------------------------------------------------------------- 1 | [keywords verhoeff] 2 | -------------------------------------------------------------------------------- /modules/valtype/include/r_luhn.inc: -------------------------------------------------------------------------------- 1 | [require valtype::luhn] 2 | -------------------------------------------------------------------------------- /support/devel/sak/help/topic.txt: -------------------------------------------------------------------------------- 1 | help How to use help. 2 | -------------------------------------------------------------------------------- /support/devel/sak/test/topic.txt: -------------------------------------------------------------------------------- 1 | test Execute testsuites 2 | -------------------------------------------------------------------------------- /devdoc/parts/rm_start.inc: -------------------------------------------------------------------------------- 1 | todo: open a candidate for release 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/in/2_unexpected_eof: -------------------------------------------------------------------------------- 1 | [foo -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/01_command1: -------------------------------------------------------------------------------- 1 | [foo] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/02_command2: -------------------------------------------------------------------------------- 1 | [foo x y] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | [foo] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | [foo] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/18_nobegin: -------------------------------------------------------------------------------- 1 | [toc_end] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/wiki/1_empty: -------------------------------------------------------------------------------- 1 | **TOC -- TOC** 2 | -------------------------------------------------------------------------------- /modules/json/tests/menu.sort: -------------------------------------------------------------------------------- 1 | dict * {dict popup {dict * {list dict}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/40_dot: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (.) 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-dot-critcl-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-dot-oo-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-dot-snit-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-dot-oo-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-sym-notahead/1_identifierb: -------------------------------------------------------------------------------- 1 | serialized -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-budump/0_terminal: -------------------------------------------------------------------------------- 1 | {} 1 1 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-budump/1_nonterminal: -------------------------------------------------------------------------------- 1 | X 10 20 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-print/0_terminal: -------------------------------------------------------------------------------- 1 | <> :: 1 1 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/12_wordchar: -------------------------------------------------------------------------------- 1 | wordchar 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/16_nonterminal: -------------------------------------------------------------------------------- 1 | n SYM 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/12_wordchar: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/16_nonterminal: -------------------------------------------------------------------------------- 1 | (SYM) 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/19_ahead: -------------------------------------------------------------------------------- 1 | & 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/1_epsilon: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/21_kleene: -------------------------------------------------------------------------------- 1 | * 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/22_pkleen: -------------------------------------------------------------------------------- 1 | + 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/25_choice: -------------------------------------------------------------------------------- 1 | / 2 | 'A' 3 | -------------------------------------------------------------------------------- /examples/nntp/test-account: -------------------------------------------------------------------------------- 1 | your user name here 2 | your password here 3 | -------------------------------------------------------------------------------- /modules/csv/test-assets/2926387.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | d,"e, 3 | e",f 4 | 5 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/in/1_command: -------------------------------------------------------------------------------- 1 | [foo 2 | x] 3 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/in/3_unexpected_char: -------------------------------------------------------------------------------- 1 | [foo "x -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/03_command3: -------------------------------------------------------------------------------- 1 | [foo x $y] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/04_command4: -------------------------------------------------------------------------------- 1 | [foo {x y}] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/05_command5: -------------------------------------------------------------------------------- 1 | [foo "x y"] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/06_command6: -------------------------------------------------------------------------------- 1 | [foo "\n y"] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/07_command7: -------------------------------------------------------------------------------- 1 | [foo {x \{}] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/08_command8: -------------------------------------------------------------------------------- 1 | [foo "x \{"] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/14_emptyword1: -------------------------------------------------------------------------------- 1 | [foo {}] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/15_emptyword2: -------------------------------------------------------------------------------- 1 | [foo ""] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/02_nonwhitespace2: -------------------------------------------------------------------------------- 1 | [vset fox] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/04_illegalcmd2: -------------------------------------------------------------------------------- 1 | [vset [foo]] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | [vset a] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/13_incnotfound: -------------------------------------------------------------------------------- 1 | [include bogus] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/14_incempty: -------------------------------------------------------------------------------- 1 | [include empty] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/18_nobegin: -------------------------------------------------------------------------------- 1 | [index_end] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/unexpected_eof: -------------------------------------------------------------------------------- 1 | [bad syntax in include file -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/02_nonwhitespace2: -------------------------------------------------------------------------------- 1 | [vset fox] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/04_illegalcmd2: -------------------------------------------------------------------------------- 1 | [vset [foo]] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/07_wrongargs: -------------------------------------------------------------------------------- 1 | [toc_begin KWIC] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | [vset a] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/13_incnotfound: -------------------------------------------------------------------------------- 1 | [include bogus] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/14_incempty: -------------------------------------------------------------------------------- 1 | [include empty] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/21_noend1: -------------------------------------------------------------------------------- 1 | [toc_begin A B] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/unexpected_eof: -------------------------------------------------------------------------------- 1 | [bad syntax in include file -------------------------------------------------------------------------------- /modules/json/tests/widget.sort: -------------------------------------------------------------------------------- 1 | dict * {dict text dict window dict} 2 | -------------------------------------------------------------------------------- /modules/pt/include/gen_options.inc: -------------------------------------------------------------------------------- 1 | [para][image gen_options][para] 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/12_alnum: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/14_alpha: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/16_ascii: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/22_digit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/24_graph: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/26_lower: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/28_print: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/30_punct: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/32_space: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/34_upper: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alnum-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alnum-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alpha-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alpha-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ascii-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ascii-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ddigit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-digit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-digit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-dot-container-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-graph-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-graph-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-lower-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-lower-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-print-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-print-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-punct-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-punct-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-space-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-space-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-dot-critcl-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-dot-snit-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-upper-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-upper-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-xdigit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial-print/1_nonterminal: -------------------------------------------------------------------------------- 1 | :: 10 20 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/19_ahead: -------------------------------------------------------------------------------- 1 | t A 2 | & {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/20_notahead: -------------------------------------------------------------------------------- 1 | t A 2 | ! {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/21_kleene: -------------------------------------------------------------------------------- 1 | t A 2 | * {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/22_pkleen: -------------------------------------------------------------------------------- 1 | t A 2 | + {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/23_optional: -------------------------------------------------------------------------------- 1 | t A 2 | ? {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/24_sequence: -------------------------------------------------------------------------------- 1 | t A 2 | x {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-budump/25_choice: -------------------------------------------------------------------------------- 1 | t A 2 | / {t A} 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/20_notahead: -------------------------------------------------------------------------------- 1 | ! 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/23_optional: -------------------------------------------------------------------------------- 1 | ? 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-print/24_sequence: -------------------------------------------------------------------------------- 1 | x 2 | 'A' 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/19_ahead: -------------------------------------------------------------------------------- 1 | & {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/20_notahead: -------------------------------------------------------------------------------- 1 | ! {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/21_kleene: -------------------------------------------------------------------------------- 1 | * {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/22_pkleen: -------------------------------------------------------------------------------- 1 | + {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/23_optional: -------------------------------------------------------------------------------- 1 | ? {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/24_sequence: -------------------------------------------------------------------------------- 1 | x {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/pe_serial-tddump/25_choice: -------------------------------------------------------------------------------- 1 | / {t A} 2 | t A 3 | -------------------------------------------------------------------------------- /devdoc/parts/rm_final.inc: -------------------------------------------------------------------------------- 1 | todo: finalize release, make candidate official 2 | -------------------------------------------------------------------------------- /modules/doctools/tests/idx/wiki/00: -------------------------------------------------------------------------------- 1 | Index '''KWIC''' 2 | '''Test''' 3 | 4 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/09_command_nested: -------------------------------------------------------------------------------- 1 | [foo [bar]] 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/18_command9: -------------------------------------------------------------------------------- 1 | [foo][bar] [x][y] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/07_wrongargs: -------------------------------------------------------------------------------- 1 | [index_begin KWIC] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/12_incerror: -------------------------------------------------------------------------------- 1 | [include [vset a b]] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/21_noend1: -------------------------------------------------------------------------------- 1 | [index_begin A B] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/27_incbadcmd: -------------------------------------------------------------------------------- 1 | [include bad_command] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/wiki-table/1_nokeys: -------------------------------------------------------------------------------- 1 | **KWIC -- INDEX** 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/12_incerror: -------------------------------------------------------------------------------- 1 | [include [vset a b]] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/27_incbadcmd: -------------------------------------------------------------------------------- 1 | [include bad_command] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/text/1_empty: -------------------------------------------------------------------------------- 1 | TOC -- TOC 2 | ========== 3 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/1000.exif.txt: -------------------------------------------------------------------------------- 1 | ExifByteOrder little ExifOffset 30 2 | -------------------------------------------------------------------------------- /modules/profiler/test-assets/tkt-0dd4b31bb8: -------------------------------------------------------------------------------- 1 | hi 2 | {echo hi} 0 hi leave 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/18_control: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/20_ddigit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/36_wordchar: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/38_xdigit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar () 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/4_class: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ([axe]) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alnum-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alnum-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alpha-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-alpha-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ascii-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ascii-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-class-oo-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-control-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-control-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ddigit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ddigit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-digit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-digit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-graph-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-graph-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-lower-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-lower-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-notahead-critcl-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-notahead-oo-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-notahead-snit-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-pkleene-critcl-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-pkleene-oo-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-pkleene-snit-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-print-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-print-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-punct-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-punct-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-range-oo-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-space-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-space-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alnum-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alnum-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alpha-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alpha-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ascii-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ascii-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ddigit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-digit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-digit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-dot-container-res/0_none: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 dot} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-graph-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-graph-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-lower-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-lower-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-notahead-oo-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-pkleene-oo-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-print-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-print-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-punct-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-punct-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-space-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-space-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-upper-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-upper-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-xdigit-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-upper-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-upper-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-wordchar-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-xdigit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-xdigit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/7_kleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'*) 2 | END; 3 | -------------------------------------------------------------------------------- /support/devel/sak/old/topic.txt: -------------------------------------------------------------------------------- 1 | old Help for the existing command set. 2 | -------------------------------------------------------------------------------- /.fossil-settings/ignore-glob: -------------------------------------------------------------------------------- 1 | M 2 | MSG* 3 | X.* 4 | _work 5 | modules/tcllibc 6 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/11_continuation1: -------------------------------------------------------------------------------- 1 | [foo x \ 2 | y] 3 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/17_text_multiline: -------------------------------------------------------------------------------- 1 | a b c 2 | d e f 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/export/format/json.inc: -------------------------------------------------------------------------------- 1 | [require textutil::adjust] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/export/format/text.inc: -------------------------------------------------------------------------------- 1 | [require doctools::text] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/bad_command: -------------------------------------------------------------------------------- 1 | [key][comment {arguments missing}] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/10_vsetvarerr: -------------------------------------------------------------------------------- 1 | [vset [include bogus] b] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/11_vsetvalueerr: -------------------------------------------------------------------------------- 1 | [vset a [include bogus]] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/25_nobeginend: -------------------------------------------------------------------------------- 1 | [key A] 2 | [key B] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/text/1_nokeys: -------------------------------------------------------------------------------- 1 | KWIC -- INDEX 2 | ============= -------------------------------------------------------------------------------- /modules/doctools2toc/include/export/format/json.inc: -------------------------------------------------------------------------------- 1 | [require textutil::adjust] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/export/format/text.inc: -------------------------------------------------------------------------------- 1 | [require doctools::text] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/bad_command: -------------------------------------------------------------------------------- 1 | [item][comment {arguments missing}] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/05_nestingbad1: -------------------------------------------------------------------------------- 1 | [toc_begin a [vset b c]] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/10_vsetvarerr: -------------------------------------------------------------------------------- 1 | [vset [include bogus] b] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/11_vsetvalueerr: -------------------------------------------------------------------------------- 1 | [vset a [include bogus]] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [toc_end] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/serial-print/1_empty: -------------------------------------------------------------------------------- 1 | doctools::toc TOC TOC 2 | -------------------------------------------------------------------------------- /modules/json/tests/glossary.sort: -------------------------------------------------------------------------------- 1 | dict * {dict GlossDiv {dict GlossList {list dict}}} -------------------------------------------------------------------------------- /modules/pt/include/import/format/json.inc: -------------------------------------------------------------------------------- 1 | [require pt::peg] 2 | [require json] 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/0_sequence: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a' 'b' 'c') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/10_kleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'* 'b') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/41_sym-dot: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- .; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/42_optional: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ("have"? "not") 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/6_range: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ("0x" [A-F]) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/8_pkleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'+ 'b') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-class-critcl-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-class-snit-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-control-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-control-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ddigit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-notahead-container-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-pkleene-container-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-range-critcl-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-range-snit-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-container-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-critcl-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-oo-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-oo-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-snit-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-snit-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alnum-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alnum-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alpha-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-alpha-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 alpha} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ascii-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ascii-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ascii} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-class-oo-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-control-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-control-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-control-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ddigit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ddigit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-digit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-digit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 digit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-graph-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-graph-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 graph} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-lower-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-lower-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 lower} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-notahead-critcl-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-notahead-snit-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-pkleene-critcl-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-pkleene-snit-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-print-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-print-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 print} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-punct-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-punct-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 punct} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-range-oo-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-oo-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-space-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-space-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 space} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-upper-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-upper-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 upper} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-wordchar-oo-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-wordchar-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-xdigit-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-xdigit-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-wordchar-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-wordchar-snit-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-xdigit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/ast_serial/2_tree: -------------------------------------------------------------------------------- 1 | X 10 20 {{} 10 10} {Y 12 15} {{} 20 20} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/6_optional: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'?) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/8_pkleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'+) 2 | END; 3 | -------------------------------------------------------------------------------- /support/devel/sak/validate/topic.txt: -------------------------------------------------------------------------------- 1 | validate Validate modules and packages 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/12_continuation2: -------------------------------------------------------------------------------- 1 | [foo x "y \ 2 | z"] 3 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/ok/in/13_continuation3: -------------------------------------------------------------------------------- 1 | [foo x {y \ 2 | z}] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/import/config/json.inc: -------------------------------------------------------------------------------- 1 | [include ../../format/json.inc] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/05_nestingbad1: -------------------------------------------------------------------------------- 1 | [index_begin a [vset b c]] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/06_nestingbad2: -------------------------------------------------------------------------------- 1 | [index_begin I [manpage F T]] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/15_incbadeof: -------------------------------------------------------------------------------- 1 | [include unexpected_eof] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/16_incbadchar: -------------------------------------------------------------------------------- 1 | [include unexpected_char] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/22_noend2: -------------------------------------------------------------------------------- 1 | [index_begin A B] 2 | [key A] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json/01_tag: -------------------------------------------------------------------------------- 1 | { 2 | "FOO" : { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/serial-print/1_nokeys: -------------------------------------------------------------------------------- 1 | doctools::idx KWIC INDEX 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/unexpected_char: -------------------------------------------------------------------------------- 1 | [bad syntax in include file 2 | 2] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/import/config/json.inc: -------------------------------------------------------------------------------- 1 | [include ../../format/json.inc] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/06_nestingbad2: -------------------------------------------------------------------------------- 1 | [toc_begin I [item F L D]] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/15_incbadeof: -------------------------------------------------------------------------------- 1 | [include unexpected_eof] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/16_incbadchar: -------------------------------------------------------------------------------- 1 | [include unexpected_char] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json/01_tag: -------------------------------------------------------------------------------- 1 | { 2 | "FOO" : { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/unexpected_char: -------------------------------------------------------------------------------- 1 | [bad syntax in include file 2 | 2] 3 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/param.inc: -------------------------------------------------------------------------------- 1 | [require pt::peg] 2 | [require pt::pe] 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/46_ahead: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ( + &'=') 2 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ahead-oo-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ahead-snit-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-container-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{t p}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-container-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {{t e}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-container-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 3 {{t i}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-range-container-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-container-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{t c}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sequence-critcl-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-container-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{t p}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-container-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 3 {{t i}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-class-critcl-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-class-snit-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{cl axe}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-control-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 control} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ddigit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 ddigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-notahead-container-res/0_keyword: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 6 alnum} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-pkleene-container-res/0_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-range-critcl-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-range-snit-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-container-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{t c}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-container-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-critcl-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-oo-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-snit-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-snit-res/1_b: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-wordchar-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-wordchar-critcl-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-xdigit-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 xdigit} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-wordchar-container-res/0_outside: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 wordchar} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/4_choice: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ([abc]) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/5_sequence: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('abc') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/6_optional: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'?) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/7_kleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'*) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/8_pkleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a'+) 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/11_epsilon: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a' / '') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/5_sequence: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a' 'b' 'c') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/import/config/docidx.inc: -------------------------------------------------------------------------------- 1 | [include ../../format/docidx.inc] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/08_toomanyargs: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX _bogus_] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/wiki-list/1_nokeys: -------------------------------------------------------------------------------- 1 | **KWIC -- INDEX** 2 | 3 | <> 4 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/import/config/doctoc.inc: -------------------------------------------------------------------------------- 1 | [include ../../format/doctoc.inc] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/22_noend2: -------------------------------------------------------------------------------- 1 | [toc_begin A B] 2 | [item F L D] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/25_nobeginend: -------------------------------------------------------------------------------- 1 | [item F L D] 2 | [item F L' D'] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/29_badredef2: -------------------------------------------------------------------------------- 1 | {{} {53 66} 3 15 doctoc/redef LABEL} -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc-aligned/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [toc_end] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc-compact/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [toc_end] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc-indalign/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [toc_end] -------------------------------------------------------------------------------- /modules/pt/include/export/format/json.inc: -------------------------------------------------------------------------------- 1 | [require pt::peg] 2 | [require json::write] 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/13_sym-alnum: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/15_sym-alpha: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/17_sym-ascii: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/21_sym-ddigit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/23_sym-digit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/25_sym-graph: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/27_sym-lower: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/29_sym-print: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/31_sym-punct: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/33_sym-space: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/35_sym-upper: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/39_sym-xdigit: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/5_sym-class: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- [axe]; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ahead-container-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ahead-critcl-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-container-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a} {t d}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ahead-critcl-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ahead-oo-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ahead-snit-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-container-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {{t e}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-range-container-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 2 {{.. A F}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-sequence-critcl-res/0_abe: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str abc}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/ok-ticket-4a4e443ce9-res/0_test: -------------------------------------------------------------------------------- 1 | eos 0 3 {ex 0 1 {X 1 1}} {ex 3 3} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg-fused/11_epsilon: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a' / '') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/4_choice: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('a' / 'b' / 'c') 2 | END; 3 | -------------------------------------------------------------------------------- /idoc/www/image/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/flow.png -------------------------------------------------------------------------------- /modules/clay/build/footer.txt: -------------------------------------------------------------------------------- 1 | [vset CATEGORY oo] 2 | [include ../common-text/feedback.inc] 3 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/wiki/00: -------------------------------------------------------------------------------- 1 | 2 | Table of Contents '''TOC''' 3 | '''Test''' 4 | 5 | 6 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out-ec/1_command: -------------------------------------------------------------------------------- 1 | doctools::tcl::parse char 4 1 4 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/24_earlyend: -------------------------------------------------------------------------------- 1 | {{} {31 33} 3 4 docidx/key/syntax {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/26_latekey: -------------------------------------------------------------------------------- 1 | {{} {26 28} 2 4 docidx/key/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX] 2 | [index_end] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/21_noend1: -------------------------------------------------------------------------------- 1 | {{} {1 9} 1 10 doctoc/toc_end/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/24_earlyend: -------------------------------------------------------------------------------- 1 | {{} {27 30} 3 5 doctoc/item/syntax {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/28_badredef: -------------------------------------------------------------------------------- 1 | {{} {53 56} 3 5 doctoc/redef LABEL} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/19_duplabel: -------------------------------------------------------------------------------- 1 | error in serialization: duplicate labels -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc-indented/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [toc_end] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/doctoc-ultracompact/1_empty: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC][toc_end] 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/serial/1_empty: -------------------------------------------------------------------------------- 1 | doctools::toc {items {} label TOC title TOC} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/11_sym-kleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- 'a'* 'b'; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/19_sym-control: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/37_sym-wordchar: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- ; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/7_sym-range: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- "0x" [A-F]; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/9_sym-pkleene: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- 'a'+ 'b'; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-class-container-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a} {t e} {t x}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-ahead-container-res/0_notmatch: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 4 {alnum {t =}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-container-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a} {t d}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-class-container-res/0_beta: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{t a} {t e} {t x}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ticket-3ed39a451f-oo-res/0_tinyProg: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 50 {space {t {;}}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ticket-3ed39a451f-snit-res/0_tinyProg: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 50 {space {t {;}}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/7_kleene: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {* {t a}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/8_pkleene: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {+ {t a}}} -------------------------------------------------------------------------------- /embedded/md/image/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/flow.png -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- 1 | This directory contains example applications using the facilities of 2 | tcllib. 3 | -------------------------------------------------------------------------------- /modules/doctools/tests/idx/wiki/01: -------------------------------------------------------------------------------- 1 | Index '''KWIC''' 2 | '''Test''' 3 | 4 | '''lorem''': ipsum 5 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/toc/00: -------------------------------------------------------------------------------- 1 | [comment { -- empty toc }] 2 | [toc_begin TOC Test] 3 | [toc_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out-ec/2_unexpected_eof: -------------------------------------------------------------------------------- 1 | doctools::tcl::parse eof 4 1 4 2 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out-ec/3_unexpected_char: -------------------------------------------------------------------------------- 1 | doctools::tcl::parse eof 8 1 8 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/01_nonwhitespace1: -------------------------------------------------------------------------------- 1 | regular text is not allowed in index files -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/01_nonwhitespace1: -------------------------------------------------------------------------------- 1 | {{} {0 41} 1 42 docidx/plaintext {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/02_nonwhitespace2: -------------------------------------------------------------------------------- 1 | {{} {1 4} 1 5 docidx/plaintext {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | {{} {1 3} 1 4 docidx/cmd/illegal foo} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/04_illegalcmd2: -------------------------------------------------------------------------------- 1 | {{} {7 9} 1 10 docidx/cmd/illegal foo} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/10_vsetvarerr: -------------------------------------------------------------------------------- 1 | {{} {7 13} 1 14 docidx/cmd/nested include} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/12_incerror: -------------------------------------------------------------------------------- 1 | {{} {10 13} 1 14 docidx/cmd/nested vset/2} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/14_incempty: -------------------------------------------------------------------------------- 1 | {{} {0 0} 1 0 docidx/index_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/17_badempty: -------------------------------------------------------------------------------- 1 | {{} {0 0} 1 0 docidx/index_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/18_nobegin: -------------------------------------------------------------------------------- 1 | {{} {1 9} 1 10 docidx/index_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/21_noend1: -------------------------------------------------------------------------------- 1 | {{} {1 11} 1 12 docidx/index_end/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/22_noend2: -------------------------------------------------------------------------------- 1 | {{} {19 21} 2 4 docidx/index_end/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | error on line 1.5: Unknown variable "a" 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/26_latekey: -------------------------------------------------------------------------------- 1 | error on line 2.4: Expected [key], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/01_tag: -------------------------------------------------------------------------------- 1 | error in serialization: bad type tag "FOO" 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json/02_cshort: -------------------------------------------------------------------------------- 1 | { 2 | "doctools::idx" : { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx-aligned/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX] 2 | [index_end] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx-compact/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX] 2 | [index_end] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx-indalign/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX] 2 | [index_end] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx-ultracompact/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX][index_end] 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/nroff-inlined/1_nokeys: -------------------------------------------------------------------------------- 1 | .TH KWIC 2 | .SH INDEX 3 | INDEX 4 | .RS 5 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/01_nonwhitespace1: -------------------------------------------------------------------------------- 1 | regular text is not allowed in toc files -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/08_toomanyargs: -------------------------------------------------------------------------------- 1 | [toc_begin TOC {Table Of Contents} _bogus_] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/01_nonwhitespace1: -------------------------------------------------------------------------------- 1 | {{} {0 39} 1 40 doctoc/plaintext {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/02_nonwhitespace2: -------------------------------------------------------------------------------- 1 | {{} {1 4} 1 5 doctoc/plaintext {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | {{} {1 3} 1 4 doctoc/cmd/illegal foo} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/04_illegalcmd2: -------------------------------------------------------------------------------- 1 | {{} {7 9} 1 10 doctoc/cmd/illegal foo} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/06_nestingbad2: -------------------------------------------------------------------------------- 1 | {{} {14 17} 1 18 doctoc/cmd/nested item} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/10_vsetvarerr: -------------------------------------------------------------------------------- 1 | {{} {7 13} 1 14 doctoc/cmd/nested include} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/12_incerror: -------------------------------------------------------------------------------- 1 | {{} {10 13} 1 14 doctoc/cmd/nested vset/2} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/14_incempty: -------------------------------------------------------------------------------- 1 | {{} {0 0} 1 0 doctoc/toc_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/17_badempty: -------------------------------------------------------------------------------- 1 | {{} {0 0} 1 0 doctoc/toc_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/18_nobegin: -------------------------------------------------------------------------------- 1 | {{} {1 7} 1 8 doctoc/toc_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/20_latebegin: -------------------------------------------------------------------------------- 1 | {{} {1 4} 1 5 doctoc/toc_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/22_noend2: -------------------------------------------------------------------------------- 1 | {{} {17 20} 2 5 doctoc/toc_end/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | error on line 1.5: Unknown variable "a" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/28_badredef: -------------------------------------------------------------------------------- 1 | error on line 3.5: Bad reuse of label "LABEL" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/01_tag: -------------------------------------------------------------------------------- 1 | error in serialization: bad type tag "FOO" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/20_duplabel2: -------------------------------------------------------------------------------- 1 | error in serialization: duplicate labels -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/21_duplabel3: -------------------------------------------------------------------------------- 1 | error in serialization: duplicate labels -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json/02_cshort: -------------------------------------------------------------------------------- 1 | { 2 | "doctools::toc" : { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /modules/json/tests/menu2.sort: -------------------------------------------------------------------------------- 1 | dict * {dict items {list 0 dict 1 dict 3 dict 4 dict 6 dict 7 dict}} 2 | -------------------------------------------------------------------------------- /modules/practcl/build/footer.txt: -------------------------------------------------------------------------------- 1 | [vset CATEGORY practcl] 2 | [include ../common-text/feedback.inc] 3 | -------------------------------------------------------------------------------- /modules/pt/include/example/expr_pe.inc: -------------------------------------------------------------------------------- 1 | [example { 2 | Expression <- Term (AddOp Term)* 3 | }] 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/1_sym-sequence: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- 'a' 'b' 'c'; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/2_choice: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar ('alpha' / 'anumeric' / 'digit') 2 | END; 3 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/43_sym-optional: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- "have"? "not"; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ticket-3ed39a451f-container-res/0_tinyProg: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 50 {space {t {;}}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-ticket-3ed39a451f-critcl-res/0_tinyProg: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 50 {space {t {;}}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/6_optional: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {? {t a}}} -------------------------------------------------------------------------------- /support/devel/sak/doc/topic.txt: -------------------------------------------------------------------------------- 1 | doc Generate documentation in various formats, and/or validate it. 2 | -------------------------------------------------------------------------------- /support/devel/sak/review/topic.txt: -------------------------------------------------------------------------------- 1 | review Interactively review changes since the last release. 2 | -------------------------------------------------------------------------------- /idoc/www/image/expr_ast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/expr_ast.png -------------------------------------------------------------------------------- /modules/dicttool/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | package ifneeded dicttool 1.2 [list source [file join $dir dicttool.tcl]] 2 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/tmml/00: -------------------------------------------------------------------------------- 1 | 2 | Test 3 | 4 | 5 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/import/format/json.inc: -------------------------------------------------------------------------------- 1 | [require doctools::idx::structure] 2 | [require json] -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/20_latebegin: -------------------------------------------------------------------------------- 1 | [key X] 2 | [index_begin A B] 3 | [index_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/05_nestingbad1: -------------------------------------------------------------------------------- 1 | {{} {16 19} 1 20 docidx/cmd/nested vset/2} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/06_nestingbad2: -------------------------------------------------------------------------------- 1 | {{} {16 22} 1 23 docidx/cmd/nested manpage} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/11_vsetvalueerr: -------------------------------------------------------------------------------- 1 | {{} {9 15} 1 16 docidx/cmd/nested include} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/20_latebegin: -------------------------------------------------------------------------------- 1 | {{} {1 3} 1 4 docidx/index_begin/missing {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/21_noend1: -------------------------------------------------------------------------------- 1 | error on line 1.12: Expected [index_end], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/22_noend2: -------------------------------------------------------------------------------- 1 | error on line 2.4: Expected [index_end], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/13_rtag: -------------------------------------------------------------------------------- 1 | error in serialization: bad reference tag "foo" 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/docidx-indented/1_nokeys: -------------------------------------------------------------------------------- 1 | [index_begin KWIC INDEX] 2 | [index_end] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/import/format/json.inc: -------------------------------------------------------------------------------- 1 | [require doctools::toc::structure] 2 | [require json] -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/20_latebegin: -------------------------------------------------------------------------------- 1 | [item F L D] 2 | [toc_begin A B] 3 | [toc_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/05_nestingbad1: -------------------------------------------------------------------------------- 1 | {{} {14 17} 1 18 doctoc/cmd/nested vset/2} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/11_vsetvalueerr: -------------------------------------------------------------------------------- 1 | {{} {9 15} 1 16 doctoc/cmd/nested include} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/26_nodivbegin: -------------------------------------------------------------------------------- 1 | {{} {21 32} 2 13 doctoc/division_end/syntax {}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/14_incempty: -------------------------------------------------------------------------------- 1 | error on line 1.0: Expected [toc_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/17_badempty: -------------------------------------------------------------------------------- 1 | error on line 1.0: Expected [toc_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/18_nobegin: -------------------------------------------------------------------------------- 1 | error on line 1.8: Expected [toc_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/21_noend1: -------------------------------------------------------------------------------- 1 | error on line 1.10: Expected [toc_end], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/22_noend2: -------------------------------------------------------------------------------- 1 | error on line 2.5: Expected [toc_end], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/29_badredef2: -------------------------------------------------------------------------------- 1 | error on line 3.15: Bad reuse of label "LABEL" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/08_etag: -------------------------------------------------------------------------------- 1 | error in serialization: bad element tag "FOO" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/nroff-inlined/1_empty: -------------------------------------------------------------------------------- 1 | .TH TOC 2 | .SH "TABLE OF CONTENTS" 3 | TOC 4 | -------------------------------------------------------------------------------- /modules/httpwget/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | package ifneeded http::wget 0.2.1 [list source [file join $dir wget.tcl]] 2 | -------------------------------------------------------------------------------- /modules/inifile/test-assets/sample.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | key=value 3 | key2=value2 4 | 5 | ; .... 6 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/1000.info.txt: -------------------------------------------------------------------------------- 1 | version 1.1 units 1 xdensity 96 ydensity 96 xthumb 0 ythumb 0 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/47_sym-ahead: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- + &'='; 3 | END; -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_json-ultracompact/6_optional: -------------------------------------------------------------------------------- 1 | {"pt::grammar::peg":{"rules":{},"start":"? {t a}"}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_json-ultracompact/7_kleene: -------------------------------------------------------------------------------- 1 | {"pt::grammar::peg":{"rules":{},"start":"* {t a}"}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_json-ultracompact/8_pkleene: -------------------------------------------------------------------------------- 1 | {"pt::grammar::peg":{"rules":{},"start":"+ {t a}"}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/11_epsilon: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {/ {t a} epsilon}} -------------------------------------------------------------------------------- /modules/textutil/build/alternates/check.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | tclsh check/check.tcl i.*/wcswidth.tcl 4 | -------------------------------------------------------------------------------- /embedded/md/image/expr_ast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/expr_ast.png -------------------------------------------------------------------------------- /examples/httpd/htdocs/plume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/examples/httpd/htdocs/plume.png -------------------------------------------------------------------------------- /idoc/www/image/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/architecture.png -------------------------------------------------------------------------------- /idoc/www/image/gen_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/gen_options.png -------------------------------------------------------------------------------- /modules/base64/yencode.test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/base64/yencode.test.out -------------------------------------------------------------------------------- /modules/doctools/tests/idx/idx/00: -------------------------------------------------------------------------------- 1 | [comment { -- basic empty }] 2 | [index_begin KWIC Test] 3 | [index_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out/2_unexpected_eof: -------------------------------------------------------------------------------- 1 | Unexpected end of input in Command at line 1.4 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/docidx/24_earlyend: -------------------------------------------------------------------------------- 1 | [index_begin A B] 2 | [index_end] 3 | [key X] 4 | 5 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/07_wrongargs: -------------------------------------------------------------------------------- 1 | {{} {1 11} 1 12 docidx/cmd/wrongargs {index_begin 2}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | {{} {1 4} 1 5 docidx/vset/varname/unknown a} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/13_incnotfound: -------------------------------------------------------------------------------- 1 | {{} {1 7} 1 8 docidx/include/path/notfound bogus} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/13_incnotfound: -------------------------------------------------------------------------------- 1 | error on line 1.8: Include file "bogus" not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/14_incempty: -------------------------------------------------------------------------------- 1 | error on line 1.0: Expected [index_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/17_badempty: -------------------------------------------------------------------------------- 1 | error on line 1.0: Expected [index_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/18_nobegin: -------------------------------------------------------------------------------- 1 | error on line 1.10: Expected [index_begin], not found 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/24_earlyend: -------------------------------------------------------------------------------- 1 | error on line 3.4: Unexpected [key], not allowed here 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/24_earlyend: -------------------------------------------------------------------------------- 1 | [toc_begin A B] 2 | [toc_end] 3 | [item F L D] 4 | 5 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/07_wrongargs: -------------------------------------------------------------------------------- 1 | {{} {1 9} 1 10 doctoc/cmd/wrongargs {toc_begin 2}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/09_vsetvarunknown: -------------------------------------------------------------------------------- 1 | {{} {1 4} 1 5 doctoc/vset/varname/unknown a} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/13_incnotfound: -------------------------------------------------------------------------------- 1 | {{} {1 7} 1 8 doctoc/include/path/notfound bogus} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/13_incnotfound: -------------------------------------------------------------------------------- 1 | error on line 1.8: Include file "bogus" not found 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/24_earlyend: -------------------------------------------------------------------------------- 1 | error on line 3.5: Unexpected [item], not allowed here 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/10_missid: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "id" 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7898.info.txt: -------------------------------------------------------------------------------- 1 | version 1.1 units 1 xdensity 180 ydensity 180 xthumb 0 ythumb 0 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7917.info.txt: -------------------------------------------------------------------------------- 1 | version 1.1 units 1 xdensity 180 ydensity 180 xthumb 0 ythumb 0 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950.info.txt: -------------------------------------------------------------------------------- 1 | version 1.1 units 1 xdensity 180 ydensity 180 xthumb 0 ythumb 0 2 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/container.inc: -------------------------------------------------------------------------------- 1 | [require pt::peg] 2 | [require text::write] 3 | [require char] 4 | -------------------------------------------------------------------------------- /modules/pt/include/export/format/peg.inc: -------------------------------------------------------------------------------- 1 | [require pt::peg] 2 | [require pt::pe] 3 | [require text::write] 4 | -------------------------------------------------------------------------------- /modules/pt/include/format/json.inc: -------------------------------------------------------------------------------- 1 | 2 | [section {JSON Grammar Exchange Format}] 3 | [include json_core.inc] 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-oo-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-oo-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-oo-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-oo-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-snit-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-snit-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-snit-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/4_choice: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {/ {t a} {t b} {t c}}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial-canonical/5_sequence: -------------------------------------------------------------------------------- 1 | pt::grammar::peg {rules {} start {x {t a} {t b} {t c}}} -------------------------------------------------------------------------------- /embedded/md/image/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/architecture.png -------------------------------------------------------------------------------- /embedded/md/image/gen_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/gen_options.png -------------------------------------------------------------------------------- /idoc/www/image/arch_user_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/arch_user_app.png -------------------------------------------------------------------------------- /idoc/www/image/arch_user_pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/arch_user_pkg.png -------------------------------------------------------------------------------- /modules/base64/yencode.test.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/base64/yencode.test.data -------------------------------------------------------------------------------- /modules/doctools/tests/idx/markdown/index: -------------------------------------------------------------------------------- 1 | 2 | * [00.md](00.md) 3 | * [01.md](01.md) 4 | * [02.md](02.md) 5 | -------------------------------------------------------------------------------- /modules/doctools/tests/toc/markdown/index: -------------------------------------------------------------------------------- 1 | 2 | * [00.md](00.md) 3 | * [01.md](01.md) 4 | * [02.md](02.md) 5 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out/1_command: -------------------------------------------------------------------------------- 1 | Unexpected character '\n' in UnquotedString at line 1.4 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/ecode/08_toomanyargs: -------------------------------------------------------------------------------- 1 | {{} {1 11} 1 12 docidx/cmd/toomanyargs {index_begin 2}} 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/20_latebegin: -------------------------------------------------------------------------------- 1 | error on line 1.4: Expected [index_begin], not found 2 | 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/03_misslabel: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "label" 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/04_misstitle: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "title" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/26_nodivbegin: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [division_end] 3 | [toc_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/doctoc/31_nodivend: -------------------------------------------------------------------------------- 1 | [toc_begin TOC TOC] 2 | [division_start L F] 3 | [toc_end] 4 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/ecode/08_toomanyargs: -------------------------------------------------------------------------------- 1 | {{} {1 9} 1 10 doctoc/cmd/toomanyargs {toc_begin 2}} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/20_latebegin: -------------------------------------------------------------------------------- 1 | error on line 1.5: Expected [toc_begin], not found 2 | 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/03_misslabel: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "label" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/04_misstitle: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "title" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/05_missitems: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "items" 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/07_cshort2: -------------------------------------------------------------------------------- 1 | error in serialization: element list wrong, need exactly 2 -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/16_missitems2: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "items" 2 | -------------------------------------------------------------------------------- /modules/jpeg/test-assets/1000.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/jpeg/test-assets/1000.JPG -------------------------------------------------------------------------------- /modules/jpeg/test-assets/IMG_7950_none.info.txt: -------------------------------------------------------------------------------- 1 | version 1.1 units 1 xdensity 300 ydensity 300 xthumb 0 ythumb 0 2 | -------------------------------------------------------------------------------- /modules/oodialect/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | package ifneeded oo::dialect 0.3.4 [list source [file join $dir oodialect.tcl]] 2 | -------------------------------------------------------------------------------- /modules/pt/include/arch_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/pt/include/arch_core.png -------------------------------------------------------------------------------- /modules/pt/include/example/expr_pe_serial.inc: -------------------------------------------------------------------------------- 1 | [example { 2 | {x {n Term} {* {x {n AddOp} {n Term}}}} 3 | }] 4 | -------------------------------------------------------------------------------- /modules/pt/include/gen_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/pt/include/gen_options.png -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/def/3_sym-choice: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (N) 2 | N <- 'alpha' / 'anumeric' / 'digit'; 3 | END; 4 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-critcl-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-critcl-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-critcl-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-critcl-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-choice-snit-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-critcl-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-critcl-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-critcl-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-oo-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-oo-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-oo-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-oo-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-snit-res/0_aleph: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-snit-res/1_anumber: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-snit-res/2_digup: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/gr/fail-sym-choice-snit-res/3_other: -------------------------------------------------------------------------------- 1 | 1 {pt::rde 0 {{str alpha} {str anumeric} {str digit}}} 2 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_json-ultracompact/11_epsilon: -------------------------------------------------------------------------------- 1 | {"pt::grammar::peg":{"rules":{},"start":"/ {t a} epsilon"}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_json-ultracompact/4_choice: -------------------------------------------------------------------------------- 1 | {"pt::grammar::peg":{"rules":{},"start":"/ {t a} {t b} {t c}"}} -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_peg/9_ahead: -------------------------------------------------------------------------------- 1 | PEG a_pe_grammar (TEST) 2 | 3 | TEST <- &'a' IDENTIFIER ; 4 | 5 | END; 6 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial/6_optional: -------------------------------------------------------------------------------- 1 | pt::grammar::peg { 2 | rules {} 3 | start {? {t a}} 4 | } 5 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial/7_kleene: -------------------------------------------------------------------------------- 1 | pt::grammar::peg { 2 | rules {} 3 | start {* {t a}} 4 | } 5 | -------------------------------------------------------------------------------- /modules/pt/tests/data/ok/peg_serial/8_pkleene: -------------------------------------------------------------------------------- 1 | pt::grammar::peg { 2 | rules {} 3 | start {+ {t a}} 4 | } 5 | -------------------------------------------------------------------------------- /modules/valtype/include/k_iban.inc: -------------------------------------------------------------------------------- 1 | [keywords IBAN bank finance] 2 | [keywords {International Bank Account Number}] 3 | -------------------------------------------------------------------------------- /modules/valtype/include/k_usnpi.inc: -------------------------------------------------------------------------------- 1 | [keywords US-NPI NPI medicare] 2 | [keywords {National Provider Identifier}] 3 | -------------------------------------------------------------------------------- /embedded/md/image/arch_user_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/arch_user_app.png -------------------------------------------------------------------------------- /embedded/md/image/arch_user_pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/embedded/md/image/arch_user_pkg.png -------------------------------------------------------------------------------- /idoc/www/image/arch_core_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/arch_core_export.png -------------------------------------------------------------------------------- /idoc/www/image/arch_core_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/arch_core_import.png -------------------------------------------------------------------------------- /idoc/www/image/arch_core_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/idoc/www/image/arch_core_support.png -------------------------------------------------------------------------------- /modules/common-text/tls-security-notes.inc: -------------------------------------------------------------------------------- 1 | [section {TLS Security Considerations}] 2 | [include tls-security-text.inc] 3 | -------------------------------------------------------------------------------- /modules/doctools2base/tests/tcl_data/fail/out/3_unexpected_char: -------------------------------------------------------------------------------- 1 | Unexpected end of input in QuotedString at line 1.8 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/include/export/format/nroff.inc: -------------------------------------------------------------------------------- 1 | [require doctools::text] 2 | [require doctools::nroff::man_macros] 3 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/emsg/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | error on line 1.4: Illegal command "foo", not a docidx command 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/05_misskeywords: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "keywords" 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/fail/json-emsg/12_rargs: -------------------------------------------------------------------------------- 1 | error in serialization: reference list wrong, need exactly 2 2 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/nroff-external/1_nokeys: -------------------------------------------------------------------------------- 1 | .so man.macros 2 | .TH KWIC 3 | .SH INDEX 4 | INDEX 5 | .RS 6 | -------------------------------------------------------------------------------- /modules/doctools2idx/tests/data/ok/serial/1_nokeys: -------------------------------------------------------------------------------- 1 | doctools::idx {label KWIC keywords {} references {} title INDEX} 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/include/export/format/nroff.inc: -------------------------------------------------------------------------------- 1 | [require doctools::text] 2 | [require doctools::nroff::man_macros] 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/03_illegalcmd1: -------------------------------------------------------------------------------- 1 | error on line 1.4: Illegal command "foo", not a doctoc command 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/07_wrongargs: -------------------------------------------------------------------------------- 1 | error on line 1.10: Wrong#args for "toc_begin", need at least 2 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/emsg/26_nodivbegin: -------------------------------------------------------------------------------- 1 | error on line 2.13: Unexpected [division_end], not allowed here 2 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/11_misslabel2: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "label" 2 | 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/fail/json-emsg/12_missdesc: -------------------------------------------------------------------------------- 1 | error in serialization: missing expected key "desc" 2 | 3 | -------------------------------------------------------------------------------- /modules/doctools2toc/tests/data/ok/json-ultracompact/1_empty: -------------------------------------------------------------------------------- 1 | {"doctools::toc":{"items":[],"label":"TOC","title":"TOC"}} 2 | -------------------------------------------------------------------------------- /modules/fileutil/test-assets/p.ckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/fileutil/test-assets/p.ckout -------------------------------------------------------------------------------- /modules/png/test-assets/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi0g01.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi0g02.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi0g04.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi0g08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi0g16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi2c08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi2c16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi3p01.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi3p02.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi3p04.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi3p08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi4a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi4a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi6a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basi6a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn0g01.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn0g02.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn0g04.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn0g08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn0g16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn2c08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn2c16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn3p01.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn3p02.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn3p04.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn3p08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn4a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn4a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn6a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/basn6a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bgai4a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bgai4a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bgan6a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bgan6a16.png -------------------------------------------------------------------------------- /modules/png/test-assets/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bgbn4a08.png -------------------------------------------------------------------------------- /modules/png/test-assets/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcltk/tcllib/master/modules/png/test-assets/bggn4a16.png --------------------------------------------------------------------------------