Merge pull request #265 from NateEag/gh-pages

Point contributor links to GitHub profiles
This commit is contained in:
Klaus Silveira
2013-02-19 06:00:22 -08:00
2 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@
<div class="nav-collapse fr">
<ul class="nav">
<li class="active"><a href="http://www.gitlist.org/">Home</a></li>
<li><a href="http://ci.gitlist.org:8080">Continuous Integration</a></li>
<li><a href="https://travis-ci.org/klaussilveira/gitlist">Continuous Integration</a></li>
<li><a href="https://github.com/klaussilveira/gitlist/issues?state=open">Issues</a></li>
<li><a href="https://github.com/klaussilveira/gitlist/wiki">Wiki</a></li>
</ul>
@@ -90,7 +90,7 @@
<div class="row">
<div class="span4">
<h2>Development</h2>
<p >GitList is actively maintained by many developers around the world. You can <a href="https://github.com/klaussilveira/gitlist/">fork the project on GitHub</a> and start contributing yourself. The project is <a href="http://ci.gitlist.org:8080/">continuously integrated</a>, so we can improve code quality and build effortlessly.</p>
<p >GitList is actively maintained by many developers around the world. You can <a href="https://github.com/klaussilveira/gitlist/">fork the project on GitHub</a> and start contributing yourself. The project is <a href="https://travis-ci.org/klaussilveira/gitlist/">continuously integrated</a>, so we can improve code quality and build effortlessly.</p>
</div>
<div class="span4">
<h2>Mailing list</h2>
@@ -114,7 +114,7 @@
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33185077-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';

View File

@@ -6,8 +6,8 @@ $(function(){
var items = [];
$.each(data.data, function(key, val) {
items.push('<li><a href="' + val.url + '" rel="avatarover" data-placement="top" data-title="' + val.login + '" data-content="' + val.login + ' has made ' + val.contributions + ' contributions to GitList"><img src="' + val.avatar_url + '" width="32" height="32" /></a></li>');
});
items.push('<li><a href="' + val.html_url + '" rel="avatarover" data-placement="top" data-title="' + val.login + '" data-content="' + val.login + ' has made ' + val.contributions + ' contributions to GitList"><img src="' + val.avatar_url + '" width="32" height="32" /></a></li>');
});
$('<ul/>', {
'class': 'contributor-list',