summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #6 from leohemsted/historyHEADmasterLeo Hemsted2017-12-243-10/+7
|\ | | | | update history in docs
| * update history in docsLeo Hemsted2017-12-223-10/+7
|/
* Merge pull request #5 from leohemsted/finalize-2.0.1Leo Hemsted2017-12-201-1/+1
|\ | | | | release 2.0.1
| * release 2.0.1Leo Hemsted2017-12-201-1/+1
|/
* Merge pull request #4 from leohemsted/readmev2.0.1Leo Hemsted2017-12-201-5/+7
|\ | | | | add badges to readme and remove maintainer note
| * add badges to readme and remove maintainer noteLeo Hemsted2017-12-201-5/+7
|/
* Merge pull request #3 from leohemsted/travisLeo Hemsted2017-12-201-0/+12
|\ | | | | add travis.ci
| * add travis.ciLeo Hemsted2017-12-201-0/+12
|/
* Merge pull request #2 from leohemsted/regex-matchLeo Hemsted2017-12-2010-15/+37
|\ | | | | Use match instead of search.
| * use re.match instead of re.search to improve performanceLeo Hemsted2017-12-203-3/+15
| | | | | | | | | | | | | | | | | | | | | | if there isn't a match to the second half of the tag regex, the regex engine backtracks through the entire string character by character. one way to solve this is to use match instead of search. search, if it doesn't find a match starting with char 0, tries again starting at char 1, and so on and so forth - so if there's no match it'll take O(n^2) polynomial time to complete. match, on the other hand, only matches if the entire string matches. Since we start off with a greedy capturing group to consume everything before a tag, this is safe to use.
| * add copyright infoLeo Hemsted2017-12-209-12/+22
|/
* Added tag v2.0.0 for changeset 07e5ea8896aaYu-Jie Lin2016-12-280-0/+0
|
* finalize v2.0.0v2.0.0Yu-Jie Lin2016-12-282-5/+10
|
* do not build zip sdistYu-Jie Lin2016-12-282-1/+4
|
* merge v2.0.0devYu-Jie Lin2016-12-289-256/+133
|\
| * drop bdist_wininst build per PEP 527 [1]v2.0.0devYu-Jie Lin2016-12-282-2/+5
| | | | | | | | [1] https://www.python.org/dev/peps/pep-0527/#bdist-dmg-bdist-msi-and-bdist-wininst
| * add looking for new maintainer noticeYu-Jie Lin2016-12-282-0/+11
| |
| * add Attr.u (Unicode) and Attr.h (HTML named entities) output options (#6)Yu-Jie Lin2016-12-253-21/+68
| |
| * use shift operator to form attr instead of binary literalYu-Jie Lin2016-12-251-9/+9
| |
| * remove deprecationsYu-Jie Lin2016-12-254-224/+37
| |
| * doc8 fixYu-Jie Lin2016-12-252-2/+5
|/
* test packages build in test_setupYu-Jie Lin2014-07-202-0/+2
| | | | | | The commit 95649d8b8795 was made to fix the mbcs bug in distutils, which was only discovered during the `make upload` when various packages were built to be uploaded. Testing packages build in virtualenv should avoid this type of situation ever occurring.
* rename target install_test to test_setupYu-Jie Lin2014-07-203-5/+10
|
* do not embed command in target namesYu-Jie Lin2014-07-201-4/+12
|
* Added tag v1.8.6 for changeset 71e8dc0a49faYu-Jie Lin2014-07-190-0/+0
|
* finalize v1.8.6v1.8.6Yu-Jie Lin2014-07-192-1/+4
|
* fix codecs mbcs bug in distutilsYu-Jie Lin2014-07-191-0/+13
|
* fix #5 UnicodeDecodeError when runs setup.py in Python 3 with special localeYu-Jie Lin2014-07-193-16/+24
| | | | | | Makefile is updated to also test this issue using LC_ALL=3. The invocation of virtualenv is changed to simplify.
* Added tag v1.8.5 for changeset 78165f497629Yu-Jie Lin2014-07-030-0/+0
|
* finalize v1.8.5v1.8.5Yu-Jie Lin2014-07-032-1/+7
|
* fix #4 requirement of Wheel package, now optionalYu-Jie Lin2014-07-032-4/+7
|
* Added tag v1.8.4 for changeset 460c1add9b9fYu-Jie Lin2014-06-290-0/+0
|
* finalize v1.8.4v1.8.4Yu-Jie Lin2014-06-292-2/+5
|
* fix install_test on missing Wheel package and argpare version option breaks ↵Yu-Jie Lin2014-06-294-4/+9
| | | | CLI on Python
* add PKG-INFO to ignore listYu-Jie Lin2014-05-191-0/+1
|
* fix all doc8 errorsYu-Jie Lin2014-05-193-6/+6
|
* add test_doc8 targetYu-Jie Lin2014-05-193-2/+8
|
* add Python Wheel to building processYu-Jie Lin2014-02-234-2/+9
|
* add missing COPYING and CHANGES.rst to package. fix #3Yu-Jie Lin2014-02-082-0/+3
|
* add isort testYu-Jie Lin2013-11-238-7/+69
|
* Added tag v1.8.3 for changeset c3b1c83c5ddaYu-Jie Lin2013-11-080-0/+0
|
* finalize v1.8.3v1.8.3Yu-Jie Lin2013-11-082-9/+14
|
* fix more nested list indentationsYu-Jie Lin2013-10-041-14/+14
|
* fix nested list indentationsYu-Jie Lin2013-10-041-19/+20
|
* tinker Changes and Copyright docs for headings mainlyYu-Jie Lin2013-10-014-104/+195
| | | | | | With headings, it's now cleaner and possible to be linked directly to specific release. Also add a simple guideline how to write the changelog.
* add doc for skipped HTML commentsYu-Jie Lin2013-09-211-0/+25
|
* fix hyphens do not cause a comment not a comment, add more testsYu-Jie Lin2013-09-213-7/+59
| | | | In both HTML4 and HTML5, two hyphens should not (HTML4) or must not (HTML5) be contained in comments. This would make sure if they appear in a comment, then the entire comment will be treated as text, which means it will be converted.
* fix incorrect description for pull request #1Yu-Jie Lin2013-09-201-1/+2
|
* fix some changelog entries become defined listYu-Jie Lin2013-09-201-0/+14
|
* add entry for pull request #1, PEP8 fixYu-Jie Lin2013-09-202-1/+3
|