OneGovCloud
- Design Considerations
- Technology Roadmap
- Transformation Benefits
- Transformation Self Assessment
- 5 Phase Model - OneGovCloud
- Government Business Services
- Process Transformation and Data Convergence
- Technology Options Assessment
- Technology Lessons Learned
- Government Resources Insight Data Dashboard (GRID)
- Interoperability
<div id="LatestUpdate" align="right"></div>
<script>
/**
* @param {String} url The Kahootz URL to get HTML from
* @param {Function} callback A callback function.
Jamie Thompson
*/
var getKahootzHTML = function ( url, callback ) {
if ( !window.XMLHttpRequest ) return;
var xhr = new XMLHttpRequest();
xhr.onload = function() {
if ( callback && typeof( callback ) === 'function' ) {
callback( this.responseXML );
}
}
// Get the HTML
xhr.open( 'GET', url );
xhr.responseType = 'document';
xhr.send();
};
getKahootzHTML( 'https://onegovcloud.kahootz.com/OneGovCloud/whatsNew?searchObject=all&users=&showType=date', function (response) {
var pageContent = response.querySelector( '#in_url_whatsnew' );
var str =pageContent.innerHTML;
var n = str.indexOf("minutes ago", 0);
var textResponse;
if (n>0) {
textResponse = "Last Updated:<BR>Just now";
} else{
var p = str.indexOf("minute ago", 0);
if (p>0) {
textResponse = "Last Updated:<BR>Just now";
} else {
var k = str.indexOf("hour ago", 0);
if (k>0) {
textResponse = "Last updated:<BR>An hour ago";
} else {
var r = str.indexOf("hours ago", 0);
if (r>0) {
textResponse = "Last updated: <BR>Today";
} else {
var m = str.indexOf("day ago", 0)+ str.indexOf("Yesterday", 0);
if (m>0) {
textResponse = "Last Updated:<BR>Yesterday";
} else {
var p = str.indexOf("days ago", 0);
if (p>0) {
textResponse = "Last Updated:<BR> > 1 day ago";
} else {
textResponse =""; // Not found
}
}
}
}
}
}
document.getElementById("LatestUpdate").innerHTML = "<a href='https://onegovcloud.kahootz.com/OneGovCloud/whatsNew?searchObject=all&users=&showType=date'><b>" + textResponse + "</b></a>";
});
</script>
Recent Items
No new items in the last 3 months