dugout-> open_methods.dugout
Provide default open methods. A file manager is assumed, but it is defined elsewhere. Any file manager launch step must be initialized by the external launcher. Open methods have to do with navigating to locations and if you wish to open a specific instance, such as a file, it should be handled elsewhere, such as in TRINE. File opening rules and safety mechanisms are provided there.
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC.
## CREATED: 2022/10/16
## INSTANCE: open_methods.dugout
## MODIFIED: 2024/01/24
## OVERVIEW: Provide default open methods. A file manager is assumed, but it
## is defined elsewhere. Any file manager launch step must be initialized by
## the external launcher. Open methods have to do with navigating to locations
## and if you wish to open a specific instance, such as a file, it should be
## handled elsewhere, such as in TRINE.
## HISTORY: VERSION 1.3
## -> VERSION 1.0 (2022/10/16) Development
## -> VERSION 1.1 (2023/11/18)
## -> VERSION 1.2 (2023/12/17)
## -> VERSION 1.3 (2024/01/24) Production
###############################################################################
## OPEN_*
###############################################################################
## Dynamic open method
OPEN_X() {
if [ -d "${1}" ]; then
open_location_x "${1}"
else
alert_location_open_not_found "${1}"
fi
}
OPEN_CODE() {
if [ -d "${XA_JUPYTER}" ]; then
open_location_x "${XA_JUPYTER}"
else
alert_location_open_not_found "${XA_JUPYTER}"
fi
}
OPEN_FIELDJOURNAL() {
if [ -d "${PATH_FIELDJOURNAL}" ]; then
open_location_x "${PATH_FIELDJOURNAL}"
else
alert_location_open_not_found "${PATH_FIELDJOURNAL}"
fi
}
OPEN_FM() {
if [ -d "${LOCATION_WORKING_DIRECTORY}" ]; then
open_location_x "${LOCATION_WORKING_DIRECTORY}"
else
alert_location_open_not_found "${LOCATION_WORKING_DIRECTORY}"
fi
}
OPEN_FMH() {
if [ -d "${LOCATION_OPERATOR_HOME}" ]; then
open_location_x "${LOCATION_OPERATOR_HOME}"
else
alert_location_open_not_found "$LOCATION_OPERATOR_HOME}"
fi
}
OPEN_PDF() {
if [ -d "${XA_PDF}" ]; then
open_location_x "{$XA_PDF}"
else
alert_location_open_not_found "${XA_PDF}"
fi
}