Skip to content

Commit

Permalink
dead link fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Feb 28, 2024
1 parent 8313167 commit bad2bfd
Show file tree
Hide file tree
Showing 21 changed files with 46 additions and 46 deletions.
4 changes: 2 additions & 2 deletions docs/cookbooks/3.2.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2417,9 +2417,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/3.3.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2651,9 +2651,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.0.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2709,9 +2709,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.0.x/core/cfg.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ It closely resembles the PHP style, ***except*** you **can not use**
double-slash ( ⁄ ⁄ ) for line comments. Only the hash (#) may be used
for line comments.

It can be confusing seeing the C-Style Control Directives ([explained later](cfg#c-style_control_directives)) that begin with a hash-bang (#!)
It can be confusing seeing the C-Style Control Directives ([explained later](cfg.md#c-style-control-directives)) that begin with a hash-bang (#!)
mixed with line comments beginning with a hash (#).

| Examples: |
Expand Down Expand Up @@ -145,7 +145,7 @@ These name/value pairs are normally delimited by an equal sign.

\<fc #FF0000>There are a couple situations where the value needs to be
enclosed in quotes.\</fc>
Check the [core parameters](..//core#core_parameters) for the required
Check the [core parameters](..//core.md#core_parameters) for the required
syntax.

| Examples: |
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.1.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2671,9 +2671,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In boolean expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.2.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2651,9 +2651,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.3.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2678,9 +2678,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/4.4.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -2916,9 +2916,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/5.0.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -3002,9 +3002,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/5.1.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -3085,9 +3085,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbooks/5.2.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ flags

(\*) The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -3213,9 +3213,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbooks/5.3.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ flags

(\*) The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -3339,9 +3339,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbooks/5.4.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ flags

(\*) The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -3410,9 +3410,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbooks/5.5.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ flags

(\*) The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -3613,9 +3613,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[$retcode](devel#retcode) or $? variable.
[$retcode](#retcode) or $? variable.

return(0) is same as [exit()](devel#exit);
return(0) is same as [exit()](#exit);

In bool expressions:

Expand Down
6 changes: 3 additions & 3 deletions docs/cookbooks/5.6.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ flags

(\*) The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -3741,9 +3741,9 @@ Example of usage:

The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
[`$retcode`](devel#retcode) or `$?` variable.
[`$retcode`](#retcode) or `$?` variable.

`return(0)` is same as [`exit()`](devel#exit);
`return(0)` is same as [`exit()`](#exit);

In bool expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/5.7.x/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ flags

- NOTE: The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -4383,7 +4383,7 @@ The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
`$retcode` variable (which is same as `$rc` or `$?`).

`return(0)` is same as [`exit()`](devel#exit);
`return(0)` is same as [`exit()`](#exit);

In logical evaluation expressions:

Expand Down
4 changes: 2 additions & 2 deletions docs/cookbooks/devel/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ flags

- NOTE: The named flags feature was propagated from the source code merge
back in 2008 and is not extensively tested. The recommended way of
defining flags is using [#!define](../cookbooks/5.2.x/core#define.md) (which
defining flags is using [#!define](core.md#define) (which
is also valid for branch/script flags):

``` c
Expand Down Expand Up @@ -4471,7 +4471,7 @@ The return() function allows you to return any integer value from a
called route() block. You can test the value returned by a route using
`$retcode` variable (which is same as `$rc` or `$?`).

`return(0)` is same as [`exit()`](devel#exit);
`return(0)` is same as [`exit()`](#exit);

In logical evaluation expressions:

Expand Down
2 changes: 1 addition & 1 deletion docs/cookbooks/start.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
##### Kamailio Cookbooks

See [index#cookbooks](../index#cookbooks.md)
See [index#cookbooks](../index.md#cookbooks.md)
2 changes: 1 addition & 1 deletion docs/devel/git-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ new code that might not get to **master** branch after all.
Several tutorials about committing with Git and backporting are
available at:

- [Guidelines TOC](../start#guidelines.md)
- [Guidelines TOC](../index.md#guidelines)
8 changes: 4 additions & 4 deletions docs/devel/how-to/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ new developers or people working with installations from source code.
## Table of Content

- [How to Create and Use an Internal
Library](/devel/how-to/internal-lib)
Library](internal-lib.md)
- [How to Regenerate the Readme File for a
Module](/devel/how-to/module-readme)
Module](module-readme.md)
- [How to Run Kamailio from Source Tree
Directory](/devel/how-to/source-tree-run)
Directory](source-tree-run.md)
- [How to Install Kamailio in a Custom
Path](/devel/how-to/install-custom-path)
Path](install-custom-path.md)
2 changes: 1 addition & 1 deletion docs/devel/irc-meetings/2013b.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ Kamailio related:
## Minutes

- [2013 - Second Meeting Chat Log - Thursday, September 12,
14:00UTC](/devel/irc-meetings/2013blog)
14:00UTC](2013blog.md)

0 comments on commit bad2bfd

Please sign in to comment.