| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-05-10 | resolves #4452 enclose reftext tag in article tag in DocBook output for man ↵ | Dan Allen | |
| page (PR #4453) | |||
| 2023-05-06 | resolves #4448 apply reftext substitutions to value of mantitle attribute in ↵ | Dan Allen | |
| DocBook output (PR #4449) | |||
| 2023-02-21 | add test to assert behavior when Document#register is called with ref that ↵ | Dan Allen | |
| is already registered | |||
| 2022-01-11 | don't overqualify types in test suite | Dan Allen | |
| 2021-11-18 | resolves #4206 process author or authors document attribute in document ↵ | Dan Allen | |
| header when implicit doctitle is absent (PR #4208) | |||
| 2021-10-22 | resolve #4192 honor :header_only option when parsing document with manpage ↵ | Dan Allen | |
| doctype (PR #4193) | |||
| 2021-08-17 | remove wip keyword from name of test [skip ci] | Dan Allen | |
| 2021-07-31 | omit_parentheses where possible in test code | Dan Allen | |
| 2021-06-09 | remove irrelevant unassertions from test suite | Dan Allen | |
| - a test already fails if an exception is thrown | |||
| 2021-06-08 | use assert_raises in test suite where possible | Dan Allen | |
| 2021-06-03 | use single level of indentation for method calls that wrap [skip ci] | Dan Allen | |
| 2021-05-31 | use appropriate assertions in test suite | Dan Allen | |
| - assert_equal instead of == - assert instead of assert_equal true - refute instead of assert_equal false - specify literal value as first argument to assert_equal | |||
| 2021-05-28 | remove excess empty lines in test suite; use multiple lines for class ↵ | Dan Allen | |
| definitions [skip ci] | |||
| 2021-05-27 | fix spaces and indentation in test suite | Dan Allen | |
| 2021-05-27 | fix invalid integer values in test suite | Dan Allen | |
| 2021-05-27 | remove excess spaces before value of Hash entry in test suite [skip ci] | Dan Allen | |
| 2021-05-25 | use single-quoted strings where possible in test suite | Dan Allen | |
| 2021-05-25 | use key? instead of has_key? in tests [skip ci] | Dan Allen | |
| 2021-05-25 | fix missing spaces when defining hash and array in test suite [skip ci] | Dan Allen | |
| 2021-04-30 | leave empty line after magic comment [skip ci] | Dan Allen | |
| 2021-04-18 | resolves #4024 suppress missing attribute warning when processing value for ↵ | Dan Allen | |
| doctitle attribute (PR #4025) suppress missing attribute warning when applying substitutions to implicit document title to assign to doctitle attribute author should assume there's an implicit attribute entry for doctitle directly after the document title (level-0 section title) | |||
| 2021-04-18 | verify attribute entry in document header can reference intrinsic doctitle ↵ | Dan Allen | |
| attribute | |||
| 2021-04-09 | resolves #3757 output all mannames in name section of HTML output for ↵ | Dan Allen | |
| manpage doctype (PR #4009) | |||
| 2021-04-09 | resolves #3997 rollback change for #3470; skip empty lines before processing ↵ | Dan Allen | |
| document header instead (PR #4002) | |||
| 2020-10-31 | resolves #3804 link the notitle and showtitle attributes (PR #3805) | Dan Allen | |
| 2020-10-31 | resolves #3513 apply max width to each top-level container instead of body ↵ | Dan Allen | |
| in HTML output (PR #3801) | |||
| 2020-10-31 | fix spelling error in test description | Dan Allen | |
| 2019-12-06 | resolves #3470 condense contents of AsciiDoc include file (PR #3502) | Dan Allen | |
| 2019-12-05 | fix misspelling in test descriptions | Dan Allen | |
| 2019-04-28 | resolves #3283 register images in catalog correctly (PR #3284) | Dan Allen | |
| - register method accepts image as string - register method reads value of imagesdir attribute from document | |||
| 2019-04-19 | set SOURCE_DATE_EPOCH when running tests | Dan Allen | |
| - set SOURCE_DATE_EPOCH when running tests to ensure it's properly managed - fix two tests that were failing when SOURCE_DATE_EPOCH was set | |||
| 2019-04-15 | use portability constants (CC_ALL, CC_ANY) in regular expressions defined in ↵ | Dan Allen | |
| DocBook converter - use CC_ANY to represent any character except a newline - align regexp for cover image with that of main parser | |||
| 2019-03-25 | remove unused reftexts catalog entry assertions [skip ci] | Dan Allen | |
| 2019-03-22 | use symbol blocks where appropriate in test suite | Dan Allen | |
| 2019-03-21 | resolves #2441 substitute replacements in author values used in document ↵ | Dan Allen | |
| header (PR #3182) - substitute replacements in author values used in document header - require space after semi-colon that separates multiple authors | |||
| 2019-03-19 | resolves #2861 log dropped lines at info level when ↵ | Dan Allen | |
| attribute-missing=drop-line (PR #3170) | |||
| 2019-03-19 | resolves #3163 drop indexterms table from document catalog (PR #3169) | Dan Allen | |
| 2019-03-18 | when resolving a convert method for a node, only consider methods prefixed ↵ | Dan Allen | |
| with convert_ (PR #3150) - prefix convert methods on built-in converters with convert_ - drop leading underscore from helper methods on built-in converters - add adapter for older converters that rely on unprefixed convert methods - use optimize convert handler dispatcher in HTML 5 converter - only pass options to convert handler method if value is non-nil - update RDoc | |||
| 2019-03-14 | resolves #1444 rename header_footer option to standalone (PR #3146) | Dan Allen | |
| * still honor header_footer option as fallback for backwards compatibility | |||
| 2019-03-01 | resolves #3114 log warning if footnoteref macro is found and compat mode is ↵ | Dan Allen | |
| not enabled (PR #3115) | |||
| 2019-02-28 | resolves #3106 apply header subs when assigning doctitle back to doctitle ↵ | Dan Allen | |
| attribute (PR #3107) - apply header subs to doctitle attribute so it can safely be referenced in page - simplify logic that checks for doctitle override | |||
| 2019-02-19 | resolves #3084 only store :refs, not :ids, in document catalog (PR #3079) | Dan Allen | |
| * remove the logic that registers entries in :ids table of the document catalog * don't attempt to compute the reftext when registering an xref (as this information is available from the referenced node and can be retrieved on demnd) * add a Document#resolve_id method to look up ID by reference text (reftext or title); cache the result of lookups once parsing is complete * always look for existing IDs using :refs table (when checking for a duplicate or whether a target exists) * leave the :ids table empty to avoid breaking existing programs and extensions * update tests * add test to verify :ids table is always empty | |||
| 2019-02-13 | resolves #1720 add header docinfo insertion slot (PR #3068) | Dan Allen | |
| * add docinfo insertion slot for header location to built-in converters | |||
| 2019-02-10 | resolves #3064 compute docyear and docdatetime from docdate and doctime (PR ↵ | Guillaume Grossetie | |
| #3065) | |||
| 2019-02-10 | use indented (squiggly) heredoc strings in document_test | Dan Allen | |
| 2019-02-10 | resolves #3054 never mutate strings; add `frozen_string_literal: true` ↵ | Dan Allen | |
| comment to source files (PR #3055) - replace gsub! and sub! with gsub and sub, respectively - add `frozen_string_literal: true` magic comment to all Ruby source files - see https://www.mikeperham.com/2018/02/28/ruby-optimization-with-one-magic-comment/ | |||
| 2019-02-05 | resolves #3005 remove the converter for the docbook45 backend (PR #3040) | Dan Allen | |
| - remove the DocBook45Converter class - remove accomodations in DocBook5Converter for DocBook 4.5 - don't register the docbook45 backend name in the converter registry - drop docbook45 from the backend CLI option values - don't mention DocBook 4.5 in the man page - don't mention DocBook 4.5 in the CLI usage statement - update tests to use DocBook 5 instead of DocBook 4.5 | |||
| 2019-02-04 | use do..end syntax for multiline blocks in test suite | Dan Allen | |
| 2019-01-15 | resolves #3017 insert user docinfo after built-in docinfo (PR #3019) | Dan Allen | |
| 2019-01-14 | resolves #3011 propagate document ID to DocBook output (PR #3012) | Dan Allen | |
