Граф коммитов

69 Коммитов

Автор SHA1 Сообщение Дата
Ryan Kelly e65eb2c229
Merge pull request #32 from Mozilla-GitHub-Standards/master
Add Mozilla Code of Conduct
2019-03-29 15:55:54 +11:00
Mozilla-GitHub-Standards 68ae141db3 Add Mozilla Code of Conduct file
Fixes #31.

_(Message COC002)_
2019-03-28 21:54:45 -07:00
Vlad Filippov c41a2f922c Merge pull request #30 from warner/29-license
Add MPL-2.0 license file. Closes #29.
2016-04-28 12:53:37 -04:00
Brian Warner fae31934de Add MPL-2.0 license file. Closes #29. 2016-04-28 09:48:43 -07:00
Ryan Kelly e511c2d3b5 Bump version number to 1.3.0 2014-09-18 19:56:59 +10:00
Ryan Kelly 1a43c492cf Include more helpful error message when 'scrypt' is not installed. 2014-09-18 19:33:10 +10:00
Ryan Kelly 3ef03a29b5 Merge pull request #23 from cosmin-malutan/issue#22
Don't require scrypt module for basic install (#22)
2014-09-18 18:20:22 +10:00
Cosmin Malutan d03f86de9a Remove 'scrypt' as a dependency and add instruction te be installed manually. (#22) 2014-09-18 11:11:42 +03:00
Ryan Kelly 321d8268d9 Bump version number, add maintainer info to setup.py 2014-08-14 11:15:10 +10:00
Ryan Kelly 1ca83e3da6 Add a CONTRIBUTORS.txt file 2014-08-14 11:06:31 +10:00
Ryan Kelly d7ce8f3d92 Merge branch 'pr13d' 2014-08-13 16:26:20 +10:00
Henrik Skupin eb7c2144e3 Account verification badly bails out if email hasn't received yet (#15) 2014-08-12 07:57:08 +02:00
Brian Warner 4e04946fa7 Merge pull request #18 from cosmin-malutan/issue#17
Update the documentation with platforms requirements(#17)
2014-07-29 14:58:04 -07:00
Cosmin Malutan 26a0e9dac8 Update the documentation with platforms requirements(#17) 2014-07-29 14:01:13 +03:00
Brian Warner beb1b9ca5f Makefile: fix 'vectors' target 2014-07-14 16:27:58 -07:00
Brian Warner e012bb2ebc Makefile: whitespace changes 2014-07-14 15:48:56 -07:00
Brian Warner c5bd97132c install scrypt with install_requires, not Makefile 2014-07-14 15:47:30 -07:00
Brian Warner ba1abb1340 fix entrypoints and imports to make fxa_vectors work 2014-07-14 12:20:58 -07:00
Brian Warner 154f8b4dd7 move bin/fxa-vectors to a library module 2014-07-14 12:20:17 -07:00
Brian Warner edeaeecb05 fxa-vectors: add whitespace 2014-07-14 12:20:14 -07:00
Brian Warner 25a1fe54cf fxa-vectors: more main()-ification 2014-07-14 12:19:49 -07:00
Brian Warner 4ea434cdff fxa-vectors: prepare for main()-ification
no functional changes, just indentation
2014-07-14 11:03:49 -07:00
Brian Warner f0ca227aeb require py2.7, remove argparse from install_requires
since argparse is part of the stdlib starting with py2.7
2014-07-14 10:45:22 -07:00
Brian Warner b5eaf4859c scripts: clean up whitespace 2014-07-14 10:36:40 -07:00
Brian Warner 5e82c00431 release 1.1.0 2014-07-03 11:49:59 -07:00
Brian Warner cebe118854 tolerate restmail errors better
Sometimes restmail gives an empty response: when this happens, print an
error and let the user try again. This makes 'fxa-client repl' easier to
use, as it doesn't quit the program entirely.
2014-07-03 11:47:28 -07:00
Brian Warner 3c86e93fb3 Merge branch 'pr11' 2014-07-03 11:46:35 -07:00
Brian Warner 51ab68e653 setup.py: update entry_points spec to be less stringy 2014-07-03 11:46:21 -07:00
Brian Warner 5c8d2014e6 now that main() is a function, email/pw can't be globals 2014-07-03 11:45:12 -07:00
Cosmin Malutan c3cc75508a Fix the intendation nit 2014-07-03 19:43:56 +03:00
Cosmin Malutan 8fbe72371e Make use of entry_poins for creating the binary for the module (#10) 2014-07-03 17:44:29 +03:00
Brian Warner 865ff9c197 release version 1.0.0 2014-07-01 12:27:55 -07:00
Brian Warner faedeed597 README: explain the purpose a bit better 2014-07-01 12:27:46 -07:00
Brian Warner e02055e88e don't install bin/fxa-vectors, just run it from source
The scrypt packaging bug means that "pip install fxa-python-client"
probably won't give you a functional fxa-vectors anyways, so avoid
confusion by not installing it. The preferred way to build test vectors
is to run "make vectors" from a source checkout.
2014-07-01 12:24:13 -07:00
Brian Warner 6d780d45b5 update Makefile instructions, setup process
We rely on setup.py's install_requires= for everything except scrypt,
which has some sort of packaging bug that makes it not work unless
installed directly with pip. (scrypt is only used by fxa-vectors, to
compute values that live on the fxa-auth-server backend).
2014-07-01 12:11:55 -07:00
Brian Warner fe48ea6af5 remove the embedded copy of six.py, use dependency instead 2014-07-01 12:09:53 -07:00
Brian Warner 3fa3584a13 Makefile: update to use 'develop', and correct fxa-vectors binary 2014-06-26 13:04:09 -07:00
Brian Warner 03e43c8359 setup.py: add the remaining dependencies 2014-06-26 13:03:46 -07:00
Cosmin Malutan 112bece7dd Add dependencies requirements in setup.py (#6) 2014-06-26 18:25:52 +03:00
Brian Warner a90f009859 rename GET/POST to FXA_GET/FXA_POST
to make room for non-fxa-auth-server GET/POST functions
2014-06-17 18:18:39 -07:00
Brian Warner a0144d0cdd 'fxa-client repl' now runs a command loop
This remembers the randomly-generated email address and password during
the loop, so you can just do:

 fxa-client repl
  create
  verify
  login
  destroy
  quit

to exercise the whole FxA flow
2014-06-17 17:56:27 -07:00
Brian Warner 77db39a559 display cert lifetime 2014-06-09 14:31:38 -07:00
Brian Warner f95e0e4e79 verify our new assertion with PyBrowserID
flip the "if True" to use the remote verifier instead
2014-05-15 20:14:43 -07:00
Brian Warner 5283c7d850 exercise /certificate/sign with a real RSA key
adds 'cryptography' to the dependencies list, for RSA key generation
2014-05-14 14:53:58 -07:00
Brian Warner 61f46ac791 Makefile: add 'clean', minor help changes 2014-05-14 13:58:23 -07:00
Brian Warner beb08e31ad Merge pull request #4 from edmoz/fix-public-url
fix bug to not overwrite PUBLIC_URL if defined
2014-05-14 12:49:57 -07:00
edmoz d2358d8a87 fix bug to not overwrite PUBLIC_URL if defined 2014-04-24 14:46:36 -07:00
Brian Warner 3aa1be48e9 Merge pull request #3 from edmoz/add-monitor-scripts
Add monitor scripts
2014-04-23 15:52:27 -07:00
edmoz af23e0635b set stage env as default 2014-04-23 15:38:25 -07:00
edmoz 6dbe5044ca mv command to be last arg 2014-04-23 15:33:53 -07:00