Skip to content

Commit 2811b5a

Browse files
committed
Amendments from review D-16429
1 parent e860f21 commit 2811b5a

File tree

241 files changed

+3108
-3774
lines changed

Some content is hidden

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

241 files changed

+3108
-3774
lines changed

.eslintrc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"@typescript-eslint/no-unused-vars": ["warn", {
1818
"argsIgnorePattern": "^_"
1919
}]
20-
}
21-
20+
},
21+
"ignorePatterns": ["loader/*"]
2222
}

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ As Office.js mandates secure HTTP and WebSockets we suggest creating a free Diff
5151
24 hours of test data is available for demonstration and test purposes. It comprises 2 data sources, covering 54 FX currency pairs, creating 126 discrete topics with a topic path prefix `market-data/`
5252

5353
```
54-
cd testing/fx-loader && npm run load
54+
cd loader
55+
npm install
56+
npm run load
5557
```
5658

5759
This will connect to your configured Diffusion server and re-play the data in real time. Open the Diffusion console to observe
@@ -68,12 +70,14 @@ To start the development server, run:
6870
```
6971
npm run dev
7072
```
73+
Accept any requests from your system relating to changed System Certificate Trust settings.
7174

7275
Open a new shell and load the add-in into your Excel instance: use the `start` script. e.g:
7376

7477
```
7578
npm run start
7679
```
80+
Accept any requests from your system relating to changed System Certificate Trust settings.
7781

7882
## Usage
7983

@@ -86,7 +90,7 @@ Excel window to float above as a child window. It can be closed, and resumed usi
8690

8791
### Market Data Tab
8892

89-
The user can stream live data into an Excel table using the `Capital Data` tab. Enter a symbol or symbol fragment e.g. `EUR` to search for symbols or browse them in the pull down menu. Once selected click the `Live Data` button to stream live market data into an Excel table.
93+
The user can stream live data into an Excel table using the `Market Data` tab. Enter a symbol or symbol fragment e.g. `EUR` to search for symbols or browse them in the pull down menu. Once selected click the `Live Data` button to stream live market data into an Excel table.
9094

9195
![The Market Data tab](./docs/market-data-tab.png)
9296

File renamed without changes.
File renamed without changes.
File renamed without changes.

testing/fx-loader/load.ts renamed to loader/load.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as diffusion from "diffusion";
55
import logger from './logger';
66
import {AbstractCsvFeed} from "./modules/CsvFeed";
77
import {MILLIS_PER_HOUR, TopicFileDetail} from "./modules/Common";
8-
import {DEFAULT_DIFFUSION_SERVER} from '../../src/taskpane/modules/AuthDefaults';
8+
import {DEFAULT_DIFFUSION_SERVER} from '../src/taskpane/modules/AuthDefaults';
99

1010
type TopicFile = {
1111
[topicPath: string]: TopicFileDetail

0 commit comments

Comments
 (0)