Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit 2cc31b0

Browse files
author
Simon Biggs
committed
prep for 0.9.3-dev5 release
1 parent 8aeca08 commit 2cc31b0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

scriptedforms/docs/create-your-own-angular-jupyterlab-extension.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ provided as a [JupyterLab extension](http://jupyterlab.readthedocs.io/en/stable/
77
If you would like to use the above tools to create your own JupyterLab extension
88
this document is for you. If you just want to make your own JupyterLab extension
99
you should instead be reading the [xkcd extension tutorial](http://jupyterlab.readthedocs.io/en/stable/developer/xkcd_extension_tutorial.html).
10-
If you just want to use ScriptedForms head on over to <http://scriptedforms.com.au>.
10+
If you just want to use ScriptedForms head on over to <https://scriptedforms.com.au>.
1111

1212
This guide assumes that you are comfortable using Angular, and you are
1313
comfortable creating a basic JupyterLab extension.

scriptedforms/src/app/form-builder-module/form-builder.component.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ import { createFormComponentFactory, IFormComponent } from './create-form-compon
5454
<div #errorbox class="errorbox"></div>
5555
<div #container></div>
5656
</div>
57-
<iframe #usageStatistics class="hidden-iframe"></iframe>
57+
<iframe #telemetry class="hidden-iframe"></iframe>
5858
`
5959
})
6060
export class FormBuilderComponent implements OnInit, AfterViewInit {
6161
myMarkdownIt: MarkdownIt.MarkdownIt;
6262
viewInitialised = new PromiseDelegate<void>();
6363

6464
@ViewChild('errorbox') errorbox: ElementRef<HTMLDivElement>;
65-
@ViewChild('usageStatistics') usageStatistics: ElementRef<HTMLIFrameElement>;
65+
@ViewChild('telemetry') telemetry: ElementRef<HTMLIFrameElement>;
6666
@ViewChild('container', { read: ViewContainerRef })
6767
container: ViewContainerRef;
6868

@@ -97,7 +97,7 @@ export class FormBuilderComponent implements OnInit, AfterViewInit {
9797
const intArrayHash = new Uint8Array(hash);
9898
const base64String = btoa(String.fromCharCode.apply(null, intArrayHash));
9999
const uriEncoded = encodeURIComponent(base64String);
100-
this.usageStatistics.nativeElement.src = `http://scriptedforms.com.au/usage?hash=${uriEncoded}`;
100+
this.telemetry.nativeElement.src = `https://scriptedforms.com.au/telemetry?hash=${uriEncoded}`;
101101
});
102102
}
103103
}

scriptedforms/src/app/toolbar-module/toolbar-base.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class ToolbarBaseComponent implements AfterViewInit {
8585
this.addButton({
8686
icon: 'chrome_reader_mode',
8787
// href: '../docs', // Only change this link once the docs are ready
88-
href: 'http://scriptedforms.com.au',
88+
href: 'https://scriptedforms.com.au',
8989
tooltip: 'ScriptedForms documentation, installation instructions, and source code.'
9090
});
9191
this.addButton({

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ def get_data_files():
5959
'jupyterlab >= 0.32.0'
6060
],
6161
classifiers=[],
62-
url="http://scriptedforms.com.au",
62+
url="https://scriptedforms.com.au",
6363
include_package_data=True
6464
)

0 commit comments

Comments
 (0)