Skip to content

Commit b68d342

Browse files
authored
Merge pull request #1451 from ISISComputingGroup/Ticket7229_use_https
Use https for links to user manual
2 parents 290ae71 + e354fdf commit b68d342

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

base/uk.ac.stfc.isis.ibex.e4.client/plugin_customization.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ uk.ac.stfc.isis.ibex.preferences/show_values_of_invalid_blocks=false
77
uk.ac.stfc.isis.ibex.preferences/script_definitions_folder=C:/Instrument/Settings/ibex_script_generator/scriptdefinitions
88
uk.ac.stfc.isis.ibex.preferences/script_generation_folder=C:/Scripts/
99
uk.ac.stfc.isis.ibex.preferences/hide_script_definition_error_table=false
10-
uk.ac.stfc.isis.ibex.preferences/script_generator_manual_url=http://shadow.nd.rl.ac.uk/ibex_user_manual/script_generator/Script-Generator,https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Script-Generator
10+
uk.ac.stfc.isis.ibex.preferences/script_generator_manual_url=https://shadow.nd.rl.ac.uk/ibex_user_manual/script_generator/Script-Generator,https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Script-Generator
1111

1212
org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = false
1313
org.eclipse.ui/LOCK_TRIM = true

base/uk.ac.stfc.isis.ibex.opis/resources/fermi_chopper.opi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4162,7 +4162,7 @@ $(pv_value)</tooltip>
41624162
<path/>
41634163
<scriptText>import webbrowser
41644164

4165-
webbrowser.open("http://shadow.nd.rl.ac.uk/ibex_user_manual/FZJ-Fermi-Chopper")
4165+
webbrowser.open("https://shadow.nd.rl.ac.uk/ibex_user_manual/FZJ-Fermi-Chopper")
41664166
</scriptText>
41674167
<embedded>true</embedded>
41684168
<description/>

base/uk.ac.stfc.isis.ibex.opis/resources/kepco.opi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ $(pv_value)</tooltip>
499499
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0.0">
500500
<actions hook="true" hook_all="false">
501501
<action type="OPEN_WEBPAGE">
502-
<hyperlink>http://shadow.nd.rl.ac.uk/ibex_user_manual/Kepco-Power-Supply</hyperlink>
502+
<hyperlink>https://shadow.nd.rl.ac.uk/ibex_user_manual/Kepco-Power-Supply</hyperlink>
503503
<description>Kepco IOC specific information</description>
504504
</action>
505505
</actions>

base/uk.ac.stfc.isis.ibex.opis/resources/matplotlib.opi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ $(pv_value)</tooltip>
241241
<path/>
242242
<scriptText>import webbrowser
243243

244-
webbrowser.open("http://shadow.nd.rl.ac.uk/ibex_user_manual/Matplotlib")
244+
webbrowser.open("https://shadow.nd.rl.ac.uk/ibex_user_manual/Matplotlib")
245245
</scriptText>
246246
<embedded>true</embedded>
247247
<description/>

base/uk.ac.stfc.isis.ibex.opis/resources/template.opi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4049,7 +4049,7 @@ $(pv_value)</tooltip>
40494049
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0.0">
40504050
<actions hook="true" hook_all="false">
40514051
<action type="OPEN_WEBPAGE">
4052-
<hyperlink>http://shadow.nd.rl.ac.uk/ibex_user_manual/Kepco-Power-Supply</hyperlink>
4052+
<hyperlink>https://shadow.nd.rl.ac.uk/ibex_user_manual/Kepco-Power-Supply</hyperlink>
40534053
<description>Kepco IOC specific information</description>
40544054
</action>
40554055
</actions>

base/uk.ac.stfc.isis.ibex.opis/resources/weblinks.opi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<color red="192" green="192" blue="192"/>
5353
</border_color>
5454
<widget_type>Web Browser</widget_type>
55-
<url>http://dataweb.isis.rl.ac.uk/IbexLinks/default.htm?&amp;instrument=$(INST)</url>
55+
<url>https://dataweb.isis.rl.ac.uk/IbexLinks/default.htm?&amp;instrument=$(INST)</url>
5656
<background_color>
5757
<color red="240" green="240" blue="240"/>
5858
</background_color>

base/uk.ac.stfc.isis.ibex.preferences/src/uk/ac/stfc/isis/ibex/preferences/PreferenceSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ private static String relativePathToFull(String relativePath) throws IOException
198198
/**
199199
* The default URL for the Script Generator manual page
200200
*/
201-
private static final String DEFAULT_SCRIPT_GENERATOR_MANUAL_URL = "http://shadow.nd.rl.ac.uk/ibex_user_manual/Using-the-Script-Generator";
201+
private static final String DEFAULT_SCRIPT_GENERATOR_MANUAL_URL = "https://shadow.nd.rl.ac.uk/ibex_user_manual/Using-the-Script-Generator";
202202

203203
/**
204204
* Defines the URL of the Script Generator page on the user manual

base/uk.ac.stfc.isis.ibex.ui.help/src/uk/ac/stfc/isis/ibex/ui/help/ManualHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737
public class ManualHandler {
3838

39-
private static final String USER_MANUAL_ADDRESS = "http://shadow.nd.rl.ac.uk/ibex_user_manual/Home";
39+
private static final String USER_MANUAL_ADDRESS = "https://shadow.nd.rl.ac.uk/ibex_user_manual/Home";
4040

4141
/**
4242
* Opens the 'User Manual' URL in help menu.

base/uk.ac.stfc.isis.scriptgenerator.client/plugin_customization.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
uk.ac.stfc.isis.ibex.preferences/script_definitions_folder=C:/Instrument/Settings/ibex_script_generator/scriptdefinitions
55
uk.ac.stfc.isis.ibex.preferences/script_generation_folder=C:/Scripts/
66
uk.ac.stfc.isis.ibex.preferences/hide_script_definition_error_table=false
7-
uk.ac.stfc.isis.ibex.preferences/script_generator_manual_url=http://shadow.nd.rl.ac.uk/ibex_user_manual/script_generator/Script-Generator,https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Script-Generator
7+
uk.ac.stfc.isis.ibex.preferences/script_generator_manual_url=https://shadow.nd.rl.ac.uk/ibex_user_manual/script_generator/Script-Generator,https://github.com/ISISComputingGroup/ibex_user_manual/wiki/Script-Generator
88

99
# Eclipse
1010
org.eclipse.ui/SHOW_MEMORY_MONITOR=false

0 commit comments

Comments
 (0)