Skip to content

Commit 4b65962

Browse files
committed
init
0 parents  commit 4b65962

File tree

1,982 files changed

+226860
-0
lines changed

Some content is hidden

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

1,982 files changed

+226860
-0
lines changed

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Website
2+
3+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
4+
5+
### Installation
6+
7+
```
8+
$ yarn
9+
```
10+
11+
### Local Development
12+
13+
```
14+
$ yarn start
15+
```
16+
17+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
### Build
20+
21+
```
22+
$ yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
### Deployment
28+
29+
Using SSH:
30+
31+
```
32+
$ USE_SSH=true yarn deploy
33+
```
34+
35+
Not using SSH:
36+
37+
```
38+
$ GIT_USER=<Your GitHub username> yarn deploy
39+
```
40+
41+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

blog/2019-05-28-first-blog-post.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
slug: first-blog-post
3+
title: First Blog Post
4+
authors:
5+
name: Gao Wei
6+
title: Docusaurus Core Team
7+
url: https://github.com/wgao19
8+
image_url: https://github.com/wgao19.png
9+
tags: [hola, docusaurus]
10+
---
11+
12+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet

blog/2019-05-29-long-blog-post.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
slug: long-blog-post
3+
title: Long Blog Post
4+
authors: endi
5+
tags: [hello, docusaurus]
6+
---
7+
8+
This is the summary of a very long blog post,
9+
10+
Use a `<!--` `truncate` `-->` comment to limit blog post size in the list view.
11+
12+
<!--truncate-->
13+
14+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
15+
16+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
17+
18+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
19+
20+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
21+
22+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
23+
24+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
25+
26+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
27+
28+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
29+
30+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
31+
32+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
33+
34+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
35+
36+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
37+
38+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
39+
40+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
41+
42+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
43+
44+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet

blog/2021-08-01-mdx-blog-post.mdx

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
slug: mdx-blog-post
3+
title: MDX Blog Post
4+
authors: [slorber]
5+
tags: [docusaurus]
6+
---
7+
8+
Blog posts support [Docusaurus Markdown features](https://docusaurus.io/docs/markdown-features), such as [MDX](https://mdxjs.com/).
9+
10+
:::tip
11+
12+
Use the power of React to create interactive blog posts.
13+
14+
```js
15+
<button onClick={() => alert('button clicked!')}>Click me!</button>
16+
```
17+
18+
<button onClick={() => alert('button clicked!')}>Click me!</button>
19+
20+
:::
Loading

blog/2021-08-26-welcome/index.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
slug: welcome
3+
title: Welcome
4+
authors: [slorber, yangshun]
5+
tags: [facebook, hello, docusaurus]
6+
---
7+
8+
[Docusaurus blogging features](https://docusaurus.io/docs/blog) are powered by the [blog plugin](https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog).
9+
10+
Simply add Markdown files (or folders) to the `blog` directory.
11+
12+
Regular blog authors can be added to `authors.yml`.
13+
14+
The blog post date can be extracted from filenames, such as:
15+
16+
- `2019-05-30-welcome.md`
17+
- `2019-05-30-welcome/index.md`
18+
19+
A blog post folder can be convenient to co-locate blog post images:
20+
21+
![Docusaurus Plushie](./docusaurus-plushie-banner.jpeg)
22+
23+
The blog supports tags as well!
24+
25+
**And if you don't want a blog**: just delete this directory, and use `blog: false` in your Docusaurus config.

blog/authors.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
endi:
2+
name: Endilie Yacop Sucipto
3+
title: Maintainer of Docusaurus
4+
url: https://github.com/endiliey
5+
image_url: https://github.com/endiliey.png
6+
7+
yangshun:
8+
name: Yangshun Tay
9+
title: Front End Engineer @ Facebook
10+
url: https://github.com/yangshun
11+
image_url: https://github.com/yangshun.png
12+
13+
slorber:
14+
name: Sébastien Lorber
15+
title: Docusaurus maintainer
16+
url: https://sebastienlorber.com
17+
image_url: https://github.com/slorber.png

docs/intro.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Tutorial Intro
6+
7+
Let's discover **Docusaurus in less than 5 minutes**.
8+
9+
## Getting Started
10+
11+
Get started by **creating a new site**.
12+
13+
Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**.
14+
15+
### What you'll need
16+
17+
- [Node.js](https://nodejs.org/en/download/) version 16.14 or above:
18+
- When installing Node.js, you are recommended to check all checkboxes related to dependencies.
19+
20+
## Generate a new site
21+
22+
Generate a new Docusaurus site using the **classic template**.
23+
24+
The classic template will automatically be added to your project after you run the command:
25+
26+
```bash
27+
npm init docusaurus@latest my-website classic
28+
```
29+
30+
You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
31+
32+
The command also installs all necessary dependencies you need to run Docusaurus.
33+
34+
## Start your site
35+
36+
Run the development server:
37+
38+
```bash
39+
cd my-website
40+
npm run start
41+
```
42+
43+
The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
44+
45+
The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
46+
47+
Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# CHANNEL
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## CHANNEL
7+
8+
string
9+
10+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# DISPLACE_HANGUP_ON_ERROR
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## DISPLACE_HANGUP_ON_ERROR
7+
8+
boolean When set to `true` this channel variable will cause the call to hangup if there is an error when trying to [mod\_commands#uuid\_displace](../FreeSWITCH-Explained/Modules/mod_commands_1966741.mdx#uuid_displace) the call. The default is `false`. The default behavior before 2013/03/21 was to hangup.
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="DISPLACE_HANGUP_ON_ERROR=true"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# EXTEN
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## EXTEN
7+
8+
string
9+
10+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# NDLB_support_asterisk_missing_srtp_auth
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## NDLB_support_asterisk_missing_srtp_auth
7+
8+
boolean
9+
10+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_APPEND
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## RECORD_APPEND
7+
8+
boolean Recording is appended to file. Set `RECORD_APPEND=true` on the channel and all recordings will behave this way to formats which support it (curently [mod\_sndfile](../FreeSWITCH-Explained/Modules/mod_sndfile_32178375.mdx#-freeswitch--mod_sndfile-) for WAV, etc.)
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_APPEND=true"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_ARTIST
3+
4+
Created by Ryan Harris, last modified on 2018.02.07
5+
6+
## RECORD_ARTIST
7+
8+
string Set prior to performing a record to store in the file header meta data (provided the file format supports meta headers).
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_ARTIST=Unknown"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_BRIDGE_REQ
3+
4+
Created by Ryan Harris, last modified on 2018.02.08
5+
6+
## RECORD_BRIDGE_REQ
7+
8+
boolean Record session only when the channel is bridged. See [FS-5127](https://freeswitch.org/jira/browse/FS-5127?src=confmacro) \-[Autentica](https://freeswitch.org/confluence/plugins/servlet/applinks/oauth/login-dance/authorize?applicationLinkID=c4b15fa3-ad57-3c05-af05-8c167cb92266) per visualizzare i dettagli del problema
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_BRIDGE_REQ=true"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_COMMENT
3+
4+
Created by Ryan Harris, last modified on 2018.02.07
5+
6+
## RECORD_COMMENT
7+
8+
string Set prior to performing a record to store in the file header meta data (provided the file format supports meta headers).
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_COMMENT=This is a blog spot"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_COPYRIGHT
3+
4+
Created by Ryan Harris, last modified on 2018.02.07
5+
6+
## RECORD_COPYRIGHT
7+
8+
string Set prior to performing a record to store in the file header meta data (provided the file format supports meta headers).
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_COPYRIGHT=(c)2007-me"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# RECORD_DATE
3+
4+
Created by Ryan Harris, last modified on 2018.02.07
5+
6+
## RECORD_DATE
7+
8+
string Set prior to performing a record to store in the file header meta data (provided the file format supports meta headers).
9+
10+
**Usage**
11+
12+
```xml
13+
<action application="set" data="RECORD_DATE=${strftime(%Y-%m-%d %H:%M)}"/>
14+
```
15+
16+
Document generated by Confluence on nov 11, 2022 04:24

0 commit comments

Comments
 (0)