diff --git a/container/oracle/initdb.d/03_default_data.sql b/container/oracle/initdb.d/03_default_data.sql index 44eb24f..55c1c29 100644 --- a/container/oracle/initdb.d/03_default_data.sql +++ b/container/oracle/initdb.d/03_default_data.sql @@ -183,4 +183,5 @@ INSERT INTO WORKMAP_OWNER.WORK_MAP_PSS_AREA (WORK_MAP_PSS_AREA_ID, AREA_NAME) VA INSERT INTO WORKMAP_OWNER.WORK_MAP_PSS_AREA (WORK_MAP_PSS_AREA_ID, AREA_NAME) VALUES (9, 'hdt-pss'); INSERT INTO WORKMAP_OWNER.WORK_MAP_PSS_AREA (WORK_MAP_PSS_AREA_ID, AREA_NAME) VALUES (10, 'fel-pss'); INSERT INTO WORKMAP_OWNER.WORK_MAP_PSS_AREA (WORK_MAP_PSS_AREA_ID, AREA_NAME) VALUES (11, 'gts-pss'); +INSERT INTO WORKMAP_OWNER.WORK_MAP_PSS_AREA (WORK_MAP_PSS_AREA_ID, AREA_NAME) VALUES (12, 'uitf-pss'); diff --git a/src/main/webapp/resources/css/workmap.css b/src/main/webapp/resources/css/workmap.css index 9660bb4..2650b51 100644 --- a/src/main/webapp/resources/css/workmap.css +++ b/src/main/webapp/resources/css/workmap.css @@ -278,6 +278,29 @@ background: url("../img/pss/GTS_yellow_dashed.png") no-repeat scroll 0 0 transparent; } +.uitf-pss span { + height: 46px; + width: 56px; +} +.uitf-pss .beam-permit { + background: url("../img/pss/UITF_purple_line.png") no-repeat scroll 0 0 transparent; +} +.uitf-pss .power-permit { + background: url("../img/pss/UITF_red_line.png") no-repeat scroll 0 0 transparent; +} +.uitf-pss .lock-beam-permit { + background: url("../img/pss/UITF_purple_dashed.png") no-repeat scroll 0 0 transparent; +} +.uitf-pss .lock-power-permit { + background: url("../img/pss/UITF_red_dashed.png") no-repeat scroll 0 0 transparent; +} +.uitf-pss .controlled-access { + background: url("../img/pss/UITF_yellow_line.png") no-repeat scroll 0 0 transparent; +} +.uitf-pss .lock-controlled-access { + background: url("../img/pss/UITF_yellow_dashed.png") no-repeat scroll 0 0 transparent; +} + /* Task Areas */ .inj1 { left: 90px; @@ -1065,6 +1088,10 @@ left: 810px; top: 565px; } +.uitf-pss { + left: 60px; + top: 50px; +} .editable-nl-pss { left: 610px; top: 235px; @@ -1109,6 +1136,10 @@ left: 750px; top: 569px; } +.editable-uitf-pss { + left: 55px; + top: 105px; +} /* Map Layout */ .area { border: 1px solid transparent; diff --git a/src/main/webapp/resources/img/pss/UITF_purple_dashed.png b/src/main/webapp/resources/img/pss/UITF_purple_dashed.png new file mode 100644 index 0000000..ccacb35 Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_purple_dashed.png differ diff --git a/src/main/webapp/resources/img/pss/UITF_purple_line.png b/src/main/webapp/resources/img/pss/UITF_purple_line.png new file mode 100644 index 0000000..369aa3f Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_purple_line.png differ diff --git a/src/main/webapp/resources/img/pss/UITF_red_dashed.png b/src/main/webapp/resources/img/pss/UITF_red_dashed.png new file mode 100644 index 0000000..9bfd3c6 Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_red_dashed.png differ diff --git a/src/main/webapp/resources/img/pss/UITF_red_line.png b/src/main/webapp/resources/img/pss/UITF_red_line.png new file mode 100644 index 0000000..b478233 Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_red_line.png differ diff --git a/src/main/webapp/resources/img/pss/UITF_yellow_dashed.png b/src/main/webapp/resources/img/pss/UITF_yellow_dashed.png new file mode 100644 index 0000000..d43d33d Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_yellow_dashed.png differ diff --git a/src/main/webapp/resources/img/pss/UITF_yellow_line.png b/src/main/webapp/resources/img/pss/UITF_yellow_line.png new file mode 100644 index 0000000..da2b157 Binary files /dev/null and b/src/main/webapp/resources/img/pss/UITF_yellow_line.png differ