Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor Documentation #645

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0ba77cb
Restyle docs landing page
dnestoro Nov 19, 2024
f846fb3
Redesign gh pages
dnestoro Nov 20, 2024
4f823ec
Add end to end Gradle guide
dnestoro Nov 21, 2024
edf6af1
Refactor Gradle docs
dnestoro Nov 22, 2024
53fb831
Add end to end Maven guide and refactor Maven docs
dnestoro Nov 26, 2024
e9a01a9
Refactoring guides according to demos
dnestoro Nov 29, 2024
a7a8b65
End-to-end Gradle plugin refactoring
dnestoro Dec 4, 2024
b766a54
End-to-end Maven guide refactoring
dnestoro Dec 4, 2024
df35fdc
Fix typo in the index file
dnestoro Dec 4, 2024
133308a
Fix steps for maintaining metadata in gradle guide
dnestoro Dec 4, 2024
bc8ea12
Polish text
dnestoro Dec 12, 2024
d0b2017
Fix headlines
dnestoro Dec 12, 2024
2634010
Remove duplicates
dnestoro Dec 12, 2024
f403e36
Add reasoning for surefire plugin configuration
dnestoro Dec 12, 2024
4d63dbd
Shorten the end-to-end gradle guide
dnestoro Dec 17, 2024
7937755
Update maven docs
dnestoro Dec 17, 2024
e85fb3c
End-to-end user guide: version by docs team
olyagpl Dec 20, 2024
abf4b97
Maven plugin end-to-end user guide by O. Gupalo
olyagpl Dec 23, 2024
394ab0a
Refactor gradle guide
dnestoro Dec 24, 2024
f99dc5c
Proofread End-to-end Gradle guide by D. Nestorovic
olyagpl Dec 25, 2024
450b9b1
Fix few typos and examples
dnestoro Dec 25, 2024
f393f7a
Final snippet adjustments
dnestoro Dec 26, 2024
2844aae
Proofread; Used mvnw command to be in sync with gradlew
olyagpl Jan 2, 2025
02a198e
Language review of gradle-plugin.adoc
olyagpl Jan 3, 2025
3eeba3b
Language review of gradle-plugin.adoc
olyagpl Jan 3, 2025
e85f190
Language review of maven-plugin.adoc
olyagpl Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
478 changes: 478 additions & 0 deletions docs/src/docs/asciidoc/changelog.adoc

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions docs/src/docs/asciidoc/css/images/Grabbit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 17 additions & 12 deletions docs/src/docs/asciidoc/css/multi-lang-sample.css

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions docs/src/docs/asciidoc/css/page.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
body {
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85));
color: white;
}

#grabbit-logo {
position: absolute;
right: 0;
top: 0;
width: 150px;
}

#toc {
background: none !important;
}

#toc > #toctitle {
color: #ffc107;
}

#header > h1:first-child {
color: white;
font-weight: 600;
}

#header>.details {
color: white;
}

#preamble>.sectionbody>[class="paragraph"]:first-of-type p {
color: white;
}

h2, h3, h4, .title {
color: #ffc107 !important;
}

p {
color: white;
}

a {
color: #00a8cd;
}

a:hover {
color: #ffc107;
}

.listingblock >.content>pre:not(.highlight) {
color: white;
background: none;
border: 1px solid #ffc107;
border-radius: 4px;
}

:not(pre):not([class^=L])>code {
background: #00758F;
color: white;
}

.admonitionblock td.icon .icon-tip::before,
.admonitionblock td.icon .icon-note::before,
.admonitionblock td.icon .icon-warning::before {
color: white;
}

.admonitionblock>table td.content {
color: white;
}

#footer {
background: rgba(0, 0, 0, 0.2);
}
3 changes: 2 additions & 1 deletion docs/src/docs/asciidoc/docinfo-footer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<link rel="stylesheet" href="css/multi-lang-sample.css">
<link rel="stylesheet" href="css/page.css">
<script src="js/multi-lang-sample.js"></script>
<div id="footer">
<div id="footer-text">
<img src="img/GraalVM-rgb.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
<img src="css/images/GraalVM-rgb.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
</div>
</div>
3 changes: 3 additions & 0 deletions docs/src/docs/asciidoc/docinfo-header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div id="grabbit-logo">
<img src="css/images/Grabbit.svg" alt="">
</div>
Loading