Skip to content

Commit e366c5c

Browse files
committed
ugh
1 parent 9bbc367 commit e366c5c

File tree

327 files changed

+51633
-25539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

327 files changed

+51633
-25539
lines changed

_ALLREPOS/Ackee/.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ language: node_js
22
env:
33
- YARN_GPG=no
44
node_js:
5-
- 'node'
6-
- '10'
5+
- "node"
6+
- "10"
77
os:
88
- windows
99
- linux
1010
- osx
1111
after_success:
12-
- 'npm run coveralls'
12+
- "npm run coveralls"

_ALLREPOS/Ackee/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
88

99
### Added
1010

11-
- Everything
11+
- Everything

_ALLREPOS/Ackee/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ Set the environment to `development` to see additional details in the console an
112112

113113
```
114114
NODE_ENV=development
115-
```
115+
```

_ALLREPOS/Ackee/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ services:
1818
container_name: mongo
1919
restart: always
2020
volumes:
21-
- ./data:/data/db
21+
- ./data:/data/db

_ALLREPOS/Ackee/docs/Anonymization.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Ackee tries its best to keep tracked data anonymized. Several steps are used to
44

55
## User identifier
66

7-
Ackee uses the IP, user-agent and domainId to identify a user. All information will be hashed together with a [salt](https://en.wikipedia.org/wiki/Salt_(cryptography)) that changes daily. The final hash is called `clientId`.
7+
Ackee uses the IP, user-agent and domainId to identify a user. All information will be hashed together with a [salt](<https://en.wikipedia.org/wiki/Salt_(cryptography)>) that changes daily. The final hash is called `clientId`.
88

99
The daily salt is never stored anywhere. It avoids that database backups can be used to stick data together to reconstruct the browsing history of a user.
1010

@@ -20,21 +20,21 @@ Ackee won't track personal information by default, but it has the ability to do
2020

2121
The following data is considered as "personal data":
2222

23-
| Name | Description |
24-
|:-----------|:------------|
25-
| siteLanguage | Language version of the browser. |
26-
| screenWidth | The width of the screen in pixels. |
27-
| screenHeight | The height of the screen in pixels. |
28-
| screenColorDepth | The bit depth of the color palette for displaying images (in bits per pixel). |
29-
| deviceName | The name of the product hosting the browser. |
30-
| deviceManufacturer | The name of the product's manufacturer. |
31-
| osName | The family of the OS. |
32-
| osVersion | The version of the OS. |
33-
| browserName | The name of the browser/environment. |
34-
| browserVersion | The browser/environment version. |
35-
| browserWidth | The width of the screen in pixels. |
36-
| browserHeight | The height of the screen in pixels. |
23+
| Name | Description |
24+
| :----------------- | :---------------------------------------------------------------------------- |
25+
| siteLanguage | Language version of the browser. |
26+
| screenWidth | The width of the screen in pixels. |
27+
| screenHeight | The height of the screen in pixels. |
28+
| screenColorDepth | The bit depth of the color palette for displaying images (in bits per pixel). |
29+
| deviceName | The name of the product hosting the browser. |
30+
| deviceManufacturer | The name of the product's manufacturer. |
31+
| osName | The family of the OS. |
32+
| osVersion | The version of the OS. |
33+
| browserName | The name of the browser/environment. |
34+
| browserVersion | The browser/environment version. |
35+
| browserWidth | The width of the screen in pixels. |
36+
| browserHeight | The height of the screen in pixels. |
3737

3838
All those parameters are considered as personal data, because you could point at the tracked person when sitting in the same room (even when this is probably never the case and totally unrealistic).
3939

40-
`siteReferrer` and visit duration (calculated using the creation and update time of a record) is not considered as personal data as you won't be able to identifier a user with this piece of information. Even when you are in the same room you would need access to the browsing history of the user.
40+
`siteReferrer` and visit duration (calculated using the creation and update time of a record) is not considered as personal data as you won't be able to identifier a user with this piece of information. Even when you are in the same room you would need access to the browsing history of the user.

_ALLREPOS/Ackee/docs/Get started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ Ackee will output the URL it's listening on once the server is running. Visit th
124124

125125
```
126126
yarn start
127-
```
127+
```

_ALLREPOS/Ackee/docs/SSL and HTTPS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ server {
119119
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
120120
}
121121
}
122-
```
122+
```

_ALLREPOS/Ackee/docs/UI.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ Status: 200 OK
2323
```
2424

2525
```html
26-
<!doctype html>
26+
<!DOCTYPE html>
2727
<html lang="en">
28-
<head>
29-
30-
<title>Ackee</title>
31-
28+
<head>
29+
<title>Ackee</title>
30+
31+
</head>
32+
</html>
3233
```
3334

3435
## Styles
@@ -89,4 +90,4 @@ Status: 200 OK
8990

9091
```js
9192
!function(){return function e(t,n,r){function o(i,u){if(!n[i]){if(!t[i]){var l
92-
```
93+
```

_ALLREPOS/Ackee/docs/domains.md

+43-43
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ GET /domains
1515

1616
### Headers
1717

18-
| Name | Example |
19-
|:-----------|:------------|
18+
| Name | Example |
19+
| :------------ | :------------------------------- |
2020
| Authorization | `Authorization: Bearer :tokenId` |
2121

2222
### Response
@@ -27,18 +27,18 @@ Status: 200 OK
2727

2828
```json
2929
{
30-
"type": "domains",
31-
"data": [
32-
{
33-
"type": "domain",
34-
"data": {
35-
"id": ":domainId",
36-
"title": "Example",
37-
"created": "1475491394341",
38-
"updated": "1475491394341"
39-
}
40-
}
41-
]
30+
"type": "domains",
31+
"data": [
32+
{
33+
"type": "domain",
34+
"data": {
35+
"id": ":domainId",
36+
"title": "Example",
37+
"created": "1475491394341",
38+
"updated": "1475491394341"
39+
}
40+
}
41+
]
4242
}
4343
```
4444

@@ -52,21 +52,21 @@ POST /domains
5252

5353
```json
5454
{
55-
"title": "Example"
55+
"title": "Example"
5656
}
5757
```
5858

5959
### Headers
6060

61-
| Name | Example |
62-
|:-----------|:------------|
61+
| Name | Example |
62+
| :------------ | :------------------------------- |
6363
| Authorization | `Authorization: Bearer :tokenId` |
6464

6565
### Parameters
6666

67-
| Name | Type | Required | Description |
68-
|:-----------|:------------|:------------|:------------|
69-
| title | String | true | Title of the domain. |
67+
| Name | Type | Required | Description |
68+
| :---- | :----- | :------- | :------------------- |
69+
| title | String | true | Title of the domain. |
7070

7171
### Response
7272

@@ -77,13 +77,13 @@ Location: /domains/:domainId
7777

7878
```json
7979
{
80-
"type": "domain",
81-
"data": {
82-
"id": ":domainId",
83-
"title": "Example",
84-
"created": "1475491394341",
85-
"updated": "1475491394341"
86-
}
80+
"type": "domain",
81+
"data": {
82+
"id": ":domainId",
83+
"title": "Example",
84+
"created": "1475491394341",
85+
"updated": "1475491394341"
86+
}
8787
}
8888
```
8989

@@ -97,21 +97,21 @@ PUT /domains/:domainId
9797

9898
```json
9999
{
100-
"title": "Example"
100+
"title": "Example"
101101
}
102102
```
103103

104104
### Headers
105105

106-
| Name | Example |
107-
|:-----------|:------------|
106+
| Name | Example |
107+
| :------------ | :------------------------------- |
108108
| Authorization | `Authorization: Bearer :tokenId` |
109109

110110
### Parameters
111111

112-
| Name | Type | Required | Description |
113-
|:-----------|:------------|:------------|:------------|
114-
| title | String | false | Title of the domain. |
112+
| Name | Type | Required | Description |
113+
| :---- | :----- | :------- | :------------------- |
114+
| title | String | false | Title of the domain. |
115115

116116
### Response
117117

@@ -121,13 +121,13 @@ Status: 200 OK
121121

122122
```json
123123
{
124-
"type": "domain",
125-
"data": {
126-
"id": ":domainId",
127-
"title": "Example",
128-
"created": "1475491394341",
129-
"updated": "1475491394341"
130-
}
124+
"type": "domain",
125+
"data": {
126+
"id": ":domainId",
127+
"title": "Example",
128+
"created": "1475491394341",
129+
"updated": "1475491394341"
130+
}
131131
}
132132
```
133133

@@ -141,12 +141,12 @@ DELETE /domains/:domainId
141141

142142
### Headers
143143

144-
| Name | Example |
145-
|:-----------|:------------|
144+
| Name | Example |
145+
| :------------ | :------------------------------- |
146146
| Authorization | `Authorization: Bearer :tokenId` |
147147

148148
### Response
149149

150150
```
151151
Status: 204 No Content
152-
```
152+
```

0 commit comments

Comments
 (0)