-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
feat: Add Search Bar to Xterm Output on Job Details Web Page #3507
Conversation
@@ -407,6 +407,8 @@ var ProjectJobsTemplate = template.Must(template.New("blank.html.tmpl").Parse(` | |||
<script src="{{ .CleanedBasePath }}/static/js/xterm-4.9.0.js"></script> | |||
<script src="{{ .CleanedBasePath }}/static/js/xterm-addon-attach-0.6.0.js"></script> | |||
<script src="{{ .CleanedBasePath }}/static/js/xterm-addon-fit-0.4.0.js"></script> | |||
<script src="{{ .CleanedBasePath }}/static/js/xterm-addon-search-0.7.0.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like an older version
https://www.npmjs.com/package/xterm-addon-search
Can you verify which versions here are the latest?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to use the correct versions for the xterm.js release. See https://github.com/xtermjs/xterm.js/releases/tag/4.9.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah so it seems like we need to bump xterm version then. Would it be OK to bump the versions here as part of this PR ?
If not to 5.x xterm, then at least 4.19.0 xterm which would then allow [email protected]
https://github.com/xtermjs/xterm.js/releases/tag/4.19.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, I tried that, it caused other issues.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. Thank you for trying. We'll have to upgrade at some point in another pr :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
what
Add the
xterm-addon-search
andxterm-addon-search-bar
JavaScript packages to theProjectJobs
web template to add a search bar to the Xterm output on the Job Details page.The
xterm-addon-search-bar
JavaScript package is a customised version of xterm-addon-search-bar.why
Allows searching text within the xterm output, which is not currently available..
tests
references
Dependencies