Skip to content

Commit 106584f

Browse files
Fix headers, semantic line breaks, and other small edits. (#256)
* Fix headers, semantic line breaks, and other small edits. * Fix links --------- Co-authored-by: August <112662403+hey-august@users.noreply.github.com> Co-authored-by: hey-august <alindgrenruby@gmail.com>
1 parent b75bf43 commit 106584f

Some content is hidden

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

56 files changed

+86
-87
lines changed

docs/Channel-Variables-Catalog/hangup_after_bridge_16352708.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Created by Ryan Harris, last modified by Attila Gulyas on 2020.08.04
55

6-
boolean Controls what happens to a calling (A) party when in a [bridge state](../FreeSWITCH-Explained/Introduction/Life-Cycle-of-a-Call.mdx#0-about), and the called (B) party hangs up. If `true` the [dialplan](../FreeSWITCH-Explained/Dialplan/index.mdx#0-about) will stop processing, and the A leg will be terminated when the B leg terminates. If `false` (default) the dialplan continues to be processed after the B leg terminates. This is checked after [park\_after\_bridge](../FreeSWITCH-Explained/Dialplan/Variables-Master-List_16352570.mdx#park_after_bridge) and [transfer\_after\_bridge](../FreeSWITCH-Explained/Dialplan/Variables-Master-List_16352570.mdx#transfer_after_bridge).
6+
boolean Controls what happens to a calling (A) party when in a [bridge state](../FreeSWITCH-Explained/Introduction/Life-Cycle-of-a-Call.mdx#0-about), and the called (B) party hangs up. If `true` the [dialplan](../FreeSWITCH-Explained/Dialplan/index.mdx#about) will stop processing, and the A leg will be terminated when the B leg terminates. If `false` (default) the dialplan continues to be processed after the B leg terminates. This is checked after [park\_after\_bridge](../FreeSWITCH-Explained/Dialplan/Variables-Master-List_16352570.mdx#park_after_bridge) and [transfer\_after\_bridge](../FreeSWITCH-Explained/Dialplan/Variables-Master-List_16352570.mdx#transfer_after_bridge).
77

88
The default value is `false`
99

docs/FreeSWITCH-Explained/Auxiliary-Knowledge-and-Utilities/Multi-home-tutorial/Multiple-Companies_13173524.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
**Note**: _There is also some useful information on the [Multi-tenant](../../Examples/Multi-tenant_13173521.mdx#about) page, which needs merging._
99

10-
This is HOWTO to make one FreeSWITCH server act as a multi-tenant system for two or more companies, each with its own domain/users and independent [dialplans](../../Dialplan/index.mdx#0-about).
10+
This is HOWTO to make one FreeSWITCH server act as a multi-tenant system for two or more companies, each with its own domain/users and independent [dialplans](../../Dialplan/index.mdx#about).
1111

1212
Basically, we want to have one FS server provide phone services to several separate companies, as if we are a VoIP provider. Let's start with two companies and give both companies the same two users (1000 for company-a and 1000 for company-b). These companies should be completely independent of each other, their identically-numbered extensions should not overlap or have anything to do with each other, and each company (and all of it's users/extensions) should have independent dialplans.
1313

docs/FreeSWITCH-Explained/Client-and-Developer-Interfaces/JavaScript/Javascript-Examples/JavaScript-Example---Session-in-Hangup-Hook_7766254.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## About
77

8-
A simple example for accessing the session object after hangup when invoking the JS from the XML [dialplan](../../../Dialplan/index.mdx#0-about). More specifically, we're capturing the duration of the call and are saving it in a mySQL database with [ODBC](../../../Databases/ODBC-DSN/Using-ODBC-in-the-core_6586653.mdx).
8+
A simple example for accessing the session object after hangup when invoking the JS from the XML [dialplan](../../../Dialplan/index.mdx#about). More specifically, we're capturing the duration of the call and are saving it in a mySQL database with [ODBC](../../../Databases/ODBC-DSN/Using-ODBC-in-the-core_6586653.mdx).
99

1010
## Dialplan
1111

docs/FreeSWITCH-Explained/Codecs-and-Media/Bypass-Media-Overview/Call-Forward-Example_6587445.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ For instance, you can call the is\_forward features before you bridge to your ph
6464
**See also:**
6565

6666
* [Simple CF with IVR](../../Examples/Simple-Call-Forward-with-IVR_9634448.mdx)
67-
* [Dialplan](../../Dialplan/index.mdx#0-about)
67+
* [Dialplan](../../Dialplan/index.mdx#about)
6868

6969

7070

docs/FreeSWITCH-Explained/Community/Contributing-Code/Creating-New-Modules/9634354.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The internal sections of FreeSWITCH only use:
9898

9999
* uuid
100100
* caller\_id\_name, caller\_id\_number, caller\_extension
101-
* [dialplan](../../../Dialplan/index.mdx#0-about)
101+
* [dialplan](../../../Dialplan/index.mdx#about)
102102
* destination\_number
103103

104104
The **channel** flags hold extra state information above and beyond the basic 13 states that are held in the `state` variable. The interesting flags are:

docs/FreeSWITCH-Explained/Configuration/Configuring-FreeSWITCH/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ See [Config\_1000.xml](../Default-Configuration_6587388#configuration) for a sim
415415

416416
The FreeSWITCH dialplan is a full-featured, XML-based call-routing mechanism. (There also exists support for Asterisk-like dialplans as well as really fancy real-time and/or back-end database-driven dialplans).
417417

418-
The best place to get started in learning about the FreeSWITCH dialplan is the [Dialplan](../../Dialplan/index.mdx#0-about) page here on the wiki. It discusses the basics of the FreeSWITCH dialplan. If you need an XML primer, check out the information on the [Basic\_XML](../../Dialplan/XML-Dialplan/index.mdx#about) page which will get you pointed in the right direction. There are two other important resources for you to learn more about the dialplan:
418+
The best place to get started in learning about the FreeSWITCH dialplan is the [Dialplan](../../Dialplan/index.mdx#about) page here on the wiki. It discusses the basics of the FreeSWITCH dialplan. If you need an XML primer, check out the information on the [Basic\_XML](../../Dialplan/XML-Dialplan/index.mdx#about) page which will get you pointed in the right direction. There are two other important resources for you to learn more about the dialplan:
419419

420420
* the small-but-growing [Dialplan\_Recipes](../../Dialplan/Dialplan-Recipes_9634252.mdx#about) page
421421
* the [default dialplan](../../Dialplan/Default-Dialplan-QRF_9634422.mdx#park) that comes with a standard FreeSWITCH installation.
@@ -695,7 +695,7 @@ This is the main configuration file, and the only one that has a fixed name. Whe
695695
freeswitch.xml is divided into multiple sections, and each section is used by a different component in FreeSWITCH™. The sections are as follows:
696696

697697
* The "configuration" section has children for [switch.conf](../XML-Switch-Configuration_13173223.mdx) and [modules.conf](../../Modules/XML-Modules-Configuration_13173211.mdx) which are used by the core, as well as a child for each module in use.
698-
* The [dialplan](../../Dialplan/index.mdx#0-about) section defines which action to invoke when a call arrvies to the switch.
698+
* The [dialplan](../../Dialplan/index.mdx#about) section defines which action to invoke when a call arrvies to the switch.
699699
* The [directory](../../Directory/XML-User-Directory/index.mdx#about) defines the users that can connect to the switch (user agents).
700700
* The phrases section defines where freeswitch can find the sound files, and if it can use any TTS engines.
701701

@@ -784,7 +784,7 @@ FreeSWITCH is a B2BUA (back-to-back user agent). This means that it actually par
784784

785785
## See Also
786786

787-
* [Dialplan](../../Dialplan/index.mdx#0-about)
787+
* [Dialplan](../../Dialplan/index.mdx#about)
788788
* [Dialplan XML](../../Dialplan/XML-Dialplan/index.mdx#about)
789789
* [Dialplan Recipes](../../Dialplan/Dialplan-Recipes_9634252.mdx#about)
790790
* [Dialplan Basics](https://wiki.freeswitch.org/wiki/Dialplan%5FBasics)

docs/FreeSWITCH-Explained/Configuration/Default-Configuration_6587388.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,15 +312,15 @@ This is where the different SIP profiles (or endpoints) are defined. (See [Sofia
312312

313313
Public Context for Security
314314

315-
You'll notice that all the SIP profiles in the [default configuration](./Default-Configuration_6587388.mdx#mod_vp8) use the `public` context for their [dialplan](../Dialplan/index.mdx#0-about), **including the `internal` profile**:
315+
You'll notice that all the SIP profiles in the [default configuration](./Default-Configuration_6587388.mdx#mod_vp8) use the `public` context for their [dialplan](../Dialplan/index.mdx#about), **including the `internal` profile**:
316316

317317
**conf/sip\_profiles/\*.xml**
318318

319319
```xml
320320
<param name="context" value="public"/>
321321
```
322322

323-
If you look in the directory config files, `conf/directory/default/*.xml` (see Introduction in [Dialplan](../Dialplan/index.mdx#0-about)), you'll notice that the SIP profile's context is overridden there like so:
323+
If you look in the directory config files, `conf/directory/default/*.xml` (see Introduction in [Dialplan](../Dialplan/index.mdx#about)), you'll notice that the SIP profile's context is overridden there like so:
324324

325325
**conf/directory/default/\*.xml**
326326

docs/FreeSWITCH-Explained/Configuration/Sofia-SIP-Stack/Sofia-Configuration-Files_7144453.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Now I've got two UAs defined by my profiles, each of which can handle a call. Wh
3434

3535
So, the task becomes rather straightforward. Dialplans use pattern matching and other tricks to determine how to handle a call. My dialplan examines what I've dialed and then determines what profile to use with that call. If I dial a telephone number, the dialplan selects the UA that connects up to the PSTN. If I dial a SIP address outside the firewall, the dialplan selects that same UA because it uses the STUN server. But if I dial a SIP address that's inside the firewall, the dialplan selects the "local" UA.
3636

37-
To understand how to write dialplans, use pattern matching, etc., see [Dialplan](../../Dialplan/index.mdx#0-about)
37+
To understand how to write dialplans, use pattern matching, etc., see [Dialplan](../../Dialplan/index.mdx#about)
3838

3939
#### The Relationship Between SIP Profiles and Domains
4040

docs/FreeSWITCH-Explained/Dialplan/Dialplan-Recipes_9634252.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ It is also possible to have various legs of the bridge contain different timeout
6969

7070
## See Also
7171

72-
* [Misc.\_Dialplan\_Tools\_bridge](index.mdx#0-about)
72+
* [Misc.\_Dialplan\_Tools\_bridge](index.mdx#about)
7373
* [Regular Expression](../Examples/Regular-Expression/index.mdx)
7474

7575

docs/FreeSWITCH-Explained/Dialplan/Inline-Dialplan_13173434.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Note that you specify "inline:" at the beginning of the parameter and not at the
8585

8686
## See Also
8787

88-
* [Dialplan](./index.mdx#0-about)
88+
* [Dialplan](./index.mdx#about)
8989
* [Configuration](../Configuration/index.mdx#about)
9090
* [mod\_dptools: Inline Dialplan](../Modules/mod-dptools/6586667.mdx#about)
9191

0 commit comments

Comments
 (0)