BtSync 0.5.1 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +8 -8
  2. data/.gitignore +1 -0
  3. data/.travis.yml +1 -0
  4. data/Vagrantfile +31 -0
  5. data/cookbooks/apt/.gitignore +14 -0
  6. data/cookbooks/apt/.kitchen.yml +38 -0
  7. data/cookbooks/apt/Berksfile +8 -0
  8. data/cookbooks/apt/CHANGELOG.md +97 -0
  9. data/cookbooks/apt/CONTRIBUTING +29 -0
  10. data/cookbooks/apt/LICENSE +201 -0
  11. data/cookbooks/apt/README.md +243 -0
  12. data/cookbooks/apt/TESTING.md +25 -0
  13. data/cookbooks/apt/attributes/default.rb +4 -0
  14. data/cookbooks/apt/files/default/apt-proxy-v2.conf +50 -0
  15. data/cookbooks/apt/metadata.json +1 -0
  16. data/cookbooks/apt/metadata.rb +30 -0
  17. data/cookbooks/apt/providers/preference.rb +61 -0
  18. data/cookbooks/apt/providers/repository.rb +132 -0
  19. data/cookbooks/apt/recipes/cacher-client.rb +59 -0
  20. data/cookbooks/apt/recipes/cacher-ng.rb +40 -0
  21. data/cookbooks/apt/recipes/default.rb +68 -0
  22. data/cookbooks/apt/resources/preference.rb +30 -0
  23. data/cookbooks/apt/resources/repository.rb +40 -0
  24. data/cookbooks/apt/templates/debian-6.0/acng.conf.erb +174 -0
  25. data/cookbooks/apt/templates/default/01proxy.erb +2 -0
  26. data/cookbooks/apt/templates/default/acng.conf.erb +276 -0
  27. data/cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb +270 -0
  28. data/cookbooks/btsync/README.md +2 -0
  29. data/cookbooks/btsync/metadata.rb +14 -0
  30. data/cookbooks/btsync/recipes/default.rb +13 -0
  31. data/cookbooks/build-essential/.gitignore +4 -0
  32. data/cookbooks/build-essential/.kitchen.yml +42 -0
  33. data/cookbooks/build-essential/Berksfile +3 -0
  34. data/cookbooks/build-essential/CHANGELOG.md +42 -0
  35. data/cookbooks/build-essential/CONTRIBUTING +29 -0
  36. data/cookbooks/build-essential/LICENSE +201 -0
  37. data/cookbooks/build-essential/README.md +139 -0
  38. data/cookbooks/build-essential/TESTING.md +25 -0
  39. data/cookbooks/build-essential/attributes/default.rb +33 -0
  40. data/cookbooks/build-essential/metadata.json +44 -0
  41. data/cookbooks/build-essential/metadata.rb +16 -0
  42. data/cookbooks/build-essential/recipes/debian.rb +45 -0
  43. data/cookbooks/build-essential/recipes/default.rb +24 -0
  44. data/cookbooks/build-essential/recipes/fedora.rb +36 -0
  45. data/cookbooks/build-essential/recipes/mac_os_x.rb +40 -0
  46. data/cookbooks/build-essential/recipes/rhel.rb +43 -0
  47. data/cookbooks/build-essential/recipes/smartos.rb +36 -0
  48. data/cookbooks/build-essential/recipes/solaris2.rb +42 -0
  49. data/cookbooks/build-essential/recipes/suse.rb +36 -0
  50. data/lib/btsync.rb +13 -13
  51. data/lib/btsync/communicator.rb +14 -4
  52. data/lib/btsync/directory.rb +12 -12
  53. data/lib/btsync/version.rb +1 -1
  54. data/spec/BtSync/bt_sync_spec.rb +13 -9
  55. data/spec/BtSync/directory_spec.rb +13 -20
  56. data/spec/fixtures/cassettes/{get-known-hosts.yml → Remove-Default-Host.yml} +5 -5
  57. data/spec/fixtures/cassettes/Setup-BtSync-Directory.yml +289 -12
  58. data/spec/fixtures/cassettes/Setup-BtSync.yml +252 -0
  59. data/spec/fixtures/cassettes/Setup-Directory-Settings.yml +8 -38
  60. data/spec/fixtures/cassettes/add-folder-list.yml +32 -35
  61. data/spec/fixtures/cassettes/add-folder.yml +10 -94
  62. data/spec/fixtures/cassettes/add-known-host.yml +6 -6
  63. data/spec/fixtures/cassettes/change_download_limit.yml +15 -42
  64. data/spec/fixtures/cassettes/change_listening_port.yml +15 -42
  65. data/spec/fixtures/cassettes/change_name.yml +13 -40
  66. data/spec/fixtures/cassettes/change_upload_limit.yml +15 -42
  67. data/spec/fixtures/cassettes/get-folders.yml +54 -24
  68. data/spec/fixtures/cassettes/get-os-type.yml +3 -30
  69. data/spec/fixtures/cassettes/get-peers.yml +7 -8
  70. data/spec/fixtures/cassettes/get-preferences.yml +24 -24
  71. data/spec/fixtures/cassettes/get-settings.yml +6 -33
  72. data/spec/fixtures/cassettes/get-version.yml +3 -30
  73. data/spec/fixtures/cassettes/remove-folder-list.yml +18 -20
  74. data/spec/fixtures/cassettes/remove-folder.yml +35 -38
  75. data/spec/fixtures/cassettes/remove-known-host.yml +6 -6
  76. data/spec/fixtures/cassettes/reset_device_name.yml +13 -13
  77. data/spec/fixtures/cassettes/reset_download_limit.yml +15 -15
  78. data/spec/fixtures/cassettes/reset_listening_port.yml +15 -15
  79. data/spec/fixtures/cassettes/reset_upload_limit.yml +15 -15
  80. data/spec/fixtures/cassettes/set-preferences-delete.yml +11 -11
  81. data/spec/fixtures/cassettes/set-preferences-dht.yml +11 -11
  82. data/spec/fixtures/cassettes/set-preferences-hosts.yml +11 -11
  83. data/spec/fixtures/cassettes/set-preferences-lan.yml +11 -11
  84. data/spec/fixtures/cassettes/set-preferences-relay.yml +11 -11
  85. data/spec/fixtures/cassettes/set-preferences-tracker.yml +11 -11
  86. data/spec/fixtures/cassettes/view-folders.yml +5 -5
  87. metadata +52 -4
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=removeknownhosts&index=1&name=/home/chris/Documents&output=json&secret=6PX74LIR2RA2FF2W3DC25MG2CF6SQDSJ&token=cNJuLdTzhAVEgK83V3Ai3F9LGEGb2oDNWAwa1BWst7Dpo45MpwWH93-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=removeknownhosts&index=1&name=/home/vagrant&output=json&secret=XEQRSGSJGGNKCTV4UZG2ZPOJRINGDE2C&token=RZbVuwWEheFdAfByFpevSH6m3_t2y6Brna0IR68P0vD7nryy2Ktd6gTBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=SZGEavWRWlylZwpb4y1U
11
+ - GUID=TotE2NElyDGhazP4Fk3b
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -26,16 +26,16 @@ http_interactions:
26
26
  encoding: US-ASCII
27
27
  string: ! '{ }'
28
28
  http_version:
29
- recorded_at: Tue, 11 Jun 2013 01:55:14 GMT
29
+ recorded_at: Wed, 12 Jun 2013 18:42:13 GMT
30
30
  - request:
31
31
  method: get
32
- uri: http://localhost:8888/gui/?action=getknownhosts&name=/home/chris/Documents&output=json&secret=6PX74LIR2RA2FF2W3DC25MG2CF6SQDSJ&token=cNJuLdTzhAVEgK83V3Ai3F9LGEGb2oDNWAwa1BWst7Dpo45MpwWH93-DtlEAAAAA
32
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getknownhosts&name=/home/vagrant&output=json&secret=XEQRSGSJGGNKCTV4UZG2ZPOJRINGDE2C&token=RZbVuwWEheFdAfByFpevSH6m3_t2y6Brna0IR68P0vD7nryy2Ktd6gTBuFEAAAAA
33
33
  body:
34
34
  encoding: US-ASCII
35
35
  string: ''
36
36
  headers:
37
37
  Cookie:
38
- - GUID=SZGEavWRWlylZwpb4y1U
38
+ - GUID=TotE2NElyDGhazP4Fk3b
39
39
  response:
40
40
  status:
41
41
  code: 200
@@ -53,5 +53,5 @@ http_interactions:
53
53
  encoding: US-ASCII
54
54
  string: ! '{ "hosts": [ { "index": 0, "peer": "192.168.1.5:45685" } ] }'
55
55
  http_version:
56
- recorded_at: Tue, 11 Jun 2013 01:55:14 GMT
56
+ recorded_at: Wed, 12 Jun 2013 18:42:13 GMT
57
57
  recorded_with: VCR 2.5.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=gV-hYQBftblOtYzxFsjcp4_kfp_CzxqhIaKVaaVtQetH_vgkRxWGA3-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=XfPBG1WqhacQ0f2GNXye
11
+ - GUID=7Sb1dvknwuyiiKy9xvYv
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -25,18 +25,18 @@ http_interactions:
25
25
  body:
26
26
  encoding: US-ASCII
27
27
  string: ! '{ "settings": { "devicename": "IceyEC-Virtual2", "dlrate": 0, "listeningport":
28
- 63754, "portmapping": 1, "ulrate": 0 } }'
28
+ 63754, "portmapping": 0, "ulrate": 0 } }'
29
29
  http_version:
30
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
30
+ recorded_at: Wed, 12 Jun 2013 18:42:11 GMT
31
31
  - request:
32
32
  method: get
33
- uri: http://localhost:8888/gui/?action=setsettings&devicename=IceyEC-Virtual1&dlrate=0&listeningport=63754&output=json&portmapping=1&token=gV-hYQBftblOtYzxFsjcp4_kfp_CzxqhIaKVaaVtQetH_vgkRxWGA3-DtlEAAAAA&ulrate=0
33
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=setsettings&devicename=precise32%20-%20Default%20Instance&dlrate=0&listeningport=63754&output=json&portmapping=0&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA&ulrate=0
34
34
  body:
35
35
  encoding: US-ASCII
36
36
  string: ''
37
37
  headers:
38
38
  Cookie:
39
- - GUID=XfPBG1WqhacQ0f2GNXye
39
+ - GUID=7Sb1dvknwuyiiKy9xvYv
40
40
  response:
41
41
  status:
42
42
  code: 200
@@ -54,16 +54,16 @@ http_interactions:
54
54
  encoding: US-ASCII
55
55
  string: ! '{ }'
56
56
  http_version:
57
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
57
+ recorded_at: Wed, 12 Jun 2013 18:42:11 GMT
58
58
  - request:
59
59
  method: get
60
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=gV-hYQBftblOtYzxFsjcp4_kfp_CzxqhIaKVaaVtQetH_vgkRxWGA3-DtlEAAAAA
60
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
61
61
  body:
62
62
  encoding: US-ASCII
63
63
  string: ''
64
64
  headers:
65
65
  Cookie:
66
- - GUID=XfPBG1WqhacQ0f2GNXye
66
+ - GUID=7Sb1dvknwuyiiKy9xvYv
67
67
  response:
68
68
  status:
69
69
  code: 200
@@ -72,15 +72,15 @@ http_interactions:
72
72
  Connection:
73
73
  - keep-alive
74
74
  Content-Length:
75
- - '119'
75
+ - '132'
76
76
  Content-Type:
77
77
  - application/json; charset=utf-8
78
78
  Cache-Control:
79
79
  - no-cache
80
80
  body:
81
81
  encoding: US-ASCII
82
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
83
- 63754, "portmapping": 1, "ulrate": 0 } }'
82
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
83
+ 0, "listeningport": 63754, "portmapping": 0, "ulrate": 0 } }'
84
84
  http_version:
85
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
85
+ recorded_at: Wed, 12 Jun 2013 18:42:11 GMT
86
86
  recorded_with: VCR 2.5.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=CjJq3w8fG-rf15Vh44pxG3FwSBLu8AWU3b1PoN-SVD43tCnPkeCxAX-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=rQOaRmGSuftanqRVwf4c
11
+ - GUID=7Sb1dvknwuyiiKy9xvYv
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -17,26 +17,26 @@ http_interactions:
17
17
  Connection:
18
18
  - keep-alive
19
19
  Content-Length:
20
- - '122'
20
+ - '135'
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Cache-Control:
24
24
  - no-cache
25
25
  body:
26
26
  encoding: US-ASCII
27
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 1000,
28
- "listeningport": 63754, "portmapping": 1, "ulrate": 0 } }'
27
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
28
+ 1000, "listeningport": 63754, "portmapping": 0, "ulrate": 0 } }'
29
29
  http_version:
30
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
30
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
31
31
  - request:
32
32
  method: get
33
- uri: http://localhost:8888/gui/?action=setsettings&devicename=IceyEC-Virtual1&dlrate=0&listeningport=63754&output=json&portmapping=1&token=CjJq3w8fG-rf15Vh44pxG3FwSBLu8AWU3b1PoN-SVD43tCnPkeCxAX-DtlEAAAAA&ulrate=0
33
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=setsettings&devicename=precise32%20-%20Default%20Instance&dlrate=0&listeningport=63754&output=json&portmapping=0&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA&ulrate=0
34
34
  body:
35
35
  encoding: US-ASCII
36
36
  string: ''
37
37
  headers:
38
38
  Cookie:
39
- - GUID=rQOaRmGSuftanqRVwf4c
39
+ - GUID=7Sb1dvknwuyiiKy9xvYv
40
40
  response:
41
41
  status:
42
42
  code: 200
@@ -54,16 +54,16 @@ http_interactions:
54
54
  encoding: US-ASCII
55
55
  string: ! '{ }'
56
56
  http_version:
57
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
57
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
58
58
  - request:
59
59
  method: get
60
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=CjJq3w8fG-rf15Vh44pxG3FwSBLu8AWU3b1PoN-SVD43tCnPkeCxAX-DtlEAAAAA
60
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
61
61
  body:
62
62
  encoding: US-ASCII
63
63
  string: ''
64
64
  headers:
65
65
  Cookie:
66
- - GUID=rQOaRmGSuftanqRVwf4c
66
+ - GUID=7Sb1dvknwuyiiKy9xvYv
67
67
  response:
68
68
  status:
69
69
  code: 200
@@ -72,15 +72,15 @@ http_interactions:
72
72
  Connection:
73
73
  - keep-alive
74
74
  Content-Length:
75
- - '119'
75
+ - '132'
76
76
  Content-Type:
77
77
  - application/json; charset=utf-8
78
78
  Cache-Control:
79
79
  - no-cache
80
80
  body:
81
81
  encoding: US-ASCII
82
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
83
- 63754, "portmapping": 1, "ulrate": 0 } }'
82
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
83
+ 0, "listeningport": 63754, "portmapping": 0, "ulrate": 0 } }'
84
84
  http_version:
85
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
85
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
86
86
  recorded_with: VCR 2.5.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=GLaZWf2lCQUSADqtP2iKbMmUeP2bh9Cfqk4iqxY18BlN1cwxv38KqX-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=GDxCK1HGwXDitWCmAVka
11
+ - GUID=7Sb1dvknwuyiiKy9xvYv
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -17,26 +17,26 @@ http_interactions:
17
17
  Connection:
18
18
  - keep-alive
19
19
  Content-Length:
20
- - '119'
20
+ - '132'
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Cache-Control:
24
24
  - no-cache
25
25
  body:
26
26
  encoding: US-ASCII
27
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
28
- 12345, "portmapping": 1, "ulrate": 0 } }'
27
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
28
+ 0, "listeningport": 12345, "portmapping": 0, "ulrate": 0 } }'
29
29
  http_version:
30
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
30
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
31
31
  - request:
32
32
  method: get
33
- uri: http://localhost:8888/gui/?action=setsettings&devicename=IceyEC-Virtual1&dlrate=0&listeningport=63754&output=json&portmapping=1&token=GLaZWf2lCQUSADqtP2iKbMmUeP2bh9Cfqk4iqxY18BlN1cwxv38KqX-DtlEAAAAA&ulrate=0
33
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=setsettings&devicename=precise32%20-%20Default%20Instance&dlrate=0&listeningport=63754&output=json&portmapping=0&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA&ulrate=0
34
34
  body:
35
35
  encoding: US-ASCII
36
36
  string: ''
37
37
  headers:
38
38
  Cookie:
39
- - GUID=GDxCK1HGwXDitWCmAVka
39
+ - GUID=7Sb1dvknwuyiiKy9xvYv
40
40
  response:
41
41
  status:
42
42
  code: 200
@@ -54,16 +54,16 @@ http_interactions:
54
54
  encoding: US-ASCII
55
55
  string: ! '{ }'
56
56
  http_version:
57
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
57
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
58
58
  - request:
59
59
  method: get
60
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=GLaZWf2lCQUSADqtP2iKbMmUeP2bh9Cfqk4iqxY18BlN1cwxv38KqX-DtlEAAAAA
60
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
61
61
  body:
62
62
  encoding: US-ASCII
63
63
  string: ''
64
64
  headers:
65
65
  Cookie:
66
- - GUID=GDxCK1HGwXDitWCmAVka
66
+ - GUID=7Sb1dvknwuyiiKy9xvYv
67
67
  response:
68
68
  status:
69
69
  code: 200
@@ -72,15 +72,15 @@ http_interactions:
72
72
  Connection:
73
73
  - keep-alive
74
74
  Content-Length:
75
- - '119'
75
+ - '132'
76
76
  Content-Type:
77
77
  - application/json; charset=utf-8
78
78
  Cache-Control:
79
79
  - no-cache
80
80
  body:
81
81
  encoding: US-ASCII
82
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
83
- 63754, "portmapping": 1, "ulrate": 0 } }'
82
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
83
+ 0, "listeningport": 63754, "portmapping": 0, "ulrate": 0 } }'
84
84
  http_version:
85
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
85
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
86
86
  recorded_with: VCR 2.5.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=rShA3r5V4Pq3OYq4DTOXiqxiE6PP9LaqjqqF368g7y_UfyKXU2uvb3-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=TsFXrmm0YbYlyiYDtWmj
11
+ - GUID=7Sb1dvknwuyiiKy9xvYv
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -17,26 +17,26 @@ http_interactions:
17
17
  Connection:
18
18
  - keep-alive
19
19
  Content-Length:
20
- - '122'
20
+ - '135'
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Cache-Control:
24
24
  - no-cache
25
25
  body:
26
26
  encoding: US-ASCII
27
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
28
- 63754, "portmapping": 1, "ulrate": 1000 } }'
27
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
28
+ 0, "listeningport": 63754, "portmapping": 0, "ulrate": 1000 } }'
29
29
  http_version:
30
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
30
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
31
31
  - request:
32
32
  method: get
33
- uri: http://localhost:8888/gui/?action=setsettings&devicename=IceyEC-Virtual1&dlrate=0&listeningport=63754&output=json&portmapping=1&token=rShA3r5V4Pq3OYq4DTOXiqxiE6PP9LaqjqqF368g7y_UfyKXU2uvb3-DtlEAAAAA&ulrate=0
33
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=setsettings&devicename=precise32%20-%20Default%20Instance&dlrate=0&listeningport=63754&output=json&portmapping=0&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA&ulrate=0
34
34
  body:
35
35
  encoding: US-ASCII
36
36
  string: ''
37
37
  headers:
38
38
  Cookie:
39
- - GUID=TsFXrmm0YbYlyiYDtWmj
39
+ - GUID=7Sb1dvknwuyiiKy9xvYv
40
40
  response:
41
41
  status:
42
42
  code: 200
@@ -54,16 +54,16 @@ http_interactions:
54
54
  encoding: US-ASCII
55
55
  string: ! '{ }'
56
56
  http_version:
57
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
57
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
58
58
  - request:
59
59
  method: get
60
- uri: http://localhost:8888/gui/?action=getsettings&output=json&token=rShA3r5V4Pq3OYq4DTOXiqxiE6PP9LaqjqqF368g7y_UfyKXU2uvb3-DtlEAAAAA
60
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getsettings&output=json&token=u_MRSC7A_4Y-0yCWDt6uQvH5BzWrWTuCEuU3A8fvQlrsHlXYAZ4cFgPBuFEAAAAA
61
61
  body:
62
62
  encoding: US-ASCII
63
63
  string: ''
64
64
  headers:
65
65
  Cookie:
66
- - GUID=TsFXrmm0YbYlyiYDtWmj
66
+ - GUID=7Sb1dvknwuyiiKy9xvYv
67
67
  response:
68
68
  status:
69
69
  code: 200
@@ -72,15 +72,15 @@ http_interactions:
72
72
  Connection:
73
73
  - keep-alive
74
74
  Content-Length:
75
- - '119'
75
+ - '132'
76
76
  Content-Type:
77
77
  - application/json; charset=utf-8
78
78
  Cache-Control:
79
79
  - no-cache
80
80
  body:
81
81
  encoding: US-ASCII
82
- string: ! '{ "settings": { "devicename": "IceyEC-Virtual1", "dlrate": 0, "listeningport":
83
- 63754, "portmapping": 1, "ulrate": 0 } }'
82
+ string: ! '{ "settings": { "devicename": "precise32 - Default Instance", "dlrate":
83
+ 0, "listeningport": 63754, "portmapping": 0, "ulrate": 0 } }'
84
84
  http_version:
85
- recorded_at: Tue, 11 Jun 2013 01:55:13 GMT
85
+ recorded_at: Wed, 12 Jun 2013 18:42:12 GMT
86
86
  recorded_with: VCR 2.5.0
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://localhost:8888/gui/?action=getfolderpref&name=/home/chris/Documents&output=json&secret=6PX74LIR2RA2FF2W3DC25MG2CF6SQDSJ&token=cNJuLdTzhAVEgK83V3Ai3F9LGEGb2oDNWAwa1BWst7Dpo45MpwWH93-DtlEAAAAA
5
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getfolderpref&name=/home/vagrant&output=json&secret=XEQRSGSJGGNKCTV4UZG2ZPOJRINGDE2C&token=RZbVuwWEheFdAfByFpevSH6m3_t2y6Brna0IR68P0vD7nryy2Ktd6gTBuFEAAAAA
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Cookie:
11
- - GUID=SZGEavWRWlylZwpb4y1U
11
+ - GUID=TotE2NElyDGhazP4Fk3b
12
12
  response:
13
13
  status:
14
14
  code: 200
@@ -25,19 +25,19 @@ http_interactions:
25
25
  body:
26
26
  encoding: US-ASCII
27
27
  string: ! '{ "folderpref": { "deletetotrash": 1, "iswritable": 1, "readonlysecret":
28
- "RL5F2W34L7MRTS2S6JOXZHQM2QNTJUODS", "relay": 0, "searchdht": 1, "searchlan":
28
+ "R7ND4TVM27INRB34VHJR7M4YSW5PVZTLQ", "relay": 0, "searchdht": 1, "searchlan":
29
29
  0, "usehosts": 0, "usetracker": 0 } }'
30
30
  http_version:
31
- recorded_at: Tue, 11 Jun 2013 01:55:14 GMT
31
+ recorded_at: Wed, 12 Jun 2013 18:42:13 GMT
32
32
  - request:
33
33
  method: get
34
- uri: http://localhost:8888/gui/?action=setfolderpref&deletetotrash=0&iswritable=1&name=/home/chris/Documents&output=json&relay=0&searchdht=1&searchlan=0&secret=6PX74LIR2RA2FF2W3DC25MG2CF6SQDSJ&token=cNJuLdTzhAVEgK83V3Ai3F9LGEGb2oDNWAwa1BWst7Dpo45MpwWH93-DtlEAAAAA&usehosts=0&usetracker=0
34
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=setfolderpref&deletetotrash=0&iswritable=1&name=/home/vagrant&output=json&relay=0&searchdht=1&searchlan=0&secret=XEQRSGSJGGNKCTV4UZG2ZPOJRINGDE2C&token=RZbVuwWEheFdAfByFpevSH6m3_t2y6Brna0IR68P0vD7nryy2Ktd6gTBuFEAAAAA&usehosts=0&usetracker=0
35
35
  body:
36
36
  encoding: US-ASCII
37
37
  string: ''
38
38
  headers:
39
39
  Cookie:
40
- - GUID=SZGEavWRWlylZwpb4y1U
40
+ - GUID=TotE2NElyDGhazP4Fk3b
41
41
  response:
42
42
  status:
43
43
  code: 200
@@ -55,16 +55,16 @@ http_interactions:
55
55
  encoding: US-ASCII
56
56
  string: ! '{ }'
57
57
  http_version:
58
- recorded_at: Tue, 11 Jun 2013 01:55:14 GMT
58
+ recorded_at: Wed, 12 Jun 2013 18:42:13 GMT
59
59
  - request:
60
60
  method: get
61
- uri: http://localhost:8888/gui/?action=getfolderpref&name=/home/chris/Documents&output=json&secret=6PX74LIR2RA2FF2W3DC25MG2CF6SQDSJ&token=cNJuLdTzhAVEgK83V3Ai3F9LGEGb2oDNWAwa1BWst7Dpo45MpwWH93-DtlEAAAAA
61
+ uri: http://admin:AdminPassword@localhost:8888/gui/?action=getfolderpref&name=/home/vagrant&output=json&secret=XEQRSGSJGGNKCTV4UZG2ZPOJRINGDE2C&token=RZbVuwWEheFdAfByFpevSH6m3_t2y6Brna0IR68P0vD7nryy2Ktd6gTBuFEAAAAA
62
62
  body:
63
63
  encoding: US-ASCII
64
64
  string: ''
65
65
  headers:
66
66
  Cookie:
67
- - GUID=SZGEavWRWlylZwpb4y1U
67
+ - GUID=TotE2NElyDGhazP4Fk3b
68
68
  response:
69
69
  status:
70
70
  code: 200
@@ -81,8 +81,8 @@ http_interactions:
81
81
  body:
82
82
  encoding: US-ASCII
83
83
  string: ! '{ "folderpref": { "deletetotrash": 0, "iswritable": 1, "readonlysecret":
84
- "RL5F2W34L7MRTS2S6JOXZHQM2QNTJUODS", "relay": 0, "searchdht": 1, "searchlan":
84
+ "R7ND4TVM27INRB34VHJR7M4YSW5PVZTLQ", "relay": 0, "searchdht": 1, "searchlan":
85
85
  0, "usehosts": 0, "usetracker": 0 } }'
86
86
  http_version:
87
- recorded_at: Tue, 11 Jun 2013 01:55:14 GMT
87
+ recorded_at: Wed, 12 Jun 2013 18:42:13 GMT
88
88
  recorded_with: VCR 2.5.0