summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* improve __main__.pyMatthew Peveler2021-01-281-1/+4
|
* update version to 10.0.0a1Matthew Peveler2021-01-282-2/+2
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* fix mispelling in CHANGELOGMatthew Peveler2021-01-281-1/+1
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* remove invalid confpath targetMatthew Peveler2021-01-281-14/+3
|
* fix failing test suite failuresMatthew Peveler2021-01-281-3/+2
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* update README to markdown to use within pypiMatthew Peveler2021-01-284-2/+49
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* use pip/setup.py to install asciidocMatthew Peveler2021-01-282-18/+6
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* remove asciidocapi testsMatthew Peveler2021-01-281-1/+0
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* move asciidoc into proper python module structureMatthew Peveler2021-01-2896-380/+248
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Fix grammar on latex backend section on website index (#166)Matthew Peveler2021-01-271-1/+1
|
* Update release date for 9.0.5 (#165)9.0.5Matthew Peveler2021-01-232-2/+2
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* cut 9.0.5 release (#158)Matthew Peveler2021-01-234-4/+12
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Improve asciidoc.org link rot (#160)Christopher Kent Hoadley2020-12-141-62/+22
|
* update to deadsnakes/action@2.0.2 (#157)Matthew Peveler2020-12-121-1/+1
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* improve indentationMatthew Peveler2020-12-122-29/+49
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Use config newline setting in system attribute evaluation (#155)Christopher Kent Hoadley2020-12-126-1/+1640
| | | | | | | Problems seen with inconsistent newlines in the Table Of Contents HTML pulled in from the configuration file. While the rest of the contents in the resulting HTML file honored the newline style configured by the user, this specific snippet of HTML always used "\r\n". This root of this problem existed for some time, but in earlier versions, the newline style was always "\n". The symptoms changed as a side effect of the issue "Extra line padding in source and literal blocks" (#139). In this issue, the newline style changed to "\r\n", and was noticed by users. Change the System Attribute Evaluation function to use the newline setting from the global "config" instead of using the default newline.
* Update deadsnakes GH action in test suite (#156)Matthew Peveler2020-12-051-1/+1
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Fix incorrect attribution for Python version check in changelog (#153)Christopher Kent Hoadley2020-11-051-1/+1
|
* cut v9.0.4 release (#150)9.0.4Matthew Peveler2020-10-304-4/+15
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Add 3.10-dev test target (#152)Matthew Peveler2020-10-301-1/+1
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Properly detect and compare Python version 3.10+ (#151)Miro HronĨok2020-10-301-3/+3
|
* remove dev designation from 3.9 for testingMatthew Peveler2020-10-201-1/+2
|
* update to deadsnakes/python@v2 for test workflowMatthew Peveler2020-10-201-2/+2
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* fix Plugin.list method using python2 syntaxMatthew Peveler2020-10-202-1/+2
|
* v9.0.3 release (#148)9.0.3Matthew Peveler2020-10-164-4/+12
|
* test newlines as part of test suite (#147)Matthew Peveler2020-10-052-10/+15
| | | | | | | * test newlines as part of test suite Signed-off-by: Matthew Peveler <matt.peveler@gmail.com> * fix failing toc tests
* set test generated files line endings as ignored by gitMatthew Peveler2020-10-031-0/+3
|
* re-generate expected test output with proper newlines (#146)Matthew Peveler2020-10-03261-127358/+127358
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* print source file when updating test data (#145)Matthew Peveler2020-10-031-1/+6
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* use DEFAULT_NEWLINE constant for line ending for generated test sources (#144)Matthew Peveler2020-09-061-1/+2
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* define default newline as global constant for asciidoc (#143)Matthew Peveler2020-08-261-5/+5
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* add simple CI test for running asciidoc on windows (#142)Matthew Peveler2020-08-261-0/+18
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* remove extraneous parantheses in print statement (#141)Matthew Peveler2020-08-221-10/+10
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Disable universal newlines for writer (#140)Christopher Kent Hoadley2020-08-211-1/+1
| | | | | | | Problems noticed on Windows where preformatted blocks (e.g. source & literal blocks) have an extra space between each line. In fact, *all* lines have this extra space, but it is only noticeable on preformatted blocks where the extra line spacing is visible. By default, Python 3 has universal newlines mode enabled, which makes outputting files with various line endings simpler. However, AsciiDoc is already handling this internally, so we ended up with extra lines being inserted. In the actual output file, every line on Windows ended with "/r/r/n". This was not a problem on systems that used UNIX line endings. Solve this by disabling universal newlines when outputting the file.
* Add testasciidoc.1 to MANIFEST.in for release assets (#138)Matthew Peveler2020-08-161-2/+1
|
* auto clean-up generated artifacts from test suite (#135)Matthew Peveler2020-08-1317-20/+209
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* simplify timestamp mocking in testasciidoc.py (#132)Eli Schwartz2020-08-051-24/+2
| | | | | | | | | $SOURCE_DATE_EPOCH is now the officially supported mechanism for guaranteeing stable output timestamps, which means we can simply run the tests using that, and drop some code. This also fixes #131 since the variable would override the mocked time, resulting in tests failing if $SOURCE_DATE_EPOCH was set in the environment (e.g. for linux distro packaging).
* add trademark notice to README and website footer (#130)Dan Allen2020-07-212-1/+4
|
* 9.0.2 release9.0.2Matthew Peveler2020-07-214-4/+9
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* Revert "Moving a2x from optparse to argparse (#34)" (#128)Matthew Peveler2020-07-211-36/+39
| | | | This reverts commit e3fd0a7de6fe0f24f8e671720bf3c9ed9c18005e.
* Migrate from Travis to GitHub action for testing (#126)Matthew Peveler2020-06-283-52/+64
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* add GH action step for brew bump-formula-prMatthew Peveler2020-06-271-0/+8
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* fix dist target failing when /build docker mountedMatthew Peveler2020-06-261-1/+1
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* cut v9.0.1 release9.0.1Matthew Peveler2020-06-264-4/+15
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* fix a2x failing on parsing encoding of html files (#125)Matthew Peveler2020-06-261-0/+2
| | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* update version to SNAPSHOTMatthew Peveler2020-06-241-1/+1
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* update dist tarball and zip to use top-level folderMatthew Peveler2020-06-042-4/+9
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* add 3.9-dev to travis test matrixMatthew Peveler2020-06-021-0/+5
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* simplify MANIFEST.in file for py and sh files9.0.0Matthew Peveler2020-06-021-4/+2
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
* fix release action workflow for next releaseMatthew Peveler2020-06-024-8/+9
| | | | Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>