-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Linter: Perform a full lint on push to ci-debug * Linter: MD fixes * Linter: Python fixes * Linter: Ruby fixes * Linter: SQL fixes and disable sql-lint sql-lint isn't suited for static use * Linter: HTML fixes * Linter: Lua fixes
- Loading branch information
1 parent
7c7c730
commit 2ea43e1
Showing
48 changed files
with
1,165 additions
and
1,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Introduction | ||
============ | ||
# Contributing | ||
|
||
## Introduction | ||
|
||
The FreeRADIUS project wouldn't exist without contributions from a significant number of developers. | ||
|
||
|
@@ -13,8 +14,7 @@ be acted on and in a timely manner. | |
If you choose to ignore these guidelines our response will be a link to this document. | ||
|
||
|
||
GitHub Issue Tracker | ||
==================== | ||
## GitHub Issue Tracker | ||
|
||
The GitHub issue tracker is for non-security related defect reports, feature requests, and | ||
pull-requests ONLY. | ||
|
@@ -29,11 +29,10 @@ repositories. | |
Security issues should be reported to [email protected] especially if they can be remotely | ||
exploited. This ensures that patches can be developed before the exploit is made public. | ||
|
||
Defect reporting | ||
================ | ||
|
||
Before reporting a defect | ||
------------------------- | ||
## Defect reporting | ||
|
||
### Before reporting a defect | ||
|
||
Verify it's still present in the Git HEAD. Checkout the appropriate branch for the version of the | ||
server you're working with, as listed [here](http://doc.freeradius.org), build the server and attempt | ||
|
@@ -47,9 +46,7 @@ Git HEAD. | |
Do not report non-security defects for EOL branches (as listed on doc.freeradius.org), or old releases. | ||
Issues reported for these branches will be closed and locked. | ||
|
||
|
||
Contents of a defect report | ||
--------------------------- | ||
### Contents of a defect report | ||
|
||
See [doc/bugs](https://github.com/FreeRADIUS/freeradius-server/blob/master/doc/source/bugs.md) for information | ||
on what to include, and how to obtain it. | ||
|
@@ -60,8 +57,7 @@ GitHub will automatically link your issue to other pre-existing issues when it e | |
string. | ||
|
||
|
||
Pull requests and coding standards | ||
================================== | ||
## Pull requests and coding standards | ||
|
||
If you're developing a new feature, module, or writing large amounts of code to fix a defect, contact | ||
a member of the FreeRADIUS development team first. For simpler one or two line fixes go ahead and | ||
|
@@ -83,15 +79,15 @@ If you're creating a new module you may wish to read the | |
You may also wish to utilise the [doxygen site](http://doc.freeradius.org) to review code documentation. | ||
|
||
The doxygen site contains the complete reference of all API functions with doxygen headers as well | ||
as structs and callback declarations. http://doc.freeradius.org is updated within one minute of each | ||
as structs and callback declarations. <https://doc.freeradius.org> is updated within one minute of each | ||
commit to the master branch of the freeradius-server repository. | ||
|
||
Finally, this file was written to be displayed automatically on the GitHub issue tracker, so | ||
Git/GitHub knowledge is assumed. If you're wondering what a pull-request is, this document may be of | ||
some use http://wiki.freeradius.org/contributing/GitHub. | ||
some use <http://wiki.freeradius.org/contributing/GitHub>. | ||
|
||
Continuous Integration Tests (CIT) | ||
================================== | ||
|
||
## Continuous Integration Tests (CIT) | ||
|
||
If possible include test cases in your pull-requests. | ||
|
||
|
@@ -108,4 +104,3 @@ way to write new tests is to use the existing tests as examples. | |
|
||
Tests are run via Travis for each pull-request, and on every commit by a developer with repository | ||
access. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
std = { | ||
globals = {"fr","instantiate","detach","authorize","authenticate","post_auth","preacct","accounting","xlat","pairs","print","string","type"} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ If the local system has [Antora | |
installed](https://docs.antora.org/antora/latest/install/install-antora/), | ||
then you can run: | ||
|
||
$ make docsite | ||
make docsite | ||
|
||
The output HTML is placed in the following location: | ||
|
||
|
@@ -24,14 +24,14 @@ The output HTML is placed in the following location: | |
If Antora is not installed locally, it can usually be installed from | ||
`npm` (a command available once you install [Node.js](https://nodejs.org/)): | ||
|
||
$ npm i -g @antora/[email protected] @antora/[email protected] | ||
npm i -g @antora/[email protected] @antora/[email protected] | ||
|
||
## Basic HTML | ||
|
||
If the local system has Asciidoctor and Pandoc installed, then it is | ||
possible to create simple HTML output via the following command: | ||
|
||
$ make html | ||
make html | ||
|
||
The build process will create one `html` file for every `adoc` file in | ||
this directory. Note that Antora uses a different syntax for | ||
|
Oops, something went wrong.