aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/static/js/configs.js
diff options
context:
space:
mode:
Diffstat (limited to 'fg21sim/webui/static/js/configs.js')
-rw-r--r--fg21sim/webui/static/js/configs.js48
1 files changed, 1 insertions, 47 deletions
diff --git a/fg21sim/webui/static/js/configs.js b/fg21sim/webui/static/js/configs.js
index f321881..ad8972d 100644
--- a/fg21sim/webui/static/js/configs.js
+++ b/fg21sim/webui/static/js/configs.js
@@ -3,59 +3,13 @@
* MIT license
*
* Web UI of "fg21sim"
- * Configuration form manipulations using the WebSocket communications
+ * Configuration form manipulations
*/
"use strict";
/**
- * Generic utilities
- */
-
-/**
- * Get the basename of a path
- * FIXME: only support "/" as the path separator
- */
-var basename = function (path) {
- return path.replace(/^.*\//, "");
-};
-
-/**
- * Get the dirname of a path
- * FIXME: only support "/" as the path separator
- */
-var dirname = function (path) {
- var dir = path.replace(/\/[^\/]*\/?$/, "");
- if (dir === "") {
- dir = "/";
- }
- return dir;
-};
-
-/**
- * Join the two path
- * FIXME: only support "/" as the path separator
- */
-var joinPath = function (path1, path2) {
- var p = null;
- // Strip the trailing path separator
- path1 = path1.replace(/\/$/, "");
- if (path1 === "") {
- p = path2;
- } else {
- p = path1 + "/" + path2;
- }
- // Both "path1" and "path2" are empty
- if (p === "/") {
- console.error("Both 'path1' and 'path2' are empty");
- p = null;
- }
- return p;
-};
-
-
-/**
* Set custom error messages for the form fields that failed the server-side
* validations.
*