├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ ├── build.yml │ ├── change-status-on-labels.yml │ ├── jekyll-gh-pages.yml │ └── ns8-ci.yml ├── CONTRIBUTING.md ├── README.md ├── developer-manual ├── .gitignore ├── Makefile ├── README.rst ├── _static │ ├── by-nc-sa_large.png │ ├── by-nc-sa_small.png │ ├── email_works.png │ ├── favicon.ico │ ├── logo.png │ ├── nethgui_stack.png │ └── nethserver.css ├── building_iso.rst ├── building_rpms.rst ├── certificate_management.rst ├── conf.py ├── create_interface_module.rst ├── dashboard.rst ├── databases.rst ├── development_process.rst ├── email.rst ├── events.rst ├── ha.rst ├── i18n.rst ├── index.rst ├── inline_help.rst ├── introduction.rst ├── license.rst ├── license_headers.rst ├── migration.rst ├── modules ├── package_groups.rst ├── random_url.rst ├── rebranding_manual.rst ├── rpm_rules.rst ├── services.rst ├── templates.rst ├── todos_api.rst ├── web_interface.rst ├── web_interface_translation.rst └── yum_plugin.rst ├── handbook ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── assets │ └── favicon.png ├── best_practices.md ├── commit_messages.md ├── index.md ├── issues.md ├── management.md ├── milestones.md ├── pull_requests.md ├── security.md └── version_numbering.md └── scripts ├── Readme.md ├── ns8-ci.sh └── update_issue_status.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/change-status-on-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/workflows/change-status-on-labels.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/ns8-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/.github/workflows/ns8-ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | CONTRIBUTING.md -------------------------------------------------------------------------------- /developer-manual/.gitignore: -------------------------------------------------------------------------------- 1 | **/_build/** 2 | nethserver-*.rst 3 | -------------------------------------------------------------------------------- /developer-manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/Makefile -------------------------------------------------------------------------------- /developer-manual/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/README.rst -------------------------------------------------------------------------------- /developer-manual/_static/by-nc-sa_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/by-nc-sa_large.png -------------------------------------------------------------------------------- /developer-manual/_static/by-nc-sa_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/by-nc-sa_small.png -------------------------------------------------------------------------------- /developer-manual/_static/email_works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/email_works.png -------------------------------------------------------------------------------- /developer-manual/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/favicon.ico -------------------------------------------------------------------------------- /developer-manual/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/logo.png -------------------------------------------------------------------------------- /developer-manual/_static/nethgui_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/_static/nethgui_stack.png -------------------------------------------------------------------------------- /developer-manual/_static/nethserver.css: -------------------------------------------------------------------------------- 1 | /* nethserver.css */ 2 | span.guilabel { font-style: italic } -------------------------------------------------------------------------------- /developer-manual/building_iso.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/building_iso.rst -------------------------------------------------------------------------------- /developer-manual/building_rpms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/building_rpms.rst -------------------------------------------------------------------------------- /developer-manual/certificate_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/certificate_management.rst -------------------------------------------------------------------------------- /developer-manual/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/conf.py -------------------------------------------------------------------------------- /developer-manual/create_interface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/create_interface_module.rst -------------------------------------------------------------------------------- /developer-manual/dashboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/dashboard.rst -------------------------------------------------------------------------------- /developer-manual/databases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/databases.rst -------------------------------------------------------------------------------- /developer-manual/development_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/development_process.rst -------------------------------------------------------------------------------- /developer-manual/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/email.rst -------------------------------------------------------------------------------- /developer-manual/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/events.rst -------------------------------------------------------------------------------- /developer-manual/ha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/ha.rst -------------------------------------------------------------------------------- /developer-manual/i18n.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/i18n.rst -------------------------------------------------------------------------------- /developer-manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/index.rst -------------------------------------------------------------------------------- /developer-manual/inline_help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/inline_help.rst -------------------------------------------------------------------------------- /developer-manual/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/introduction.rst -------------------------------------------------------------------------------- /developer-manual/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/license.rst -------------------------------------------------------------------------------- /developer-manual/license_headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/license_headers.rst -------------------------------------------------------------------------------- /developer-manual/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/migration.rst -------------------------------------------------------------------------------- /developer-manual/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/modules -------------------------------------------------------------------------------- /developer-manual/package_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/package_groups.rst -------------------------------------------------------------------------------- /developer-manual/random_url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/random_url.rst -------------------------------------------------------------------------------- /developer-manual/rebranding_manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/rebranding_manual.rst -------------------------------------------------------------------------------- /developer-manual/rpm_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/rpm_rules.rst -------------------------------------------------------------------------------- /developer-manual/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/services.rst -------------------------------------------------------------------------------- /developer-manual/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/templates.rst -------------------------------------------------------------------------------- /developer-manual/todos_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/todos_api.rst -------------------------------------------------------------------------------- /developer-manual/web_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/web_interface.rst -------------------------------------------------------------------------------- /developer-manual/web_interface_translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/web_interface_translation.rst -------------------------------------------------------------------------------- /developer-manual/yum_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/developer-manual/yum_plugin.rst -------------------------------------------------------------------------------- /handbook/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/Gemfile -------------------------------------------------------------------------------- /handbook/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/Gemfile.lock -------------------------------------------------------------------------------- /handbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/README.md -------------------------------------------------------------------------------- /handbook/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/_config.yml -------------------------------------------------------------------------------- /handbook/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/assets/favicon.png -------------------------------------------------------------------------------- /handbook/best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/best_practices.md -------------------------------------------------------------------------------- /handbook/commit_messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/commit_messages.md -------------------------------------------------------------------------------- /handbook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/index.md -------------------------------------------------------------------------------- /handbook/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/issues.md -------------------------------------------------------------------------------- /handbook/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/management.md -------------------------------------------------------------------------------- /handbook/milestones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/milestones.md -------------------------------------------------------------------------------- /handbook/pull_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/pull_requests.md -------------------------------------------------------------------------------- /handbook/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/security.md -------------------------------------------------------------------------------- /handbook/version_numbering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/handbook/version_numbering.md -------------------------------------------------------------------------------- /scripts/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/scripts/Readme.md -------------------------------------------------------------------------------- /scripts/ns8-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/scripts/ns8-ci.sh -------------------------------------------------------------------------------- /scripts/update_issue_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NethServer/dev/HEAD/scripts/update_issue_status.sh --------------------------------------------------------------------------------