Skip to content

Commit 4ebc25e

Browse files
committed
regenerated the guides and created a new one: crash course in apiman
1 parent a3eec9c commit 4ebc25e

File tree

128 files changed

+4831
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+4831
-0
lines changed

_blog-src/_includes/header.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
<li class="menu-item">
4343
<a href="http://www.apiman.io/latest/tutorials.html">Tutorials &amp; Walkthroughs</a>
4444
</li>
45+
<li class="menu-item">
46+
<a href="http://www.apiman.io/latest/crash-course.html">Crash Course!</a>
47+
</li>
4548
<li class="divider"></li>
4649
<li class="menu-item">
4750
<a href="http://www.apiman.io/latest/installation-guide.html">Installation Guide</a>

latest/api-manager-restdocs.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090
<li class="menu-item">
9191
<a href="tutorials.html">Tutorials &amp; Walkthroughs</a>
9292
</li>
93+
<li class="menu-item">
94+
<a href="crash-course.html">Crash Course!</a>
95+
</li>
9396
<li class="divider"></li>
9497
<li class="menu-item">
9598
<a href="installation-guide.html">Installation Guide</a>

latest/chat.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@
8282
<li class="menu-item">
8383
<a href="tutorials.html">Tutorials &amp; Walkthroughs</a>
8484
</li>
85+
<li class="menu-item">
86+
<a href="crash-course.html">Crash Course!</a>
87+
</li>
8588
<li class="divider"></li>
8689
<li class="menu-item">
8790
<a href="installation-guide.html">Installation Guide</a>

latest/contributors.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@
8282
<li class="menu-item">
8383
<a href="tutorials.html">Tutorials &amp; Walkthroughs</a>
8484
</li>
85+
<li class="menu-item">
86+
<a href="crash-course.html">Crash Course!</a>
87+
</li>
8588
<li class="divider"></li>
8689
<li class="menu-item">
8790
<a href="installation-guide.html">Installation Guide</a>

latest/crash-course.html

Lines changed: 235 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,235 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="shortcut icon" href="resources/images/favicon.ico">
8+
<title>Crash Course | apiman Open Source API Management</title>
9+
10+
<link href="resources/bootstrap-3.3.0/css/bootstrap.min.css" rel="stylesheet">
11+
<link href="resources/patternfly-1.0.5/css/patternfly.min.css" rel="stylesheet">
12+
<link href="http://static.jboss.org/css/rhbar.css" media="screen" rel="stylesheet">
13+
<link href="resources/css/apiman-web.css?v=1.2.5.Final" rel="stylesheet">
14+
<link href="resources/css/apiman-web.responsive.css?v=1.2.5.Final" rel="stylesheet">
15+
<link href="resources/css/apiman-guide.css?v=1.2.5.Final" rel="stylesheet">
16+
<link href="resources/css/codehighlight.css?v=1.2.5.Final" rel="stylesheet">
17+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
18+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
19+
<!--[if lt IE 9]>
20+
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
21+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
22+
<![endif]-->
23+
24+
<script src="resources/jquery-1.11.1/js/jquery.min.js"></script>
25+
<script src="resources/bootstrap-3.3.0/js/bootstrap.min.js"></script>
26+
<script>
27+
$(document).ready(function() {
28+
$( "#guide" ).load("crash-course/index.html", function() {
29+
30+
$( 'h1.title' ).append('<a href="crash-course/apiman-crash-course.pdf" style="font-size: 16px" class="pull-right"><i class="fa fa-file-pdf-o fa-fw"></i>Download as PDF</a>');
31+
32+
if (window.location.hash) {
33+
var hash = location.hash.replace('#', '');
34+
var elem = $("body").find("#" + hash);
35+
var section = elem.closest(".titlepage");
36+
if (section) {
37+
var top = section.offset().top;
38+
$('html, body').animate({
39+
scrollTop: top
40+
}, 500);
41+
}
42+
}
43+
});
44+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
45+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
46+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
47+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
48+
49+
ga('create', 'UA-56678850-1', 'auto');
50+
ga('send', 'pageview');
51+
});
52+
</script>
53+
</head>
54+
<body class="crash-course guide">
55+
<div id="rhbar">
56+
<a class="jbdevlogo" href="http://www.jboss.org/projects/about" rel="nofollow" target="_blank"></a>
57+
<a class="rhlogo" href="http://www.redhat.com/" rel="nofollow" target="_blank"></a>
58+
</div>
59+
<nav id="top-nav" class="navbar navbar-inverse" role="navigation">
60+
<div class="container">
61+
<div class="navbar-header">
62+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
63+
<span class="sr-only">Toggle navigation</span>
64+
<span class="icon-bar"></span>
65+
<span class="icon-bar"></span>
66+
<span class="icon-bar"></span>
67+
</button>
68+
<a class="navbar-brand" href="index.html">apiman</a>
69+
</div>
70+
<div id="navbar" class="collapse navbar-collapse">
71+
<ul class="nav navbar-nav navbar-right">
72+
<li class="top-menu-item menu-item"><a href="index.html">Overview</a></li>
73+
<li class="top-menu-item menu-item"><a href="download.html">Download</a></li>
74+
<li class="top-menu-item menu-item"><a href="roadmap.html">Roadmap</a></li>
75+
<li class="top-menu-item menu-item"><a href="/blog">Blog</a></li>
76+
<li class="top-menu-item menu-item dropdown">
77+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" rel="nofollow" target="_blank">Get Involved<b class="caret"></b></a>
78+
<ul class="dropdown-menu">
79+
<li class="menu-item">
80+
<a href="https://issues.jboss.org/browse/APIMAN" rel="nofollow" target="_blank">Report a Bug</a>
81+
</li>
82+
<li class="menu-item">
83+
<a href="chat.html">Chat on IRC</a>
84+
</li>
85+
<li class="menu-item">
86+
<a href="https://twitter.com/apiman_io" rel="nofollow" target="_blank">Twitter Feed</a>
87+
</li>
88+
<li class="menu-item">
89+
<a href="https://lists.jboss.org/mailman/listinfo/apiman-user" rel="nofollow" target="_blank">Mailing List</a>
90+
</li>
91+
<li class="divider"></li>
92+
<li class="menu-item">
93+
<a href="contributors.html">Contributors List</a>
94+
</li>
95+
</ul>
96+
</li>
97+
<li class="top-menu-item menu-item dropdown active">
98+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" rel="nofollow" target="_blank">Learn More<b class="caret"></b></a>
99+
<ul class="dropdown-menu">
100+
<li class="menu-item">
101+
<a href="tutorials.html">Tutorials &amp; Walkthroughs</a>
102+
</li>
103+
<li class="menu-item">
104+
<a href="crash-course.html">Crash Course!</a>
105+
</li>
106+
<li class="divider"></li>
107+
<li class="menu-item">
108+
<a href="installation-guide.html">Installation Guide</a>
109+
</li>
110+
<li class="menu-item">
111+
<a href="user-guide.html">User Guide</a>
112+
</li>
113+
<li class="menu-item">
114+
<a href="developer-guide.html">Developer Guide</a>
115+
</li>
116+
<li class="menu-item">
117+
<a href="production-guide.html">Production Guide</a>
118+
</li>
119+
<li class="divider"></li>
120+
<li class="menu-item">
121+
<a href="api-manager-restdocs.html">API Manager REST Endpoints</a>
122+
</li>
123+
</ul>
124+
</li>
125+
<li class="top-menu-item menu-item dropdown">
126+
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-angle-double-down"></i><span>Latest</span></a>
127+
<ul class="dropdown-menu">
128+
<li class="menu-item disabled">
129+
<a href="/latest">Latest Version</a>
130+
</li>
131+
<li class="menu-item">
132+
<a href="../1.1.x/user-guide.html#_crash_course">Version 1.1.x</a>
133+
</li>
134+
</ul>
135+
</li>
136+
</ul>
137+
</div><!--/.nav-collapse -->
138+
</div>
139+
</nav>
140+
141+
<div class="container">
142+
<div id="content" class="row tbd">
143+
<div class="col-lg-12" id="guide">
144+
<p>Loading the crash course, please wait...</p>
145+
</div>
146+
</div>
147+
148+
<footer role="contentinfo">
149+
<div id="inner-footer" class="clearfix row">
150+
<div id="widget-footer" class="clearfix">
151+
<hr>
152+
<div class="widget col-sm-6 col-md-6 widget_text">
153+
<div class="textwidget">
154+
<p>
155+
Copyright © 2016 Red Hat, Inc. All rights reserved.<br>
156+
apiman code is open source and released under <a href="http://www.apache.org/licenses/LICENSE-2.0.html" rel="nofollow" target="_blank">Apache License, v2.0</a>.<br>
157+
<a href="disclosure.html">Open Source Disclosure</a>
158+
</p>
159+
</div>
160+
</div>
161+
<div class="widget col-sm-6 col-md-6 widget_text" style="text-align: right">
162+
163+
<a href="http://www.redhat.com" rel="nofollow" target="_blank"><img src="http://static.jboss.org/theme/images/common/redhat_logo.png" alt="Red Hat"></a>
164+
</div>
165+
</div>
166+
<nav class="clearfix"></nav>
167+
</div>
168+
</footer>
169+
</div>
170+
171+
<!-- Adobe Analytics -->
172+
<script src="http://www.redhat.com/j/s_code.js" />
173+
<script>
174+
/**
175+
* Adobe Analytics
176+
*
177+
* Variables reported to Adobe Analytics:
178+
* -pageName
179+
* -server
180+
* -channel
181+
* -first minor section
182+
* -second minor section (if available)
183+
* -third minor section (if available)
184+
* -full URL (domain + path + query string)
185+
* -base URL (domain + path)
186+
* -language
187+
* -country
188+
*
189+
*/
190+
191+
/**
192+
* Additional JS files to be loaded BEFORE adobe-analytics.js:
193+
*
194+
* - http://www.redhat.com/j/s_code.js
195+
*
196+
* Additional JS files to be loaded AFTER adobe-analytics.js
197+
*
198+
* - http://www.redhat.com/j/rh_omni_footer.js
199+
*/
200+
201+
202+
(function() {
203+
204+
// Load the path name, without its initial /
205+
var arr = location.pathname.substr(1, location.pathname.length).toLowerCase().split('/');
206+
// If the path ends in index.html or whitespace, trim the array
207+
if (arr[arr.length - 1] == "index.html" || arr[arr.length - 1] == "" ) {
208+
arr.pop();
209+
}
210+
211+
/*
212+
* Assign values to Adobe Analytics properties
213+
*/
214+
215+
s.channel = "apiman | {{Channel}}"; // The channel is our top level classification
216+
s.server = "apiman"; // The server is ???
217+
s.pageName = "apiman | {{Channel}} | " + (arr[arr.length -1] || "homepage"); // pageName is apiman | <Channel> | {page_name}. {page_name} has index.html removed
218+
s.prop2 = s.eVar22 = "en"; // prop2/eVar22 is the ISO 639-1 language code
219+
s.prop4 = s.eVar23 = encodeURI(location.search); //prop4/eVar23 is the query string of the page
220+
221+
// Pad the array as needed, so we can shift away later
222+
for (var i = arr.length; i < 3; i++) {
223+
arr[i] = "";
224+
}
225+
226+
s.prop14 = s.eVar27 = arr.shift(); // prop14/eVar27 is the first minor section (normally /{minor_section_1})
227+
s.prop15 = s.eVar28 = arr.shift(); // prop15/eVar28 is the second minor section (normally /a/{minor_section_2})
228+
s.prop16 = s.eVar29 = arr.shift(); // prop16/eVar29 is the third minor section (normally /a/b/{minor_section_3})
229+
s.prop21 = s.eVar18 = encodeURI(location.hostname+location.pathname).toLowerCase(); // prop21/eVar18 is the URL, less any query strings or fragments
230+
})();
231+
</script>
232+
<script src="http://www.redhat.com/assets/js/tracking/rh_omni_footer.js"/>
233+
234+
</body>
235+
</html>
158 KB
Binary file not shown.

0 commit comments

Comments
 (0)