Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Click for more information on how to create a [self-signed SSL certificate](http

**Important:** Before performing the following steps, make sure that **SSH management** is enabled on **DD-WRT**.

1. SSH into DD-WRT as root root.
1. SSH into DD-WRT as root.
2. Add DD-WRT to monitor traffic by entering the following console commands:

```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This utility supports Windows, Mac and Linux and requires Java to be installed i

## Structure of the utility

The static analysis utility is distributed as a ZIP file. The contents of the ZIP as as follows:
The static analysis utility is distributed as a ZIP file. The contents of the ZIP are as follows:

```brightscript
.
Expand Down
2 changes: 1 addition & 1 deletion docs/REFERENCES/brightscript/language/error-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ m &h0010 roAssociativeArray refcnt=3 count:0
Brightscript Debugger>
```

A `roAssociativeArray` that describes the exception is also an acceptable argument to `THROW`. Any missing fields will will be set with default values as shown in the table below:
A `roAssociativeArray` that describes the exception is also an acceptable argument to `THROW`. Any missing fields will be set with default values as shown in the table below:

| Name | Default |
| :-------- | :------------------------------------------------ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ end try

The TRY block of statements is executed. If and only if an error occurs, the CATCH block of statements is executed, and the named variable is assigned the information about the triggering exception. If no error occurs during execution of the TRY block, the CATCH block is skipped.

> It is illegal to put a GOTO label within a TRY block (i.e., between TRY and CATCH). A GOTO label may exist exist between CATCH and END TRY, however.
> It is illegal to put a GOTO label within a TRY block (i.e., between TRY and CATCH). A GOTO label may exist between CATCH and END TRY, however.

The variable name specified as the *exception object* in the CATCH clause must refer to a *simple variable*. It cannot be an array element, for example. The following are **not** legal as exception object references in the CATCH clause:

Expand Down
4 changes: 2 additions & 2 deletions docs/REFERENCES/scenegraph/media-playback-nodes/video.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ The `control` field includes a `prebuffer` option, which allows the video to beg
<td>integer</td>
<td>0</td>
<td>READ\_ONLY</td>
<td>The error code associated with the video play error set in the <code>state</code> field: <pre><code>- 0 no error <br />- -1 network error (server down or unresponsive, server is unreachable, network setup problem on the client).<br />- -2 connection timed out <br />- -3 unknown/unspecified or generic Error <br />- -4 empty list; no streams were specified to play <br />- -5 media error; the media format is unknown or unsupported <br />- -6 DRM error</code></pre><br />Use the <strong>errorStr</strong> and and <strong>errorInfo</strong> fields for more descriptive diagnostic information to help identify and resolve the cause of the error.</td>
<td>The error code associated with the video play error set in the <code>state</code> field: <pre><code>- 0 no error <br />- -1 network error (server down or unresponsive, server is unreachable, network setup problem on the client).<br />- -2 connection timed out <br />- -3 unknown/unspecified or generic Error <br />- -4 empty list; no streams were specified to play <br />- -5 media error; the media format is unknown or unsupported <br />- -6 DRM error</code></pre><br />Use the <strong>errorStr</strong> and <strong>errorInfo</strong> fields for more descriptive diagnostic information to help identify and resolve the cause of the error.</td>
</tr>
<tr>
<td>errorMsg</td>
<td>string</td>
<td />
<td>READ\_ONLY</td>
<td>An error message describing the video play error set in the <code>state</code> field.<br /><br />Use the <strong>errorStr</strong> and and <strong>errorInfo</strong> fields for more descriptive diagnostic information to help identify and resolve the cause of the error.</td>
<td>An error message describing the video play error set in the <code>state</code> field.<br /><br />Use the <strong>errorStr</strong> and <strong>errorInfo</strong> fields for more descriptive diagnostic information to help identify and resolve the cause of the error.</td>
</tr>
<tr>
<td>errorStr</td>
Expand Down
Loading