Ben Kurtovic
|
af0805549c
|
Changelog/version update, now targeting 0.4.3.
|
9 years ago |
Ben Kurtovic
|
21fa211bc7
|
Add Python 3.5 to Appveyor.
|
9 years ago |
Ben Kurtovic
|
23d97583bf
|
Fix regression in C tokenizer (#125)
|
9 years ago |
Ben Kurtovic
|
50b401549b
|
Add failing test cases for #125.
|
9 years ago |
Ben Kurtovic
|
460199488f
|
Fix a couple sign compare issues.
|
9 years ago |
Ben Kurtovic
|
90bd12dd47
|
Fix a C tokenizer crash when parsing is interrupted (fixes #97)
|
9 years ago |
Ben Kurtovic
|
2e6903cd52
|
Travis fix for Python 3.2.
|
9 years ago |
Ben Kurtovic
|
4f3ab48375
|
Edge cases involving wikilink -> external link fallback (fixes #120)
|
9 years ago |
Ben Kurtovic
|
5359ee536c
|
Merge pull request #118 from yuvipanda/cleanup
Remove debian/ folder out of upstream
|
9 years ago |
YuviPanda
|
635b84b222
|
Remove debian/ folder out of upstream
As I read more and talked to more people, I've realized that
people were right and I should maintain the debian package
outside of the upstream repo :) Specifically, see
https://wiki.debian.org/DebianMentorsFaq#What.27s_wrong_with_upstream_shipping_a_debian.2F_directory.3F
The package is now maintained at github.com/yuvipanda/mwparserfromhell
and should hopefully go into debian soon!
|
9 years ago |
Ben Kurtovic
|
81dc28ff95
|
Remove formatting artifacts in Debian description.
|
9 years ago |
Ben Kurtovic
|
c1ac4c7697
|
Merge pull request #116 from yuvipanda/debian
Add debian packaging
|
9 years ago |
YuviPanda
|
8e713c7596
|
Update debian version number to match reality
|
9 years ago |
YuviPanda
|
8ee1312879
|
Add debian packaging
|
9 years ago |
Ben Kurtovic
|
5cf13093ea
|
Version bump for 0.5. Nicer commit message for release merges.
|
9 years ago |
Ben Kurtovic
|
f1b0b24aca
|
Merge branch 'develop'
|
9 years ago |
Ben Kurtovic
|
720516a7e1
|
release/0.4.2
|
9 years ago |
Ben Kurtovic
|
e6ffda6171
|
Fix some issues during 0.4.1 release.
|
9 years ago |
Ben Kurtovic
|
e87661b912
|
Merge branch 'develop'
|
9 years ago |
Ben Kurtovic
|
e949dd8ddd
|
release/0.4.1
|
9 years ago |
Ben Kurtovic
|
d6d3b45cd8
|
Merge branch 'feature/win_builds' into develop
|
9 years ago |
Ben Kurtovic
|
8ae14ab3ad
|
Finalize Windows build/release code (closes #95)
|
9 years ago |
Ben Kurtovic
|
480f70ff1a
|
Fix various SmartList bugs.
|
9 years ago |
Ben Kurtovic
|
67214b7c05
|
Add some failing tests for SmartList features.
|
9 years ago |
Ben Kurtovic
|
ab9f6a97fb
|
Use weakrefs for SmartList children; remove _ListProxy.detach().
|
9 years ago |
Ben Kurtovic
|
6503b5682f
|
Finish C tokenizer refactoring (fixes #37)
|
9 years ago |
Ben Kurtovic
|
8e7a600b51
|
Fix use-after-free bug.
|
9 years ago |
Ben Kurtovic
|
8963c1f683
|
Fix Textbuffer_reverse()
|
9 years ago |
Ben Kurtovic
|
1357da119d
|
Finish improved Unicode support for PEP 393.
|
9 years ago |
Ben Kurtovic
|
c1d4feea66
|
Py_UNICODE -> Unicode everywhere; bugfix for PEP 393.
|
9 years ago |
Ben Kurtovic
|
5eac0ab16f
|
More PEP 393 work; update Textbuffer interface and usage.
|
9 years ago |
Ben Kurtovic
|
2072a10b67
|
More reworking of CTokenizer Unicode support (incomplete)
|
9 years ago |
Ben Kurtovic
|
8b72c783f0
|
Merge branch 'develop' into feature/c_refactor
|
9 years ago |
Ben Kurtovic
|
2a3a978986
|
Incomplete code for C tokenizer textbuffer.
|
9 years ago |
Ben Kurtovic
|
f16c7e25ca
|
Fully fix parsing templates with blank names, I hope (#111)
|
9 years ago |
Ben Kurtovic
|
7993224926
|
Add a failing test for a missed component of #59
|
9 years ago |
Ben Kurtovic
|
56f1797cfe
|
Add failing tests for #111
|
9 years ago |
Ben Kurtovic
|
06ad55822f
|
Update .travis.yml for new Travis infrastructure
Per http://docs.travis-ci.com/user/migrating-from-legacy
|
9 years ago |
Ben Kurtovic
|
dcca42abb0
|
Merge pull request #114 from jayvdb/tokenizer_loading
Lazy loading of pure Python tokenizer
|
9 years ago |
Ben Kurtovic
|
5d11d4b929
|
Merge pull request #113 from jayvdb/travis-py35
Use 3.5 nightly in build matrix
|
9 years ago |
John Vandenberg
|
ab0a58121a
|
Delay loading of pure Python tokenizer
|
9 years ago |
John Vandenberg
|
7c303eec45
|
Use 3.5 nightly in build matrix
'nightly' now follows Python 3.6
Use '3.5-dev' for Python 3.5 nightly
http://docs.travis-ci.com/user/languages/python/#On-demand-installations
Partially resolves issue #112
|
9 years ago |
Ben Kurtovic
|
46cb714344
|
Fix unit tests for 699d063 (#109)
|
9 years ago |
Ben Kurtovic
|
699d0638f6
|
Fix param blanking logic by Template.remove() (#109)
|
9 years ago |
Ben Kurtovic
|
4c2540060b
|
Fix preserve_spacing behavior in Template.add() on hidden keys (#109)
|
9 years ago |
Ben Kurtovic
|
40fed91806
|
Fix C tokenizer leaking memory.
|
9 years ago |
Ben Kurtovic
|
7345a3742e
|
Fix a thread safety issue involving route state.
|
9 years ago |
Ben Kurtovic
|
2005efd309
|
Split up C tokenizer into tag_data, tok_parse, tok_support, tokens.
|
9 years ago |
Ben Kurtovic
|
0e547aa416
|
Begin splitting up C tokenizer.
|
9 years ago |
Ben Kurtovic
|
3a57756068
|
Fix HTTPS requirement for enwiki API.
|
9 years ago |