Commit Graph
1154 Commits
Author SHA1 Message Date
Thomas Waldmann 0a14007db2 refactor docs, please check
- README has only the most important infos that a new reader needs in his first minute
  of contact with the project (to decide whether it is interesting or not)
- CHANGES shall later be a curated change log (== important changes between releases)
- separate docs into intro, using, project
- intro docs = include README, CHANGES (avoid duplication)
2015-01-25 21:30:24 +01:00
Thomas Waldmann 6fbc6b2750 remove out-of-sync cli help, just say how to get it 2015-01-25 14:02:54 +01:00
James Kasten 89c7eae2c8 Merge pull request #190 from kuba/docs
Link to Read The Docs
2015-01-25 03:50:25 -08:00
Jakub Warmuz 8a7c6340e8 Link to Read The Docs 2015-01-25 11:36:55 +00:00
James Kasten df62f36c5f Merge pull request #189 from kuba/pylint
Fix locally disabled pylint messages
2015-01-25 02:31:04 -08:00
Jakub Warmuz 3734710f1c Fix locally disable pylint messages 2015-01-25 10:23:21 +00:00
James Kasten 9478d14817 Merge pull request #183 from ThomasWaldmann/pathnames
fix for issue #179
2015-01-24 20:38:43 -08:00
James Kasten 9b0b7b2e28 Merge pull request #188 from kuba/bugs/152
Magical fix for #152 (M2Crypto install dependency order)
2015-01-24 20:01:32 -08:00
James Kasten 967047cb04 git push origin masterMerge branch 'ThomasWaldmann-readme-fix' 2015-01-24 19:58:08 -08:00
James Kasten 1d570541e0 Merge branch 'readme-fix' of git://github.com/ThomasWaldmann/lets-encrypt-preview into ThomasWaldmann-readme-fix 2015-01-24 19:56:22 -08:00
James Kasten ca0ea80192 Merge pull request #186 from kuba/pylint
Pylint 10/10
2015-01-24 19:17:57 -08:00
Thomas Waldmann 55754c6697 remove openssl package from requirements, might be only needed for some special branches 2015-01-24 21:44:52 +01:00
Jakub Warmuz f12ef3b933 whitespace 2015-01-24 20:30:58 +00:00
Jakub Warmuz 6a4164a293 Magical fix for #152 (M2Crypto install dependency order) 2015-01-24 19:50:51 +00:00
Jakub Warmuz 982fa19628 Bump cover-min-percentage to 61 2015-01-24 14:33:19 +00:00
Jakub Warmuz e9ed8c86e4 Quickfix for #187 2015-01-24 14:27:15 +00:00
Jakub Warmuz a507293bd8 Quickfix for #147 2015-01-24 14:09:46 +00:00
Jakub Warmuz 8ef9e13e09 pylint: ignore providedBy 2015-01-24 13:59:19 +00:00
Jakub Warmuz 1107c5a971 pylint: locally disable missing-docstring 2015-01-24 13:40:35 +00:00
Jakub Warmuz ceebb09d89 Add some docs 2015-01-24 13:40:05 +00:00
Jakub Warmuz b9723b6cad Fix line-too-long from master 2015-01-24 13:16:00 +00:00
Jakub Warmuz 844d83cc0e Merge remote-tracking branch 'github/letsencrypt/master' into pylint 2015-01-24 13:13:55 +00:00
Jakub Warmuz 48f1497af6 Fix docs warnings 2015-01-24 13:13:13 +00:00
Jakub Warmuz 23cab4e694 pylint: 10/10 with missing-docstring 2015-01-24 13:12:45 +00:00
James Kasten 5fa42b200a Merge pull request #177 from ThomasWaldmann/server-port
talk to servers on non-standard https port (like -s acme.example.org:8443)
2015-01-23 22:23:28 -08:00
Thomas Waldmann 002f98c720 add missing dependencies to README, fixes #151 2015-01-24 05:57:59 +01:00
Thomas Waldmann ea5015be14 better name for KEY_DIR, improve unique_file, adapt tests
unique_file now generates filenames that sort correctly and also are better
viisible / differentiable in narrow file manager filename columns (like e.g. mc).
2015-01-24 01:32:39 +01:00
James Kasten 6a501c1380 Merge pull request #175 from ThomasWaldmann/keysize
support --keysize N cmdline param to give RSA key size
2015-01-23 15:24:34 -08:00
Thomas Waldmann 47e11a5824 use lazy logging 2015-01-23 23:39:02 +01:00
Thomas Waldmann b72897677e use default value for -s argument 2015-01-23 23:29:07 +01:00
Thomas Waldmann aadf6da7bf show default RSA_KEY_SIZE in cmdline help 2015-01-23 14:21:59 +01:00
Thomas Waldmann e58c344649 handle invalid key sizes in a helpful way 2015-01-23 14:17:14 +01:00
Thomas Waldmann 93b247c483 misc. improvements to ACME servername:port code
changed ACME_SERVER to include the port. this is so the commandline options help will also display the port
and also to make it clear at the constant definition that giving a port is supported there.

improved docstrings
2015-01-23 13:56:57 +01:00
James Kasten 00371ad5eb Merge pull request #176 from ThomasWaldmann/textmode-fix
fix exception when using FileDisplay (-t), was missing the redirect_by_default method
2015-01-22 22:34:59 -08:00
Thomas Waldmann 8070b78e3d talk to servers on non-standard https port (like -s acme.example.org:8443)
note:

I removed Network.server attribute, it was not used (only .server_url is used).

I also removed the sanity-check for the ACME server (so one can use server:port syntax, which was considered invalid).
I don't think this sanity-check is needed, because in the end, we can't fully check if it is correct anyway (you can always
give valid, but non-working server names or ports).
Also, many people will use the default ACME server, which is builtin and correct.
2015-01-23 04:57:47 +01:00
Thomas Waldmann 8d32a9a4d8 fix exception when using FileDisplay (-t), class was missing the redirect_by_default method
moved common stuff to CommonDisplayMixin class.
2015-01-23 04:20:47 +01:00
Thomas Waldmann b0becec26e support --keysize N cmdline param to give RSA key size
also: improve tests for usual key sizes
2015-01-23 03:38:10 +01:00
James Kasten 16e9d887ab Merge pull request #170 from letsencrypt/fix_168
Fix 168
2015-01-20 22:16:49 -08:00
James Kasten 9729450d2c Change names to meet the API 2015-01-20 21:59:10 -08:00
James Kasten 6927c1b910 Add manual httpd_transform 2015-01-20 21:13:56 -08:00
James Kasten 55e13a906d Change incl to list to conform with augeas.add_transform func 2015-01-20 19:29:00 -08:00
James Kasten a29984f049 Remove TODO item/fix formatting. 2015-01-20 14:03:05 -08:00
James Kasten 269d49b759 Remove load of unused modules from Augeas 2015-01-20 13:51:52 -08:00
James Kasten 8a3eb4f2ba Update interface.py documentation...
Correctly list namedtuple challenge types in challenge_util.py
2015-01-19 16:01:44 -08:00
James Kasten 66884e05cf Merge pull request #167 from letsencrypt/requests_verify
Make requests certificate verification explicit
2015-01-18 00:25:42 -08:00
James Kasten f28bc32129 Make requests certificate verification explicit 2015-01-18 00:14:29 -08:00
James Kasten 488859d03a Merge pull request #165 from letsencrypt/installer_api
Installer API update
2015-01-18 00:07:49 -08:00
James Kasten 1b8edd7448 Removed commented functions before push to master 2015-01-18 00:00:52 -08:00
James Kasten c9a3d8b0c2 Cleanup Installer API change 2015-01-17 02:29:29 -08:00
James Kasten 7f6837a105 merge with master 2015-01-16 16:43:59 -08:00