GCTools/Achievements 2020-2021

From wiki
Jump to navigation Jump to search
GCTools Achievements 2020-2021

Purpose

This page captures examples of how the GCTools (GCcollab, GCwiki, GCpedia, and GCconnex) have been leveraged in unique ways to enable collaboration and further Government of Canada projects and initiatives in 2020-2021.

Search

Search for a project below by typing a keyword... You can get more detail on each project by clicking on it.

<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Start typing here" title="Type in a service">

Project name Platform(s) Case study Link Project lead Contact Additional information
Project GCconnex, GCpedia
Read more
Text
X Sam Burke samuel.burke@tbs-sct.gc.ca N/A
Project GCconnex, GCpedia
Read more
Text
X Sam Burke Email N/A
Project GCconnex, GCpedia
Read more
Text
X Sam Burke Email N/A



<script> function myFunction() {

 var input, filter, table, tr, td, i;
 input = document.getElementById("myInput");
 filter = input.value.toUpperCase();
 table = document.getElementById("myTable");
 tr = table.getElementsByTagName("tr");
 for (i = 0; i < tr.length; i++) {
   td = tr[i].getElementsByTagName("td")[0];
   if (td) {
     if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
       tr[i].style.display = "";
     } else {
       tr[i].style.display = "none";
     }
   }       
 }

} </script>