From 83616ebcdbb9b2de06591e6e96933cf332bda1de Mon Sep 17 00:00:00 2001 From: usernamealreadyis Date: Thu, 31 Dec 2015 10:42:05 +0700 Subject: [PATCH 1/2] Update License-Analysis.markdown We will automatically fetch and create attachments for certain well-known media URLs, but we will not unfurl links to primarily text-based content, unless you specify in your payload that you want that. If you do, add "unfurl_links": true to your main JSON payload. Example links that will unfurl without the flag: http://www.youtube.com/watch?v=wq1R93UMqlk http://www.flickr.com/photos/karstenmay/11787125913/ --- Docs.Site/Docs/Reference/License-Analysis.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) ++ From 5fcae9b9a41e3aacbf175422f10d1a81097763cb Mon Sep 17 00:00:00 2001 From: usernamealreadyis Date: Fri, 1 Jan 2016 02:17:53 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index cf6fb5b8..d8855d84 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,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