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

Create 'images' directory structure in correct project location #375

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions docs/references/java_project/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ files and directories specific to Java (highlighted below):
├── manifest.txt
├── requirements.txt
├── conf
│   └── describeSchema.xsd
│   ├── describeSchema.xsd
│   └── images
│      ├── AdapterKind
│      ├── ResourceKind
│      └── TraversalSpec
├── content
│   ├── alertdefs
│   │   └── alertDefinitionSchema.xsd
Expand All @@ -49,10 +53,6 @@ files and directories specific to Java (highlighted below):
│   ├── symptomdefs
│   └── traversalspecs
│   └── traversalSpecsSchema.xsd
├── images
│   ├── AdapterKind
│   ├── ResourceKind
│   └── TraversalSpec
├── resources
│   └── resources.properties
└── src
Expand Down
5 changes: 4 additions & 1 deletion docs/references/mp-init.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ The init script creates a project in the given path with the following structure
├── venv-ADAPTER NAME
├── conf
│   ├── describeSchema.xsd
│   └── resources
│   └── images
│      ├── AdapterKind
│      ├── ResourceKind
│      └── TraversalSpec
├── content
│   ├── alertdefs
│   │   └── alertDefinitionSchema.xsd
Expand Down
10 changes: 5 additions & 5 deletions docs/references/python_project/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ files and directories specific to Python (highlighted below):
│   ├── adapter.py
│   └── constants.py
├── conf
│   └── describeSchema.xsd
│   ├── describeSchema.xsd
│   └── images
│      ├── AdapterKind
│      ├── ResourceKind
│      └── TraversalSpec
├── content
│   ├── alertdefs
│   │   └── alertDefinitionSchema.xsd
Expand All @@ -53,10 +57,6 @@ files and directories specific to Python (highlighted below):
│   ├── symptomdefs
│   └── traversalspecs
│   └── traversalSpecsSchema.xsd
├── images
│   ├── AdapterKind
│   ├── ResourceKind
│   └── TraversalSpec
└── resources
└── resources.properties
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(

self.conf_dir_path = os.path.join(project_path, "conf")
self.conf_resources_dir_path = os.path.join(project_path, "resources")
self.conf_images_dir_path = os.path.join(project_path, "images")
self.conf_images_dir_path = os.path.join(self.conf_dir_path, "images")

self.response_values: Dict[str, Any] = {
"display_name": display_name,
Expand Down
Loading