-
Notifications
You must be signed in to change notification settings - Fork 21
Add Cylc Review (from Cylc 7) #755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
wxtim
wants to merge
9
commits into
cylc:master
Choose a base branch
from
wxtim:feat.cylc-review
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+23,862
−1
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2df63c7
basic copy of everythin from Cylc 7
wxtim c99a715
Upgrade Cylc Review to Python 3
wxtim dad9a37
remove non-functional attempt to pick a port
wxtim 493ecad
[skip ci]Turn off bodge that makes branch pass tests without https://…
wxtim e9d9e35
Update .github/workflows/test.yml
wxtim 9ba183f
Fix unicode decode errors.
wxtim 63d263c
Apply suggestion from @wxtim
wxtim ffeb50f
fix small bug in tar_f.extractfile
wxtim 02a6626
Remove bodge added to make the tests pick up changes to Cylc flow req…
wxtim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Cylc Review converted to Python 3 and added to Cylc UIServer bundle. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,120 @@ | ||
| pre { | ||
| white-space: pre; | ||
| } | ||
| .entry { | ||
| border-radius: 5px; | ||
| padding: 5px; | ||
| } | ||
| .even { | ||
| background: #eee; | ||
| } | ||
| .inline { | ||
| margin: 0; | ||
| } | ||
| .page-header { | ||
| padding-left: 10px; | ||
| padding-right: 10px; | ||
| } | ||
| .highlight { | ||
| background-color: yellow; | ||
| } | ||
| .line-number { | ||
| cursor: pointer; | ||
| } | ||
| .badge-label { | ||
| border-radius: 1em; | ||
| } | ||
|
|
||
|
|
||
| @media screen { | ||
| div.top_nav { | ||
| position: fixed; | ||
| bottom: 0; | ||
| background-color: lightgrey; | ||
| z-index: 10; | ||
| } | ||
| .next { | ||
| background: white | ||
| } | ||
| .previous { | ||
| background: white | ||
| } | ||
| .page_entries select { | ||
| width: 300px; | ||
| } | ||
| } | ||
|
|
||
|
|
||
| /* dropdown-submenu code from bootstrap v2.3.1 (removed in v3.x) | ||
| see boostrap v2.3.1 docs/assets/css/boostrap.css #3031->3075 */ | ||
| .dropdown-submenu { | ||
| position: relative; | ||
| } | ||
|
|
||
| .dropdown-submenu > .dropdown-menu { | ||
| top: 0; | ||
| left: 100%; | ||
| margin-top: -6px; | ||
| margin-left: -1px; | ||
| -webkit-border-radius: 0 6px 6px 6px; | ||
| -moz-border-radius: 0 6px 6px 6px; | ||
| border-radius: 0 6px 6px 6px; | ||
| } | ||
|
|
||
| .dropdown-submenu:hover > .dropdown-menu { | ||
| display: block; | ||
| } | ||
|
|
||
| .dropup .dropdown-submenu > .dropdown-menu { | ||
| top: auto; | ||
| bottom: 0; | ||
| margin-top: 0; | ||
| margin-bottom: -2px; | ||
| -webkit-border-radius: 5px 5px 5px 0; | ||
| -moz-border-radius: 5px 5px 5px 0; | ||
| border-radius: 5px 5px 5px 0; | ||
| } | ||
|
|
||
| .dropdown-submenu > a:after { | ||
| display: block; | ||
| float: right; | ||
| width: 0; | ||
| height: 0; | ||
| margin-top: 5px; | ||
| margin-right: -10px; | ||
| border-color: transparent; | ||
| border-left-color: #cccccc; | ||
| border-style: solid; | ||
| border-width: 5px 0 5px 5px; | ||
| content: " "; | ||
| } | ||
|
|
||
| .dropdown-submenu:hover > a:after { | ||
| border-left-color: #222222; /* make the right arrow visible on hover */ | ||
| } | ||
|
|
||
| .dropdown-submenu.pull-left { | ||
| float: none; | ||
| } | ||
|
|
||
| .dropdown-submenu.pull-left > .dropdown-menu { | ||
| left: -100%; | ||
| margin-left: 10px; | ||
| -webkit-border-radius: 6px 0 6px 6px; | ||
| -moz-border-radius: 6px 0 6px 6px; | ||
| border-radius: 6px 0 6px 6px; | ||
| } | ||
|
|
||
| @-moz-document url-prefix() { | ||
| fieldset { display: table-cell; } | ||
| } | ||
|
|
||
| th, | ||
| .livestamp { | ||
| white-space: nowrap; | ||
| } | ||
|
|
||
| .warning { | ||
| background-color: #FFBF00; | ||
| border-radius: 4px; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.