import redirector
commit
dc2e9e2dd1
@ -0,0 +1 @@
|
|||||||
|
build
|
@ -0,0 +1,2 @@
|
|||||||
|
default:
|
||||||
|
sphinx-build . build/html/
|
@ -0,0 +1,23 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<title>{{title}} (Redirect)</title>
|
||||||
|
<script>
|
||||||
|
{% include "piwik-config.js" %}
|
||||||
|
var u="https://networkgenomics.com/p/tr/";
|
||||||
|
_paq.push(['setTrackerUrl', u+'ep']);
|
||||||
|
</script>
|
||||||
|
<script src="https://networkgenomics.com/p/tr/js"></script>
|
||||||
|
<script>
|
||||||
|
var cookies = document.cookie.split(';').map(function(c) {
|
||||||
|
return c.trim().split('=').map(decodeURIComponent);
|
||||||
|
}).reduce(function(a, b) {
|
||||||
|
a[b[0]] = b[1];
|
||||||
|
return a;
|
||||||
|
}, {});
|
||||||
|
|
||||||
|
var p = '';
|
||||||
|
p += '?_pk_id=' + encodeURIComponent(cookies._pk_id || '');
|
||||||
|
p += '&_pk_ses=' + encodeURIComponent(cookies._pk_ses || '');
|
||||||
|
p += '&u=' + encodeURIComponent('{{url}}');
|
||||||
|
window.location = 'http://networkgenomics.com/docs/mitogen/' + p;
|
||||||
|
</script>
|
||||||
|
<noscript><meta http-equiv="Refresh" content="0; url={{url}}"></noscript>
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Mitogen for Ansible", url='https://networkgenomics.com/ansible/' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Mitogen for Ansible", url='https://mitogen.networkgenomics.com/ansible_detailed.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="API Reference", url='https://mitogen.networkgenomics.com/api.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Release Notes", url='https://mitogen.networkgenomics.com/changelog.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Contributors", url='https://mitogen.networkgenomics.com/contributors.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Examples", url='https://mitogen.networkgenomics.com/examples.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Getting Started", url='https://mitogen.networkgenomics.com/getting_started.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="How Mitogen Works", url='https://mitogen.networkgenomics.com/howitworks.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Mitogen", url='https://mitogen.networkgenomics.com/' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Internal API Reference", url='https://mitogen.networkgenomics.com/internals.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<script>window.location = 'https://mitogen.networkgenomics.com/';</script>
|
||||||
|
<meta http-equiv="Refresh" content="0; url=https://mitogen.networkgenomics.com/">
|
@ -0,0 +1,5 @@
|
|||||||
|
window._paq = [];
|
||||||
|
window._paq.push(['trackPageView']);
|
||||||
|
window._paq.push(['enableLinkTracking']);
|
||||||
|
window._paq.push(['enableHeartBeatTimer', 30]);
|
||||||
|
window._paq.push(['setSiteId', 6]);
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Service Framework", url='https://mitogen.networkgenomics.com/services.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Signals", url='https://mitogen.networkgenomics.com/ansible_detailed.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,3 @@
|
|||||||
|
{%- with title="Table Of Contents", url='https://mitogen.networkgenomics.com/toc.html' -%}
|
||||||
|
{%- include "_redirect.html" -%}
|
||||||
|
{%- endwith -%}
|
@ -0,0 +1,28 @@
|
|||||||
|
author = u'David Wilson'
|
||||||
|
copyright = u'2019, David Wilson'
|
||||||
|
exclude_patterns = ['_build']
|
||||||
|
html_additional_pages = {
|
||||||
|
'ansible': 'ansible.html',
|
||||||
|
'ansible_detailed': 'ansible_detailed.html',
|
||||||
|
'api': 'api.html',
|
||||||
|
'changelog': 'changelog.html',
|
||||||
|
'contributors': 'contributors.html',
|
||||||
|
'examples': 'examples.html',
|
||||||
|
'getting_started': 'getting_started.html',
|
||||||
|
'howitworks': 'howitworks.html',
|
||||||
|
'index': 'index.html',
|
||||||
|
'internals': 'internals.html',
|
||||||
|
'services': 'services.html',
|
||||||
|
'signals': 'signals.html',
|
||||||
|
'toc': 'toc.html',
|
||||||
|
}
|
||||||
|
|
||||||
|
html_theme = 'basic'
|
||||||
|
language = None
|
||||||
|
master_doc = 'placeholder'
|
||||||
|
project = u'Mitogen'
|
||||||
|
pygments_style = 'sphinx'
|
||||||
|
release = '0.0'
|
||||||
|
source_suffix = '.rst'
|
||||||
|
templates_path = ['_templates']
|
||||||
|
version = '0.0'
|
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
Placeholder
|
||||||
|
===========
|
@ -0,0 +1 @@
|
|||||||
|
Sphinx==1.7.1
|
Loading…
Reference in New Issue