Skip to content

Commit e5a6384

Browse files
committedMar 11, 2021
Upgrade build
1 parent ab5301a commit e5a6384

16 files changed

+729
-1138
lines changed
 

‎.github/workflows/ci.yml

Whitespace-only changes.

‎README.adoc

+9-20
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,20 @@
22

33
This is an awesome book. It's written in AsciiDoc and compiles to HTML, PDF, EPUB, and MOBI using the http://asciidoctor.org/docs/asciidoctor-gradle-plugin/[Asciidoctor Gradle plugin].
44

5-
== Building
6-
7-
To convert this book to HTML, EPUB, and MOBI, run the following command:
8-
9-
----
10-
$ build.sh
11-
----
5+
== Installing
126

13-
To convert this book to a 6x9" PDF for printing:
7+
$ npm run setup
148

15-
----
16-
$ generate-pdf.sh
17-
----
9+
== Building
1810

19-
To convert this book to a 8.5x11" PDF for downloading:
11+
To convert this book to HTML and EPUB, run the following command:
2012

21-
----
22-
$ generate-pdf.sh screen
23-
----
13+
$ npm run build
2414

25-
* Open _build/asciidoc/html5/index.html_ in your browser to see the generated HTML file.
26-
* Open _build/asciidoc/pdf-prepress/index.pdf_ to see the 6x9" printable PDF file.
27-
* Open _build/asciidoc/pdf-pdf-screen/index.pdf_ to see the downloadable 8.5x11" PDF file.
28-
* Open _build/asciidoc/epub3/index.epub_ in iBooks to see the generated EPUB file.
29-
* Open _build/asciidoc/epub3/index.mobi_ in http://calibre-ebook.com/[Calibre] to see the generated MOBI file.
15+
* Open build/asciidoc/html5/index.html in your browser to see the generated HTML file.
16+
* Open build/asciidoc/pdf-prepress/index.pdf to see the 6x9" printable PDF file.
17+
* Open build/asciidoc/pdf-screen/index.pdf to see the downloadable 8.5x11" PDF file.
18+
* Open build/asciidoc/epub3/index.epub in iBooks to see the generated EPUB file.
3019

3120
== Sweet Authoring Experience
3221

‎build-clean.sh

-3
This file was deleted.

‎build.gradle

+21-55
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,47 @@
11
buildscript {
22
repositories {
3+
mavenCentral()
34
jcenter()
45
}
56

67
dependencies {
7-
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
8-
classpath 'com.bluepapa32:gradle-watch-plugin:0.1.5'
9-
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
10-
classpath 'org.asciidoctor:asciidoctorj-epub3:1.5.0-alpha.7'
11-
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16'
12-
classpath 'org.jruby:jruby-complete:9.1.12.0'
8+
classpath 'com.github.ben-manes:gradle-versions-plugin:0.36.0'
9+
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.6.1'
10+
classpath 'org.asciidoctor:asciidoctorj-epub3:1.5.0-alpha.19'
11+
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.4'
12+
classpath 'org.jruby:jruby-complete:9.2.16.0'
1313
}
1414
}
1515

1616
plugins {
17-
id "de.undercouch.download" version "3.4.2"
17+
id 'de.undercouch.download' version '4.1.1'
18+
id 'se.patrikerdes.use-latest-versions' version '0.2.15'
19+
id 'com.github.ben-manes.versions' version '0.38.0'
1820
}
1921

2022
apply plugin: 'java'
2123
apply plugin: 'org.asciidoctor.convert'
2224
apply plugin: 'com.github.ben-manes.versions'
23-
apply plugin: 'com.bluepapa32.watch'
2425

2526
version = '5.0.3'
2627

2728
asciidoctorj {
28-
version = '1.5.7'
29+
version = '2.4.2'
2930
}
3031

3132
import org.asciidoctor.gradle.AsciidoctorTask
32-
import org.gradle.internal.os.OperatingSystem
3333

3434
def attrs = ['sourcedir' : '../../../main/webapp',
35-
'source-highlighter': 'coderay',
35+
'source-highlighter': 'rouge',
3636
'epub3-stylesdir' : './styles/epub',
3737
// NOTE don't include leading ./ because it messes up paths in the epub files
3838
'imagesdir' : 'images',
3939
'toc' : 'left',
4040
'icons' : 'font',
4141
'sectanchors' : '',
4242
'idprefix' : '',
43-
'idseparator' : '-']
43+
'idseparator' : '-',
44+
'listing-caption' : 'Listing']
4445

4546
tasks.withType(AsciidoctorTask) { task ->
4647
attributes attrs
@@ -53,66 +54,31 @@ task html(type: AsciidoctorTask, description: 'Generates single page HTML') {
5354
backends 'html5'
5455
}
5556

56-
// NOTE please use ./generate-pdf.sh instead of this task for now
5757
task prepress(type: AsciidoctorTask, description: 'Generates PDF for prepress printing') {
58-
attributes attrs + ['media' : 'prepress', 'pdfmarks': '', 'pdf-theme': 'infoq-prepress']
58+
attributes attrs + ['media' : 'prepress', 'pdfmarks': '', 'pdf-theme': 'prepress']
5959
attrs.remove('source-highlighter')
6060
requires file('src/main/ruby/asciidoctor-pdf-extensions.rb')
6161
backends 'pdf'
6262
outputDir "$buildDir/asciidoc/pdf-prepress"
6363
separateOutputDirs false
6464
}
6565

66-
// NOTE please use ./generate-pdf.sh screen instead of this task for now
67-
task pdf(type: AsciidoctorTask, description: 'Generates PDF') {
68-
attributes attrs + ['pdfmarks': '']
66+
task pdf(type: AsciidoctorTask, description: 'Generates PDF for download') {
67+
attributes attrs + ['pdfmarks': '', 'source-highlighter': 'rouge']
6968
requires file('src/main/ruby/asciidoctor-pdf-extensions.rb')
69+
outputDir "$buildDir/asciidoc/pdf-screen"
7070
backends 'pdf'
71+
separateOutputDirs false
7172
}
7273

7374
task epub(type: AsciidoctorTask, description: 'Generates EPUB3') {
7475
backends 'epub3'
7576
}
7677

77-
task mobi(type: AsciidoctorTask, description: 'Generates MOBI') {
78-
backends 'epub3'
79-
attrs.put('ebook-format', 'kf8')
80-
attributes attrs
81-
}
82-
83-
task downloadKindlegen(type: Download) {
84-
ext.output = file("$buildDir/kindlegen/kindlegen" + (OperatingSystem.current().isMacOsX() ? '.zip' : '.tgz'))
85-
src OperatingSystem.current().isMacOsX() ? 'https://kindlegen.s3.amazonaws.com/KindleGen_Mac_i386_v2_9.zip' : 'http://kindlegen.s3.amazonaws.com/kindlegen_linux_2.6_i386_v2_9.tar.gz'
86-
dest output
87-
overwrite false
88-
onlyIfModified true
89-
}
90-
91-
task extractKindlegen(type: Copy) {
92-
dependsOn downloadKindlegen
93-
from {
94-
if (downloadKindlegen.output.name.endsWith('.zip')) {
95-
zipTree(downloadKindlegen.output)
96-
}
97-
else {
98-
tarTree(downloadKindlegen.output)
99-
}
100-
}
101-
into "$buildDir/kindlegen/"
102-
}
103-
104-
mobi.dependsOn extractKindlegen
10578
pdf.shouldRunAfter html
106-
epub.shouldRunAfter pdf
79+
prepress.shouldRunAfter pdf
80+
epub.shouldRunAfter prepress
10781

108-
//task all(dependsOn: ['html', 'pdf', 'epub', 'mobi'])
109-
task all(dependsOn: ['html', 'epub', 'mobi'])
82+
task all(dependsOn: ['html', 'pdf', 'prepress', 'epub'])
11083

11184
defaultTasks 'all'
112-
113-
watch {
114-
asciidoc {
115-
files fileTree(dir: 'src/docs/asciidoc', include: '**/*.adoc')
116-
tasks 'asciidoctor'
117-
}
118-
}

‎build.sh

-5
This file was deleted.

‎generate-pdf.sh

-55
This file was deleted.

‎gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.gradle.vfs.watch=true
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip

‎package-lock.json

+669-986
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,13 @@
88
"type": "git",
99
"url": "git@bitbucket.org:mraible/jhipster-book.git"
1010
},
11+
"scripts": {
12+
"build": "bash ./gradlew all",
13+
"clean": "bash ./gradlew clean",
14+
"setup": "npm install && npm run build"
15+
},
1116
"devDependencies": {
12-
"gulp": "4.0.2",
13-
"browser-sync": "2.26.7"
17+
"browser-sync": "^2.26.14",
18+
"gulp": "4.0.2"
1419
}
1520
}

‎src/docs/asciidoc/chapters/images

-1
This file was deleted.

‎src/docs/asciidoc/chapters/styles

-1
This file was deleted.

‎src/docs/asciidoc/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif::[]
2121
:experimental:
2222
:pdf-fontsdir: ./styles/pdf/fonts
2323
:pdf-stylesdir: ./styles/pdf
24-
:pdf-style: infoq-screen
24+
:pdf-style: screen
2525
ifndef::ebook-format[:leveloffset: 1]
2626

2727
[colophon#colophon%nonfacing]

‎src/main/ruby/asciidoctor-pdf-extensions.rb

+20-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module AsciidoctorPdfExtensions
44
# Override the built-in layout_toc to move colophon before front of table of contents
55
# NOTE we assume that the colophon fits on a single page
6-
def layout_toc doc, num_levels = 2, toc_page_number = 2, num_front_matter_pages = 0
6+
def layout_toc doc, num_levels = 2, toc_page_number = 2, start_y = nil, num_front_matter_pages = 0
77
go_to_page toc_page_number unless (page_number == toc_page_number) || scratch?
88
if scratch?
99
colophon = doc.find_by(context: :section) {|sect| sect.sectname == 'colophon' }
@@ -20,7 +20,7 @@ def layout_toc doc, num_levels = 2, toc_page_number = 2, num_front_matter_pages
2020
end
2121
end
2222
offset = colophon && !@ppbook ? 1 : 0
23-
toc_page_numbers = super doc, num_levels, (toc_page_number + offset), num_front_matter_pages
23+
toc_page_numbers = super doc, num_levels, (toc_page_number + offset), start_y, num_front_matter_pages
2424
scratch? ? ((toc_page_numbers.begin - offset)..toc_page_numbers.end) : toc_page_numbers
2525
end
2626

@@ -42,10 +42,10 @@ def layout_chapter_title node, title, opts = {}
4242
if node.document.attr? 'media', 'prepress'
4343
move_down 325
4444
else
45-
move_down 450
45+
move_down 460
4646
end
4747
layout_heading title, size: @theme.base_font_size
48-
elsif sect_id.include? 'jhipster' # chapters
48+
elsif sect_id.include? 'chapter' # chapters
4949
#puts 'Processing ' + sect_id + '...'
5050
# use Akkurat font for all custom headings
5151
font 'Akkurat' do
@@ -62,12 +62,24 @@ def layout_chapter_title node, title, opts = {}
6262
move_up 40
6363

6464
part_number = 'ONE'
65-
if sect_id.include? 'ui-components'
65+
if sect_id.include? 'chapter-2'
6666
part_number = 'TWO'
67-
elsif sect_id.include? 'api'
67+
elsif sect_id.include? 'chapter-3'
6868
part_number = 'THREE'
69-
elsif sect_id.include? 'microservices'
70-
part_number = 'FOUR'
69+
elsif sect_id.include? 'chapter-4'
70+
part_number = 'FOUR'
71+
elsif sect_id.include? 'chapter-5'
72+
part_number = 'FIVE'
73+
elsif sect_id.include? 'chapter-6'
74+
part_number = 'SIX'
75+
elsif sect_id.include? 'chapter-7'
76+
part_number = 'SEVEN'
77+
elsif sect_id.include? 'chapter-8'
78+
part_number = 'EIGHT'
79+
elsif sect_id.include? 'chapter-9'
80+
part_number = 'NINE'
81+
elsif sect_id.include? 'chapter-10'
82+
part_number = 'TEN'
7183
end
7284
if @ppbook
7385
layout_heading part_number, align: :right, size: 100, style: :bold

0 commit comments

Comments
 (0)
Please sign in to comment.