Skip to content

Commit 670a964

Browse files
committed
Merge branch 'hugo-relearn-theme' into 'main'
Moving documentation to Huge relearn theme See merge request weblogic-cloud/weblogic-image-tool!511
2 parents 47dcee7 + 71cd2b8 commit 670a964

File tree

641 files changed

+45329
-5384
lines changed

Some content is hidden

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

641 files changed

+45329
-5384
lines changed

.github/workflows/publish-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Build and publish site
4242
run: |
4343
echo "Downloading Hugo for generating HTML documentation from Markdown"
44-
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.108.0/hugo_0.108.0_Linux-64bit.tar.gz"
44+
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.152.2/hugo_0.152.2_Linux-64bit.tar.gz"
4545
tar -xf hugo.tar.gz
4646
export PATH="$PWD:$PATH"
4747

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77
**/target
88
**/.DS_Store
99
.mvn/maven.config
10+
**/.hugo_build.lock
11+
documentation/**/docs

documentation/site/config.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,22 @@ languageCode = "en-us"
66
title = "WebLogic Image Tool"
77

88
# Change the default theme to be use when building the site with Hugo
9-
theme = "hugo-theme-learn"
9+
theme = "hugo-theme-relearn-8.3.0"
1010

1111
publishDir = "docs"
1212

1313
# For search functionality
1414
[outputs]
1515
home = [ "HTML", "RSS", "JSON"]
1616

17+
[markup]
18+
defaultMarkdownHandler = 'goldmark'
19+
[markup.goldmark]
20+
[markup.goldmark.renderer]
21+
unsafe = true
22+
1723
[params]
24+
hideAuthorDate = true
1825
# disable the copy to clipboard links
1926
disableInlineCopyToClipBoard = true
27+
themeVariant = "learn"

documentation/site/content/_index.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
hideHeader: true
3+
---
4+
15
# WebLogic Image Tool
26

37
Oracle is finding ways for organizations using WebLogic Server to run important workloads, to move those workloads into
@@ -19,7 +23,7 @@ the JDK and Oracle Home as part of moving the domain.
1923
* Create a new container image by applying WebLogic patches to an existing image. In addition,
2024
if one did not exist previously, you can create a WebLogic domain, update an existing domain, or deploy an application.
2125

22-
For detailed information, see [Image Tool]({{< relref "/userguide/tools/_index.md" >}}).
26+
For detailed information, see [Image Tool]({{% relref "/userguide/tools/_index.md" %}}).
2327

2428
***
2529
### Current production release
@@ -29,16 +33,17 @@ WebLogic Image Tool version and release information can be found [here](https://
2933
***
3034
### Recent changes and known issues
3135

32-
See the [Release Notes]({{< relref "/release-notes.md" >}}) for issues and important information.
36+
See the [Release Notes](https://github.com/oracle/weblogic-image-tool/releases/)
37+
for issues and important information.
3338

3439

3540
### About this documentation
3641

37-
* Use the [Quick Start]({{< relref "/quickstart/quickstart.md" >}}) guide to create a Linux based WebLogic container image.
38-
* The [User Guide]({{< relref "/userguide/" >}}) contains detailed usage information, including command options and usage scenarios.
39-
* The [Samples]({{< relref "/samples/" >}}) provide typical and informative use cases.
40-
* The [Developer Guide]({{< relref "/developer/" >}}) provides details for people who want to understand how WIT is built. Those
41-
who wish to contribute to the WebLogic Image Tool code will find useful information [here]({{< relref "/developer/contribute.md" >}}).
42+
* Use the [Quick Start]({{% relref "/quickstart/quickstart.md" %}}) guide to create a Linux based WebLogic container image.
43+
* The [User Guide]({{% relref "/userguide/" %}}) contains detailed usage information, including command options and usage scenarios.
44+
* The [Samples]({{% relref "/samples/" %}}) provide typical and informative use cases.
45+
* The [Developer Guide]({{% relref "/developer/" %}}) provides details for people who want to understand how WIT is built. Those
46+
who wish to contribute to the WebLogic Image Tool code will find useful information [here]({{% relref "/developer/contribute.md" %}}).
4247

4348

4449
### Related projects
@@ -47,7 +52,6 @@ who wish to contribute to the WebLogic Image Tool code will find useful informat
4752
* [WebLogic Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/)
4853
* [WebLogic Kubernetes Toolkit UI](https://oracle.github.io/weblogic-toolkit-ui/)
4954
* [WebLogic Monitoring Exporter](https://github.com/oracle/weblogic-monitoring-exporter)
50-
* [WebLogic Logging Exporter](https://github.com/oracle/weblogic-logging-exporter)
5155
* [WebLogic Remote Console](https://oracle.github.io/weblogic-remote-console/)
5256

5357
### Supported Fusion Middleware (FMW) products

documentation/site/content/developer/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ chapter = true
66
pre = "<b> </b>"
77
+++
88

9-
# Developer Guide
10-
119
The Developer Guide provides information for developers who want to build the installer from source or contribute to the code.
10+
11+
{{% children type="list" description="true" %}}

documentation/site/content/developer/contribute.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Contribute to WIT"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 2
6+
description: "How to contribute to the development of the Image Tool."
67
---
78

89
Oracle welcomes contributions to this repository from anyone.

documentation/site/content/developer/source.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Build from source"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 1
6+
description: "How to build the Image Tool from source."
67
---
78

89

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
+++
2-
title = "Quick Start"
2+
title = "Quick Start Guide"
33
date = 2019-02-22T15:27:54-05:00
44
weight = 1
55
chapter = true
66
pre = "<b> </b>"
77
+++
88

9-
# Quick Start Guide
10-
119
Use this Quick Start guide to create a Linux based WebLogic container image.
10+
11+
{{% children type="list" description="true" %}}

documentation/site/content/quickstart/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ weight: 3
88

99
#### Before you begin
1010

11-
Make sure that you have fulfilled the [Prerequisites]({{< relref "/userguide/prerequisites.md" >}}) and [Setup]({{< relref "/userguide/setup.md" >}}) requirements.
11+
Make sure that you have fulfilled the [Prerequisites]({{% relref "/userguide/prerequisites.md" %}}) and [Setup]({{% relref "/userguide/setup.md" %}}) requirements.
1212

1313
#### Overview
1414

@@ -27,7 +27,7 @@ and save them in a directory of your choice, for example, `/home/acmeuser/wls-in
2727
`jdk-8u202-linux-x64.tar.gz`
2828

2929

30-
2. Use the [Cache Tool]({{< relref "/userguide/tools/cache.md" >}}) to add the installers:
30+
2. Use the [Cache Tool]({{% relref "/userguide/tools/cache.md" %}}) to add the installers:
3131

3232
```bash
3333
$ imagetool cache addInstaller --type jdk --version 8u202 --path /home/acmeuser/wls-installers/jdk-8u202-linux-x64.tar.gz
@@ -49,7 +49,7 @@ and save them in a directory of your choice, for example, `/home/acmeuser/wls-in
4949
wls_12.2.1.3.0=/home/acmeuser/wls-installers/fmw_12.2.1.3.0_wls_Disk1_1of1.zip
5050
```
5151

52-
3. Run the [`imagetool create`]({{< relref "/userguide/tools/create-image.md" >}}) command:
52+
3. Run the [`imagetool create`]({{% relref "/userguide/tools/create-image.md" %}}) command:
5353

5454
```bash
5555
$ imagetool create --tag wls:12.2.1.3.0

documentation/site/content/release-notes.md

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

0 commit comments

Comments
 (0)