Skip to content

Commit

Permalink
Merge pull request ome#5794 from mtbc/https-help
Browse files Browse the repository at this point in the history
adjust help.o.org links to https
  • Loading branch information
sbesson authored Jul 2, 2018
2 parents c60092a + e6a4b52 commit 94eb816
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Full documentation is hosted at https://docs.openmicroscopy.org/latest/omero/

User help guides are available at http://help.openmicroscopy.org
User help guides are available at https://help.openmicroscopy.org/

If you need to contact us for further assistance, please see the
[support page](https://www.openmicroscopy.org/support/) - our preferred
channels for support are our mailing lists and forums.
channels for support are our mailing lists and forums.
4 changes: 2 additions & 2 deletions components/insight/config/container.xml
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@
<entry name="Version">@OMERO_DISPLAY_VERSION@</entry>
<entry name="SoftwareName">OMERO.insight</entry>
<entry name="AboutFile">about.xml</entry>
<entry name="HelpOnLine">http://help.openmicroscopy.org/</entry>
<entry name="HelpOnLineSearch">http://help.openmicroscopy.org/search.html</entry>
<entry name="HelpOnLine">https://help.openmicroscopy.org/</entry>
<entry name="HelpOnLineSearch">https://help.openmicroscopy.org/search.html</entry>
<entry name="Forum">https://www.openmicroscopy.org/community/</entry>

<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion components/insight/config/containerImporter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
<entry name="Version">@OMERO_DISPLAY_VERSION@</entry>
<entry name="SoftwareName">OMERO.importer</entry>
<entry name="AboutFile">about.xml</entry>
<entry name="HelpOnLine">http://help.openmicroscopy.org/</entry>
<entry name="HelpOnLine">https://help.openmicroscopy.org/</entry>
<entry name="Forum">https://www.openmicroscopy.org/community/</entry>

<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion components/tools/OmeroPy/src/omero/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def toplinks_check(self):
"Browse Data via Projects, Tags etc"}],
["History", "history",
{"title": "History"}],
["Help", "http://help.openmicroscopy.org/",
["Help", "https://help.openmicroscopy.org/",
{"target": "new", "title":
"Open OMERO user guide in a new tab"}]]
toplinks = defaultlinks + toplinks
Expand Down
2 changes: 1 addition & 1 deletion components/tools/OmeroPy/test/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def testSettings510Upgrade(self):
'{"title": "Browse Data via Projects, Tags etc"}], ' \
'["History", "history", ' \
'{"title": "History"}], ' \
'["Help", "http://help.openmicroscopy.org/", ' \
'["Help", "https://help.openmicroscopy.org/", ' \
'{"target": "new", "title": ' \
'"Open OMERO user guide in a new tab"}], ' \
'["Figure", "figure_index"]]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1>{% trans "OMERO.web Help" %}</h1>

<ul style="list-style: disc inside none">
<li>
<a href="http://help.openmicroscopy.org/">User Assistance</a>:
<a href="https://help.openmicroscopy.org/">User Assistance</a>:
More information about the OMERO clients.
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion components/tools/OmeroWeb/omeroweb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def leave_none_unset_int(s):
'["Data", "webindex", {"title": "Browse Data via Projects, Tags'
' etc"}],'
'["History", "history", {"title": "History"}],'
'["Help", "http://help.openmicroscopy.org/",'
'["Help", "https://help.openmicroscopy.org/",'
'{"title":"Open OMERO user guide in a new tab", "target":"new"}]'
']'),
json.loads,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h2 style="margin-bottom: 0">{% trans "General Search" %}</h2>
<br>
<div>
For more info, see the
<a title="Open link in new Tab" target="new" href="http://help.openmicroscopy.org/search.html">
<a title="Open link in new Tab" target="new" href="https://help.openmicroscopy.org/search.html">
User Help</a>
pages.
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ class AutoLockFile (file):
"""

def __init__(self, fn, mode):
""" creates a '.lock' file with the spicified file name and mode """
""" creates a '.lock' file with the specified file name and mode """
super(AutoLockFile, self).__init__(fn, mode)
self._lock = os.path.join(os.path.dirname(fn), '.lock')
file(self._lock, 'a').close()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_load_settings_defaults(self):
'attrs': {u'title': u'History'},
'label': u'History'
}, {
'link': u'http://help.openmicroscopy.org/',
'link': u'https://help.openmicroscopy.org/',
'attrs': {
u'target': u'new',
u'title': u'Open OMERO user guide in a new tab'
Expand Down

0 comments on commit 94eb816

Please sign in to comment.