Skip to content

Commit 518e8ce

Browse files
committed
Switching to Hugo relearn theme
1 parent 16c3c05 commit 518e8ce

File tree

921 files changed

+45490
-182467
lines changed

Some content is hidden

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

921 files changed

+45490
-182467
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ release.properties
2828
**/*.pyc
2929
**/.DS_Store
3030
**/.hugo_build.lock
31+
documentation/**/docs
3132
.jython_cache
3233
.oca

documentation/4.0/config.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2021, 2023, Oracle and/or its affiliates.
1+
# Copyright (c) 2021, 2025, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
#
44
# analytics
@@ -9,7 +9,7 @@ languageCode = "en-us"
99
title = "WebLogic Deploy Tooling"
1010

1111
# Change the default theme to be use when building the site with Hugo
12-
theme = "hugo-theme-learn"
12+
theme = "hugo-theme-relearn-8.3.0"
1313

1414
publishDir = "docs"
1515

@@ -18,10 +18,13 @@ publishDir = "docs"
1818
home = [ "HTML", "RSS", "JSON"]
1919

2020
[params]
21+
hideAuthorDate = true
2122
# disable the copy to clipboard links
2223
disableInlineCopyToClipBoard = true
24+
themeVariant = "learn"
2325

2426
[markup]
27+
defaultMarkdownHandler = 'goldmark'
2528
[markup.goldmark]
2629
[markup.goldmark.extensions]
2730
[markup.goldmark.extensions.extras]

documentation/4.0/content/_index.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
pre: "<b> </b>"
3+
hideHeader: true
4+
---
5+
16
## WebLogic Deploy Tooling
27

38
WebLogic Deploy Tooling (WDT) makes it easy to stand up WebLogic environments and perform
@@ -33,7 +38,7 @@ WDT provides several single-purpose tools, all exposed as shell scripts (for bot
3338
* Tokenize a model with variables.
3439
* Provide information about the folders and attributes that are valid for sections and folders of a domain model.
3540

36-
For detailed information, see [WDT Tools]({{< relref "/userguide/tools/" >}}).
41+
For detailed information, see [WDT Tools]({{% relref "/userguide/tools/" %}}).
3742

3843
***
3944
### Current production release
@@ -43,24 +48,23 @@ WebLogic Deploy Tooling version and release information can be found [here](http
4348
***
4449
### Recent changes and known issues
4550

46-
See the [Release Notes]({{< relref "/release-notes.md" >}}) for known issues and workarounds.
51+
See the [Release Notes]({{% relref "/release-notes.md" %}}) for known issues and workarounds.
4752

4853
### About this documentation
4954

5055
This documentation includes sections targeted to different audiences:
5156

52-
* [Concepts]({{< relref "/concepts/" >}}) explains the underlying metadata models and archive files.
53-
* The [User Guide]({{< relref "/userguide/" >}}) contains detailed usage information, including how to install and configure WebLogic Deploy Tooling, and how to use each tool.
54-
* The [Samples]({{< relref "/samples/" >}}) provide informative use case scenarios.
55-
* The [Developer Guide]({{< relref "/developer/" >}}) provides details for people who
57+
* [Concepts]({{% relref "/concepts/" %}}) explains the underlying metadata models and archive files.
58+
* The [User Guide]({{% relref "/userguide/" %}}) contains detailed usage information, including how to install and configure WebLogic Deploy Tooling, and how to use each tool.
59+
* The [Samples]({{% relref "/samples/" %}}) provide informative use case scenarios.
60+
* The [Developer Guide]({{% relref "/developer/" %}}) provides details for people who
5661
want to understand how WDT is built, its features mapped and implemented. Those who
57-
wish to contribute to the WebLogic Deploy Tooling code will find useful information [here]({{< relref "/developer/contribute.md" >}}).
62+
wish to contribute to the WebLogic Deploy Tooling code will find useful information [here]({{% relref "/developer/contribute.md" %}}).
5863

5964
### Related projects
6065

6166
* [WebLogic Kubernetes Operator](https://oracle.github.io/weblogic-kubernetes-operator/)
6267
* [WebLogic Image Tool](https://oracle.github.io/weblogic-image-tool/)
6368
* [WebLogic Kubernetes Toolkit UI](https://oracle.github.io/weblogic-toolkit-ui/)
6469
* [WebLogic Monitoring Exporter](https://github.com/oracle/weblogic-monitoring-exporter)
65-
* [WebLogic Logging Exporter](https://github.com/oracle/weblogic-logging-exporter)
6670
* [WebLogic Remote Console](https://oracle.github.io/weblogic-remote-console/)
Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
+++
2-
title = "Concepts"
3-
date = 2019-02-22T15:27:54-05:00
4-
weight = 1
5-
chapter = true
6-
pre = "<b> </b>"
7-
+++
1+
---
2+
title: "Concepts"
3+
date: 2019-02-22T15:27:54-05:00
4+
weight: 1
5+
chapter: true
6+
pre: "<b> </b>"
7+
hideHeader: true
8+
---
89

910
# Concepts
11+
12+
{{% children type="list" description="true" %}}

documentation/4.0/content/concepts/archive.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Archive File"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 2
6+
description: "The section that discusses the structure and content of the WDT archive file."
67
---
78

89

@@ -41,7 +42,7 @@ file in the specified location, and will be deployed to that directory in the do
4142

4243
These are the paths within the archive that are used for different types of resources. You can create further
4344
directory structures underneath some of these locations to organize the files and directories as you see fit. The
44-
[Archive Helper Tool]({{< relref "/userguide/tools/archive_helper.md" >}}) makes it easy to add, update, and remove entries from the archive file.
45+
[Archive Helper Tool]({{% relref "/userguide/tools/archive_helper.md" %}}) makes it easy to add, update, and remove entries from the archive file.
4546

4647
#### Why are there two separate directory structures?
4748

@@ -79,7 +80,7 @@ This is the root directory where your custom files and directories can be stored
7980
files are not collected by the Discover Domain Tool. Every file resource under this directory is extracted during
8081
`createDomain`, `updateDomain`, and `deployApps`.
8182

82-
Some custom files may belong in `wlsdeploy/custom`. To determine which location is preferable for your files, see [Why are there two separate directory structures?]({{< relref "#why-are-there-two-separate-directory-structures" >}}).
83+
Some custom files may belong in `wlsdeploy/custom`. To determine which location is preferable for your files, see [Why are there two separate directory structures?]({{% relref "#why-are-there-two-separate-directory-structures" %}}).
8384

8485
This location is particularly useful when handling files that live outside an application; for example, a property
8586
file used to configure the application. The general steps to make applications that use such files work when
@@ -141,7 +142,7 @@ This is the root directory where your custom files and directories can be stored
141142
files are not collected by the Discover Domain Tool. Every file resource under this directory is extracted during
142143
`createDomain`, `updateDomain`, and `deployApps`.
143144

144-
Some custom files may belong in `config/wlsdeploy/custom`. To determine which location is preferable for your files, see [Why are there two separate directory structures?]({{< relref "#why-are-there-two-separate-directory-structures" >}}).
145+
Some custom files may belong in `config/wlsdeploy/custom`. To determine which location is preferable for your files, see [Why are there two separate directory structures?]({{% relref "#why-are-there-two-separate-directory-structures" %}}).
145146

146147
#### `wlsdeploy/domainBin`
147148
The root directory under which `$DOMAIN_HOME/bin` scripts are stored. Only scripts referenced in the

documentation/4.0/content/concepts/model.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: "Metadata Model"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
5-
weight: 1
5+
weight: 2
6+
description: "The section that discusses the high-level concepts of the WDT model."
67
---
78

89
### Contents
@@ -99,7 +100,7 @@ on the target environment. For more information and a list of available path to
99100
The example above shows the attribute `SourcePath` of the `simpleear` application with a value of
100101
`wlsdeploy/applications/simpleear.ear`. The prefix `wlsdeploy/` indicates that the resource is located in the archive
101102
file in the specified location, and will be deployed to that directory within the domain, in this case
102-
`<domain-home>/wlsdeploy/applications/simpleear.ear`. See the [Archive file]({{< relref "/concepts/archive.md" >}})
103+
`<domain-home>/wlsdeploy/applications/simpleear.ear`. See the [Archive file]({{% relref "/concepts/archive.md" %}})
103104
for more details about using the archive file.
104105

105106
Users can create further directory structures underneath the above locations to organize the files and directories as
@@ -339,7 +340,7 @@ declared as the default realm:
339340

340341
This feature does not apply to named security providers within a realm. These items follow a special set of rules that
341342
are required to maintain their ordering. See
342-
[Modeling security providers]({{< relref "/samples/securityproviders-model.md" >}}) for detailed information.
343+
[Modeling security providers]({{% relref "/samples/securityproviders-model.md" %}}) for detailed information.
343344

344345
This feature can be used to undeploy applications or remove libraries.
345346

@@ -458,7 +459,7 @@ topology:
458459

459460
Beginning in 2.0, WebLogic Deploy Tooling now incorporates the SnakeYAML parser for reading and writing model files.
460461
This may require some changes to existing models in order to be parsed correctly.
461-
- Model elements that use [delete notation]({{< relref "/concepts/model#declaring-named-mbeans-to-delete" >}}) need
462+
- Model elements that use [delete notation]({{% relref "/concepts/model#declaring-named-mbeans-to-delete" %}}) need
462463
to be escaped in single or double quotation marks.
463464
```yaml
464465
topology:

documentation/4.0/content/developer/ReleaseProcess.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "WDT project release process"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 5
6+
description: "How releases are created from WDT source code."
67
---
78

89
This document describes the process that should be followed to create a WebLogic Deploy Tooling (WDT) release.
Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
+++
2-
title = "Developer Guide"
3-
date = 2019-02-22T15:27:54-05:00
4-
weight = 4
5-
chapter = true
6-
pre = "<b> </b>"
7-
+++
1+
---
2+
title: "Developer Guide"
3+
date: 2019-02-22T15:27:54-05:00
4+
weight: 4
5+
chapter: true
6+
pre: "<b> </b>"
7+
hideHeader: true
8+
---
89

910

1011
# Developer Guide
1112

1213
The Developer Guide provides information for developers who want to understand or contribute to the code.
14+
15+
{{% children type="list" description="true" %}}

documentation/4.0/content/developer/alias-definitions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "Alias definitions"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 3
6+
description: "How the WDT aliases work."
67
---
78

89
WebLogic Deploy Tool uses a set of JSON configuration files to map folders and attributes in the model to the corresponding WLST MBeans and their attributes. These mappings are referred as 'aliases' throughout the project code and documentation. Each element in the alias definition file has detailed properties that assist in this mapping.

documentation/4.0/content/developer/buildWDT.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
2-
title: "Build WebLogic Deploy Tool"
2+
title: "Build WebLogic Deploy Tooling"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
55
weight: 4
6+
description: "How to build WDT from source."
67
---
78

89
### Prerequisites

0 commit comments

Comments
 (0)