Skip to content

Commit a75559d

Browse files
authored
Move web/ under src/ (netdata#16992)
1 parent 777b7ac commit a75559d

699 files changed

Lines changed: 853 additions & 855 deletions

File tree

Some content is hidden

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

.codacy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ exclude_paths:
66
- src/collectors/python.d.plugin/python_modules/third_party/**
77
- contrib/**
88
- packaging/makeself/**
9-
- web/gui/css/**
10-
- web/gui/lib/**
11-
- web/gui/old/**
12-
- web/gui/src/**
13-
- web/gui/v1/**
14-
- web/gui/v2/**
15-
- web/gui/main.js
9+
- src/web/gui/css/**
10+
- src/web/gui/lib/**
11+
- src/web/gui/old/**
12+
- src/web/gui/src/**
13+
- src/web/gui/v1/**
14+
- src/web/gui/v2/**
15+
- src/web/gui/main.js
1616
- tests/**
1717
- aclk/tests/**
1818
- src/libnetdata/libjudy/**
1919
- src/database/sqlite/sqlite3.c
2020
- src/ml/dlib/**
21-
- web/server/h2o/libh2o/**
21+
- src/web/server/h2o/libh2o/**
2222
- build/**
2323
- build_external/**
2424
- packaging/**

.codeclimate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ exclude_patterns:
8484
- ".githooks/"
8585
- "tests/"
8686
- "m4/"
87-
- "web/css/"
88-
- "web/lib/"
89-
- "web/fonts/"
90-
- "web/old/"
87+
- "src/web/css/"
88+
- "src/web/lib/"
89+
- "src/web/fonts/"
90+
- "src/web/old/"
9191
- "collectors/python.d.plugin/python_modules/pyyaml2/"
9292
- "collectors/python.d.plugin/python_modules/pyyaml3/"
9393
- "collectors/python.d.plugin/python_modules/urllib3/"

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ src/registry/ @novykh
2929
src/streaming/ @thiagoftsm
3030
system/ @Ferroin @tkatsoulas
3131
tests/ @Ferroin @vkalintiris @tkatsoulas
32-
web/ @thiagoftsm @vkalintiris
33-
web/gui/ @novykh
32+
src/web/ @thiagoftsm @vkalintiris
33+
src/web/gui/ @novykh
3434
src/logsmanagement/ @thiagoftsm
3535

3636
# Ownership by filetype (overwrites ownership by directory)

.github/codeql/python-config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
paths-ignore:
22
- .github
33
- build_external/
4-
- ml/dlib
5-
- ml/json
4+
- src/ml/dlib
65
- tests/api
7-
- web/gui
6+
- src/web/gui
87
- src/collectors/python.d.plugin/python_modules/pyyaml*
98
- src/collectors/python.d.plugin/python_modules/third_party
109
- src/collectors/python.d.plugin/python_modules/urllib3

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ area/web:
272272
- any:
273273
- changed-files:
274274
- any-glob-to-any-file:
275-
- web/**
275+
- src/web/**
276276

277277
area/logs-management:
278278
- any:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
src/aclk/aclk-schemas/
6262
src/ml/dlib/
6363
src/fluent-bit/
64-
web/server/h2o/libh2o/
64+
src/web/server/h2o/libh2o/
6565
files_ignore: |
6666
netdata.spec.in
6767
**/*.md

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
src/aclk/aclk-schemas/
5050
src/ml/dlib/
5151
src/fluent-bit/
52-
web/server/h2o/libh2o/
52+
src/web/server/h2o/libh2o/
5353
files_ignore: |
5454
netdata.spec.in
5555
**/*.md

.github/workflows/dashboard-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Update Files
2626
id: update
2727
run: |
28-
web/gui/bundle_dashboard_v1.py ${{ github.event.inputs.dashboard_version }}
28+
src/web/gui/bundle_dashboard_v1.py ${{ github.event.inputs.dashboard_version }}
2929
- name: Create Pull Request
3030
id: pr
3131
uses: peter-evans/create-pull-request@v6

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
src/aclk/aclk-schemas/
5656
src/ml/dlib/
5757
src/fluent-bit/
58-
web/server/h2o/libh2o/
58+
src/web/server/h2o/libh2o/
5959
files_ignore: |
6060
netdata.spec.in
6161
**/*.md

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
src/aclk/aclk-schemas/
6666
src/ml/dlib/
6767
src/fluent-bit/
68-
web/server/h2o/libh2o/
68+
src/web/server/h2o/libh2o/
6969
files_ignore: |
7070
**/*.md
7171
- name: List all changed files in pattern

0 commit comments

Comments
 (0)