diff --git a/Docs.Site/Docs/Reference/License-Analysis.markdown b/Docs.Site/Docs/Reference/License-Analysis.markdown index 16de472f..3c58aba8 100644 --- a/Docs.Site/Docs/Reference/License-Analysis.markdown +++ b/Docs.Site/Docs/Reference/License-Analysis.markdown @@ -24,4 +24,5 @@ Whenever you have a package where the license analysis was incorrect or you want Editing the license will open a dialog in which you can specify a new license. MyGet provides autocompletion on known [OSI licenses](http://opensource.org/licenses/), but a proprietary license name can be entered here as well. Once a license has been overriden, new versions of the package will be assigned this overriden license. -![Edit NuGet package license information](Images/edit-license.png) \ No newline at end of file +![Edit NuGet package license information](Images/edit-license.png) ++ diff --git a/README.md b/README.md index cf6fb5b8..78bff3e3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[![Code Issues](https://www.quantifiedcode.com/api/v1/project/0e69adabd0c842c895ea5ec88302f64c/badge.svg)](https://www.quantifiedcode.com/app/project/0e69adabd0c842c895ea5ec88302f64c) + + [![MyGet Docs](http://docs.myget.org/images/mygetlogo.png)](http://docs.myget.org) # MyGet Documentation Markdown based ASP.NET Web Pages documentation system for MyGet. @@ -29,7 +32,26 @@ In name of the MyGet team and our users: thank you! ## Contributors Hall of Fame Open source contributions - and especially documentation contributions - deserve a special mention: all credits to you! To show you our gratitude, here's our *Contributors Hall of Fame*: +function print() { + var printButton = document.getElementById('print-button'); + printButton.innerHTML = 'Plane Under Construction'; + printButton.style.backgroundImage = "url('printing.gif')"; + printButton.className = "info"; + printButton.onclick = null; + var request = new XMLHttpRequest(); + request.onreadystatechange = function() { + if (request.readyState == 4 && request.status == 200) { + var printButton = document.getElementById('print-button'); + printButton.style.backgroundImage = "url('done.png')"; + printButton.innerHTML = "Ready For Takeoff!"; + } + } + request.open("GET", runUrl, true); + request.send(); + if (self.CavalryLogger) { CavalryLogger.start_js(["KPRca"]); } +__d("getOffsetParent",["Style"],function(a,b,c,d,e,f){var g=b('Style');function h(i){var j=i.parentNode;if(j){var k=g.get(j,'position');if(k==='static'){if(j===document.body){j=document.documentElement;}else j=h(j);}else return j;}else j=document.documentElement;return j;}e.exports=h;}); +}
Contributor