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

Documentation 2.0 #198

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fad9a9d
-del: Ecosystem: paired accounts, chapter about the connected end use…
AllaGh7 Jul 27, 2024
98210eb
-reversed deketion in Overview
AllaGh7 Jul 27, 2024
65c6558
Graphs updated: Communication
AllaGh7 Aug 12, 2024
33559c3
romoved error codes 0111 and 0114 in Error Codes
AllaGh7 Aug 17, 2024
d136cd2
Merge pull request #1 from DKE-Data/main
AllaGh7 Aug 19, 2024
54d68a1
Merge pull request #3 from AllaGh7/main
AllaGh7 Aug 19, 2024
8151ab5
taxt modifications in
AllaGh7 Aug 30, 2024
77e0744
VAL_00004 and VAL_00005
AllaGh7 Sep 25, 2024
387f5e2
data names in lower case
AllaGh7 Sep 29, 2024
411bab2
Adjustments suggested by Oliver
AllaGh7 Sep 30, 2024
a30df9b
multiple URL, VCU reonboarding
AllaGh7 Sep 30, 2024
d1c0e8e
-FIX: File extensions lowercase
AllaGh7 Sep 30, 2024
46a1d93
-FIX: Defect links
AllaGh7 Sep 30, 2024
edaaa43
-FIX: Accidently moved File to root folder of images
AllaGh7 Sep 30, 2024
e09b418
screenshots first part
AllaGh7 Oct 1, 2024
076c132
Router devices, screenshot and adjustments in the text
AllaGh7 Oct 3, 2024
c623711
screenshots
AllaGh7 Oct 3, 2024
9c15485
Market place replaced by Solution-Finder
AllaGh7 Oct 12, 2024
b9e05a6
screenshots io-tool and removed QA from URLs
AllaGh7 Oct 15, 2024
dee7640
Screenshots edited, EndpointRecording,
AllaGh7 Oct 15, 2024
de4dbd9
Teams-Notes implemented
AllaGh7 Oct 16, 2024
5ad745f
Inviting Testers
AllaGh7 Oct 21, 2024
45a657f
Router Devices Certificate Download
AllaGh7 Oct 22, 2024
91169db
Revert accidently deleting a lot of images in Commit edaaa438fc23e69f…
AllaGh7 Oct 23, 2024
2b5def5
-DEL: Removed remaining mentionings of the Endpoint Recording.
AllaGh7 Oct 23, 2024
b350068
-FIX: Some images had old dimensions-Defintions that lead to a bad zoom
AllaGh7 Oct 23, 2024
a1f3210
Revert renaming so that server accepts the files are .svg and png, no…
AllaGh7 Oct 23, 2024
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
27 changes: 27 additions & 0 deletions modules/ROOT/assets/format.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash

# Define the path to the folder (current directory if not provided)
folderPath=./images

# Find all files and loop through them
find "$folderPath" -type f | while read -r file; do
# Extract the filename and extension
extension="${file##*.}"
base="${file%.*}"

# Check if the extension contains uppercase letters
if [[ "$extension" =~ [A-Z] ]]; then
# Convert the extension to lowercase
intmFile="${base}_.${extension,,}"
newFile="${base}.${extension,,}"

# Rename the file using git mv
echo "Start $file to $newFile"
echo "Fist $file to $intmFile"
git mv "$file" "$intmFile"
echo "Then $intmFile to $newFile"
git mv "$intmFile" "$newFile"
fi
done

echo "All files with uppercase extensions have been renamed."
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed modules/ROOT/assets/images/general/lifecycle.png
Binary file not shown.
Binary file not shown.
Binary file removed modules/ROOT/assets/images/general/message-push.png
Binary file not shown.
Binary file not shown.
Loading
Loading