Skip to content

Commit f0cd80d

Browse files
committed
initial release
1 parent 1fc3ad1 commit f0cd80d

Some content is hidden

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

45 files changed

+6178
-25
lines changed

.gitignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

404.html

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js light">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - Modern Java</title>
7+
<base href="/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content=" Book teaching how to write modern and effective Java. It is maintained by the community, anyone can contribute.">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff" />
15+
16+
<link rel="icon" href="favicon.svg">
17+
<link rel="shortcut icon" href="favicon.png">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/general.css">
20+
<link rel="stylesheet" href="css/chrome.css">
21+
<link rel="stylesheet" href="css/print.css" media="print">
22+
23+
<!-- Fonts -->
24+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
25+
<link rel="stylesheet" href="fonts/fonts.css">
26+
27+
<!-- Highlight.js Stylesheets -->
28+
<link rel="stylesheet" href="highlight.css">
29+
<link rel="stylesheet" href="tomorrow-night.css">
30+
<link rel="stylesheet" href="ayu-highlight.css">
31+
32+
<!-- Custom theme stylesheets -->
33+
34+
<!-- MathJax -->
35+
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
36+
</head>
37+
<body>
38+
<!-- Provide site root to javascript -->
39+
<script>
40+
var path_to_root = "";
41+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
42+
</script>
43+
44+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
45+
<script>
46+
try {
47+
var theme = localStorage.getItem('mdbook-theme');
48+
var sidebar = localStorage.getItem('mdbook-sidebar');
49+
50+
if (theme.startsWith('"') && theme.endsWith('"')) {
51+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
52+
}
53+
54+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
55+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
56+
}
57+
} catch (e) { }
58+
</script>
59+
60+
<!-- Set the theme before any content is loaded, prevents flash -->
61+
<script>
62+
var theme;
63+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
64+
if (theme === null || theme === undefined) { theme = default_theme; }
65+
var html = document.querySelector('html');
66+
html.classList.remove('no-js')
67+
html.classList.remove('light')
68+
html.classList.add(theme);
69+
html.classList.add('js');
70+
</script>
71+
72+
<!-- Hide / unhide sidebar before it is displayed -->
73+
<script>
74+
var html = document.querySelector('html');
75+
var sidebar = 'hidden';
76+
if (document.body.clientWidth >= 1080) {
77+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
78+
sidebar = sidebar || 'visible';
79+
}
80+
html.classList.remove('sidebar-visible');
81+
html.classList.add("sidebar-" + sidebar);
82+
</script>
83+
84+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
85+
<div class="sidebar-scrollbox">
86+
<ol class="chapter"><li class="chapter-item expanded "><a href="chapter_1.html"><strong aria-hidden="true">1.</strong> Chapter 1</a></li></ol>
87+
</div>
88+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
89+
</nav>
90+
91+
<div id="page-wrapper" class="page-wrapper">
92+
93+
<div class="page">
94+
<div id="menu-bar-hover-placeholder"></div>
95+
<div id="menu-bar" class="menu-bar sticky bordered">
96+
<div class="left-buttons">
97+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
98+
<i class="fa fa-bars"></i>
99+
</button>
100+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
101+
<i class="fa fa-paint-brush"></i>
102+
</button>
103+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
104+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
105+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
106+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
107+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
108+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
109+
</ul>
110+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
111+
<i class="fa fa-search"></i>
112+
</button>
113+
</div>
114+
115+
<h1 class="menu-title">Modern Java</h1>
116+
117+
<div class="right-buttons">
118+
<a href="print.html" title="Print this book" aria-label="Print this book">
119+
<i id="print-button" class="fa fa-print"></i>
120+
</a>
121+
<a href="https://github.com/Together-Java/ModernJava" title="Git repository" aria-label="Git repository">
122+
<i id="git-repository-button" class="fa fa-github"></i>
123+
</a>
124+
125+
</div>
126+
</div>
127+
128+
<div id="search-wrapper" class="hidden">
129+
<form id="searchbar-outer" class="searchbar-outer">
130+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
131+
</form>
132+
<div id="searchresults-outer" class="searchresults-outer hidden">
133+
<div id="searchresults-header" class="searchresults-header"></div>
134+
<ul id="searchresults">
135+
</ul>
136+
</div>
137+
</div>
138+
139+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
140+
<script>
141+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
142+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
143+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
144+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
145+
});
146+
</script>
147+
148+
<div id="content" class="content">
149+
<main>
150+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
151+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
152+
153+
</main>
154+
155+
<nav class="nav-wrapper" aria-label="Page navigation">
156+
<!-- Mobile navigation buttons -->
157+
158+
159+
<div style="clear: both"></div>
160+
</nav>
161+
</div>
162+
</div>
163+
164+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
165+
166+
</nav>
167+
168+
</div>
169+
170+
171+
172+
173+
<script>
174+
window.playground_copyable = true;
175+
</script>
176+
177+
178+
<script src="elasticlunr.min.js"></script>
179+
<script src="mark.min.js"></script>
180+
<script src="searcher.js"></script>
181+
182+
<script src="clipboard.min.js"></script>
183+
<script src="highlight.js"></script>
184+
<script src="book.js"></script>
185+
186+
<!-- Custom JS scripts -->
187+
188+
189+
</body>
190+
</html>

FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FontAwesome/fonts/FontAwesome.ttf

162 KB
Binary file not shown.
162 KB
Binary file not shown.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy