diff --git a/.docker/build/Dockerfile b/.docker/build/Dockerfile index d8adc8a1e0..916a025d64 100644 --- a/.docker/build/Dockerfile +++ b/.docker/build/Dockerfile @@ -15,7 +15,4 @@ WORKDIR /usr/local/src # clone and install gsa RUN cd gsa && \ - mkdir build && \ - cd build && \ - cmake -DCMAKE_BUILD_TYPE=Release .. && \ - make install + yarn install diff --git a/.docker/testing/Dockerfile b/.docker/testing/Dockerfile index bfbc6a5209..25e0a9ac4b 100644 --- a/.docker/testing/Dockerfile +++ b/.docker/testing/Dockerfile @@ -5,9 +5,6 @@ ARG VERSION=main ARG BUILD_TYPE=Debug ARG COMPILER=gcc -# We want gvm-libs to be ready so we use the build docker image of gvm-libs -FROM greenbone/gvm-libs-$VERSION-$COMPILER-build - # This will make apt-get install without question ARG DEBIAN_FRONTEND=noninteractive diff --git a/.github/workflows/ci-c.yml b/.github/workflows/ci-c.yml deleted file mode 100644 index 3b9b6de8db..0000000000 --- a/.github/workflows/ci-c.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: Build and test C - -on: - push: - branches: [ main, stable, oldstable ] - pull_request: - branches: [ main, stable, oldstable ] - - -jobs: - c_format_check: - env: - WORKSPACE: ${{ github.workspace }}/gsad - name: Check C Source Code Formatting - runs-on: 'ubuntu-latest' - steps: - - uses: actions/checkout@v2.3.4 - - name: Check Source Format - run: | - clang-format -i -style=file ${{ env.WORKSPACE }}/src/*.{c,h} \ - && git diff --exit-code - build_gsad: - env: - WORKSPACE: ${{ github.workspace }}/gsad - name: Build gsad - runs-on: 'ubuntu-latest' - strategy: - matrix: - container: - - greenbone/gsa-main-gcc-testing - - greenbone/gsa-main-clang-testing - container: ${{ matrix.container }} - steps: - - uses: actions/checkout@v2.3.4 - - name: Configure and compile gsad - run: | - mkdir build && rm -rf .git && cd build/ \ - && cmake -DCMAKE_BUILD_TYPE=Release .. && make install - working-directory: ${{ env.WORKSPACE }} - build_full: - name: Build gsa and gsad from root dir - runs-on: 'ubuntu-latest' - strategy: - matrix: - build_type: - - Debug - - Release - container: - - greenbone/gsa-main-gcc-testing - - greenbone/gsa-main-clang-testing - container: ${{ matrix.container }} - env: - BUILD_TYPE: ${{ matrix.build_type }} - steps: - - uses: actions/checkout@v2.3.4 - - name: Configure and compile - run: | - mkdir build && rm -rf .git && cd build/ \ - && cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. && make install - working-directory: ${{ github.WORKSPACE }} diff --git a/.github/workflows/ci-js.yml b/.github/workflows/ci-js.yml index be6c0ce9d3..9c8ebb3bf1 100644 --- a/.github/workflows/ci-js.yml +++ b/.github/workflows/ci-js.yml @@ -9,20 +9,15 @@ on: jobs: testing: env: - WORKSPACE: ${{ github.workspace }}/gsa REPORT_DIR: reports name: Testing and upload coverage runs-on: 'ubuntu-latest' strategy: matrix: - #node-version: [10.x, 12.x, 14.x, 15.x] - # 10.x for debian: https://packages.debian.org/buster/nodejs - # ubuntu lts: https://packages.ubuntu.com/focal/nodejs - # 12.x for ubuntu-latest: https://packages.ubuntu.com/hirsute/nodejs # 14.x is recommended by https://nodejs.org/en/ node-version: [14.x] steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - name: Set up node ${{ matrix.python-version }} uses: actions/setup-node@v2 with: @@ -40,26 +35,23 @@ jobs: # `--prefer-offline` gives cache priority - name: Install dependencies run: yarn install --prefer-offline - working-directory: ${{ env.WORKSPACE }} - name: Run JavaScript tests - working-directory: ${{ env.WORKSPACE }} env: - JEST_JUNIT_OUTPUT_DIR: ${{ env.WORKSPACE }}/${{ env.REPORT_DIR }} + JEST_JUNIT_OUTPUT_DIR: ${{ env.REPORT_DIR }} run: yarn test:coverage --reporters=default --reporters=jest-junit - name: Load Lint Results uses: actions/download-artifact@v2 with: name: lint + directory: . - name: Submit test coverage to codecov.io - uses: codecov/codecov-action@v1.5.0 + uses: codecov/codecov-action@v2 with: - directory: ${{ env.WORKSPACE }} fail_ci_if_error: true linting: env: - WORKSPACE: ${{ github.workspace }}/gsa REPORT_DIR: reports name: Linting runs-on: 'ubuntu-latest' @@ -67,7 +59,7 @@ jobs: matrix: node-version: [14.x] steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - name: Set up node ${{ matrix.python-version }} uses: actions/setup-node@v2 with: @@ -85,34 +77,10 @@ jobs: # `--prefer-offline` gives cache priority - name: Install dependencies run: yarn install --prefer-offline - working-directory: ${{ env.WORKSPACE }} - name: Lint JavaScript files - working-directory: ${{ env.WORKSPACE }} - run: yarn lint --format junit -o ${{ env.WORKSPACE }}/${{ env.REPORT_DIR }} + run: yarn lint --format junit -o ${{ env.REPORT_DIR }} - name: Store Lint Results uses: actions/upload-artifact@v2 with: name: lint - path: ${{ env.WORKSPACE }}/${{ env.REPORT_DIR }} - - build_gsa: - env: - WORKSPACE: ${{ github.workspace }}/gsa - name: Build gsa - runs-on: 'ubuntu-latest' - container: greenbone/gsa-main-gcc-testing - steps: - - uses: actions/checkout@v2.3.4 - - name: Get Yarn cache directory - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - - name: Use Yarn cache - uses: actions/cache@v2 - id: yarn-cache - with: - key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - - name: Configure and compile gsa - run: mkdir build && cd build/ && cmake -DCMAKE_BUILD_TYPE=Release ../gsa && make install - working-directory: ${{ github.WORKSPACE }} + path: ${{ env.REPORT_DIR }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9587518805..cf9649f2ad 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -19,14 +19,12 @@ jobs: actions: read contents: read security-events: write - container: greenbone/gsa-main-gcc-testing + container: greenbone/gsa-gcc-testing:main strategy: fail-fast: false matrix: - language: [ 'c', 'javascript' ] - env: - WORKSPACE: ${{ github.workspace }}/gsad + language: [ 'javascript' ] steps: - name: Checkout repository @@ -37,10 +35,17 @@ jobs: with: languages: ${{ matrix.language }} # build between init and analyze ... - - name: Configure and compile gsad - run: | - mkdir build && rm -rf .git && cd build/ \ - && cmake -DCMAKE_BUILD_TYPE=Debug .. && make install - working-directory: ${{ env.WORKSPACE }} + - name: Get Yarn cache directory + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + - name: Use Yarn cache + uses: actions/cache@v2 + id: yarn-cache + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + # `--prefer-offline` gives cache priority + - name: Install dependencies + run: yarn install --prefer-offline - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index a1477d6e0d..5dc5c45fe6 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -21,17 +21,9 @@ jobs: echo $GITHUB_BASE_REF echo $GITHUB_REF if [ -n "$GITHUB_BASE_REF" ]; \ - then echo "BRANCH=${GITHUB_BASE_REF##*/}" >> $GITHUB_ENV; \ - else echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV; \ + then echo "VERSION=${GITHUB_BASE_REF##*/}" >> $GITHUB_ENV; \ + else echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV; \ fi; \ - - name: Find version - run: | - echo $BRANCH - if [ $BRANCH = "main" ]; \ - then VERSION=main; \ - else VERSION=$(echo "$BRANCH" | sed 's/gsa-//g' -); \ - fi; - echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login to DockerHub @@ -40,13 +32,13 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} # this only works with github.ref on push not on pull_request. ;) - - run: echo "Build and push ${{ github.repository }}-${{ env.VERSION }}-${{matrix.compiler}}-testing" + - run: echo "Build and push ${{ github.repository }}-${{matrix.compiler}}-testing:${{ env.VERSION }" - name: Build and push uses: docker/build-push-action@v2.5.0 with: context: . push: true - tags: ${{ github.repository }}-${{ env.VERSION }}-${{matrix.compiler}}-testing + tags: ${{ github.repository }}-${{matrix.compiler}}-testing:${{ env.VERSION } file: .docker/testing/Dockerfile build-args: | VERSION=${{ env.VERSION }} @@ -68,17 +60,9 @@ jobs: echo $GITHUB_BASE_REF echo $GITHUB_REF if [ -n "$GITHUB_BASE_REF" ]; \ - then echo "BRANCH=${GITHUB_BASE_REF##*/}" >> $GITHUB_ENV; \ - else echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV; \ + then echo "VERSION=${GITHUB_BASE_REF##*/}" >> $GITHUB_ENV; \ + else echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV; \ fi; \ - - name: Find version - run: | - echo $BRANCH - if [ $BRANCH = "main" ]; \ - then VERSION=main; \ - else VERSION=$(echo "$BRANCH" | sed 's/gsa-//g' -); \ - fi; - echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login to DockerHub @@ -87,14 +71,14 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} # this only works with github.ref on push not on pull_request. ;) - - run: echo "Build and push ${{ github.repository }}-${{ env.VERSION }}-${{matrix.compiler}}-build" + - run: echo "Build and push ${{ github.repository }}-${{ matrix.compiler }}-build:${{ env.VERSION }}" - name: Build and push uses: docker/build-push-action@v2.5.0 with: context: . push: true - tags: ${{ github.repository }}-${{ env.VERSION }}-${{matrix.compiler}}-build + tags: ${{ github.repository }}-${{ matrix.compiler }}-build:${{ env.VERSION } file: .docker/build/Dockerfile build-args: | VERSION=${{ env.VERSION }} - COMPILER=${{matrix.compiler}} + COMPILER=${{ matrix.compiler }} diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index a1e76dd9bc..0000000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (C) 2009-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - -cmake_minimum_required (VERSION 3.0) - -message ("-- Configuring Greenbone Security Assistant") - -# VERSION: Set patch version for stable releases, e.g. "9.0.1", -# unset patch version for prereleases, e.g. "9.0" -project (greenbone-security-assistant - VERSION 21.10.0) - -SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) - -if (NOT CMAKE_BUILD_TYPE) - set (CMAKE_BUILD_TYPE Debug) -endif (NOT CMAKE_BUILD_TYPE) - -# set if this is in prerelease status, starting at 0 before first beta release, -# unset if this is a stable release series. -# set (PROJECT_BETA_RELEASE 0) - -## Retrieve git revision (at configure time) -include (ProjectVersion) - -## Variables - -if (NOT SYSCONFDIR) - set (SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/etc") -endif (NOT SYSCONFDIR) - -if (NOT EXEC_PREFIX) - set (EXEC_PREFIX "${CMAKE_INSTALL_PREFIX}") -endif (NOT EXEC_PREFIX) - -if (NOT BINDIR) - set (BINDIR "${EXEC_PREFIX}/bin") -endif (NOT BINDIR) - -if (NOT SBINDIR) - set (SBINDIR "${EXEC_PREFIX}/sbin") -endif (NOT SBINDIR) - -if (NOT LIBDIR) - set (LIBDIR "${EXEC_PREFIX}/lib") -endif (NOT LIBDIR) - -if (NOT LOCALSTATEDIR) - set (LOCALSTATEDIR "${CMAKE_INSTALL_PREFIX}/var") -endif (NOT LOCALSTATEDIR) - -if (NOT INCLUDEDIR) - set (INCLUDEDIR "${CMAKE_INSTALL_PREFIX}/include") -endif (NOT INCLUDEDIR) - -if (NOT DATADIR) - set (DATADIR "${CMAKE_INSTALL_PREFIX}/share") -endif (NOT DATADIR) - -message ("-- Install prefix: ${CMAKE_INSTALL_PREFIX}") - - -add_subdirectory (gsa) -add_subdirectory (gsad) - -# vim: set ts=2 sw=2 tw=80: diff --git a/INSTALL.md b/INSTALL.md index d5b64b59d2..62092fce54 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,14 +13,8 @@ See at the end of this section how to easily install these prerequisites on some supported platforms. Prerequisites: -* libgvm_base, libgvm_util, libgvm_gmp >= 10.0.0 -* gnutls >= 3.2.15 -* libgcrypt -* cmake >= 3.0 -* glib-2.0 >= 2.42 * libxml * libmicrohttpd >= 0.9.0 -* pkg-config Prerequisites for using translations: * gettext @@ -41,51 +35,6 @@ Install prerequisites on Debian GNU/Linux: apt-get install libmicrohttpd-dev libxml2-dev -Compiling Greenbone Security Assistant --------------------------------------- - -If you have installed required libraries to a non-standard location, remember to -set the `PKG_CONFIG_PATH` environment variable to the location of you pkg-config -files before configuring: - - export PKG_CONFIG_PATH=/your/location/lib/pkgconfig:$PKG_CONFIG_PATH - -Create a build directory and change into it with: - - mkdir build - cd build - -Then configure the build with: - - cmake -DCMAKE_INSTALL_PREFIX=/path/to/your/installation .. - -Or (if you want to use the default installation path /usr/local): - - cmake .. - -This only needs to be done once. - -Thereafter, the following commands are useful: - - make # build the scanner - make doc # build the documentation - make doc-full # build more developer-oriented documentation - make install # install the build - make rebuild_cache # rebuild the cmake cache - -Please note that you may have to execute `make install` as root, especially if -you have specified a prefix for which your user does not have full permissions. - -To clean up the build environment, simply remove the contents of the `build` -directory you created above. - -In case you have installed the Greenbone Security Assistant into a path -different from the other GVM modules, you might need to set some paths -explicitly before running `cmake`. The certificate and key locations in -`GVM_SERVER_CERTIFICATE`, `GVM_SERVER_KEY` and `GVM_CA_CERTIFICATE` in -the top-level CMakeLists.txt may need modifying. - - Compiling Greenbone Security Assistant GUI ------------------------------------------ @@ -103,13 +52,13 @@ apt-get install -y nodejs Developing Greenbone Security Assistant GUI ------------------------------------------- -Installing gsad requires to re-build the JavaScript bundle. This process is +Installing [gsad](https://github.com/greenbone/gsad/) requires to re-build the JavaScript bundle. This process is very time-consuming and therefore may be avoided during development. It is possible to run GSA in a special web development server. The development server can be started with: ```sh -cd /path/to/gsa-sources/ng && yarn run start +cd repository-root-dir && yarn run start ``` Afterwards the development web server is set up and a new browser window is @@ -117,7 +66,7 @@ opened at the URL `http://127.0.0.1:8080`, containing the GSA web application. When a JavaScript file of GSA in the src folder is changed, the browser window will reload automatically. -Besides the development server gsad needs to be running with CORS enabled. +Besides the development server [gsad](https://github.com/greenbone/gsad/) needs to be running with CORS enabled. ```sh gsad --http-cors="http://127.0.0.1:8080" @@ -204,22 +153,6 @@ environment variables are all unset, set to `C` or an equivalent like `POSIX` or invalid, translations will be disabled. -Static code analysis with the Clang Static Analyzer ---------------------------------------------------- - -If you want to use the Clang Static Analyzer (https://clang-analyzer.llvm.org/) -to do a static code analysis, you can do so by prefixing the configuration and -build commands with `scan-build`: - - scan-build cmake .. - scan-build make - -The tool will provide a hint on how to launch a web browser with the results. - -It is recommended to do this analysis in a separate, empty build directory and -to empty the build directory before `scan-build` call. - - Specifying Diffie-Hellman parameters file --------------------------------------------------- diff --git a/README.md b/README.md index 18d598df85..84ca79842b 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,6 @@ Greenbone Security Assistant consists of * [GSA](https://github.com/greenbone/gsa/tree/main/gsa) - The webpage written in [React](https://reactjs.org/) -and - -* [GSAD](https://github.com/greenbone/gsa/tree/main/gsad) - The HTTP server talking to the [GVM daemon](https://github.com/greenbone/gvmd) - ## Releases All [release files](https://github.com/greenbone/gsa/releases) are signed with diff --git a/cmake/GetGit.cmake b/cmake/GetGit.cmake deleted file mode 100644 index afc53b3fa5..0000000000 --- a/cmake/GetGit.cmake +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright (C) 2018-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: GPL-2.0-or-later -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - -# This script attempts to determine the Git commit ID - -find_package (Git) - -macro (Git_GET_REVISION dir variable) - if (GIT_FOUND) - execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD - WORKING_DIRECTORY ${dir} - ERROR_QUIET - RESULT_VARIABLE GIT_RESULT - OUTPUT_VARIABLE GIT_BRANCH - OUTPUT_STRIP_TRAILING_WHITESPACE) - if (GIT_RESULT EQUAL "0") - execute_process(COMMAND ${GIT_EXECUTABLE} log -1 --format=%h - WORKING_DIRECTORY ${dir} - OUTPUT_VARIABLE GIT_COMMIT_HASH - OUTPUT_STRIP_TRAILING_WHITESPACE) - string (REPLACE "/" "_" GIT_BRANCH ${GIT_BRANCH}) - set (${variable} "${GIT_COMMIT_HASH}-${GIT_BRANCH}") - endif() - endif() -endmacro (Git_GET_REVISION) diff --git a/cmake/ProjectVersion.cmake b/cmake/ProjectVersion.cmake deleted file mode 100644 index a9056c564b..0000000000 --- a/cmake/ProjectVersion.cmake +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright (C) 2020-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: GPL-2.0-or-later -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - -## Retrieve git revision (at configure time) - -include (GetGit) - -if (NOT CMAKE_BUILD_TYPE MATCHES "Release") - Git_GET_REVISION(${CMAKE_SOURCE_DIR} ProjectRevision) - if (DEFINED ProjectRevision) - set (GIT_REVISION "~git-${ProjectRevision}") - else () - set (GIT_REVISION "~git") - endif () -endif (NOT CMAKE_BUILD_TYPE MATCHES "Release") - -if (GIT_REVISION) - set (PROJECT_VERSION_GIT "${GIT_REVISION}") -else (GIT_REVISION) - set (PROJECT_VERSION_GIT "") -endif (GIT_REVISION) - -string(LENGTH ${PROJECT_VERSION_MINOR} PROJECT_VERSION_MINOR_LENGTH) - -if (PROJECT_VERSION_MINOR_LENGTH LESS 2) - set (PROJECT_VERSION_MINOR_STRING "0${PROJECT_VERSION_MINOR}") -else () - set (PROJECT_VERSION_MINOR_STRING "${PROJECT_VERSION_MINOR}") -endif () - -# If PROJECT_BETA_RELEASE is set to "0", the version string will be set to: -# "major.minor+alpha" -# If PROJECT_BETA_RELEASE is set otherwise, the version string will be set to: -# "major.minor+beta${PROJECT_BETA_RELEASE}" -# If PROJECT_BETA_RELEASE is NOT set, the version string will be set to: -# "major.minor.patch" -if (DEFINED PROJECT_BETA_RELEASE AND NOT PROJECT_BETA_RELEASE STREQUAL "") - if (PROJECT_BETA_RELEASE STREQUAL "0") - set (PROJECT_VERSION_SUFFIX "+alpha") - else (PROJECT_BETA_RELEASE STREQUAL "0") - set (PROJECT_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}") - endif (PROJECT_BETA_RELEASE STREQUAL "0") -elseif (DEFINED PROJECT_VERSION_PATCH AND NOT PROJECT_VERSION_PATCH STREQUAL "") - set (PROJECT_VERSION_SUFFIX ".${PROJECT_VERSION_PATCH}") -endif (DEFINED PROJECT_BETA_RELEASE AND NOT PROJECT_BETA_RELEASE STREQUAL "") - -set (PROJECT_VERSION_STRING "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR_STRING}${PROJECT_VERSION_SUFFIX}${PROJECT_VERSION_GIT}") diff --git a/gsa/CMakeLists.txt b/gsa/CMakeLists.txt deleted file mode 100644 index 63d2b7f695..0000000000 --- a/gsa/CMakeLists.txt +++ /dev/null @@ -1,1171 +0,0 @@ -# Copyright (C) 2016-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - -cmake_minimum_required (VERSION 3.0) - -message ("-- Configuring gsa") - -project (gsa VERSION 21.10.0 LANGUAGES) - -set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) - -find_package (Node 14.0 REQUIRED) -find_package (Yarn 1.0) - -if (NOT DEFINED PROJECT_VERSION_STRING) - set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/../cmake) - include (ProjectVersion) -endif() - -if (NOT DATADIR) - set (DATADIR "${CMAKE_INSTALL_PREFIX}/share") -endif (NOT DATADIR) - -set (GSA_BUILD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/build) - -if (NOT GSA_DEST_DIR) - set (GSA_DEST_DIR ${DATADIR}/gvm/gsad/web) -endif (NOT GSA_DEST_DIR) - -set (GSA_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}) - -set (GSA_PKG_FILES - ${GSA_SRC_DIR}/package.json) - -if (NOT YARN_FOUND) - MESSAGE (WARNING "Yarn package manager not found. Please install " - "yarn for reproducible builds (see https://yarnpkg.com/en/docs/install). " - "Trying to use npm instead.") - find_package (Npm REQUIRED) - set (INSTALLER ${NPM_EXECUTABLE}) -else (NOT YARN_FOUND) - set (INSTALLER ${YARN_EXECUTABLE}) - if (YARN_OFFLINE) - set (INSTALLER_ARGS "--offline") - MESSAGE( STATUS "Using Yarn in offline mode") - endif (YARN_OFFLINE) - list (APPEND GSA_PKG_FILES ${GSA_SRC_DIR}/yarn.lock) -endif (NOT YARN_FOUND) - -message (STATUS "Building gsa version ${PROJECT_VERSION_STRING}") - -set (GSA_STATIC_SRC_FILES - ${GSA_SRC_DIR}/public/index.html) - -set (GSA_JS_SRC_FILES - ${GSA_SRC_DIR}/src/index.js - ${GSA_SRC_DIR}/src/gmp/cancel.js - ${GSA_SRC_DIR}/src/gmp/capabilities/capabilities.js - ${GSA_SRC_DIR}/src/gmp/capabilities/everything.js - ${GSA_SRC_DIR}/src/gmp/collection/collectioncounts.js - ${GSA_SRC_DIR}/src/gmp/collection/parser.js - ${GSA_SRC_DIR}/src/gmp/command.js - ${GSA_SRC_DIR}/src/gmp/commands/alerts.js - ${GSA_SRC_DIR}/src/gmp/commands/audits.js - ${GSA_SRC_DIR}/src/gmp/commands/auth.js - ${GSA_SRC_DIR}/src/gmp/commands/certbund.js - ${GSA_SRC_DIR}/src/gmp/commands/cpes.js - ${GSA_SRC_DIR}/src/gmp/commands/credentials.js - ${GSA_SRC_DIR}/src/gmp/commands/cves.js - ${GSA_SRC_DIR}/src/gmp/commands/cvsscalculator.js - ${GSA_SRC_DIR}/src/gmp/commands/dashboards.js - ${GSA_SRC_DIR}/src/gmp/commands/dfncert.js - ${GSA_SRC_DIR}/src/gmp/commands/entities.js - ${GSA_SRC_DIR}/src/gmp/commands/entity.js - ${GSA_SRC_DIR}/src/gmp/commands/feedstatus.js - ${GSA_SRC_DIR}/src/gmp/commands/filters.js - ${GSA_SRC_DIR}/src/gmp/commands/gmp.js - ${GSA_SRC_DIR}/src/gmp/commands/groups.js - ${GSA_SRC_DIR}/src/gmp/commands/hosts.js - ${GSA_SRC_DIR}/src/gmp/commands/http.js - ${GSA_SRC_DIR}/src/gmp/commands/infoentities.js - ${GSA_SRC_DIR}/src/gmp/commands/infoentity.js - ${GSA_SRC_DIR}/src/gmp/commands/login.js - ${GSA_SRC_DIR}/src/gmp/commands/notes.js - ${GSA_SRC_DIR}/src/gmp/commands/nvt.js - ${GSA_SRC_DIR}/src/gmp/commands/os.js - ${GSA_SRC_DIR}/src/gmp/commands/overrides.js - ${GSA_SRC_DIR}/src/gmp/commands/permissions.js - ${GSA_SRC_DIR}/src/gmp/commands/policies.js - ${GSA_SRC_DIR}/src/gmp/commands/portlists.js - ${GSA_SRC_DIR}/src/gmp/commands/reportformats.js - ${GSA_SRC_DIR}/src/gmp/commands/reports.js - ${GSA_SRC_DIR}/src/gmp/commands/results.js - ${GSA_SRC_DIR}/src/gmp/commands/roles.js - ${GSA_SRC_DIR}/src/gmp/commands/scanconfigs.js - ${GSA_SRC_DIR}/src/gmp/commands/scanners.js - ${GSA_SRC_DIR}/src/gmp/commands/schedules.js - ${GSA_SRC_DIR}/src/gmp/commands/tags.js - ${GSA_SRC_DIR}/src/gmp/commands/targets.js - ${GSA_SRC_DIR}/src/gmp/commands/tasks.js - ${GSA_SRC_DIR}/src/gmp/commands/tickets.js - ${GSA_SRC_DIR}/src/gmp/commands/tlscertificates.js - ${GSA_SRC_DIR}/src/gmp/commands/trashcan.js - ${GSA_SRC_DIR}/src/gmp/commands/users.js - ${GSA_SRC_DIR}/src/gmp/commands/vulns.js - ${GSA_SRC_DIR}/src/gmp/gmp.js - ${GSA_SRC_DIR}/src/gmp/gmpsettings.js - ${GSA_SRC_DIR}/src/gmp/http/gmp.js - ${GSA_SRC_DIR}/src/gmp/http/http.js - ${GSA_SRC_DIR}/src/gmp/http/rejection.js - ${GSA_SRC_DIR}/src/gmp/http/response.js - ${GSA_SRC_DIR}/src/gmp/http/transform/default.js - ${GSA_SRC_DIR}/src/gmp/http/transform/fastxml.js - ${GSA_SRC_DIR}/src/gmp/http/utils.js - ${GSA_SRC_DIR}/src/gmp/index.js - ${GSA_SRC_DIR}/src/gmp/locale/date.js - ${GSA_SRC_DIR}/src/gmp/locale/detector.js - ${GSA_SRC_DIR}/src/gmp/locale/lang.js - ${GSA_SRC_DIR}/src/gmp/locale/languages.js - ${GSA_SRC_DIR}/src/gmp/locale/index.js - ${GSA_SRC_DIR}/src/gmp/log.js - ${GSA_SRC_DIR}/src/gmp/model.js - ${GSA_SRC_DIR}/src/gmp/models/actionresult.js - ${GSA_SRC_DIR}/src/gmp/models/alert.js - ${GSA_SRC_DIR}/src/gmp/models/asset.js - ${GSA_SRC_DIR}/src/gmp/models/audit.js - ${GSA_SRC_DIR}/src/gmp/models/certbund.js - ${GSA_SRC_DIR}/src/gmp/models/cpe.js - ${GSA_SRC_DIR}/src/gmp/models/credential.js - ${GSA_SRC_DIR}/src/gmp/models/cve.js - ${GSA_SRC_DIR}/src/gmp/models/date.js - ${GSA_SRC_DIR}/src/gmp/models/dfncert.js - ${GSA_SRC_DIR}/src/gmp/models/event.js - ${GSA_SRC_DIR}/src/gmp/models/filter.js - ${GSA_SRC_DIR}/src/gmp/models/filter/convert.js - ${GSA_SRC_DIR}/src/gmp/models/filter/filterterm.js - ${GSA_SRC_DIR}/src/gmp/models/filter/keywords.js - ${GSA_SRC_DIR}/src/gmp/models/filter/utils.js - ${GSA_SRC_DIR}/src/gmp/models/group.js - ${GSA_SRC_DIR}/src/gmp/models/host.js - ${GSA_SRC_DIR}/src/gmp/models/info.js - ${GSA_SRC_DIR}/src/gmp/models/login.js - ${GSA_SRC_DIR}/src/gmp/models/note.js - ${GSA_SRC_DIR}/src/gmp/models/nvt.js - ${GSA_SRC_DIR}/src/gmp/models/os.js - ${GSA_SRC_DIR}/src/gmp/models/override.js - ${GSA_SRC_DIR}/src/gmp/models/permission.js - ${GSA_SRC_DIR}/src/gmp/models/policy.js - ${GSA_SRC_DIR}/src/gmp/models/portlist.js - ${GSA_SRC_DIR}/src/gmp/models/reportformat.js - ${GSA_SRC_DIR}/src/gmp/models/report.js - ${GSA_SRC_DIR}/src/gmp/models/report/app.js - ${GSA_SRC_DIR}/src/gmp/models/report/cve.js - ${GSA_SRC_DIR}/src/gmp/models/report/host.js - ${GSA_SRC_DIR}/src/gmp/models/report/os.js - ${GSA_SRC_DIR}/src/gmp/models/report/parser.js - ${GSA_SRC_DIR}/src/gmp/models/report/port.js - ${GSA_SRC_DIR}/src/gmp/models/report/report.js - ${GSA_SRC_DIR}/src/gmp/models/report/task.js - ${GSA_SRC_DIR}/src/gmp/models/report/tlscertificate.js - ${GSA_SRC_DIR}/src/gmp/models/result.js - ${GSA_SRC_DIR}/src/gmp/models/role.js - ${GSA_SRC_DIR}/src/gmp/models/scanconfig.js - ${GSA_SRC_DIR}/src/gmp/models/scanner.js - ${GSA_SRC_DIR}/src/gmp/models/schedule.js - ${GSA_SRC_DIR}/src/gmp/models/secinfo.js - ${GSA_SRC_DIR}/src/gmp/models/settings.js - ${GSA_SRC_DIR}/src/gmp/models/tag.js - ${GSA_SRC_DIR}/src/gmp/models/target.js - ${GSA_SRC_DIR}/src/gmp/models/task.js - ${GSA_SRC_DIR}/src/gmp/models/ticket.js - ${GSA_SRC_DIR}/src/gmp/models/tlscertificate.js - ${GSA_SRC_DIR}/src/gmp/models/user.js - ${GSA_SRC_DIR}/src/gmp/models/vulnerability.js - ${GSA_SRC_DIR}/src/gmp/parser.js - ${GSA_SRC_DIR}/src/gmp/timezones.js - ${GSA_SRC_DIR}/src/gmp/utils/array.js - ${GSA_SRC_DIR}/src/gmp/utils/entitytype.js - ${GSA_SRC_DIR}/src/gmp/utils/event.js - ${GSA_SRC_DIR}/src/gmp/utils/id.js - ${GSA_SRC_DIR}/src/gmp/utils/identity.js - ${GSA_SRC_DIR}/src/gmp/utils/number.js - ${GSA_SRC_DIR}/src/gmp/utils/object.js - ${GSA_SRC_DIR}/src/gmp/utils/string.js - ${GSA_SRC_DIR}/src/gmp/utils/trace.js - ${GSA_SRC_DIR}/src/web/app.js - ${GSA_SRC_DIR}/src/web/components/badge/badge.js - ${GSA_SRC_DIR}/src/web/components/bar/compliancestatusbar.js - ${GSA_SRC_DIR}/src/web/components/bar/menubar.js - ${GSA_SRC_DIR}/src/web/components/bar/progressbar.js - ${GSA_SRC_DIR}/src/web/components/bar/severitybar.js - ${GSA_SRC_DIR}/src/web/components/bar/statusbar.js - ${GSA_SRC_DIR}/src/web/components/bar/titlebar.js - ${GSA_SRC_DIR}/src/web/components/bar/toolbar.js - ${GSA_SRC_DIR}/src/web/components/chart/axis.js - ${GSA_SRC_DIR}/src/web/components/chart/bar.js - ${GSA_SRC_DIR}/src/web/components/chart/bubble.js - ${GSA_SRC_DIR}/src/web/components/chart/donut.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/arc2d.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/arc3d.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/labels.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/paths.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/pie.js - ${GSA_SRC_DIR}/src/web/components/chart/donut/proptypes.js - ${GSA_SRC_DIR}/src/web/components/chart/group.js - ${GSA_SRC_DIR}/src/web/components/chart/label.js - ${GSA_SRC_DIR}/src/web/components/chart/legend.js - ${GSA_SRC_DIR}/src/web/components/chart/line.js - ${GSA_SRC_DIR}/src/web/components/chart/schedule.js - ${GSA_SRC_DIR}/src/web/components/chart/svg.js - ${GSA_SRC_DIR}/src/web/components/chart/tooltip.js - ${GSA_SRC_DIR}/src/web/components/chart/topology.js - ${GSA_SRC_DIR}/src/web/components/chart/utils/arc.js - ${GSA_SRC_DIR}/src/web/components/chart/utils/constants.js - ${GSA_SRC_DIR}/src/web/components/chart/utils/path.js - ${GSA_SRC_DIR}/src/web/components/chart/utils/update.js - ${GSA_SRC_DIR}/src/web/components/chart/wordcloud.js - ${GSA_SRC_DIR}/src/web/components/comment/comment.js - ${GSA_SRC_DIR}/src/web/components/dashboard/controls.js - ${GSA_SRC_DIR}/src/web/components/dashboard/dashboard.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/created/createddisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/created/createdtransform.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/createDisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/cvss/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/cvss/cvsstabledisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/cvss/cvsstransform.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/datadisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/datadisplayicons.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/datatable.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/datatabledisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/display.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/filterselection.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/severity/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/severity/severityclasstabledisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/severity/severityclasstransform.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/status/statusdisplay.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/utils.js - ${GSA_SRC_DIR}/src/web/components/dashboard/display/withFilterSelection.js - ${GSA_SRC_DIR}/src/web/components/dashboard/registry.js - ${GSA_SRC_DIR}/src/web/components/dashboard/utils.js - ${GSA_SRC_DIR}/src/web/components/dialog/button.js - ${GSA_SRC_DIR}/src/web/components/dialog/composercontent.js - ${GSA_SRC_DIR}/src/web/components/dialog/container.js - ${GSA_SRC_DIR}/src/web/components/dialog/content.js - ${GSA_SRC_DIR}/src/web/components/dialog/closebutton.js - ${GSA_SRC_DIR}/src/web/components/dialog/dialog.js - ${GSA_SRC_DIR}/src/web/components/dialog/error.js - ${GSA_SRC_DIR}/src/web/components/dialog/footer.js - ${GSA_SRC_DIR}/src/web/components/dialog/confirmationdialog.js - ${GSA_SRC_DIR}/src/web/components/dialog/overlay.js - ${GSA_SRC_DIR}/src/web/components/dialog/resizer.js - ${GSA_SRC_DIR}/src/web/components/dialog/savedialog.js - ${GSA_SRC_DIR}/src/web/components/dialog/scrollablecontent.js - ${GSA_SRC_DIR}/src/web/components/dialog/title.js - ${GSA_SRC_DIR}/src/web/components/dialog/twobuttonfooter.js - ${GSA_SRC_DIR}/src/web/components/error/errorboundary.js - ${GSA_SRC_DIR}/src/web/components/error/errorcontainer.js - ${GSA_SRC_DIR}/src/web/components/error/errormessage.js - ${GSA_SRC_DIR}/src/web/components/error/errorpanel.js - ${GSA_SRC_DIR}/src/web/components/folding/folding.js - ${GSA_SRC_DIR}/src/web/components/footnote/footnote.js - ${GSA_SRC_DIR}/src/web/components/form/button.js - ${GSA_SRC_DIR}/src/web/components/form/loadingbutton.js - ${GSA_SRC_DIR}/src/web/components/form/checkbox.js - ${GSA_SRC_DIR}/src/web/components/form/datepicker.js - ${GSA_SRC_DIR}/src/web/components/form/download.js - ${GSA_SRC_DIR}/src/web/components/form/field.js - ${GSA_SRC_DIR}/src/web/components/form/filefield.js - ${GSA_SRC_DIR}/src/web/components/form/formgroup.js - ${GSA_SRC_DIR}/src/web/components/form/multiselect.js - ${GSA_SRC_DIR}/src/web/components/form/numberfield.js - ${GSA_SRC_DIR}/src/web/components/form/passwordfield.js - ${GSA_SRC_DIR}/src/web/components/form/radio.js - ${GSA_SRC_DIR}/src/web/components/form/select.js - ${GSA_SRC_DIR}/src/web/components/form/selectelements.js - ${GSA_SRC_DIR}/src/web/components/form/spinner.js - ${GSA_SRC_DIR}/src/web/components/form/textarea.js - ${GSA_SRC_DIR}/src/web/components/form/textfield.js - ${GSA_SRC_DIR}/src/web/components/form/timezoneselect.js - ${GSA_SRC_DIR}/src/web/components/form/togglebutton.js - ${GSA_SRC_DIR}/src/web/components/form/useFormValidation.js - ${GSA_SRC_DIR}/src/web/components/form/withClickHandler.js - ${GSA_SRC_DIR}/src/web/components/form/withDownload.js - ${GSA_SRC_DIR}/src/web/components/form/yesnoradio.js - ${GSA_SRC_DIR}/src/web/components/icon/addtoassetsicon.js - ${GSA_SRC_DIR}/src/web/components/icon/alerticon.js - ${GSA_SRC_DIR}/src/web/components/icon/alterableicon.js - ${GSA_SRC_DIR}/src/web/components/icon/arrowicon.js - ${GSA_SRC_DIR}/src/web/components/icon/auditicon.js - ${GSA_SRC_DIR}/src/web/components/icon/calendaricon.js - ${GSA_SRC_DIR}/src/web/components/icon/certbundadvicon.js - ${GSA_SRC_DIR}/src/web/components/icon/cloneicon.js - ${GSA_SRC_DIR}/src/web/components/icon/cpeicon.js - ${GSA_SRC_DIR}/src/web/components/icon/cpelogoicon.js - ${GSA_SRC_DIR}/src/web/components/icon/credentialicon.js - ${GSA_SRC_DIR}/src/web/components/icon/cveicon.js - ${GSA_SRC_DIR}/src/web/components/icon/cvssicon.js - ${GSA_SRC_DIR}/src/web/components/icon/dashboardicon.js - ${GSA_SRC_DIR}/src/web/components/icon/deleteicon.js - ${GSA_SRC_DIR}/src/web/components/icon/deltaicon.js - ${GSA_SRC_DIR}/src/web/components/icon/deltasecondicon.js - ${GSA_SRC_DIR}/src/web/components/icon/detailsicon.js - ${GSA_SRC_DIR}/src/web/components/icon/dfncertadvicon.js - ${GSA_SRC_DIR}/src/web/components/icon/disableicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadcsvicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloaddebicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadexeicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadkeyicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadrpmicon.js - ${GSA_SRC_DIR}/src/web/components/icon/downloadsvgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/editicon.js - ${GSA_SRC_DIR}/src/web/components/icon/enableicon.js - ${GSA_SRC_DIR}/src/web/components/icon/exporticon.js - ${GSA_SRC_DIR}/src/web/components/icon/feedicon.js - ${GSA_SRC_DIR}/src/web/components/icon/filtericon.js - ${GSA_SRC_DIR}/src/web/components/icon/firsticon.js - ${GSA_SRC_DIR}/src/web/components/icon/foldicon.js - ${GSA_SRC_DIR}/src/web/components/icon/foldstateicon.js - ${GSA_SRC_DIR}/src/web/components/icon/groupicon.js - ${GSA_SRC_DIR}/src/web/components/icon/hosticon.js - ${GSA_SRC_DIR}/src/web/components/icon/icon.js - ${GSA_SRC_DIR}/src/web/components/icon/importicon.js - ${GSA_SRC_DIR}/src/web/components/icon/helpicon.js - ${GSA_SRC_DIR}/src/web/components/icon/keyicon.js - ${GSA_SRC_DIR}/src/web/components/icon/lasticon.js - ${GSA_SRC_DIR}/src/web/components/icon/ldapicon.js - ${GSA_SRC_DIR}/src/web/components/icon/legendicon.js - ${GSA_SRC_DIR}/src/web/components/icon/listicon.js - ${GSA_SRC_DIR}/src/web/components/icon/listsvgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/logouticon.js - ${GSA_SRC_DIR}/src/web/components/icon/manualicon.js - ${GSA_SRC_DIR}/src/web/components/icon/mysettingsicon.js - ${GSA_SRC_DIR}/src/web/components/icon/newicon.js - ${GSA_SRC_DIR}/src/web/components/icon/newnoteicon.js - ${GSA_SRC_DIR}/src/web/components/icon/newoverrideicon.js - ${GSA_SRC_DIR}/src/web/components/icon/newticketicon.js - ${GSA_SRC_DIR}/src/web/components/icon/nexticon.js - ${GSA_SRC_DIR}/src/web/components/icon/noteicon.js - ${GSA_SRC_DIR}/src/web/components/icon/nvticon.js - ${GSA_SRC_DIR}/src/web/components/icon/osicon.js - ${GSA_SRC_DIR}/src/web/components/icon/ossvgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/overrideicon.js - ${GSA_SRC_DIR}/src/web/components/icon/performanceicon.js - ${GSA_SRC_DIR}/src/web/components/icon/permissionicon.js - ${GSA_SRC_DIR}/src/web/components/icon/policyicon.js - ${GSA_SRC_DIR}/src/web/components/icon/portlisticon.js - ${GSA_SRC_DIR}/src/web/components/icon/previousicon.js - ${GSA_SRC_DIR}/src/web/components/icon/provideviewicon.js - ${GSA_SRC_DIR}/src/web/components/icon/refreshicon.js - ${GSA_SRC_DIR}/src/web/components/icon/radiusicon.js - ${GSA_SRC_DIR}/src/web/components/icon/removefromassetsicon.js - ${GSA_SRC_DIR}/src/web/components/icon/reportformaticon.js - ${GSA_SRC_DIR}/src/web/components/icon/roleicon.js - ${GSA_SRC_DIR}/src/web/components/icon/reporticon.js - ${GSA_SRC_DIR}/src/web/components/icon/restoreicon.js - ${GSA_SRC_DIR}/src/web/components/icon/reseticon.js - ${GSA_SRC_DIR}/src/web/components/icon/resulticon.js - ${GSA_SRC_DIR}/src/web/components/icon/restoreicon.js - ${GSA_SRC_DIR}/src/web/components/icon/resumeicon.js - ${GSA_SRC_DIR}/src/web/components/icon/scanconfigicon.js - ${GSA_SRC_DIR}/src/web/components/icon/scannericon.js - ${GSA_SRC_DIR}/src/web/components/icon/scheduleicon.js - ${GSA_SRC_DIR}/src/web/components/icon/sensoricon.js - ${GSA_SRC_DIR}/src/web/components/icon/solutiontypeicon.js - ${GSA_SRC_DIR}/src/web/components/icon/solutiontypesvgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/starticon.js - ${GSA_SRC_DIR}/src/web/components/icon/stopicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stmitigateicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stnonavailableicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stunknownicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stvendorfixicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stwillnotfixicon.js - ${GSA_SRC_DIR}/src/web/components/icon/stworkaroundicon.js - ${GSA_SRC_DIR}/src/web/components/icon/svgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/tagicon.js - ${GSA_SRC_DIR}/src/web/components/icon/tagsicon.js - ${GSA_SRC_DIR}/src/web/components/icon/tagssvgicon.js - ${GSA_SRC_DIR}/src/web/components/icon/targeticon.js - ${GSA_SRC_DIR}/src/web/components/icon/taskicon.js - ${GSA_SRC_DIR}/src/web/components/icon/ticketicon.js - ${GSA_SRC_DIR}/src/web/components/icon/tlscertificateicon.js - ${GSA_SRC_DIR}/src/web/components/icon/toggle3dicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trashcanicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trashdeleteicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trashicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trenddownicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trendlessicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trendmoreicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trendnochangeicon.js - ${GSA_SRC_DIR}/src/web/components/icon/trendupicon.js - ${GSA_SRC_DIR}/src/web/components/icon/unfoldicon.js - ${GSA_SRC_DIR}/src/web/components/icon/uploadicon.js - ${GSA_SRC_DIR}/src/web/components/icon/usericon.js - ${GSA_SRC_DIR}/src/web/components/icon/verifyicon.js - ${GSA_SRC_DIR}/src/web/components/icon/verifynoicon.js - ${GSA_SRC_DIR}/src/web/components/icon/viewothericon.js - ${GSA_SRC_DIR}/src/web/components/icon/vulnerabilityicon.js - ${GSA_SRC_DIR}/src/web/components/icon/withIconSize.js - ${GSA_SRC_DIR}/src/web/components/icon/withSvgIcon.js - ${GSA_SRC_DIR}/src/web/components/icon/wizardicon.js - ${GSA_SRC_DIR}/src/web/components/icon/svg/add_to_assets.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/alert.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/alterable.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/audit.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/calendar.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/cert_bund_adv.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/clone.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/config.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/cpe.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/credential.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/cve.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/cvss_calculator.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dashboard.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/delete.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/delta.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/delta_second.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/details.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dfn_cert_adv.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/disable.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_csv.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_deb.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_exe.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_key.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_rpm.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/dl_svg.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/download.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/edit.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/enable.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/export.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/filter.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/first.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/feed.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/greenbone.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/group.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/help.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/host.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/import.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/key.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/last.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/ldap.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/legend.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/list.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/logout.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_mitigate.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_nonavailable.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_unknown.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_vendorfix.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_willnotfix.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_workaround.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/my_setting.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/new.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/new_note.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/new_override.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/new_ticket.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/next.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/note.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/nvt.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/os.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/override.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/performance.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/permission.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/policy.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/port_list.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/previous.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/provide_view.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/radius.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/refresh.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/remove_from_assets.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/report_format.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/report.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/reset.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/result.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/restore.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/resume.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/role.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/scanner.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/st_vendorfix.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/start.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/stop.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/schedule.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/sensor.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/solution_type.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/tag.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/tags.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/target.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/task.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/ticket.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/tlscertificate.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/toggle3d.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trashcan.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trend_down.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trend_less.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trend_more.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trend_nochange.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/trend_up.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/upload.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/user.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/verify.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/verify_no.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/view_other.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/vulnerability.svg - ${GSA_SRC_DIR}/src/web/components/icon/svg/wizard.svg - ${GSA_SRC_DIR}/src/web/components/img/greenbone.js - ${GSA_SRC_DIR}/src/web/components/img/img.js - ${GSA_SRC_DIR}/src/web/components/img/product.js - ${GSA_SRC_DIR}/src/web/components/label/severityclass.js - ${GSA_SRC_DIR}/src/web/components/layout/divider.js - ${GSA_SRC_DIR}/src/web/components/layout/globalstyles.js - ${GSA_SRC_DIR}/src/web/components/layout/icondivider.js - ${GSA_SRC_DIR}/src/web/components/layout/layout.js - ${GSA_SRC_DIR}/src/web/components/layout/withLayout.js - ${GSA_SRC_DIR}/src/web/components/loading/loading.js - ${GSA_SRC_DIR}/src/web/components/link/blanklink.js - ${GSA_SRC_DIR}/src/web/components/link/certlink.js - ${GSA_SRC_DIR}/src/web/components/link/cvelink.js - ${GSA_SRC_DIR}/src/web/components/link/detailslink.js - ${GSA_SRC_DIR}/src/web/components/link/externallink.js - ${GSA_SRC_DIR}/src/web/components/link/innerlink.js - ${GSA_SRC_DIR}/src/web/components/link/link.js - ${GSA_SRC_DIR}/src/web/components/link/manuallink.js - ${GSA_SRC_DIR}/src/web/components/link/protocoldoclink.js - ${GSA_SRC_DIR}/src/web/components/link/target.js - ${GSA_SRC_DIR}/src/web/components/menu/iconmenu.js - ${GSA_SRC_DIR}/src/web/components/menu/menu.js - ${GSA_SRC_DIR}/src/web/components/menu/menuentry.js - ${GSA_SRC_DIR}/src/web/components/menu/menuhelpentry.js - ${GSA_SRC_DIR}/src/web/components/menu/menusection.js - ${GSA_SRC_DIR}/src/web/components/menu/usermenu.js - ${GSA_SRC_DIR}/src/web/components/notification/dialognotification.js - ${GSA_SRC_DIR}/src/web/components/notification/withDialogNotifiaction.js - ${GSA_SRC_DIR}/src/web/components/observer/localeobserver.js - ${GSA_SRC_DIR}/src/web/components/observer/locationobserver.js - ${GSA_SRC_DIR}/src/web/components/observer/sessionobserver.js - ${GSA_SRC_DIR}/src/web/components/pagination/pagination.js - ${GSA_SRC_DIR}/src/web/components/panel/infopanel.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/applyoverridesgroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/createnamedfiltergroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/dialog.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/dialogproptypes.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/filterstringgroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/filterdialog.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/firstresultgroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/minqodgroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/powerfilter.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/resultsperpagegroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/severitylevelsgroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/solutiontypegroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/sortbygroup.js - ${GSA_SRC_DIR}/src/web/components/powerfilter/withFilterDialog.js - ${GSA_SRC_DIR}/src/web/components/provider/capabilitiesprovider.js - ${GSA_SRC_DIR}/src/web/components/provider/gmpprovider.js - ${GSA_SRC_DIR}/src/web/components/provider/iconsizeprovider.js - ${GSA_SRC_DIR}/src/web/components/provider/subscriptionprovider.js - ${GSA_SRC_DIR}/src/web/components/qod/qod.js - ${GSA_SRC_DIR}/src/web/components/section/header.js - ${GSA_SRC_DIR}/src/web/components/section/section.js - ${GSA_SRC_DIR}/src/web/components/sortby/sortby.js - ${GSA_SRC_DIR}/src/web/components/sortable/emptyrow.js - ${GSA_SRC_DIR}/src/web/components/sortable/grid.js - ${GSA_SRC_DIR}/src/web/components/sortable/item.js - ${GSA_SRC_DIR}/src/web/components/sortable/resizer.js - ${GSA_SRC_DIR}/src/web/components/sortable/row.js - ${GSA_SRC_DIR}/src/web/components/structure/footer.js - ${GSA_SRC_DIR}/src/web/components/structure/header.js - ${GSA_SRC_DIR}/src/web/components/structure/main.js - ${GSA_SRC_DIR}/src/web/components/tab/tab.js - ${GSA_SRC_DIR}/src/web/components/tab/tablayout.js - ${GSA_SRC_DIR}/src/web/components/tab/tablist.js - ${GSA_SRC_DIR}/src/web/components/tab/tabpanel.js - ${GSA_SRC_DIR}/src/web/components/tab/tabpanels.js - ${GSA_SRC_DIR}/src/web/components/tab/tabs.js - ${GSA_SRC_DIR}/src/web/components/table/body.js - ${GSA_SRC_DIR}/src/web/components/table/data.js - ${GSA_SRC_DIR}/src/web/components/table/detailstable.js - ${GSA_SRC_DIR}/src/web/components/table/header.js - ${GSA_SRC_DIR}/src/web/components/table/head.js - ${GSA_SRC_DIR}/src/web/components/table/infotable.js - ${GSA_SRC_DIR}/src/web/components/table/row.js - ${GSA_SRC_DIR}/src/web/components/table/simpletable.js - ${GSA_SRC_DIR}/src/web/components/table/stripedtable.js - ${GSA_SRC_DIR}/src/web/components/table/table.js - ${GSA_SRC_DIR}/src/web/entities/actions.js - ${GSA_SRC_DIR}/src/web/entities/container.js - ${GSA_SRC_DIR}/src/web/entities/entitynametabledata.js - ${GSA_SRC_DIR}/src/web/entities/filterprovider.js - ${GSA_SRC_DIR}/src/web/entities/footer.js - ${GSA_SRC_DIR}/src/web/entities/header.js - ${GSA_SRC_DIR}/src/web/entities/page.js - ${GSA_SRC_DIR}/src/web/entities/row.js - ${GSA_SRC_DIR}/src/web/entities/selection.js - ${GSA_SRC_DIR}/src/web/entities/table.js - ${GSA_SRC_DIR}/src/web/entities/tagsdialog.js - ${GSA_SRC_DIR}/src/web/entities/withEntitiesActions.js - ${GSA_SRC_DIR}/src/web/entities/withEntitiesContainer.js - ${GSA_SRC_DIR}/src/web/entities/withRowDetails.js - ${GSA_SRC_DIR}/src/web/entity/block.js - ${GSA_SRC_DIR}/src/web/entity/box.js - ${GSA_SRC_DIR}/src/web/entity/component.js - ${GSA_SRC_DIR}/src/web/entity/container.js - ${GSA_SRC_DIR}/src/web/entity/icon/cloneicon.js - ${GSA_SRC_DIR}/src/web/entity/icon/createicon.js - ${GSA_SRC_DIR}/src/web/entity/icon/deleteicon.js - ${GSA_SRC_DIR}/src/web/entity/icon/editicon.js - ${GSA_SRC_DIR}/src/web/entity/icon/observericon.js - ${GSA_SRC_DIR}/src/web/entity/icon/trashicon.js - ${GSA_SRC_DIR}/src/web/entity/icon/verifyicon.js - ${GSA_SRC_DIR}/src/web/entity/info.js - ${GSA_SRC_DIR}/src/web/entity/link.js - ${GSA_SRC_DIR}/src/web/entity/note.js - ${GSA_SRC_DIR}/src/web/entity/override.js - ${GSA_SRC_DIR}/src/web/entity/page.js - ${GSA_SRC_DIR}/src/web/entity/permissions.js - ${GSA_SRC_DIR}/src/web/entity/tab.js - ${GSA_SRC_DIR}/src/web/entity/tags.js - ${GSA_SRC_DIR}/src/web/entity/withEntityContainer.js - ${GSA_SRC_DIR}/src/web/pages/alerts/alembavfiremethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/component.js - ${GSA_SRC_DIR}/src/web/pages/alerts/condition.js - ${GSA_SRC_DIR}/src/web/pages/alerts/contentcomposerdialog.js - ${GSA_SRC_DIR}/src/web/pages/alerts/details.js - ${GSA_SRC_DIR}/src/web/pages/alerts/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/alerts/dialog.js - ${GSA_SRC_DIR}/src/web/pages/alerts/emailmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/event.js - ${GSA_SRC_DIR}/src/web/pages/alerts/filtercountchangedconditionpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/filtercountleastconditionpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/httpmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/listpage.js - ${GSA_SRC_DIR}/src/web/pages/alerts/method.js - ${GSA_SRC_DIR}/src/web/pages/alerts/scpmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/secinfoeventpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/sendmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/severitychangedconditionpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/severityleastconditionpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/snmpmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/sourcefiremethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/starttaskmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/table.js - ${GSA_SRC_DIR}/src/web/pages/alerts/taskeventpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/ticketeventpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/tippingpointmethodpart.js - ${GSA_SRC_DIR}/src/web/pages/alerts/verinicemethodpart.js - ${GSA_SRC_DIR}/src/web/pages/audits/actions.js - ${GSA_SRC_DIR}/src/web/pages/audits/component.js - ${GSA_SRC_DIR}/src/web/pages/audits/details.js - ${GSA_SRC_DIR}/src/web/pages/audits/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/audits/dialog.js - ${GSA_SRC_DIR}/src/web/pages/audits/listpage.js - ${GSA_SRC_DIR}/src/web/pages/audits/row.js - ${GSA_SRC_DIR}/src/web/pages/audits/table.js - ${GSA_SRC_DIR}/src/web/pages/credentials/component.js - ${GSA_SRC_DIR}/src/web/pages/credentials/details.js - ${GSA_SRC_DIR}/src/web/pages/credentials/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/credentials/dialog.js - ${GSA_SRC_DIR}/src/web/pages/credentials/downloadicon.js - ${GSA_SRC_DIR}/src/web/pages/credentials/listpage.js - ${GSA_SRC_DIR}/src/web/pages/credentials/row.js - ${GSA_SRC_DIR}/src/web/pages/credentials/table.js - ${GSA_SRC_DIR}/src/web/pages/certbund/details.js - ${GSA_SRC_DIR}/src/web/pages/certbund/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/certbund/listpage.js - ${GSA_SRC_DIR}/src/web/pages/certbund/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/certbund/row.js - ${GSA_SRC_DIR}/src/web/pages/certbund/table.js - ${GSA_SRC_DIR}/src/web/pages/certbund/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/certbund/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/certbund/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/certbund/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/certbund/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/cpes/details.js - ${GSA_SRC_DIR}/src/web/pages/cpes/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/cpes/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/cpes/listpage.js - ${GSA_SRC_DIR}/src/web/pages/cpes/row.js - ${GSA_SRC_DIR}/src/web/pages/cpes/table.js - ${GSA_SRC_DIR}/src/web/pages/cpes/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/cpes/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/cpes/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/cpes/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/cpes/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/cves/details.js - ${GSA_SRC_DIR}/src/web/pages/cves/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/cves/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/cves/listpage.js - ${GSA_SRC_DIR}/src/web/pages/cves/row.js - ${GSA_SRC_DIR}/src/web/pages/cves/table.js - ${GSA_SRC_DIR}/src/web/pages/cves/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/cves/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/cves/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/cves/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/cves/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/details.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/listpage.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/row.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/table.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/table.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/dfncert/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/extras/cvsscalculatorpage.js - ${GSA_SRC_DIR}/src/web/pages/extras/feedstatuspage.js - ${GSA_SRC_DIR}/src/web/pages/extras/trashactions.js - ${GSA_SRC_DIR}/src/web/pages/extras/trashcanpage.js - ${GSA_SRC_DIR}/src/web/pages/filters/component.js - ${GSA_SRC_DIR}/src/web/pages/filters/details.js - ${GSA_SRC_DIR}/src/web/pages/filters/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/filters/dialog.js - ${GSA_SRC_DIR}/src/web/pages/filters/listpage.js - ${GSA_SRC_DIR}/src/web/pages/filters/row.js - ${GSA_SRC_DIR}/src/web/pages/filters/table.js - ${GSA_SRC_DIR}/src/web/pages/groups/component.js - ${GSA_SRC_DIR}/src/web/pages/groups/details.js - ${GSA_SRC_DIR}/src/web/pages/groups/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/groups/dialog.js - ${GSA_SRC_DIR}/src/web/pages/groups/header.js - ${GSA_SRC_DIR}/src/web/pages/groups/listpage.js - ${GSA_SRC_DIR}/src/web/pages/groups/row.js - ${GSA_SRC_DIR}/src/web/pages/groups/table.js - ${GSA_SRC_DIR}/src/web/pages/help/about.js - ${GSA_SRC_DIR}/src/web/pages/hosts/component.js - ${GSA_SRC_DIR}/src/web/pages/hosts/details.js - ${GSA_SRC_DIR}/src/web/pages/hosts/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dialog.js - ${GSA_SRC_DIR}/src/web/pages/hosts/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/hosts/identifiers.js - ${GSA_SRC_DIR}/src/web/pages/hosts/listpage.js - ${GSA_SRC_DIR}/src/web/pages/hosts/row.js - ${GSA_SRC_DIR}/src/web/pages/hosts/table.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/modifieddisplay.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/modifiedhighdisplay.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/topologydisplay.js - ${GSA_SRC_DIR}/src/web/pages/hosts/dashboard/vulnscoredisplay.js - ${GSA_SRC_DIR}/src/web/pages/ldap/dialog.js - ${GSA_SRC_DIR}/src/web/pages/ldap/ldappage.js - ${GSA_SRC_DIR}/src/web/pages/login/loginform.js - ${GSA_SRC_DIR}/src/web/pages/login/loginpage.js - ${GSA_SRC_DIR}/src/web/pages/notes/component.js - ${GSA_SRC_DIR}/src/web/pages/notes/details.js - ${GSA_SRC_DIR}/src/web/pages/notes/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/notes/dialog.js - ${GSA_SRC_DIR}/src/web/pages/notes/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/notes/listpage.js - ${GSA_SRC_DIR}/src/web/pages/notes/row.js - ${GSA_SRC_DIR}/src/web/pages/notes/table.js - ${GSA_SRC_DIR}/src/web/pages/notes/dashboard/activedaysdisplay.js - ${GSA_SRC_DIR}/src/web/pages/notes/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/notes/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/notes/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/notes/dashboard/wordclouddisplay.js - ${GSA_SRC_DIR}/src/web/pages/notfoundpage.js - ${GSA_SRC_DIR}/src/web/pages/nvts/component.js - ${GSA_SRC_DIR}/src/web/pages/nvts/details.js - ${GSA_SRC_DIR}/src/web/pages/nvts/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/nvts/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/nvts/listpage.js - ${GSA_SRC_DIR}/src/web/pages/nvts/nvtpreference.js - ${GSA_SRC_DIR}/src/web/pages/nvts/preferences.js - ${GSA_SRC_DIR}/src/web/pages/nvts/preformatted.js - ${GSA_SRC_DIR}/src/web/pages/nvts/references.js - ${GSA_SRC_DIR}/src/web/pages/nvts/row.js - ${GSA_SRC_DIR}/src/web/pages/nvts/solution.js - ${GSA_SRC_DIR}/src/web/pages/nvts/table.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/familydisplay.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/qoddisplay.js - ${GSA_SRC_DIR}/src/web/pages/nvts/dashboard/qodtypedisplay.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/component.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/listpage.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/row.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/table.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/operatingsystems/dashboard/vulnscoredisplay.js - ${GSA_SRC_DIR}/src/web/pages/overrides/component.js - ${GSA_SRC_DIR}/src/web/pages/overrides/details.js - ${GSA_SRC_DIR}/src/web/pages/overrides/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dialog.js - ${GSA_SRC_DIR}/src/web/pages/overrides/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/overrides/listpage.js - ${GSA_SRC_DIR}/src/web/pages/overrides/row.js - ${GSA_SRC_DIR}/src/web/pages/overrides/table.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dashboard/activedaysdisplay.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/overrides/dashboard/wordclouddisplay.js - ${GSA_SRC_DIR}/src/web/pages/page.js - ${GSA_SRC_DIR}/src/web/pages/performance/performancepage.js - ${GSA_SRC_DIR}/src/web/pages/performance/startendtimeselection.js - ${GSA_SRC_DIR}/src/web/pages/permissions/component.js - ${GSA_SRC_DIR}/src/web/pages/permissions/details.js - ${GSA_SRC_DIR}/src/web/pages/permissions/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/permissions/dialog.js - ${GSA_SRC_DIR}/src/web/pages/permissions/listpage.js - ${GSA_SRC_DIR}/src/web/pages/permissions/multipledialog.js - ${GSA_SRC_DIR}/src/web/pages/permissions/row.js - ${GSA_SRC_DIR}/src/web/pages/permissions/table.js - ${GSA_SRC_DIR}/src/web/pages/policies/component.js - ${GSA_SRC_DIR}/src/web/pages/policies/details.js - ${GSA_SRC_DIR}/src/web/pages/policies/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/policies/dialog.js - ${GSA_SRC_DIR}/src/web/pages/policies/header.js - ${GSA_SRC_DIR}/src/web/pages/policies/listpage.js - ${GSA_SRC_DIR}/src/web/pages/policies/row.js - ${GSA_SRC_DIR}/src/web/pages/policies/table.js - ${GSA_SRC_DIR}/src/web/pages/portlists/component.js - ${GSA_SRC_DIR}/src/web/pages/portlists/details.js - ${GSA_SRC_DIR}/src/web/pages/portlists/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/portlists/dialog.js - ${GSA_SRC_DIR}/src/web/pages/portlists/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/portlists/importdialog.js - ${GSA_SRC_DIR}/src/web/pages/portlists/listpage.js - ${GSA_SRC_DIR}/src/web/pages/portlists/portrangedialog.js - ${GSA_SRC_DIR}/src/web/pages/portlists/portrangestable.js - ${GSA_SRC_DIR}/src/web/pages/portlists/row.js - ${GSA_SRC_DIR}/src/web/pages/portlists/table.js - ${GSA_SRC_DIR}/src/web/pages/radius/dialog.js - ${GSA_SRC_DIR}/src/web/pages/radius/radiuspage.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/component.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/details.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/dialog.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/listpage.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/row.js - ${GSA_SRC_DIR}/src/web/pages/reportformats/table.js - ${GSA_SRC_DIR}/src/web/pages/reports/deltaresultsfiltergroup.js - ${GSA_SRC_DIR}/src/web/pages/reports/detailscontent.js - ${GSA_SRC_DIR}/src/web/pages/reports/detailsfilterdialog.js - ${GSA_SRC_DIR}/src/web/pages/reports/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/alertactions.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/applicationstab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/applicationstable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/closedcvestab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/closedcvestable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/cvestab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/cvestable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/emptyreport.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/emptyresultsreport.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/errorstab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/errorstable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/hoststab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/hoststable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/operatingsystemstab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/operatingsystemstable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/portstab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/portstable.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/reportentitiescontainer.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/reportpanel.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/resultstab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/summary.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/thresholdpanel.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/tlscertificatestab.js - ${GSA_SRC_DIR}/src/web/pages/reports/details/tlscertificatestable.js - ${GSA_SRC_DIR}/src/web/pages/reports/downloadreportdialog.js - ${GSA_SRC_DIR}/src/web/pages/reports/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/reports/importdialog.js - ${GSA_SRC_DIR}/src/web/pages/reports/listpage.js - ${GSA_SRC_DIR}/src/web/pages/reports/row.js - ${GSA_SRC_DIR}/src/web/pages/reports/table.js - ${GSA_SRC_DIR}/src/web/pages/reports/thresholdmessage.js - ${GSA_SRC_DIR}/src/web/pages/reports/triggeralertdialog.js - ${GSA_SRC_DIR}/src/web/pages/reports/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/reports/dashboard/highresultsdisplay.js - ${GSA_SRC_DIR}/src/web/pages/reports/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/reports/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/reports/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/results/delta.js - ${GSA_SRC_DIR}/src/web/pages/results/details.js - ${GSA_SRC_DIR}/src/web/pages/results/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/results/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/results/listpage.js - ${GSA_SRC_DIR}/src/web/pages/results/row.js - ${GSA_SRC_DIR}/src/web/pages/results/table.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/descriptionwordclouddisplay.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/results/dashboard/wordclouddisplay.js - ${GSA_SRC_DIR}/src/web/pages/roles/component.js - ${GSA_SRC_DIR}/src/web/pages/roles/details.js - ${GSA_SRC_DIR}/src/web/pages/roles/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/roles/dialog.js - ${GSA_SRC_DIR}/src/web/pages/roles/listpage.js - ${GSA_SRC_DIR}/src/web/pages/roles/row.js - ${GSA_SRC_DIR}/src/web/pages/roles/table.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/component.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/details.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/dialog.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/editconfigfamilydialog.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/editdialog.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/editnvtdetailsdialog.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/header.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/importdialog.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/listpage.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/row.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/table.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/trend.js - ${GSA_SRC_DIR}/src/web/pages/scanconfigs/scannerpreferences.js - ${GSA_SRC_DIR}/src/web/pages/scanners/component.js - ${GSA_SRC_DIR}/src/web/pages/scanners/details.js - ${GSA_SRC_DIR}/src/web/pages/scanners/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/scanners/dialog.js - ${GSA_SRC_DIR}/src/web/pages/scanners/listpage.js - ${GSA_SRC_DIR}/src/web/pages/scanners/row.js - ${GSA_SRC_DIR}/src/web/pages/scanners/table.js - ${GSA_SRC_DIR}/src/web/pages/schedules/component.js - ${GSA_SRC_DIR}/src/web/pages/schedules/dayselect.js - ${GSA_SRC_DIR}/src/web/pages/schedules/details.js - ${GSA_SRC_DIR}/src/web/pages/schedules/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/schedules/dialog.js - ${GSA_SRC_DIR}/src/web/pages/schedules/listpage.js - ${GSA_SRC_DIR}/src/web/pages/schedules/monthdaysselect.js - ${GSA_SRC_DIR}/src/web/pages/schedules/row.js - ${GSA_SRC_DIR}/src/web/pages/schedules/render.js - ${GSA_SRC_DIR}/src/web/pages/schedules/table.js - ${GSA_SRC_DIR}/src/web/pages/schedules/timeunitselect.js - ${GSA_SRC_DIR}/src/web/pages/schedules/weekdayselect.js - ${GSA_SRC_DIR}/src/web/pages/start/confirmremovedialog.js - ${GSA_SRC_DIR}/src/web/pages/start/dashboard.js - ${GSA_SRC_DIR}/src/web/pages/start/editdashboarddialog.js - ${GSA_SRC_DIR}/src/web/pages/start/newdashboarddialog.js - ${GSA_SRC_DIR}/src/web/pages/start/page.js - ${GSA_SRC_DIR}/src/web/pages/tags/component.js - ${GSA_SRC_DIR}/src/web/pages/tags/details.js - ${GSA_SRC_DIR}/src/web/pages/tags/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/tags/dialog.js - ${GSA_SRC_DIR}/src/web/pages/tags/listpage.js - ${GSA_SRC_DIR}/src/web/pages/tags/resourcelist.js - ${GSA_SRC_DIR}/src/web/pages/tags/row.js - ${GSA_SRC_DIR}/src/web/pages/tags/table.js - ${GSA_SRC_DIR}/src/web/pages/targets/component.js - ${GSA_SRC_DIR}/src/web/pages/targets/details.js - ${GSA_SRC_DIR}/src/web/pages/targets/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/targets/dialog.js - ${GSA_SRC_DIR}/src/web/pages/targets/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/targets/listpage.js - ${GSA_SRC_DIR}/src/web/pages/targets/row.js - ${GSA_SRC_DIR}/src/web/pages/targets/table.js - ${GSA_SRC_DIR}/src/web/pages/tasks/actions.js - ${GSA_SRC_DIR}/src/web/pages/tasks/addresultstoassetsgroup.js - ${GSA_SRC_DIR}/src/web/pages/tasks/autodeletereportsgroup.js - ${GSA_SRC_DIR}/src/web/pages/tasks/component.js - ${GSA_SRC_DIR}/src/web/pages/tasks/containerdialog.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/schedulesdisplay.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dashboard/statusdisplay.js - ${GSA_SRC_DIR}/src/web/pages/tasks/details.js - ${GSA_SRC_DIR}/src/web/pages/tasks/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/tasks/dialog.js - ${GSA_SRC_DIR}/src/web/pages/tasks/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/importreporticon.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/newiconmenu.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/resumeicon.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/scheduleicon.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/starticon.js - ${GSA_SRC_DIR}/src/web/pages/tasks/icons/stopicon.js - ${GSA_SRC_DIR}/src/web/pages/tasks/listpage.js - ${GSA_SRC_DIR}/src/web/pages/tasks/row.js - ${GSA_SRC_DIR}/src/web/pages/tasks/status.js - ${GSA_SRC_DIR}/src/web/pages/tasks/table.js - ${GSA_SRC_DIR}/src/web/pages/tasks/task.js - ${GSA_SRC_DIR}/src/web/pages/tasks/trend.js - ${GSA_SRC_DIR}/src/web/pages/tickets/component.js - ${GSA_SRC_DIR}/src/web/pages/tickets/createdialog.js - ${GSA_SRC_DIR}/src/web/pages/tickets/dashboard/createddisplay.js - ${GSA_SRC_DIR}/src/web/pages/tickets/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/tickets/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/tickets/dashboard/statusdisplay.js - ${GSA_SRC_DIR}/src/web/pages/tickets/dashboard/usersassigneddisplay.js - ${GSA_SRC_DIR}/src/web/pages/tickets/details.js - ${GSA_SRC_DIR}/src/web/pages/tickets/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/tickets/editdialog.js - ${GSA_SRC_DIR}/src/web/pages/tickets/listpage.js - ${GSA_SRC_DIR}/src/web/pages/tickets/table.js - ${GSA_SRC_DIR}/src/web/pages/tickets/validationrules.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/component.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/details.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/listpage.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/row.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/table.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/dashboard/modifieddisplay.js - ${GSA_SRC_DIR}/src/web/pages/tlscertificates/dashboard/timestatusdisplay.js - ${GSA_SRC_DIR}/src/web/pages/users/component.js - ${GSA_SRC_DIR}/src/web/pages/users/confirmdeletedialog.js - ${GSA_SRC_DIR}/src/web/pages/users/details.js - ${GSA_SRC_DIR}/src/web/pages/users/detailspage.js - ${GSA_SRC_DIR}/src/web/pages/users/dialog.js - ${GSA_SRC_DIR}/src/web/pages/users/header.js - ${GSA_SRC_DIR}/src/web/pages/users/listpage.js - ${GSA_SRC_DIR}/src/web/pages/users/row.js - ${GSA_SRC_DIR}/src/web/pages/users/table.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/defaultspart.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/dialog.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/filterpart.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/generalpart.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/severitypart.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/usersettingspage.js - ${GSA_SRC_DIR}/src/web/pages/usersettings/validationrules.js - ${GSA_SRC_DIR}/src/web/pages/vulns/dashboard/cvssdisplay.js - ${GSA_SRC_DIR}/src/web/pages/vulns/dashboard/hostsdisplay.js - ${GSA_SRC_DIR}/src/web/pages/vulns/dashboard/index.js - ${GSA_SRC_DIR}/src/web/pages/vulns/dashboard/loaders.js - ${GSA_SRC_DIR}/src/web/pages/vulns/dashboard/severityclassdisplay.js - ${GSA_SRC_DIR}/src/web/pages/vulns/filterdialog.js - ${GSA_SRC_DIR}/src/web/pages/vulns/listpage.js - ${GSA_SRC_DIR}/src/web/pages/vulns/row.js - ${GSA_SRC_DIR}/src/web/pages/vulns/table.js - ${GSA_SRC_DIR}/src/web/routes.js - ${GSA_SRC_DIR}/src/web/store/actions.js - ${GSA_SRC_DIR}/src/web/store/dashboard/data/actions.js - ${GSA_SRC_DIR}/src/web/store/dashboard/data/loader.js - ${GSA_SRC_DIR}/src/web/store/dashboard/data/reducers.js - ${GSA_SRC_DIR}/src/web/store/dashboard/data/selectors.js - ${GSA_SRC_DIR}/src/web/store/dashboard/settings/actions.js - ${GSA_SRC_DIR}/src/web/store/dashboard/settings/reducers.js - ${GSA_SRC_DIR}/src/web/store/dashboard/settings/selectors.js - ${GSA_SRC_DIR}/src/web/store/index.js - ${GSA_SRC_DIR}/src/web/store/reducers.js - ${GSA_SRC_DIR}/src/web/store/entities/alerts.js - ${GSA_SRC_DIR}/src/web/store/entities/audits.js - ${GSA_SRC_DIR}/src/web/store/entities/certbund.js - ${GSA_SRC_DIR}/src/web/store/entities/cpes.js - ${GSA_SRC_DIR}/src/web/store/entities/credentials.js - ${GSA_SRC_DIR}/src/web/store/entities/cves.js - ${GSA_SRC_DIR}/src/web/store/entities/dfncerts.js - ${GSA_SRC_DIR}/src/web/store/entities/filters.js - ${GSA_SRC_DIR}/src/web/store/entities/groups.js - ${GSA_SRC_DIR}/src/web/store/entities/hosts.js - ${GSA_SRC_DIR}/src/web/store/entities/notes.js - ${GSA_SRC_DIR}/src/web/store/entities/nvts.js - ${GSA_SRC_DIR}/src/web/store/entities/operatingsystems.js - ${GSA_SRC_DIR}/src/web/store/entities/overrides.js - ${GSA_SRC_DIR}/src/web/store/entities/permissions.js - ${GSA_SRC_DIR}/src/web/store/entities/policies.js - ${GSA_SRC_DIR}/src/web/store/entities/portlists.js - ${GSA_SRC_DIR}/src/web/store/entities/reducers.js - ${GSA_SRC_DIR}/src/web/store/entities/reportformats.js - ${GSA_SRC_DIR}/src/web/store/entities/report/actions.js - ${GSA_SRC_DIR}/src/web/store/entities/report/reducers.js - ${GSA_SRC_DIR}/src/web/store/entities/report/selectors.js - ${GSA_SRC_DIR}/src/web/store/entities/reports.js - ${GSA_SRC_DIR}/src/web/store/entities/reports/reducers.js - ${GSA_SRC_DIR}/src/web/store/entities/results.js - ${GSA_SRC_DIR}/src/web/store/entities/roles.js - ${GSA_SRC_DIR}/src/web/store/entities/scanconfigs.js - ${GSA_SRC_DIR}/src/web/store/entities/scanners.js - ${GSA_SRC_DIR}/src/web/store/entities/schedules.js - ${GSA_SRC_DIR}/src/web/store/entities/tags.js - ${GSA_SRC_DIR}/src/web/store/entities/targets.js - ${GSA_SRC_DIR}/src/web/store/entities/tasks.js - ${GSA_SRC_DIR}/src/web/store/entities/tickets.js - ${GSA_SRC_DIR}/src/web/store/entities/users.js - ${GSA_SRC_DIR}/src/web/store/entities/vulns.js - ${GSA_SRC_DIR}/src/web/store/entities/utils/actions.js - ${GSA_SRC_DIR}/src/web/store/entities/utils/main.js - ${GSA_SRC_DIR}/src/web/store/entities/utils/reducers.js - ${GSA_SRC_DIR}/src/web/store/entities/utils/selectors.js - ${GSA_SRC_DIR}/src/web/store/pages/actions.js - ${GSA_SRC_DIR}/src/web/store/pages/reducers.js - ${GSA_SRC_DIR}/src/web/store/pages/selectors.js - ${GSA_SRC_DIR}/src/web/store/usersettings/defaults/actions.js - ${GSA_SRC_DIR}/src/web/store/usersettings/defaults/reducers.js - ${GSA_SRC_DIR}/src/web/store/usersettings/defaults/selectors.js - ${GSA_SRC_DIR}/src/web/store/usersettings/actions.js - ${GSA_SRC_DIR}/src/web/store/usersettings/reducers.js - ${GSA_SRC_DIR}/src/web/store/usersettings/selectors.js - ${GSA_SRC_DIR}/src/web/store/utils.js - ${GSA_SRC_DIR}/src/web/authorized.js - ${GSA_SRC_DIR}/src/web/utils/cert.js - ${GSA_SRC_DIR}/src/web/utils/compose.js - ${GSA_SRC_DIR}/src/web/utils/cpe.js - ${GSA_SRC_DIR}/src/web/utils/os.js - ${GSA_SRC_DIR}/src/web/utils/proptypes.js - ${GSA_SRC_DIR}/src/web/utils/render.js - ${GSA_SRC_DIR}/src/web/utils/selectiontype.js - ${GSA_SRC_DIR}/src/web/utils/severity.js - ${GSA_SRC_DIR}/src/web/utils/sort.js - ${GSA_SRC_DIR}/src/web/utils/theme.js - ${GSA_SRC_DIR}/src/web/utils/state.js - ${GSA_SRC_DIR}/src/web/utils/urls.js - ${GSA_SRC_DIR}/src/web/utils/withCapabilities.js - ${GSA_SRC_DIR}/src/web/utils/withComponentDefaults.js - ${GSA_SRC_DIR}/src/web/utils/withGmp.js - ${GSA_SRC_DIR}/src/web/utils/withPrefix.js - ${GSA_SRC_DIR}/src/web/utils/withSubscription.js - ${GSA_SRC_DIR}/src/web/utils/withUserName.js - ${GSA_SRC_DIR}/src/web/wizard/advancedtaskwizard.js - ${GSA_SRC_DIR}/src/web/wizard/modifytaskwizard.js - ${GSA_SRC_DIR}/src/web/wizard/taskwizard.js - ) - - - -add_custom_command (OUTPUT node-modules.stamp - DEPENDS ${GSA_PKG_FILES} - COMMAND ${INSTALLER} "${INSTALLER_ARGS}" "install" - COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/node-modules.stamp - WORKING_DIRECTORY ${GSA_SRC_DIR} - COMMENT "Install gsa js dependencies") - - -add_custom_command (OUTPUT bundle.stamp - COMMAND ${CMAKE_COMMAND} -E env REACT_APP_VERSION=${PROJECT_VERSION_STRING} ${INSTALLER} "${INSTALLER_ARGS}" run build - COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/bundle.stamp - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/node-modules.stamp - ${GSA_PKG_FILES} - ${GSA_STATIC_SRC_FILES} - ${GSA_JS_SRC_FILES} - COMMENT "Build gsa install files") - -add_custom_target (gsa ALL - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/node-modules.stamp - ${CMAKE_CURRENT_BINARY_DIR}/bundle.stamp) - -set (GSA_STATIC_BUILD_FILES - ${GSA_BUILD_DIR}/index.html) - -install (FILES ${GSA_STATIC_BUILD_FILES} - DESTINATION ${GSA_DEST_DIR}) - -install (FILES public/robots.txt - DESTINATION ${GSA_DEST_DIR}) - -# remove old generated files -install (CODE "file(REMOVE_RECURSE ${GSA_DEST_DIR}/static)") - -install (DIRECTORY - ${GSA_BUILD_DIR}/static - ${GSA_BUILD_DIR}/img - ${GSA_BUILD_DIR}/locales - DESTINATION ${GSA_DEST_DIR}) diff --git a/gsa/cmake/FindNode.cmake b/gsa/cmake/FindNode.cmake deleted file mode 100644 index b53d3f7240..0000000000 --- a/gsa/cmake/FindNode.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (C) 2016-2018 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - - -# CMake find module for nodejs - -find_program (NODE_EXECUTABLE NAMES node nodejs - HINTS - $ENV{NODE_DIR} - PATH_SUFFIXES bin - DOC "node.js interpreter" -) - -include (FindPackageHandleStandardArgs) - -if (NODE_EXECUTABLE) - execute_process(COMMAND ${NODE_EXECUTABLE} --version - OUTPUT_VARIABLE _VERSION - RESULT_VARIABLE - _NODE_VERSION_RESULT) - if (NOT _NODE_VERSION_RESULT) - string (REPLACE "\n" "" NODE_VERSION_STRING "${_VERSION}") - string (REPLACE "v" "" NODE_VERSION_STRING "${NODE_VERSION_STRING}") - string (REPLACE "." ";" _VERSION_LIST "${NODE_VERSION_STRING}") - list (GET _VERSION_LIST 0 NODE_VERSION_MAJOR) - list (GET _VERSION_LIST 1 NODE_VERSION_MINOR) - list (GET _VERSION_LIST 2 NODE_VERSION_PATCH) - endif () -endif (NODE_EXECUTABLE) - -find_package_handle_standard_args (Node - REQUIRED_VARS NODE_EXECUTABLE - VERSION_VAR NODE_VERSION_STRING -) - -mark_as_advanced (NODE_EXECUTABLE) diff --git a/gsa/cmake/FindNpm.cmake b/gsa/cmake/FindNpm.cmake deleted file mode 100644 index 919cab0a90..0000000000 --- a/gsa/cmake/FindNpm.cmake +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright (C) 2016-2018 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - - -# CMake find module for node package manager - -find_package (Node REQUIRED) - -find_program (NPM_EXECUTABLE NAMES npm - HINTS - $ENV{NODE_DIR} - PATH_SUFFIXES bin - DOC "node package manager binary" -) - -include (FindPackageHandleStandardArgs) - -find_package_handle_standard_args (Npm - REQUIRED_VARS NPM_EXECUTABLE -) - -mark_as_advanced (NPM_EXECUTABLE) diff --git a/gsa/cmake/FindPythonModule.cmake b/gsa/cmake/FindPythonModule.cmake deleted file mode 100644 index b09df43613..0000000000 --- a/gsa/cmake/FindPythonModule.cmake +++ /dev/null @@ -1,67 +0,0 @@ -# - Macro to find a python module -# -# Usage: -# include (FindPythonModule) -# find_python_module (module [VERSION] [REQUIRED]) -# -# The following variables are defined: -# MODULE_FOUND - true if found -# MODULE_LOCATION - directory of the module, or it's library file if binary module -# MODULE_VERSION_STRING - module version, if available through __version__ -# - -macro (find_python_module module) - - string (TOUPPER ${module} module_upper) - if (NOT ${module_upper}_FOUND) - - # parse arguments - set (${module}_FIND_OPTIONAL TRUE) - if (${ARGC} EQUAL 2) - if (${ARGV1} MATCHES REQUIRED) - set (${module}_FIND_OPTIONAL FALSE) - else () - set (${module}_FIND_VERSION ${ARGV1}) - endif () - elseif (${ARGC} EQUAL 3) - if (${ARGV2} MATCHES REQUIRED) - set (${module}_FIND_OPTIONAL FALSE) - endif () - set (${module}_FIND_VERSION ${ARGV1}) - endif () - - # A module's location is usually a directory, but for binary modules it's a .so file. - execute_process (COMMAND "${PYTHON_EXECUTABLE}" "-c" - "import re, ${module}; print(re.compile('/__init__.py.*').sub('',${module}.__file__))" - RESULT_VARIABLE _${module}_status - OUTPUT_VARIABLE _${module}_location - ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) - if (NOT _${module}_status) - set (${module_upper}_LOCATION ${_${module}_location} - CACHE STRING "Location of Python module ${module}") - # retrieve version - execute_process (COMMAND "${PYTHON_EXECUTABLE}" "-c" "import ${module}; print(${module}.__version__)" - RESULT_VARIABLE _${module}_status - OUTPUT_VARIABLE _${module}_version - ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) - - set (_${module_upper}_VERSION_MATCH TRUE) - if (NOT _${module}_status) - set (${module_upper}_VERSION_STRING ${_${module}_version}) - if (${module}_FIND_VERSION) - if (${module}_FIND_VERSION VERSION_GREATER ${module_upper}_VERSION_STRING) - set (_${module_upper}_VERSION_MATCH FALSE) - endif () - endif () - mark_as_advanced (${module_upper}_VERSION_STRING) - endif () - endif () - - find_package_handle_standard_args (${module} REQUIRED_VARS ${module_upper}_LOCATION - ${module}_FIND_OPTIONAL - _${module_upper}_VERSION_MATCH - VERSION_VAR ${module_upper}_VERSION_STRING - ) - mark_as_advanced (${module_upper}_LOCATION) - endif (NOT ${module_upper}_FOUND) -endmacro (find_python_module) diff --git a/gsa/cmake/FindYarn.cmake b/gsa/cmake/FindYarn.cmake deleted file mode 100644 index 06dee16544..0000000000 --- a/gsa/cmake/FindYarn.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (C) 2016-2018 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - -# CMake find module for yarn package manager - -find_program (YARN_EXECUTABLE NAMES yarn yarnpkg - HINTS - $ENV{NODE_DIR} - PATH_SUFFIXES bin - DOC "yarn node package manager binary" -) - -include (FindPackageHandleStandardArgs) - -if (YARN_EXECUTABLE) - execute_process(COMMAND ${YARN_EXECUTABLE} --version - OUTPUT_VARIABLE _VERSION - RESULT_VARIABLE - _YARN_VERSION_RESULT) - if (NOT _YARN_VERSION_RESULT) - string (REPLACE "\n" "" YARN_VERSION_STRING "${_VERSION}") - string (REPLACE "v" "" YARN_VERSION_STRING "${YARN_VERSION_STRING}") - string (REPLACE "." ";" _VERSION_LIST "${YARN_VERSION_STRING}") - list (GET _VERSION_LIST 0 YARN_VERSION_MAJOR) - list (GET _VERSION_LIST 1 YARN_VERSION_MINOR) - list (GET _VERSION_LIST 2 YARN_VERSION_PATCH) - endif () -endif (YARN_EXECUTABLE) - -find_package_handle_standard_args (Yarn - REQUIRED_VARS YARN_EXECUTABLE - VERSION_VAR YARN_VERSION_STRING - FAIL_MESSAGE "Could not find yarn executable. Please install yarn (see https://yarnpkg.com/)" -) - -mark_as_advanced (YARN_EXECUTABLE) diff --git a/gsad/CMakeLists.txt b/gsad/CMakeLists.txt deleted file mode 100644 index ba34ed9e2b..0000000000 --- a/gsad/CMakeLists.txt +++ /dev/null @@ -1,140 +0,0 @@ -# Copyright (C) 2017-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - - -cmake_minimum_required (VERSION 3.0) - -message ("-- Configuring gsad") - -project (gsad VERSION 21.10.0 LANGUAGES C) - -if (NOT DEFINED PROJECT_VERSION_STRING) - set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/../cmake) - include (ProjectVersion) -endif() - -set (GSAD_VERSION "${PROJECT_VERSION_STRING}") - -message (STATUS "Building gsad version ${GSAD_VERSION}") - -## Files generated on installation - -# generate compile_commands.json file -# see https://clang.llvm.org/docs/JSONCompilationDatabase.html -set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE) - -## make format -message (STATUS "Looking for clang-format...") -find_program (CLANG_FORMAT clang-format) - -if (CLANG_FORMAT) - message (STATUS "Looking for clang-format... ${CLANG_FORMAT}") - add_custom_target(format COMMAND ${CLANG_FORMAT} "-i" "./src/*.c" - "./src/*.h" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") -else (CLANG_FORMAT) - message (STATUS "clang-format not found.") -endif (CLANG_FORMAT) - -if (NOT SYSCONFDIR) - set (SYSCONFDIR "/etc") -endif (NOT SYSCONFDIR) - -if (NOT EXEC_PREFIX) - set (EXEC_PREFIX "${CMAKE_INSTALL_PREFIX}") -endif (NOT EXEC_PREFIX) - -if (NOT BINDIR) - set (BINDIR "${EXEC_PREFIX}/bin") -endif (NOT BINDIR) - -if (NOT SBINDIR) - set (SBINDIR "${EXEC_PREFIX}/sbin") -endif (NOT SBINDIR) - -if (NOT LIBDIR) - set (LIBDIR "${EXEC_PREFIX}/lib") -endif (NOT LIBDIR) - -if (NOT LOCALSTATEDIR) - set (LOCALSTATEDIR "/var") -endif (NOT LOCALSTATEDIR) - -if (NOT INCLUDEDIR) - set (INCLUDEDIR "${CMAKE_INSTALL_PREFIX}/include") -endif (NOT INCLUDEDIR) - -if (NOT DATADIR) - set (DATADIR "${CMAKE_INSTALL_PREFIX}/share") -endif (NOT DATADIR) - -set (GSAD_DATA_DIR "${DATADIR}/gvm/gsad") -set (GSAD_CONFIG_DIR "${SYSCONFDIR}/gvm/") - -if (NOT GVM_RUN_DIR) - set (GVM_RUN_DIR "/run/gvm") -endif (NOT GVM_RUN_DIR) - -if (NOT GSAD_PID_DIR) - set (GSAD_PID_DIR "${GVM_RUN_DIR}") -endif (NOT GSAD_PID_DIR) - - -if (NOT GVM_STATE_DIR) - set (GVM_STATE_DIR "${LOCALSTATEDIR}/lib/gvm") -else (NOT GVM_STATE_DIR) - set (GVM_STATE_DIR "${GVM_STATE_DIR}") -endif (NOT GVM_STATE_DIR) - -if (NOT GVM_LOG_DIR) - set (GVM_LOG_DIR "${LOCALSTATEDIR}/log/gvm") -else (NOT GVM_LOG_DIR) - set (GVM_LOG_DIR "${GVM_LOG_DIR}") -endif (NOT GVM_LOG_DIR) - -if (NOT GVM_SERVER_CERTIFICATE) - set (GVM_SERVER_CERTIFICATE "${GVM_STATE_DIR}/CA/servercert.pem") -else (NOT GVM_SERVER_CERTIFICATE) - set (GVM_SERVER_CERTIFICATE "${GVM_SERVER_CERTIFICATE}") -endif (NOT GVM_SERVER_CERTIFICATE) - -if (NOT GVM_SERVER_KEY) - set (GVM_SERVER_KEY "${GVM_STATE_DIR}/private/CA/serverkey.pem") -else (NOT GVM_SERVER_KEY) - set (GVM_SERVER_KEY "${GVM_SERVER_KEY}") -endif (NOT GVM_SERVER_KEY) - -if (NOT GVM_CA_CERTIFICATE) - set (GVM_CA_CERTIFICATE "${GVM_STATE_DIR}/CA/cacert.pem") -else (NOT GVM_CA_CERTIFICATE) - set (GVM_CA_CERTIFICATE "${GVM_CA_CERTIFICATE}") -endif (NOT GVM_CA_CERTIFICATE) - - -configure_file (src/gsad_log_conf.cmake_in src/gsad_log.conf) - -## Install - -install (FILES ${CMAKE_CURRENT_BINARY_DIR}/src/gsad_log.conf - DESTINATION ${GSAD_CONFIG_DIR}) - -add_subdirectory (src) -add_subdirectory (config) - -add_subdirectory (doc) - -# vim: set ts=2 sw=2 tw=80: diff --git a/gsad/config/CMakeLists.txt b/gsad/config/CMakeLists.txt deleted file mode 100644 index 2e8b4cb250..0000000000 --- a/gsad/config/CMakeLists.txt +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright (C) 2019-2021 Greenbone Networks GmbH -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - - -if (NOT SYSTEMD_SERVICE_DIR) - set (SYSTEMD_SERVICE_DIR "/lib/systemd/system") -endif (NOT SYSTEMD_SERVICE_DIR) - -if (NOT LOGROTATE_DIR) - set (LOGROTATE_DIR "${SYSCONFDIR}/logrotate.d") -endif (NOT LOGROTATE_DIR) - -configure_file (gsad.service.in gsad.service) -configure_file (gsad.logrotate.in gsad.logrotate) - -install (FILES ${CMAKE_CURRENT_BINARY_DIR}/gsad.service - DESTINATION ${SYSTEMD_SERVICE_DIR}/) - -install (FILES ${CMAKE_CURRENT_BINARY_DIR}/gsad.logrotate - DESTINATION ${LOGROTATE_DIR}/ RENAME gsad) diff --git a/gsad/config/gsad.logrotate.in b/gsad/config/gsad.logrotate.in deleted file mode 100644 index ab729dd278..0000000000 --- a/gsad/config/gsad.logrotate.in +++ /dev/null @@ -1,8 +0,0 @@ -${GVM_LOG_DIR}/gsad.log { - compress - missingok - notifempty - sharedscripts - copytruncate -} - diff --git a/gsad/config/gsad.service.in b/gsad/config/gsad.service.in deleted file mode 100644 index 6592e3ef34..0000000000 --- a/gsad/config/gsad.service.in +++ /dev/null @@ -1,18 +0,0 @@ -[Unit] -Description=Greenbone Security Assistant daemon (gsad) -Documentation=man:gsad(8) https://www.greenbone.net -After=network.target gvmd.service -Wants=gvmd.service - -[Service] -Type=forking -User=gvm -Group=gvm -PIDFile=${GSAD_PID_DIR}/gsad.pid -ExecStart=${SBINDIR}/gsad --listen 127.0.0.1 --port 9392 --http-only -Restart=always -TimeoutStopSec=10 - -[Install] -WantedBy=multi-user.target -Alias=greenbone-security-assistant.service diff --git a/gsad/doc/CMakeLists.txt b/gsad/doc/CMakeLists.txt deleted file mode 100644 index 46be51a867..0000000000 --- a/gsad/doc/CMakeLists.txt +++ /dev/null @@ -1,111 +0,0 @@ -# Copyright (C) 2009-2021 Greenbone Networks GmbH# -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - - -## build - -set_directory_properties (PROPERTIES CLEAN_NO_CUSTOM true) -set_directory_properties (PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES ".built-html;.built-html_full") - -include (FindDoxygen) - -# Configure Doxyfile with version number -configure_file (${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) -configure_file (${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile_full.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_full) -configure_file (${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile_xml.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_xml) - -if (NOT DOXYGEN_EXECUTABLE) - message (STATUS "WARNING: Doxygen is required to build the HTML docs.") -else (NOT DOXYGEN_EXECUTABLE) - add_custom_target (doc COMMENT "Building documentation..." - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile ${CMAKE_CURRENT_BINARY_DIR}/.built-html) - - add_custom_command (OUTPUT .built-html - COMMAND sh - ARGS -c \"${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile && touch ${CMAKE_CURRENT_BINARY_DIR}/.built-html\;\" - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) - - add_custom_target (doc-full COMMENT "Building documentation..." - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_full ${CMAKE_CURRENT_BINARY_DIR}/.built-html_full) - - add_custom_command (OUTPUT .built-html_full - COMMAND sh - ARGS -c \"${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_full && touch ${CMAKE_CURRENT_BINARY_DIR}/.built-html_full\;\" - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_full) - - add_custom_target (doc-xml COMMENT "Building documentation (XML)..." - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_xml ${CMAKE_CURRENT_BINARY_DIR}/.built-xml) - - add_custom_command (OUTPUT .built-xml - COMMAND sh - ARGS -c \"${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_xml && touch ${CMAKE_CURRENT_BINARY_DIR}/.built-xml\;\" - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile_xml) -endif (NOT DOXYGEN_EXECUTABLE) - -## Find xml2man - -message (STATUS "Looking for xmltoman...") - -find_program (XMLTOMAN_EXECUTABLE xmltoman - PATHS /bin /usr/bin /usr/local/bin/ - DOC "xmltoman location") - -message (STATUS "Looking for xmltoman... ${XMLTOMAN_EXECUTABLE}") - -find_program (XMLMANTOHTML_EXECUTABLE xmlmantohtml - PATHS /bin /usr/bin /usr/local/bin/ - DOC "xmlmantohtml location") - -message (STATUS "Looking for xmlmantohtml... ${XMLMANTOHTML_EXECUTABLE}") - -# FIX find_program seems to follow symlink -if (XMLMANTOHTML_EXECUTABLE) - set (XMLMANTOHTML_EXECUTABLE xmlmantohtml) -endif (XMLMANTOHTML_EXECUTABLE) - -if (XMLTOMAN_EXECUTABLE) - add_custom_target (man COMMENT "Building manual page..." - DEPENDS gsad.8) - - add_custom_command (OUTPUT gsad.8 - COMMAND sh - ARGS -c \"${XMLTOMAN_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/gsad.8.xml > ${CMAKE_CURRENT_BINARY_DIR}/gsad.8\;\" - DEPENDS gsad.8.xml) -else (XMLTOMAN_EXECUTABLE) - message (STATUS "WARNING: xmltoman is required to generate manpage.") - add_custom_command (OUTPUT gsad.8 - COMMAND echo "[Error: xmltoman required to see manpage here]" > ${CMAKE_CURRENT_BINARY_DIR}/gsad.8) -endif (XMLTOMAN_EXECUTABLE) - -if (XMLMANTOHTML_EXECUTABLE) - add_custom_target (man-html COMMENT "Building manual page HTML..." - DEPENDS gsad.html) - - add_custom_command (OUTPUT gsad.html - COMMAND sh - ARGS -c \"${XMLMANTOHTML_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/gsad.8.xml > ${CMAKE_CURRENT_BINARY_DIR}/gsad.html\;\" - DEPENDS gsad.8.xml) -else (XMLMANTOHTML_EXECUTABLE) - message (STATUS "WARNING: xmlmantohtml is required for manpage in HTML docs.") - add_custom_command (OUTPUT gsad.html - COMMAND echo "[Error: xmlmantohtml required to see manpage here]" > gsad.html) -endif (XMLMANTOHTML_EXECUTABLE) - - -## Install - -install (FILES gsad.8 - DESTINATION ${DATADIR}/man/man8 ) diff --git a/gsad/doc/Doxyfile.in b/gsad/doc/Doxyfile.in deleted file mode 100644 index a876c148f3..0000000000 --- a/gsad/doc/Doxyfile.in +++ /dev/null @@ -1,2354 +0,0 @@ -# Doxyfile 1.8.8 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -# for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = "Greenbone Security Assistant" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = @CPACK_PACKAGE_VERSION@ - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify an logo or icon that is included in -# the documentation. The maximum height of the logo should not exceed 55 pixels -# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo -# to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/generated - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = YES - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@/gsad - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a -# new page for each member. If set to NO, the documentation of a member will be -# part of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 2 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines. - -ALIASES = "TODO=\todo" - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. -# -# Note For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by by putting a % sign in front of the word -# or globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = YES - -# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = YES - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO these classes will be included in the various overviews. This option has -# no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO these declarations will be -# included in the documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. -# The default value is: system dependent. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = YES - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the -# todo list. This list is created by putting \todo commands in the -# documentation. -# The default value is: YES. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the -# test list. This list is created by putting \test commands in the -# documentation. -# The default value is: YES. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES the list -# will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. See also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO doxygen will only warn about wrong or incomplete parameter -# documentation, but not about the absence of documentation. -# The default value is: NO. - -WARN_NO_PARAMDOC = YES - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. -# Note: If this tag is empty the current directory is searched. - -INPUT = @CMAKE_SOURCE_DIR@/gsad/src - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: http://www.gnu.org/software/libiconv) for the list of -# possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank the -# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, -# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, -# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, -# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, -# *.qsf, *.as and *.js. - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = @CMAKE_SOURCE_DIR@ \ - @CMAKE_SOURCE_DIR@/gsad \ - @CMAKE_CURRENT_SOURCE_DIR@ - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER ) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES, then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = YES - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see http://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = YES - -# If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the -# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the -# cost of reduced performance. This can be particularly helpful with template -# rich C++ code for which doxygen's built-in parser lacks the necessary type -# information. -# Note: The availability of this option depends on whether or not doxygen was -# compiled with the --with-libclang option. -# The default value is: NO. - -CLANG_ASSISTED_PARSING = NO - -# If clang assisted parsing is enabled you can provide the compiler with command -# line options that you would normally use when invoking the compiler. Note that -# the include paths will already be set by doxygen for the files and directories -# specified with INPUT and INCLUDE_PATH. -# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. - -CLANG_OPTIONS = - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = YES - -# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -# which the alphabetical index list will be split. -# Minimum value: 1, maximum value: 20, default value: 5. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -# cascading style sheets that are included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefor more robust against future updates. -# Doxygen will copy the style sheet files to the output directory. -# Note: The order of the extra stylesheet files is of importance (e.g. the last -# stylesheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the stylesheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# http://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to NO can help when comparing the output of multiple runs. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: http://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler ( hhc.exe). If non-empty -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated ( -# YES) or that it should be included in the master .chm file ( NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated ( -# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- -# folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# http://www.mathjax.org) which uses client side Javascript for the rendering -# instead of using prerendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from http://www.mathjax.org before deployment. -# The default value is: http://cdn.mathjax.org/mathjax/latest. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /