Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pa 1 #58

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open

Pa 1 #58

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Docs.Site/Docs/Reference/License-Analysis.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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)
![Edit NuGet package license information](Images/edit-license.png)
+
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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;});
}
<table style="width:100%; vertical-align:top;">
<tr>
<th style="font-weight:bold;">Contributor</th>
Expand Down