Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
<html>

<head>
<meta name="referrer" content="strict-origin-when-cross-origin">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"></script>
</head>

<body>
<div id="map" style="width:100%;height:100%"></div>
<div id="map" style="width:100%;height:100%; position: relative; z-index: 0;"></div>
<div style="position: absolute; bottom: 10px; left: 10px; background: rgba(255, 255, 255, 0.7); padding: 5px; border-radius: 5px; font-size: 12px; z-index: 1000;">
<a href="https://www.openstreetmap.org/copyright" target="_blank" style="text-decoration: none; color: #000;">
© OpenStreetMap contributors
</a>
</div>

<script type="text/javascript">
// Define the colours to display for the different rainfall values.
Expand Down
6 changes: 3 additions & 3 deletions metomi/rose/rose.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ def iter_entry_points(name: str):
('rose', 'task-hook'):
'Command obsolete, use Cylc event handlers',
('rose', 'suite-log-view'):
'This command has been removed: use cylc review at Cylc 7 instead.',
'This command has been removed: use cylc review instead.',
('rose', 'suite-log'):
'This command has been removed: use cylc review at Cylc 7 instead.',
'This command has been removed: use cylc review instead.',
('rose', 'slv'):
'This command has been removed: use cylc review at Cylc 7 instead.',
'This command has been removed: use cylc review instead.',
('rose', 'suite-restart'):
'This command has been replaced by: "cylc restart".',
('rose', 'suite-run'):
Expand Down
9 changes: 5 additions & 4 deletions sphinx/tutorial/rose/suites.rst
Original file line number Diff line number Diff line change
Expand Up @@ -524,12 +524,13 @@ Rose Applications In Rose Suite Configurations

.. note:: Manually starting Cylc Review

``cylc review`` is a Cylc 7 utility which can view Cylc 8 workflows.
Cylc Review is part of the cylc-uiserver package
(see the :external+cylc:ref:`Cylc installation <installation>`
docs).

If you have Cylc 7 installed you can start a Cylc Review server by
running the following command and opening the printed URL::
To start a server, run::

CYLC_VERSION=7 cylc review start
cylc review start


Navigate to your latest rose-suite-tutorial run and click
Expand Down
Loading