Brad Warren
f1e3563f98
remove needlessly specific and unused challenge types
2016-03-01 17:34:01 -08:00
Brad Warren
f2e728cd4e
Remove ContAuthError
2016-03-01 17:29:08 -08:00
Brad Warren
eb71506be9
remove PoP and RC achalls
2016-03-01 17:27:56 -08:00
Brad Warren
b0280ac17e
no PoP or RC in auth_handler
2016-03-01 17:25:05 -08:00
Brad Warren
33b851b6c5
remove continuity challenges from acme_util
2016-03-01 17:22:12 -08:00
Brad Warren
b1918995d1
documentation++
2016-03-01 16:26:03 -08:00
Peter Eckersley
ebf0163983
Merge pull request #2513 from thanatos/py3k-minor-fixes
...
Py3k minor fixes
2016-03-01 16:11:47 -08:00
Peter Eckersley
1c46ff4568
Merge pull request #2577 from letsencrypt/release-help
...
Simple release help
2016-03-01 16:09:15 -08:00
Brad Warren
4f98fe9630
Remove PoP
2016-03-01 15:33:28 -08:00
Brad Warren
d10aa9faa3
remove reference to continuity challenges
2016-03-01 15:24:43 -08:00
Brad Warren
02f548b14f
Merge branch 'master' into continuity-error
2016-03-01 15:14:46 -08:00
Brad Warren
8266dde2bb
clean up references to dv_challs and dv_auth
2016-03-01 15:13:58 -08:00
Peter Eckersley
d4e08f52c2
Merge pull request #2561 from thanatos/tox-newline-at-eof
...
Add newline at end of tox.ini.
2016-03-01 14:58:47 -08:00
Peter Eckersley
37a3d93992
Merge pull request #2581 from letsencrypt/bump-le-auto-version
...
Bump source le-auto version
2016-03-01 14:58:00 -08:00
Brad Warren
32c4f80117
remove distinction between dv_auth and auth
2016-03-01 14:53:10 -08:00
Brad Warren
d3cc2b187c
remove outdated comment
2016-03-01 14:49:51 -08:00
Brad Warren
06bf983604
Autobuild le-auto with dev version
2016-03-01 13:03:02 -08:00
Brad Warren
94930a48c5
Bump source le-auto version
2016-03-01 12:49:25 -08:00
Peter Eckersley
103966876d
Merge pull request #2569 from letsencrypt/candidate-0.4.1
...
Release 0.4.1
2016-03-01 12:23:56 -08:00
Brad Warren
c531c4477d
add test coverage to nonetype http01_port
2016-03-01 11:43:31 -08:00
Brad Warren
ce2d307f54
handle legacy http01_port value
2016-03-01 11:39:52 -08:00
Brad Warren
d0a461b26a
fix permissions on renewal conf files
2016-03-01 11:25:38 -08:00
Brad Warren
465c1bd262
Add pubkey to tree
2016-03-01 11:21:51 -08:00
Brad Warren
f1bfbadbdb
Don't track releases folder
2016-03-01 11:21:40 -08:00
Brad Warren
32d350c16f
Bump version to 0.5.0
2016-02-29 16:30:37 -08:00
Brad Warren
49d8fd7d61
Release 0.4.1
v0.4.1
2016-02-29 16:30:24 -08:00
schoen
429db3fb4d
Merge pull request #2568 from letsencrypt/parsedatetime-v-py26
...
Pin parsedatetime version < 2.0
2016-02-29 16:16:44 -08:00
Brad Warren
564d37c0fd
version < 2.0
2016-02-29 15:39:19 -08:00
bmw
328cea7935
Merge pull request #2434 from letsencrypt/autopeep
...
release.sh: autopin letsencrypt-auto autopeep autohashes
2016-02-29 14:02:20 -08:00
Brad Warren
3b0a95ff97
compatibility++
2016-02-29 13:26:48 -08:00
Brad Warren
bbea71760c
grammar
2016-02-29 13:24:12 -08:00
Brad Warren
a8089a43da
Use local peep
2016-02-29 12:56:34 -08:00
Brad Warren
35437019a5
Merge branch 'master' into autopeep
2016-02-29 12:33:50 -08:00
schoen
c6859a323d
Merge pull request #2566 from letsencrypt/leap-days-are-fun
...
Leap days are fun
2016-02-29 12:06:49 -08:00
Brad Warren
1f254f5330
Change renewal period to fix leap year problems
2016-02-29 11:34:17 -08:00
Kane York
902ab9afdf
Work around leap day bug in parsedatetime
2016-02-29 10:58:14 -08:00
Peter Eckersley
001c1cd835
Refactor cli -> main
...
With some help from rope...
2016-02-28 23:49:11 -08:00
Peter Eckersley
e64fd392dc
Rope refactor: cli -> main
2016-02-28 23:34:44 -08:00
Roy Wellington Ⅳ
8046cdc26a
Make uses of StringIO.StringIO Python 3 compatible.
2016-02-26 22:02:16 -08:00
Roy Wellington Ⅳ
74a31c737c
The Queue module moved to queue in Python 3.
...
Use six.moves.queue to import the right module regardless.
2016-02-26 22:02:16 -08:00
Roy Wellington Ⅳ
edf6d2db24
Make these print statements Python 3 compatible.
2016-02-26 22:02:16 -08:00
Roy Wellington Ⅳ
af22467e07
Newline at end of tox.ini.
2016-02-26 21:53:31 -08:00
Roy Wellington Ⅳ
19b93ec025
Update this octal literal to be Python3 compatible.
...
The `"0" 1*digits` syntax is gone in Python 3. This syntax replaced it.
It was ported into Python 2 at 2.6[1].
[1]: https://docs.python.org/2/whatsnew/2.6.html
2016-02-26 21:18:20 -08:00
Roy Wellington Ⅳ
b965e8349e
Use six.iteritems instead of .iteritems for Python 3.
...
And in one place, `list(six.iterkeys(<obj>))`, as the values didn't
appear to be used.
2016-02-26 21:18:20 -08:00
Roy Wellington Ⅳ
3a303dbf40
Use six to make this list + list work in Python 3.
...
The RHS here in Python 3 is a set-like object over keys; it's
essentially the same as .iterkeys() in Python 2. Unfortunately, + is not
defined for list + <dict>.keys().
In Python 3, it's idiomatic to simply list(VERBS.keys()) here;
basically, take that and use six to make it Python 2 compatible.
2016-02-26 21:18:20 -08:00
bmw
d674a74ba1
Merge pull request #2537 from letsencrypt/issue_2240
...
Apache: handle wildcards when matching server names (Issue #2240 )
2016-02-26 16:54:47 -08:00
bmw
21e02b1762
Merge pull request #2553 from letsencrypt/ancient-webroot
...
Cast webroot-path from str to [str] if needed
2016-02-26 16:12:01 -08:00
Brad Warren
b15890ceb7
Merge branch 'master' into continuity-error
2016-02-26 15:44:28 -08:00
Brad Warren
7e6002a13f
Remove continuity authenticator
2016-02-26 15:43:58 -08:00
Brad Warren
bc4f01cb6e
test successful dumb path use
2016-02-26 15:41:56 -08:00