Initial documentation page for integrations.

(imported from commit cd73c63306ab7ed8c886c30488d5ab928fac6c06)
This commit is contained in:
Waseem Daher 2013-02-06 14:25:04 -05:00
parent e1ea71b130
commit d8b9151a31
7 changed files with 94 additions and 1 deletions

View File

@ -46,8 +46,9 @@ urlpatterns = patterns('',
# New user "tutorial"
url(r'^new-user$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/new-user.html'}),
# API documentation
# API and integrations documentation
url(r'^api$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/api.html'}),
url(r'^integrations$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/integrations.html'}),
# These are json format views used by the web client. They require a logged in browser.
url(r'^json/get_updates$', 'zephyr.tornadoviews.json_get_updates'),

View File

@ -0,0 +1,69 @@
{% extends "zephyr/portico.html" %}
{# API information page #}
{% block customhead %}
{{ block.super }}
<link rel="stylesheet" href="/static/styles/pygments.css" />
{% endblock %}
{% block portico_content %}
<div class="row-fluid">
<div class="span8">
<h2>Integrations</h2>
<h3>Getting started</h3>
<p>Many of these integrations are available in
our <a href="/api">API download</a>. They also require a
registered Humbug user to send as. You can use your existing
account, or <a href="{% url zephyr.views.accounts_home
%}">register</a> a new one for them. (If new email addresses are
hard to come by, you can use something
like <code>wdaher+github@example.com</code>.)</p>
<h3 id="services">Services with integrations</h3>
<ul>
{% comment %}
<li><a href="#git">Git</a></li>
{% endcomment %}
<li><a href="#github">GitHub</a></li>
{% comment %}
<li><a href="#jenkins">Jenkins/Hudson</a></li>
<li><a href="#nagios">Nagios</a></li>
<li><a href="#pivotal">Pivotal Tracker</a></li>
<li><a href="#svn">Subversion</a></li>
<li><a href="#trac">Trac</a></li>
<li><a href="#trello">Trello</a></li>
<li><a href="#twitter">Twitter</a></li>
{% endcomment %}
<li>...and more coming soon! <a href="mailto:support@humbughq.com?subject=Integration+request">Email us</a> with requests!</li>
</ul>
<div id="github" class="integration">
<h4>GitHub</h4>
<p>First, go to your repository page and click "Settings":</p>
<img src="/static/images/integrations/github/001.png">
<p>From there, select "Service Hooks":</p>
<img src="/static/images/integrations/github/002.png">
<p>Select "Humbug" from the list, fill in the API key and email address for your bot, tick the "active" tickybox, and pick "Update settings":</p>
<img src="/static/images/integrations/github/003.png">
<p><b>Congratulations! You're done!</b><br /> When people push
to your repository, you'll see a commit message like the
following, to the stream <code>commits</code> with a subject that matches the respository name (in this case "humbug-test"):</p>
<img style="screenshot" src="/static/images/integrations/github/004.png">
<p>
<a href="#services">^ Back to top</a>
</p>
</div>
</div>
<script type="text/javascript">
$(function() {
$("a.title").addClass("show-integral");
});
</script>
{% endblock %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -72,3 +72,26 @@ img.screenshot{
/* In our footer navbar, the · doesn't get appropriate padding without this */
padding-left: 15px;
}
/* Silly easter egg for /integrations */
.show-integral:hover:before {
content: "∫";
font-weight: normal;
}
.show-integral:hover:after {
content: "dx";
font-weight: normal;
font-style: italic;
font-size: 70%;
}
.integration {
margin-top: 2em;
padding-top: 1em;
border-top: 1px dashed black;
}
.integration p {
margin-top: 2em;
}