<div id=planned></div>
<style>
.recently-updated-concise li.update-item:hover {
background: none;
}
.recently-updated-concise h4.sub-heading {
display:none;
}
.recently-updated-concise
.update-item-desc,
.recently-updated-concise
.update-item-date,
.recently-updated-concise
.update-item-changes {
display:none;
}
.more-link-container, .more-link-base {
display:none;
}
.page-metadata {
display:none;
}
div.recently-updated.macro-blank-experience { display:none; visibility:hidden; }
.rwui_button.rwui_color_red {
background : url('');
background-color: #D63E3E;
border: 1px solid #d5d5d5;
}
.rwui_button.rwui_color_green {
background : url('');
background-color: #528E30;
border: 1px solid #d5d5d5;
}
.rwui_button.rwui_color_blue {
background : url('');
background-color: #FDDE5F;
border: 1px solid #d5d5d5;
color: #000000 !important;
}
span.rwui_content {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.oprs_main_wrapper {
font-size: 14px;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
color: #333333;
}
.oprs_item {
margin: 10px 0px;
}
.oprs_item:hover {
background-color: #f5f5f5;
border-radius: 3px;
}
.oprs_item_title {
background-color: #e8e8e8;
border-radius: 3px;
padding: 11px 13px;
font-size: 14px;
font-weight: bold;
color: #666666;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.oprs_item_content {
padding: 5px 0px;
overflow: hidden;
display: table;
}
.oprs_item_content div {
}
.oprs_item_content div.type,
.oprs_item_content div.customfield_10055,
.oprs_item_content div.customfield_10091,
.oprs_item_content div.customfield_11720 {
}
.oprs_item_content div.priority,
.oprs_item_content div.customfield_10056,
.oprs_item_content div.customfield_12224,
.oprs_item_content div.customfield_11721 {
}
.oprs_item_content div.oprs_item_odd,
.oprs_item_content div.oprs_item_even {
display: table-row;
padding: 0px 0px 10px 0px;
}
.oprs_customfield_name,
.oprs_field_name {
display: table-cell;
font-weight: bold;
color: #666666;
padding: 0px 10px 3px 0px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.oprs_field_value {
display: table-cell;
padding: 0px 0px 3px 0px;
}
.customfield_31689_prod .oprs_item_title {
background-color: #ff0000;
color: #e8e8e8;
}
.priority_high .oprs_item_title {
background-color: #fea342;
}
.priority_medium .oprs_item_title {
background-color: #f3f171;
}
.priority_low .oprs_item_title {
background-color:F3EC00;
}
.priority_trivial .oprs_item_title {
background-color: #13892b;
color: #e8e8e8;
}
.priority_none .oprs_item_title {
background-color: #13892b;
color: #e8e8e8;
}
.oprs_flag_item {
height: 22px;
line-height: 20px;
font-weight: bold;
}
.oprs_flag_box {
border: solid 1px #333333;
width: 14px;
height: 14px;
margin: 2px 5px 2px 0px;
float: left;
}
.oprs_flag_item_green .oprs_flag_box {
border: solid 2px green;
background-color: green;
}
.oprs_flag_item_orange .oprs_flag_box {
background-color: #fda342;
}
.oprs_flag_item_yellow .oprs_flag_box {
background-color: #f3f171;
}
.oprs_flag_item_grey .oprs_flag_box {
background-color: #e8e8e8;
}
.oprs_flag_item_red .oprs_flag_box {
background-color: #ff0000;
}
</style>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script language="Javascript">
$(document).ready(function() {
loadContent("#planned","https://jiraxml2html-2.fut.netic.dk/index.cgi/show/xml2html/?id=planned");
});
function loadContent(divName, Url) {
$.ajax({
url: Url,
success: function(data){
$(divName).html(data);
},
error: function(data){
$(divName).html("<center><font color=red>Content could not be loaded. Try to refresh the page.</font></center>");
}
});
}
</script>
|