Skip to content

Commit 863d570

Browse files
more content
1 parent e3a714f commit 863d570

File tree

8 files changed

+29
-24
lines changed

8 files changed

+29
-24
lines changed

documentation/1.9/content/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ See the [Release Notes]({{< relref "/release-notes.md" >}}) for recent changes,
1818

1919
This documentation includes sections targeted to different audiences. To help you find what you are looking for more easily, please consult this table of contents:
2020

21-
22-
23-
24-
21+
* [Concepts]({{< relref "/concepts/" >}}) explains the underlying metadata model, files, and configurations.
22+
* The [User guide]({{< relref "/userguide/" >}}) contains detailed usage information, including how to install and configure WebLogic Deploy Tooling, and how to use the tools to .
23+
* The [Samples]({{< relref "/samples/" >}}) provide detailed example code and instructions that show you how to perform various tasks.
24+
* The [Developer guide]({{< relref "/developer/" >}}) provides details for people who want to understand how WDT is built, tested, and so on.
2525

2626

2727
### Contributing

documentation/1.9/content/concepts/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ weight = 1
55
chapter = true
66
pre = "<b>1. </b>"
77
+++
8+
9+
# Concepts

documentation/1.9/content/concepts/archive.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note that file resources that already exist on the target system need not be inc
1414
- [Archive Structure](#archive-structure)
1515
- [Using Multiple Archive Files](#using-multiple-archive-files)
1616

17-
## Example
17+
#### Example
1818

1919
This example shows an application with a `SourcePath` value referencing an EAR file resource contained in the archive.
2020

@@ -29,22 +29,22 @@ appDeployments:
2929
3030
The example above shows the attribute `SourcePath` of the `simpleear` application with a value of `wlsdeploy/applications/simpleear.ear`. The prefix `wlsdeploy/` indicates that the resource is located in the archive file in the specified location, and will be deployed to that directory in the domain, in this case `<domain-home>/wlsdeploy/applications/simpleear.ear`.
3131

32-
## Archive Structure
32+
### Archive Structure
3333

3434
These are the paths within the archive that are used for different types of resources. Users can create further directory structures underneath these locations to organize the files and directories as they see fit.
3535

36-
### `atpwallet`
36+
#### `atpwallet`
3737

3838
The directory where a wallet can be stored for use with Oracle Autonomous Transaction Processing Cloud Database. The file resource name is not specified in the model, and is assumed to be a single ZIP file in the archive at this location.
3939

40-
### `model`
40+
#### `model`
4141
The directory where the model is optionally located. Only one model file, either in YAML or JSON, is allowed, and it must have the appropriate YAML or JSON file extension.
4242

43-
### `opsswallet`
43+
#### `opsswallet`
4444

4545
The directory where a wallet can be stored for use with Oracle Platform Security Services. The file resource name is not specified in the model, and is assumed to be a single ZIP file in the archive at this location.
4646

47-
### `wlsdeploy/applications`
47+
#### `wlsdeploy/applications`
4848
The root directory under which applications are stored. Applications can be stored in the archive as EAR or WAR files, or expanded* under this folder. A sample expanded WAR application might have these entries:
4949
```
5050
wlsdeploy/applications/myApp/index.jsp
@@ -56,34 +56,34 @@ wlsdeploy/applications/myApp/WEB-INF/weblogic.xml
5656

5757
\* Expanded application directories are supported after WebLogic Deploy Tooling release 1.6.2
5858

59-
### `wlsdeploy/classpathLibraries`
59+
#### `wlsdeploy/classpathLibraries`
6060
The root directory under which JARs/directories used for server classpaths are stored. Every file resource under this directory is extracted, even those not referenced in the model.
6161

62-
### `wlsdeploy/coherence`
62+
#### `wlsdeploy/coherence`
6363
The root directory under which empty directories must exist for Coherence persistent stores.
6464

65-
### `wlsdeploy/domainBin`
65+
#### `wlsdeploy/domainBin`
6666
The root directory under which $DOMAIN_HOME/bin scripts are stored. Only scripts referenced in the `domainInfo/domainBin` section of the model are extracted.
6767

68-
### `wlsdeploy/domainLibraries`
68+
#### `wlsdeploy/domainLibraries`
6969
The root directory under which `$DOMAIN_HOME/lib` libraries are stored. Only libraries referenced in the `domainInfo/domainLibraries` section of the model are extracted.
7070

71-
### `wlsdeploy/nodeManager`
71+
#### `wlsdeploy/nodeManager`
7272
The root directory under which node manager file resources, such as keystore files, are stored.
7373

74-
### `wlsdeploy/scripts`
74+
#### `wlsdeploy/scripts`
7575
The root directory under which scripts are stored. These can include JDBC create scripts, and WLDF action scripts.
7676

77-
### `wlsdeploy/servers`
77+
#### `wlsdeploy/servers`
7878
The root directory under which server files, such as keystore files, are stored. These are organized by server name, such as `wlsdeploy/server/my-server/mykey.jks`
7979

80-
### `wlsdeploy/sharedLibraries`
80+
#### `wlsdeploy/sharedLibraries`
8181
The root directory under which shared libraries are stored. These are stored as JAR files within the archive.
8282

83-
### `wlsdeploy/stores`
83+
#### `wlsdeploy/stores`
8484
The root directory under which empty directories must exist for `FileStore` elements in the model.
8585

86-
## Using Multiple Archive Files
86+
### Using Multiple Archive Files
8787

8888
The Create Domain, Update Domain, Deploy Applications, and Validate Model Tools allow the specification of multiple archive files on the command line. For example:
8989

documentation/1.9/content/concepts/model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The model is written in YAML (or optionally, JSON). The YAML parser, built into
3131

3232
All assignment statements must have one or more spaces between the colon and the value. All comments must have a space after the pound sign (also known as hash) to be considered a comment. YAML doesn't allow comments in all locations. While the YAML parser used by the framework does not try to enforce these restrictions, it is likely that putting comments in some locations may cause parse errors since YAML is a difficult language to parse due to its complex indention rules.
3333

34-
## Contents
34+
#### Contents
3535

3636
- [Top-Level Sections](#top-level-model-sections)
3737
- [Simple Example](#simple-example)

documentation/1.9/content/concepts/target_env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Target environments"
33
date: 2019-02-23T17:19:24-05:00
44
draft: false
5-
weight: 4
5+
weight: 5
66
---
77

88

documentation/1.9/content/concepts/tool_configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 4
66
---
77

88

9-
## Contents
9+
#### Contents
1010
- [Tool Property File](#tool-property-file)
1111
- [Model Filters](#model-filters)
1212
- [Target Environments](config/target_env.md)
@@ -15,7 +15,7 @@ weight: 4
1515
- [Custom Configuration](#custom-configuration)
1616

1717
### Tool Property File
18-
You can configure or tune WebLogic Deploy Tooling tools using the tool property file. This property file is installed as `<weblogic-deploy>/lib/tool.properties`. You may change the value of any of the properties in this file to tune the WDT tool. Another option is to configure the tool properties in a Custom Configuration directory. Create the `tool.properties` file in the $WDT_CUSTOM_CONFIG directory.
18+
You can configure or tune WebLogic Deploy Tooling tools using the tool property file. This property file is installed as `<weblogic-deploy>/lib/tool.properties`. You may change the value of any of the properties in this file to tune the WDT tool. Another option is to configure the tool properties in a Custom Configuration directory. Create the `tool.properties` file in the `$WDT_CUSTOM_CONFIG` directory.
1919

2020
If a property is removed from the file, or a property value is incorrectly formatted, a `WARNING` message is logged and an internal default value used instead of the missing or bad value.
2121

documentation/1.9/content/samples/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ weight = 3
55
chapter = true
66
pre = "<b>3. </b>"
77
+++
8+
# Samples
89

910
The samples provide demonstrations of how to accomplish common tasks.
1011
These samples are provided for educational and demonstration purposes only; they are not intended to be used in production deployments or to be depended upon to create production environments.

documentation/1.9/content/userguide/_index.md

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

9+
# User Guide
10+
911
The User Guide provides detailed information about installing and using WebLogic Deploy Tools.

0 commit comments

Comments
 (0)