Bug 1064573
| Summary: | left side menu not structured when on system details page | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Community] Spacewalk | Reporter: | Jan Hutař <jhutar> | ||||
| Component: | WebUI | Assignee: | Tomáš Kašpárek <tkasparek> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Red Hat Satellite QA List <satqe-list> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 2.1 | CC: | tkasparek | ||||
| Target Milestone: | --- | Keywords: | Reopened | ||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2014-03-04 13:07:15 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Bug Depends On: | |||||||
| Bug Blocks: | 1069560 | ||||||
| Attachments: |
|
||||||
|
Description
Jan Hutař
2014-02-12 21:23:25 UTC
Sorry, menu on system details page is OK. Menu on system details -> Events is the one where I can see the problem. So step 2 should be: 2. Select some system and go to its details page -> Events and notice menu on the left now: https://<fqdn>/network/systems/details/history/pending.pxt?sid=1000010384 Created attachment 862539 [details]
differences in menu
looks like perl vs. java issue (left side menu have probably different classes in perl and java) - taking fixed in spacewalk.git: 3c15a2224365758e215497100ed54ae7eb4d1944
f3dbd0d5cbe1d8939cb7a2ee871383de94238f81
perl generated html valid side navigation while did not, I've fixed java code to generate html valid navogation and css to respect html valid navigation
pasting there from commit message of 3c15a2224365758e215497100ed54ae7eb4d1944
1064573 - make sidenav html valid
constructs like:
<ul>
<li>..</li>
<ul>
<li>..</li>
</ul>
</ul>
are not html valid, replacing them with valid ones like:
<ul>
<li>..</li>
<li><ul>
<li>..</li>
</ul></li>
</ul>
nested <ul>s should be inside <li>
Spacewalk 2.1 has been released. https://fedorahosted.org/spacewalk/wiki/ReleaseNotes21 Spacewalk 2.1 has been released. https://fedorahosted.org/spacewalk/wiki/ReleaseNotes21 |