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

Update text, namespace references #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ![](https://raw.githubusercontent.com/robn/towncrier/master/public/images/bell/bell-48.png) towncrier
# ![](https://raw.githubusercontent.com/fastmail/towncrier/master/public/images/bell/bell-48.png) towncrier

A simple status dashboard.

Expand All @@ -16,7 +16,7 @@ If you have a system with a fairly recent Perl already, then Carton is your
next best choice:

```bash
$ git clone http://github.com/robn/towncrier.git
$ git clone http://github.com/fastmail/towncrier.git
$ cd towncrier
$ curl -L http://cpanmin.us | perl - Carton
$ carton install --deployment
Expand All @@ -42,7 +42,7 @@ There's some knobs you can twiddle in config.yml.

## demo

FastMail are using this. See http://www.fastmailstatus.com/
Fastmail are using this. See http://www.fastmailstatus.com/

## credits and license

Expand Down
4 changes: 2 additions & 2 deletions lib/TownCrier/Handler/Feed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sub index {

create_feed(
format => "RSS",
title => "FastMail Status",
title => "Fastmail Status",
link => request->uri_base . request->path,
self_link => request->uri_base . request->path,
entries => [ map {
Expand Down Expand Up @@ -43,7 +43,7 @@ sub service {

create_feed(
format => "RSS",
title => "FastMail Status - ".$service->name,
title => "Fastmail Status - ".$service->name,
link => request->uri_base . request->path,
entries => [ map {
my $dt = DateTime::Format::ISO8601->parse_datetime($_->timestamp . "Z");
Expand Down
2 changes: 1 addition & 1 deletion views/layouts/main.tt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<div id="footer">
<a href="/admin/event">New event...</a>
<div id="powered">
<a href="https://github.com/robn/towncrier"><img src="/images/bell/bell-26.png"/>towncrier</a>
<a href="https://github.com/fastmail/towncrier"><img src="/images/bell/bell-26.png"/>towncrier</a>
</div>
</div>
</body>
Expand Down