Skip to content

Commit

Permalink
Basic RetroGit renaming.
Browse files Browse the repository at this point in the history
User-facing strings only.
  • Loading branch information
mihaip committed Oct 18, 2014
1 parent c285bc0 commit 9aaa832
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,12 +1,12 @@
# GitHop # RetroGit


Service that shows you your GitHub commits from a year ago. Includes a mail digest to that you can see each day what you were up to in the past. Service that shows you your GitHub commits from a year ago. Includes a mail digest to that you can see each day what you were up to in the past.


It's currently running at [https://git-hop.appspot.com/](https://git-hop.appspot.com/). It's currently running at [https://retro-git.appspot.com/](https://retro-git.appspot.com/).


## Running Locally ## Running Locally


First, [install the Go App Engine SDK](https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go). First, [install the Go App Engine SDK](https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go).


Then, create `github-oauth.json` (you'll need to [register a new app](https://github.com/settings/applications/new) with GitHub) and `session.json` (with randomly-generated keys) files in the `config` directory, based on the sample files that are already there. Then, create `github-oauth.json` (you'll need to [register a new app](https://github.com/settings/applications/new) with GitHub) and `session.json` (with randomly-generated keys) files in the `config` directory, based on the sample files that are already there.


Expand Down
2 changes: 1 addition & 1 deletion app/app.yaml
@@ -1,4 +1,4 @@
application: git-hop application: retro-git
version: 1 version: 1
runtime: go runtime: go
api_version: go1 api_version: go1
Expand Down
4 changes: 2 additions & 2 deletions app/githop.go
Expand Up @@ -373,9 +373,9 @@ func sendDigestForAccount(account *Account, c appengine.Context) (bool, error) {
} }


digestMessage := &mail.Message{ digestMessage := &mail.Message{
Sender: "GitHop <mihai.parparita@gmail.com>", Sender: "RetroGit <digests@retrogit.com>",
To: []string{emailAddress}, To: []string{emailAddress},
Subject: "GitHop Digest", Subject: "RetroGit Digest",
HTMLBody: digestHtml.String(), HTMLBody: digestHtml.String(),
} }
err = mail.Send(c, digestMessage) err = mail.Send(c, digestMessage)
Expand Down
2 changes: 1 addition & 1 deletion app/templates/digest-admin.html
@@ -1,4 +1,4 @@
{{define "title"}}GitHop Admin{{end}} {{define "title"}}RetroGit Admin{{end}}


{{define "body"}} {{define "body"}}


Expand Down
2 changes: 1 addition & 1 deletion app/templates/digest-page.html
@@ -1,4 +1,4 @@
{{define "title"}}GitHop - Digest for {{.Digest.User.Login}}{{end}} {{define "title"}}RetroGit - Digest for {{.Digest.User.Login}}{{end}}


{{define "body"}} {{define "body"}}


Expand Down
2 changes: 1 addition & 1 deletion app/templates/index-signed-out.html
@@ -1,4 +1,4 @@
{{define "title"}}GitHop{{end}} {{define "title"}}RetroGit{{end}}


{{define "body"}} {{define "body"}}


Expand Down
2 changes: 1 addition & 1 deletion app/templates/index.html
@@ -1,4 +1,4 @@
{{define "title"}}GitHop{{end}} {{define "title"}}RetroGit{{end}}


{{define "body"}} {{define "body"}}


Expand Down
2 changes: 1 addition & 1 deletion app/templates/settings.html
@@ -1,4 +1,4 @@
{{define "title"}}GitHop - Settings{{end}} {{define "title"}}RetroGit - Settings{{end}}


{{define "repo"}} {{define "repo"}}
<li class="repo {{.TypeAsClassName}}"> <li class="repo {{.TypeAsClassName}}">
Expand Down

0 comments on commit 9aaa832

Please sign in to comment.