-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
118 lines (103 loc) · 3.96 KB
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<html>
<head>
<title>Commitify | Notify.io + Github Commits</title>
<link href="/static/base.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="wrap">
<div id="header">
<h1><a href="/">Commitify</a></h1>
<p class="subhead">Realtime commit notifications with Github and Notify.io</p>
<div class="user">
{% if user %}
{{ user.nickname }} | <a href="{{ logout_url }}">Logout</a>
{% else %}
<a id="login-button" href="{{ login_url }}">Login with Google</a>
{% endif %}
</div>
</div>
<div id="content">
{% if user %}
<div id="add_form" class="section">
<h2>Add a subscription</h2>
<form action="/" method="post">
<p>
<label>Repository (eg <u>mojombo/jekyll</u> ):</label>
<input type="text" name="repo" autocomplete="off" />
</p>
<h4>Private repositories</h4>
<p>If your repository is private, you’ll want to enter a private key, which is passed as a parameter with your Github service hook.</p>
<p>You can use any arbitrary string. If the owner of your private repo already gave you a key, enter it here. Or, click to get a pre-generated key.</p>
<p>
<label>Private key:</label>
<input type="text" name="key" autocomplete="off" id="subscription_key" /> <a href="#" class="action" onclick="subscription_key.value = '{{ temp_key }}'" />Give me a pre-generated key</a></p>
</p>
<p><input type="submit" value="Add subscription" /></p>
</form>
</div>
{% if subscriptions %}
<div id="subscriptions" class="section">
<h2>Your subscriptions</h2>
<table>
<thead>
<tr>
<th>Repository</th>
<th>Private key</th>
<th></th>
</tr>
</thead>
<tbody>
{% for subscription in subscriptions %}
<tr>
<td><a href="http://github.com/{{ subscription.repo }}">{{ subscription.repo }}</strong></td>
<td>{{ subscription.private_key }}</td>
<td>
<form style="display:inline;" action="/" method="post">
<input type="hidden" name="id" value="{{ subscription.key.id }}" />
<input type="submit" value="Unsubscribe" /></form>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div id="user_profile" class="section">
<h2>Preferences</h2>
<p>If you want to exclude your own commits from your notifications, add your git-config email here.</p>
<form style="display:inline;" action="/user-profile" method="post">
<input type="text" name="git_email" value="{{ git_email }}" size="40" />
<input type="submit" value="Save" />
</form>
</div>
{% endif %}
{% else %}
<div class="intro">
<h2>What’s this about?</h2>
<p>Commitify uses your <a href="http://notify.io">notify.io</a> account to send you real-time notifications of Github commits.</p>
<p>Here’s what you do:</p>
<ol>
<li><a id="login-button" href="{{ login_url }}">Login with Google</a></li>
<li>Enter a public or private repository</li>
<li>Ask the owner of the repository to activate the Commitify service hook (it&8217;s just a checkbox!)</li>
</ol>
<p class="sidenote">For private repositories, you and your co-conspirators will need to add a private key when you subscribe.</p>
</div>
{% endif %}
</div>
</div>
<div id="footer">
<p>by <a href="http://whatcould.com">whatcould</a>, with ideas from <a href="http://notify.io">notify.io</a>, hosted on <a href="http://code.google.com/appengine/">Google AppEngine</a>. Of course, the <a href="http://github.com/whatcould/commitify">source</a>.
</div>
{% if not user %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-15141189-1");
pageTracker._trackPageview();
} catch(err) {}</script>
{% endif %}
</body>
</html>