From f04c1ae0ff0388427f83a579002880d5dbb149d2 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 28 1월 2022 16:12:22 +0900 Subject: [PATCH] 모든 게시물 제목 입력시 특수문자 허용 --- src/main/webapp/views/customField/customFieldModify.html | 4 +- src/main/webapp/views/issueType/issueTypeAdd.html | 4 +- src/main/webapp/views/issueType/issueTypeModify.html | 4 +- src/main/webapp/views/faq/faqModify.html | 4 +- src/main/webapp/views/guide/guideModify.html | 4 +- src/main/webapp/views/workflow/workflowAdd.html | 4 +- src/main/webapp/views/qna/qnaAdd.html | 4 +- src/main/webapp/views/event/eventAdd.html | 4 +- src/main/webapp/views/workflow/workflowModify.html | 4 +- src/main/webapp/views/customField/customFieldAdd.html | 4 +- src/main/webapp/views/qna/qnaModify.html | 4 +- src/main/webapp/views/project/projectAdd.html | 4 +- src/main/webapp/views/project/projectModify.html | 4 +- src/main/webapp/views/faq/faqAdd.html | 4 +- src/main/webapp/views/guide/guideAdd.html | 4 +- src/main/webapp/views/event/eventModify.html | 4 +- src/main/webapp/views/notice/noticeModify.html | 4 +- src/main/webapp/views/notice/noticeAdd.html | 4 +- 18 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/main/webapp/views/customField/customFieldAdd.html b/src/main/webapp/views/customField/customFieldAdd.html index b647bfc..22bbd58 100644 --- a/src/main/webapp/views/customField/customFieldAdd.html +++ b/src/main/webapp/views/customField/customFieldAdd.html @@ -23,12 +23,12 @@ ng-model="vm.form.name" maxlength="15" ng-maxlength="15" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" required> <small ng-if="customFieldAddForm.name.$error.maxlength" translate="common.upTo15Characters"> 理쒕� 15湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="customField.limitNameToSpecialCharacters">�궗�슜�옄 �젙�쓽 �븘�뱶 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="customField.limitNameToSpecialCharacters">�궗�슜�옄 �젙�쓽 �븘�뱶 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/customField/customFieldModify.html b/src/main/webapp/views/customField/customFieldModify.html index 3680ca7..39d1a8d 100644 --- a/src/main/webapp/views/customField/customFieldModify.html +++ b/src/main/webapp/views/customField/customFieldModify.html @@ -23,13 +23,13 @@ ng-model="vm.form.name" maxlength="15" ng-maxlength="15" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" required> <small ng-if="customFieldModifyForm.name.$error.maxlength" class="help-block form-text text-danger" translate="common.upTo15Characters"> 理쒕� 15湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="customField.limitNameToSpecialCharacters">�궗�슜�옄 �젙�쓽 �븘�뱶 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="customField.limitNameToSpecialCharacters">�궗�슜�옄 �젙�쓽 �븘�뱶 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/event/eventAdd.html b/src/main/webapp/views/event/eventAdd.html index a055c13..5f45069 100644 --- a/src/main/webapp/views/event/eventAdd.html +++ b/src/main/webapp/views/event/eventAdd.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="event.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="event.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/event/eventModify.html b/src/main/webapp/views/event/eventModify.html index 64acfb7..d6bad8c 100644 --- a/src/main/webapp/views/event/eventModify.html +++ b/src/main/webapp/views/event/eventModify.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="event.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="event.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/faq/faqAdd.html b/src/main/webapp/views/faq/faqAdd.html index 98e95f8..44e2661 100644 --- a/src/main/webapp/views/faq/faqAdd.html +++ b/src/main/webapp/views/faq/faqAdd.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="FAQ.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="FAQ.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/faq/faqModify.html b/src/main/webapp/views/faq/faqModify.html index 434d9b1..1ed24e1 100644 --- a/src/main/webapp/views/faq/faqModify.html +++ b/src/main/webapp/views/faq/faqModify.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="FAQ.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="FAQ.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/guide/guideAdd.html b/src/main/webapp/views/guide/guideAdd.html index 1c9fddf..c03d8bc 100644 --- a/src/main/webapp/views/guide/guideAdd.html +++ b/src/main/webapp/views/guide/guideAdd.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="guide.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="guide.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/guide/guideModify.html b/src/main/webapp/views/guide/guideModify.html index b8fe010..632cb3d 100644 --- a/src/main/webapp/views/guide/guideModify.html +++ b/src/main/webapp/views/guide/guideModify.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="guide.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="guide.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/issueType/issueTypeAdd.html b/src/main/webapp/views/issueType/issueTypeAdd.html index 045df01..ac03863 100644 --- a/src/main/webapp/views/issueType/issueTypeAdd.html +++ b/src/main/webapp/views/issueType/issueTypeAdd.html @@ -18,7 +18,7 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.name" ng-maxlength="15" @@ -27,7 +27,7 @@ <small ng-show="issueTypeAddForm.name.$error.maxlength" class="help-block form-text text-danger" translate="common.upTo15Characters"> 理쒕� 15湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="managementType.limitNameToSpecialCharacters">�씠�뒋 ���엯 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="managementType.limitNameToSpecialCharacters">�씠�뒋 ���엯 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/issueType/issueTypeModify.html b/src/main/webapp/views/issueType/issueTypeModify.html index 46e76e4..a02beed 100644 --- a/src/main/webapp/views/issueType/issueTypeModify.html +++ b/src/main/webapp/views/issueType/issueTypeModify.html @@ -22,12 +22,12 @@ ng-model="vm.form.name" ng-maxlength="15" maxlength="15" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" required> <small ng-show="issueTypeModifyForm.name.$error.maxlength" class="help-block form-text text-danger" translate="common.upTo15Characters"> 理쒕� 15湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="managementType.limitNameToSpecialCharacters">�씠�뒋 ���엯 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="managementType.limitNameToSpecialCharacters">�씠�뒋 ���엯 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/notice/noticeAdd.html b/src/main/webapp/views/notice/noticeAdd.html index 65497f3..fedfbe5 100644 --- a/src/main/webapp/views/notice/noticeAdd.html +++ b/src/main/webapp/views/notice/noticeAdd.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="notice.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="notice.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/notice/noticeModify.html b/src/main/webapp/views/notice/noticeModify.html index a6a4bbb..74e10aa 100644 --- a/src/main/webapp/views/notice/noticeModify.html +++ b/src/main/webapp/views/notice/noticeModify.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="notice.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="notice.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/project/projectAdd.html b/src/main/webapp/views/project/projectAdd.html index 4b11f4c..44e3b4f 100644 --- a/src/main/webapp/views/project/projectAdd.html +++ b/src/main/webapp/views/project/projectAdd.html @@ -19,7 +19,7 @@ autofocus autocomplete="off" ng-model="vm.form.name" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" ng-maxlength="50" maxlength="50" kr-input @@ -27,7 +27,7 @@ <small ng-show="projectAddForm.name.$error.maxlength" class="help-block form-text text-danger" translate="common.upTo50Characters"> 理쒕� 50湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="project.limitNameToSpecialCharacters">�봽濡쒖젥�듃 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="project.limitNameToSpecialCharacters">�봽濡쒖젥�듃 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/project/projectModify.html b/src/main/webapp/views/project/projectModify.html index 24613ea..ddb763b 100644 --- a/src/main/webapp/views/project/projectModify.html +++ b/src/main/webapp/views/project/projectModify.html @@ -20,14 +20,14 @@ autocomplete="off" ng-model="vm.form.name" ng-maxlength="50" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" maxlength="50" kr-input required> <small ng-show="projectModifyForm.name.$error.maxlength" class="help-block form-text text-danger" translate="common.upTo50Characters"> 理쒕� 50湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="project.limitNameToSpecialCharacters">�봽濡쒖젥�듃 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="project.limitNameToSpecialCharacters">�봽濡쒖젥�듃 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <!--<div class="row">--> diff --git a/src/main/webapp/views/qna/qnaAdd.html b/src/main/webapp/views/qna/qnaAdd.html index bf32bfb..1a1c42f 100644 --- a/src/main/webapp/views/qna/qnaAdd.html +++ b/src/main/webapp/views/qna/qnaAdd.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="QNA.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="QNA.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/qna/qnaModify.html b/src/main/webapp/views/qna/qnaModify.html index 4b8d839..a14de48 100644 --- a/src/main/webapp/views/qna/qnaModify.html +++ b/src/main/webapp/views/qna/qnaModify.html @@ -21,13 +21,13 @@ class="form-control" autofocus kr-input - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" autocomplete="off" ng-model="vm.form.title" ng-maxlength="200" maxlength="200" required> - <small translate="QNA.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> +<!-- <small translate="QNA.enterSpecialCharacters">�젣紐⑹뿉�뒗 �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> <div class="form-group"> diff --git a/src/main/webapp/views/workflow/workflowAdd.html b/src/main/webapp/views/workflow/workflowAdd.html index da877b7..9360539 100644 --- a/src/main/webapp/views/workflow/workflowAdd.html +++ b/src/main/webapp/views/workflow/workflowAdd.html @@ -21,7 +21,7 @@ autofocus autocomplete="off" ng-model="vm.form.name" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" maxlength="20" kr-input ng-maxlength="20" @@ -29,7 +29,7 @@ <small ng-show="workflowAddForm.name.$error.maxlength" class="help-block form-text text-danger"> <span translate="common.upTo20Characters">理쒕� 20湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎.</span> </small> - <small translate="managementWorkflow.limitNameToSpecialCharacters">�썙�겕�뵆濡쒖슦 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="managementWorkflow.limitNameToSpecialCharacters">�썙�겕�뵆濡쒖슦 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> </div> </div> diff --git a/src/main/webapp/views/workflow/workflowModify.html b/src/main/webapp/views/workflow/workflowModify.html index 631a365..4dc739a 100644 --- a/src/main/webapp/views/workflow/workflowModify.html +++ b/src/main/webapp/views/workflow/workflowModify.html @@ -22,7 +22,7 @@ autocomplete="off" ng-model="vm.form.name" maxlength="20" - input-regex="[^a-zA-Z0-9 媛�-�옡�꽦-�뀕�뀖-�뀭\u318D\u119E\u11A2\u2022\u2025a\u00B7\uFE55]" + input-regex="/[^?a-zA-Z0-9/]/" kr-input ng-maxlength="20" required> @@ -30,7 +30,7 @@ 理쒕� 20湲��옄源뚯� �엯�젰�븷 �닔 �엳�뒿�땲�떎. </small> - <small translate="managementWorkflow.limitNameToSpecialCharacters">�썙�겕�뵆濡쒖슦 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small> + <!--<small translate="managementWorkflow.limitNameToSpecialCharacters">�썙�겕�뵆濡쒖슦 紐낆� �듅�닔 臾몄옄瑜� �엯�젰�븷 �닔 �뾾�뒿�땲�떎.</small>--> </div> </div> </div> -- Gitblit v1.8.0