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

Rename AllieFlowKit as Allie. #8

Merged
merged 1 commit into from
May 14, 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
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Build GoPages
run: |
go install github.com/johnstarich/go/gopages@latest
gopages -internal -source-link "https://github.com/ansys/allieflowkit-externalfunctions/blob/main/{{.Path}}{{if .Line}}#L{{.Line}}{{end}}"
gopages -internal -source-link "https://github.com/ansys/allie-flowkit/blob/main/{{.Path}}{{if .Line}}#L{{.Line}}{{end}}"

- name: Download HTML documentation artifacts
uses: actions/download-artifact@v4
Expand All @@ -109,7 +109,7 @@ jobs:
# Set environment variables for file paths
DOC_BUILD_HTML="documentation-html"
SOURCE_FILE="$DOC_BUILD_HTML/api_reference/test/index.html"
SOURCE_DIRECTORY="dist/pkg/github.com/ansys/allieflowkit-externalfunctions/pkg/"
SOURCE_DIRECTORY="dist/pkg/github.com/ansys/allie-flowkit/pkg/"
REPLACEMENT_DIRECTORY="$DOC_BUILD_HTML/api_reference/pkg"
ACTUAL_DIR="$DOC_BUILD_HTML/api_reference/"
# Check if REPLACEMENT_DIRECTORY exists, if not, create it
Expand All @@ -125,7 +125,7 @@ jobs:
# Process each HTML file in the replacement directory
find "$REPLACEMENT_DIRECTORY" -type f -name "*.html" | while IFS= read -r replacement_file; do
replacementBodyContent=$(sed -n '/<body>/,/<\/body>/p' "$replacement_file" | \
sed '/<div class="top-heading" id="heading-wide"><a href="\/pkg\/github.com\/ansys\/allieflowkit-externalfunctions\/">GoPages | Auto-generated docs<\/a><\/div>/,/<a href="#" id="menu-button"><span id="menu-button-arrow">&#9661;<\/span><\/a>/d' | \
sed '/<div class="top-heading" id="heading-wide"><a href="\/pkg\/github.com\/ansys\/allie-flowkit\/">GoPages | Auto-generated docs<\/a><\/div>/,/<a href="#" id="menu-button"><span id="menu-button-arrow">&#9661;<\/span><\/a>/d' | \
sed 's/\//\\\//g')
# Use awk to replace content between specific HTML tags
awk -v repl="$replacementBodyContent" '
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# AllieFlowKit External functions
# Allie FlowKit

External functions available for custom workflows in the AllieFlowKit project
External functions available for custom workflows in the Allie project
8 changes: 4 additions & 4 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ansys_sphinx_theme import ansys_logo_black, ansys_favicon, get_version_match

# Project information
project = "allieflowkit-externalfunctions"
project = "allie-flowkit"
copyright = f"(c) {datetime.now().year} ANSYS, Inc. All rights reserved"
author = "ANSYS, Inc."

Expand All @@ -26,14 +26,14 @@
html_favicon = ansys_favicon
html_context = {
"github_user": "ansys",
"github_repo": "allieflowkit-externalfunctions",
"github_repo": "allie-flowkit",
"github_version": "main",
"doc_path": "doc/source",
}
html_theme_options = {
"github_url": "https://github.com/ansys/allieflowkit-externalfunctions",
"github_url": "https://github.com/ansys/allie-flowkit",
"additional_breadcrumbs": [
("AllieFlowKit", "https://allieflowkit.docs.pyansys.com/"),
("Allie", "https://allie.docs.pyansys.com/"),
],
"switcher": {
"json_url": f"https://{cname}/versions.json",
Expand Down
4 changes: 2 additions & 2 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AllieFlowKit External functions documentation |version|
Allie Flow Kit documentation |version|

Check warning on line 1 in doc/source/index.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] doc/source/index.rst#L1

[Google.Headings] 'Allie Flow Kit documentation |version|' should use sentence-style capitalization.
Raw output
{"message": "[Google.Headings] 'Allie Flow Kit documentation |version|' should use sentence-style capitalization.", "location": {"path": "doc/source/index.rst", "range": {"start": {"line": 1, "column": 1}}}, "severity": "WARNING"}
#######################################################


Expand All @@ -15,7 +15,7 @@

:material-regular:`code;48px`

Details the AllieFlowKit external functions available for custom workflows,
Details the Allie flow kit with external functions available for custom workflows,
offering a comprehensive reference for developers and users.

+++
Expand Down
2 changes: 2 additions & 0 deletions doc/styles/config/vocabularies/ANSYS/accept.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
AllieFlowKit
Allie
allie
ANSYS
Ansys
ansys
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/ansys/allieflowkit-externalfunctions/pkg/externalfunctions
module github.com/ansys/allie-flowkit/pkg/externalfunctions

go 1.21
Loading