Skip to content

Commit

Permalink
Fix Travis: fix crates.io correct request, fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
Potpourri committed Feb 11, 2015
1 parent f14c61b commit 6fc5b88
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ task :test do
'#',
/mibbit/
],
:ssl_verifypeer => false,
:typhoeus => {
headers: { Accept: "html, */*" }
},
:verbose => true
}).run
end
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ paginate: 3
baseurl: /
author:
name: PistonDevelopers
url: http://piston.rs
url: https://github.com/PistonDevelopers
email: [email protected]

# Custom vars
Expand Down
2 changes: 1 addition & 1 deletion _includes/disqus.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://piston.rs" class="navbar-brand piston-navbar-brand">{{ site.title }} <small>{{ site.tagline }}</small></a>
<a href="http://www.piston.rs" class="navbar-brand piston-navbar-brand">{{ site.title }} <small>{{ site.tagline }}</small></a>
</div>
<div class="collapse navbar-collapse piston-navbar-inner" id="piston-navbar-collapse">
<ul class="nav navbar-nav navbar-right piston-navbar-nav">
<li><a href="http://piston.rs">Home</a></li>
<li><a href="http://www.piston.rs">Home</a></li>
<li><a href="https://github.com/PistonDevelopers/Piston-Tutorials/tree/master/getting-started">Getting Started</a></li>
<li><a href="http://www.rust-ci.org/PistonDevelopers/piston/doc/piston/">Documentation</a></li>
<li class="active"><a href="{{ site.baseurl }}">Blog</a></li>
Expand Down
6 changes: 3 additions & 3 deletions _posts/2014-09-13-rust-event.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Some profiled projects are:
* [conrod](https://github.com/pistondevelopers/conrod) - an immediate mode GUI
* [hematite](https://github.com/pistondevelopers/hematite) - a simple Minecraft clone written in Rust
* [piston](https://github.com/pistondevelopers/piston) - Piston, the game engine
* [rust-graphics](https://github.com/pistondevelopers/rust-graphics) - a 2D graphics library
* [rust-image](https://github.com/pistondevelopers/rust-image) - a pure Rust image library
* [rust-graphics](https://github.com/pistondevelopers/graphics) - a 2D graphics library
* [rust-image](https://github.com/pistondevelopers/image) - a pure Rust image library
* [VisualRust](https://github.com/pistondevelopers/visualrust) - Visual Studio extension for Rust

We are now working on another project that we call "Rust-Event".

[https://github.com/PistonDevelopers/rust-event](https://github.com/PistonDevelopers/rust-event)
[https://github.com/PistonDevelopers/rust-event](https://github.com/PistonDevelopers/event)

Rust-Event has been in experimental phase for several months, now it is time to test out the ideas for real.
It is still early to say if this is the right direction, so you should consider it very unstable.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2014-09-25-generic-event.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,6 @@ Then write a window back-end as `impl Window<MyEvent> for MyWindow`.
* Update [cam](https://github.com/PistonDevelopers/cam)
* Update [Conrod](https://github.com/pistondevelopers/conrod)
* Investigate event transformations
* Discuss future directions for input model and integration with [glutin](https://github.com/tomaka/gl-init-rs)
* Discuss future directions for input model and integration with [glutin](https://github.com/tomaka/glutin)
* Network events?

4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ <h2 class="post-info">

<div class="col-md-12 piston-pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}/">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
{% else %}
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}/">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>
Expand Down

0 comments on commit 6fc5b88

Please sign in to comment.