foreman_remote_execution 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/doc/Gemfile +7 -0
- data/doc/Gemfile.lock +90 -0
- data/doc/Rakefile +41 -0
- data/doc/_config.yml +33 -0
- data/doc/plugins/alert_block.rb +27 -0
- data/doc/plugins/div_tag.rb +24 -0
- data/doc/plugins/graphviz.rb +121 -0
- data/doc/plugins/plantuml.rb +84 -0
- data/doc/plugins/play.rb +13 -0
- data/doc/plugins/tags.rb +138 -0
- data/doc/plugins/toc.rb +20 -0
- data/doc/source/404.md +6 -0
- data/doc/source/_includes/footer.html +21 -0
- data/doc/source/_includes/header.html +59 -0
- data/doc/source/_includes/tocify.html +6 -0
- data/doc/source/_layouts/default.html +9 -0
- data/doc/source/_layouts/page.html +25 -0
- data/doc/source/atom.xml +32 -0
- data/doc/source/design/index.md +1317 -0
- data/doc/source/index.md +18 -0
- data/doc/source/static/css/bootstrap-responsive.min.css +9 -0
- data/doc/source/static/css/bootstrap.min.css +866 -0
- data/doc/source/static/css/jquery.tocify.css +128 -0
- data/doc/source/static/css/style.css +285 -0
- data/doc/source/static/css/syntax.css +60 -0
- data/doc/source/static/images/foreman.png +0 -0
- data/doc/source/static/images/glyphicons-halflings-white.png +0 -0
- data/doc/source/static/images/glyphicons-halflings.png +0 -0
- data/doc/source/static/js/bootstrap.min.js +7 -0
- data/doc/source/static/js/jquery-ui-1.9.2.custom.min.js +6 -0
- data/doc/source/static/js/jquery.js +2 -0
- data/doc/source/static/js/jquery.tocify.min.js +3 -0
- data/doc/source/static/js/scroll.js +24 -0
- data/lib/foreman_remote_execution/version.rb +1 -1
- metadata +90 -23
@@ -0,0 +1,59 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html itemscope itemtype="http://schema.org/Organization" lang="en">
|
3
|
+
<head>
|
4
|
+
<base href="{{ site.baseurl }}">
|
5
|
+
{% if page.sitename != nil %}
|
6
|
+
{% assign sitename = page.sitename %}
|
7
|
+
{% else %}
|
8
|
+
{% assign sitename = site.sitename %}
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% if page.pagename != nil %}
|
12
|
+
{% assign pagename = true %}
|
13
|
+
{% endif %}
|
14
|
+
<title>{{ sitename }}{% if pagename %} :: {{ page.pagename }}{% endif %}</title>
|
15
|
+
|
16
|
+
<script type="text/javascript" src="{{ site.baseurl }}static/js/jquery.js"></script>
|
17
|
+
<script type="text/javascript" src="{{ site.baseurl }}static/js/bootstrap.min.js"></script>
|
18
|
+
<script type="text/javascript" src="{{ site.baseurl }}static/js/jquery-ui-1.9.2.custom.min.js"></script>
|
19
|
+
<script type="text/javascript" src="{{ site.baseurl }}static/js/jquery.tocify.min.js"></script>
|
20
|
+
<script type="text/javascript" src="{{ site.baseurl }}static/js/scroll.js"></script>
|
21
|
+
|
22
|
+
<link rel="stylesheet" media="all" href="{{ site.baseurl }}static/css/bootstrap.min.css"/>
|
23
|
+
<link rel="stylesheet" media="all" href="{{ site.baseurl }}static/css/bootstrap-responsive.min.css"/>
|
24
|
+
<link rel="stylesheet" media="all" href="{{ site.baseurl }}static/css/jquery.tocify.css"/>
|
25
|
+
<link rel="stylesheet" media="all" href="{{ site.baseurl }}static/css/syntax.css" />
|
26
|
+
<link rel="stylesheet" media="all" href="{{ site.baseurl }}static/css/style.css"/>
|
27
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
28
|
+
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0;" />
|
29
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
30
|
+
</head>
|
31
|
+
|
32
|
+
<body>
|
33
|
+
<div class="navbar navbar-fixed-top">
|
34
|
+
<div class="navbar-inner">
|
35
|
+
<div class="container">
|
36
|
+
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
37
|
+
<span class="icon-bar"></span>
|
38
|
+
<span class="icon-bar"></span>
|
39
|
+
<span class="icon-bar"></span>
|
40
|
+
</button>
|
41
|
+
<img alt="Foreman" class="logo" src="{{ site.baseurl }}static/images/foreman.png" />
|
42
|
+
<div class="brand">
|
43
|
+
<a href="{{ site.baseurl }}">Foreman</a>
|
44
|
+
<a class="subtitle" href="{{ site.baseurl }}">Remote Execution</a>
|
45
|
+
</div>
|
46
|
+
<div class="nav-collapse collapse">
|
47
|
+
<ul class="nav">
|
48
|
+
<li><a href="{{ site.baseurl }}">About</a></li>
|
49
|
+
<li><a href="{{ site.baseurl }}design/">Design</a></li>
|
50
|
+
</ul>
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
<script>
|
56
|
+
$(function(){
|
57
|
+
$('.nav > li a[href="'+window.location.pathname+'"]').parents('.nav > li').addClass('active')
|
58
|
+
})
|
59
|
+
</script>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
pagename: Foreman Remote Execution
|
3
|
+
---
|
4
|
+
{% include header.html %}
|
5
|
+
|
6
|
+
<div id="main">
|
7
|
+
<div id="content" class="container">
|
8
|
+
<div class="row">
|
9
|
+
<div id="toc" class="span3">
|
10
|
+
</div>
|
11
|
+
<div id="doc" class="offset3 span9">
|
12
|
+
{{ content }}
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
<script type="text/javascript">
|
19
|
+
$(function() {
|
20
|
+
//Calls the tocify method on your HTML div.
|
21
|
+
$("#toc").tocify({context: '#doc', scrollTo: '60', selectors: "h1,h2,h3"});
|
22
|
+
});
|
23
|
+
</script>
|
24
|
+
|
25
|
+
{% include footer.html %}
|
data/doc/source/atom.xml
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
---
|
2
|
+
# Front matter comment to ensure Jekyll properly reads file.
|
3
|
+
---
|
4
|
+
|
5
|
+
<?xml version="1.0" encoding="utf-8"?>
|
6
|
+
<feed xmlns="http://www.w3.org/2005/Atom">
|
7
|
+
|
8
|
+
<title><![CDATA[{{ site.title }}]]></title>
|
9
|
+
<link href="{{ site.url }}/atom.xml" rel="self"/>
|
10
|
+
<link href="{{ site.url }}/"/>
|
11
|
+
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
12
|
+
<id>{{ site.url }}/</id>
|
13
|
+
<author>
|
14
|
+
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
15
|
+
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
16
|
+
</author>
|
17
|
+
|
18
|
+
{% for post in site.posts %}
|
19
|
+
<entry>
|
20
|
+
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
21
|
+
<link href="{{ site.url }}{{ post.url }}"/>
|
22
|
+
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
23
|
+
<id>{{ site.url }}{{ post.id }}</id>
|
24
|
+
<!--<content type="html">-->
|
25
|
+
<!--<!– FIXME full urls–>-->
|
26
|
+
<!--<![CDATA[-->
|
27
|
+
<!--Tags: {{ post | tags }}-->
|
28
|
+
<!--]]>-->
|
29
|
+
<!--</content>-->
|
30
|
+
</entry>
|
31
|
+
{% endfor %}
|
32
|
+
</feed>
|