Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3aa8e78
Moved js-client to ES6 module.
pthevenet Jan 30, 2020
d53e4db
Added unit tests capabilities to js-client.
pthevenet Jan 31, 2020
962ad4d
Added WebSocket client implementation
pthevenet Jan 31, 2020
4fdd8f8
Added Lightnion WebSocket.
pthevenet Feb 5, 2020
d329537
Added linting using eslint.
pthevenet Feb 6, 2020
47c1b4c
Added integration tests for Lightnion WebSocket.
pthevenet Feb 6, 2020
42a2e1b
Add first doc draft.
Feb 19, 2020
c56bc23
Merge branch 'lws' of git://github.com/pthevenet/lightnion into pthev…
Mar 3, 2020
0c6ecce
Merge branch 'pthevenet-lws' into dev
Mar 3, 2020
27289a3
Fix borken things.
Mar 3, 2020
9348701
Document deployment.
Mar 12, 2020
8a1feb3
Add readthedocs config.
Mar 12, 2020
38e8a5f
Correct rtd configuration.
Mar 12, 2020
7ddd527
Remove most of client code.
Mar 24, 2020
29d25c7
Remove deprecated cell submodule.
Mar 31, 2020
7703e10
Refactor keys handling (part 1).
Apr 2, 2020
eed9a65
Remove deprecated path submodule.
Apr 6, 2020
ba30c44
Remove obsolete caching mechanism.
Apr 8, 2020
32e3567
Use stem to manage guard and consensus renewal.
Apr 15, 2020
af0f3cd
Merge branch 'dev' into refactor-proxy
Apr 15, 2020
f8979be
Update requirements.
Apr 15, 2020
1d3429f
Silence Stem logger.
Apr 15, 2020
4ee7dfa
Remove deprecated submodules from __init__.
Apr 15, 2020
93598a6
Remove imports.
Apr 15, 2020
6576899
Remove tests no longer relevant.
Apr 17, 2020
b0adf6b
Refactor concensus and descriptors handling.
Apr 28, 2020
e5b1529
Add tests for consensus and descriptors parsing.
Apr 28, 2020
adf9f41
Remove obsolete functions from path selection.
Apr 28, 2020
bc3f18f
Update doc.
Apr 30, 2020
4b31300
Correct documentation.
Apr 30, 2020
256855d
Merge pull request #32 from spring-epfl/refactor-proxy
laurent-girod Apr 30, 2020
14f31e4
Correct state object in client.
Apr 30, 2020
6cd080a
Add javadoc, tweak some functions slightly.
May 5, 2020
8453865
Rewrite documentation, add tutorial for JS.
May 5, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
[submodule "stem"]
path = stem-client
url = https://git.torproject.org/stem.git
[submodule "js-client/sjcl"]
path = js-client/sjcl
url = https://github.com/bitwiseshiftleft/sjcl
[submodule "js-client/tweetnacl-js"]
path = js-client/tweetnacl-js
url = https://github.com/dchest/tweetnacl-js
[submodule "js-client/tweetnacl-util-js"]
path = js-client/tweetnacl-util-js
url = https://github.com/dchest/tweetnacl-util-js
[submodule "js-client/vendor/sjcl"]
path = js-client/vendor/sjcl
url = https://github.com/bitwiseshiftleft/sjcl.git
10 changes: 10 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2

sphinx:
configuration: docs/source/conf.py

formats: all

python:
version: 3.7

Loading