From 6001a828b16c5f758bebbfca06cc09b770d303b7 Mon Sep 17 00:00:00 2001 From: int2001 Date: Wed, 17 Jan 2024 14:21:56 +0000 Subject: [PATCH] All other occurences (Camelcase / complete uppercase) --- CloudLog_logo.png => WaveLog_logo.png | Bin application/views/user/forgot_password.php | 4 ++-- application/views/user/login.php | 4 ++-- update_wavelog.sh | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) rename CloudLog_logo.png => WaveLog_logo.png (100%) diff --git a/CloudLog_logo.png b/WaveLog_logo.png similarity index 100% rename from CloudLog_logo.png rename to WaveLog_logo.png diff --git a/application/views/user/forgot_password.php b/application/views/user/forgot_password.php index 910875ac3..c0c6b2813 100644 --- a/application/views/user/forgot_password.php +++ b/application/views/user/forgot_password.php @@ -26,7 +26,7 @@ input[type="email"] {
- +
@@ -57,4 +57,4 @@ input[type="email"] {
-
\ No newline at end of file + diff --git a/application/views/user/login.php b/application/views/user/login.php index f7a6a2bd4..efa8ae318 100644 --- a/application/views/user/login.php +++ b/application/views/user/login.php @@ -30,7 +30,7 @@ body { }
- +

@@ -56,4 +56,4 @@ body {
-
\ No newline at end of file + diff --git a/update_wavelog.sh b/update_wavelog.sh index be73c6b77..e664488d0 100644 --- a/update_wavelog.sh +++ b/update_wavelog.sh @@ -7,15 +7,15 @@ # Please check the DIR_OWNERSHIP variable carefully to make sure it is # appropriately set for your system! -# The user and group that own the CLOUDLOG_SUBDIR directories. Passed to 'chown' as-is. +# The user and group that own the WAVELOG_SUBDIR directories. Passed to 'chown' as-is. DIR_OWNERSHIP="root:www-data" # The list of directories that need to have ownership restored after a git pull -declare -a CLOUDLOG_SUBDIRS=("application/config" "assets" "backup" "updates" "uploads" "images/eqsl_card_images") +declare -a WAVELOG_SUBDIRS=("application/config" "assets" "backup" "updates" "uploads" "images/eqsl_card_images") # The name of the Git remote to fetch/pull from GIT_REMOTE="origin" # If true, pull from the HEAD of the configured origin, otherwise the latest tag BLEEDING_EDGE="true" -# If true, restore directory ownership on CLOUDLOG_SUBDIRS after a git pull +# If true, restore directory ownership on WAVELOG_SUBDIRS after a git pull RESTORE_OWNERSHIP="true" check_working_dir() { @@ -51,7 +51,7 @@ fast_forward_to_head() { } restore_ownership() { - for dir in "${CLOUDLOG_SUBDIRS[@]}"; do + for dir in "${WAVELOG_SUBDIRS[@]}"; do echo "Setting ownership as $DIR_OWNERSHIP on $dir" chown -R $DIR_OWNERSHIP $(pwd)/$dir done