Skip to content

Commit e2dc9a8

Browse files
committed
docs: Fix links
1 parent 4777180 commit e2dc9a8

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

packages/documentation/docs/user-guide/concepts-and-architecture.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To be able to facilitate various different kinds of show, Sofie Core has th
2727
- The **System** defines the whole of the Sofie Core
2828
- The **Organization** \(only available if user accounts are enabled\) defines things that are common for an organization. An organization consists of: **Users, Studios** and **ShowStyles**.
2929
- The **Studio** contains things that are related to the "hardware" or "rig". Technically, a Studio is defined as an entity that can have one \(or none\) rundown active at any given time. In most cases, this will be a representation of your gallery, with cameras, video playback and graphics systems, external inputs, sound mixers, lighting controls and so on. A single System can easily control multiple Studios.
30-
- The **Show Style** contains settings for the "show", for example if there's a "Morning Show" and an "Afternoon Show" - produced in the same gallery - they might be two different Show Styles \(played in the same Studio\). Most importantly, the Show Style decides the "look and feel" of the Show towards the producer/director, dictating how data ingested from the NRCS will be interpreted and how the user will interact with the system during playback (see: [Show Style](../configuration/settings-view#show-style) in Settings).
30+
- The **Show Style** contains settings for the "show", for example if there's a "Morning Show" and an "Afternoon Show" - produced in the same gallery - they might be two different Show Styles \(played in the same Studio\). Most importantly, the Show Style decides the "look and feel" of the Show towards the producer/director, dictating how data ingested from the NRCS will be interpreted and how the user will interact with the system during playback (see: [Show Style](configuration/settings-view#show-style) in Settings).
3131
- A **Show Style Variant** is a set of Show Style _Blueprint_ configuration values, that allows to use the same interaction model across multiple Shows with potentially different assets, changing the outward look of the Show: for example news programs with different hosts produced from the same Studio, but with different light setups, backscreen and overlay graphics.
3232

3333
![Sofie Architecture Venn Diagram](/img/docs/main/features/sofie-venn-diagram.png)
@@ -111,19 +111,19 @@ There are 3 types of blueprints, and all 3 must be uploaded into Sofie before th
111111

112112
Handle things on the _System level_.
113113
Documentation on the interface to be exposed by the Blueprint:
114-
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L75](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L75)
114+
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/system.ts](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/system.ts)
115115

116116
### Studio Blueprints
117117

118118
Handle things on the _Studio level_, like "which showstyle to use for this rundown".
119119
Documentation on the interface to be exposed by the Blueprint:
120-
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L85](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L85)
120+
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/studio.ts](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/studio.ts)
121121

122122
### Showstyle Blueprints
123123

124124
Handle things on the _Showstyle level_, like generating [_Baseline_](#baseline), _Segments_, _Parts, Pieces_ and _Timelines_ in a rundown.
125125
Documentation on the interface to be exposed by the Blueprint:
126-
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L117](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api.ts#L117)
126+
[https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/showStyle.ts](https://github.com/nrkno/sofie-core/blob/master/packages/blueprints-integration/src/api/showStyle.ts)
127127

128128
## `PartInstances` and `PieceInstances`
129129

packages/documentation/docs/user-guide/features/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Starting with version 1.50.0, there is also a separate service available, called
1616

1717
## DDP – Core Integration
1818

19-
If you're planning to build NodeJS applications that talk to _Sofie Core_, we recommend using the [core-integration](https://github.com/nrkno/sofie-core/tree/master/packages/server-core-integration.md) library, which exposes a number of callable methods and allows for subscribing to data the same way the [Gateways](../concepts-and-architecture.md#gateways) do it.
19+
If you're planning to build NodeJS applications that talk to _Sofie Core_, we recommend using the [core-integration](https://github.com/nrkno/sofie-core/tree/master/packages/server-core-integration) library, which exposes a number of callable methods and allows for subscribing to data the same way the [Gateways](../concepts-and-architecture.md#gateways) do it.

packages/documentation/docs/user-guide/further-reading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ description: This guide has a lot of links. Here they are all listed by section.
1919
- [Windows install for Docker](https://hub.docker.com/editions/community/docker-ce-desktop-windows)
2020
- [Linux install instructions for Docker](https://docs.docker.com/install/linux/docker-ce/ubuntu/)
2121
- [Linux install instructions for Docker Compose](https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-18-04)
22-
- [Sofie Core Docker File Download](https://firebasestorage.googleapis.com/v0/b/gitbook-28427.appspot.com/o/assets%2F-LWRCgfY_-kYo9iX6UNy%2F-Lo5eWjgoVlRRDeFzLuO%2F-Lo5fLSSyM1eO6OXScew%2Fdocker-compose.yaml?alt=media&token=fc2fbe79-365c-4817-b270-e507c6a6e3c6)
22+
- [Sofie Core Docker File Download](https://hub.docker.com/r/sofietv/tv-automation-server-core)
2323

2424
### Installing a Gateway
2525

2626
#### Ingest Gateways and NRCS
2727

2828
- [MOS Protocol Overview & Documentation](http://mosprotocol.com/)
29-
- Information about ENPS on [The Associated Press' Website](https://www.ap.org/enps/support)
30-
- Information about iNews: [Avid's Website](https://www.avid.com/products/inews/how-to-buy)
29+
- Information about ENPS on [The Associated Press' Website](https://workflow.ap.org/)
30+
- Information about iNews: [Avid's Website](https://www.avid.com/solutions/news-production)
3131

3232
**Google Spreadsheet Gateway**
3333

packages/documentation/docs/user-guide/installation/installing-a-gateway/rundown-or-newsroom-system-connection/inews-gateway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The iNEWS Gateway allows you to create rundowns from within iNEWS and sync them
88

99
The setup for the iNEWS Gateway is already in the Docker Compose file you downloaded earlier. Remove the _\#_ symbol from the start of the line labeled `image: tv2/inews-ftp-gateway:develop` and add a _\#_ to the other ingest gateway that was being used.
1010

11-
Although the iNEWS Gateway is available free of charge, an iNEWS license is not. Visit [Avid's website](https://www.avid.com/products/inews/how-to-buy) to find an iNEWS reseller that handles your geographic area.
11+
Although the iNEWS Gateway is available free of charge, an iNEWS license is not. Visit [Avid's website](https://www.avid.com/solutions/news-production) to find an iNEWS reseller that handles your geographic area.

packages/documentation/docs/user-guide/installation/installing-a-gateway/rundown-or-newsroom-system-connection/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ The Google Spreadsheet Gateway, iNEWS Gateway, and the MOS \( [Media Object Serv
77
### Further Reading
88

99
- [MOS Protocol Overview & Documentation](http://mosprotocol.com/)
10-
- [iNEWS on Avid's Website](https://www.avid.com/products/inews/how-to-buy)
10+
- [iNEWS on Avid's Website](https://www.avid.com/solutions/news-production)
1111
- [ENPS on The Associated Press' Website](https://workflow.ap.org/)

0 commit comments

Comments
 (0)