시큐어코딩 적용

This commit is contained in:
KNKIM 2021-07-29 09:16:58 +09:00
parent db3d9f65ee
commit 42e0c9b79a
4 changed files with 70 additions and 70 deletions

View File

@ -27,11 +27,6 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Apache Tomcat v8.5">
<attributes>
<attribute name="owner.project.facets" value="jst.web"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>

View File

@ -34,7 +34,7 @@
<c:set var="pageTitle">묻고답하기</c:set>
<!DOCTYPE html>
<html>
<html lang="ko">
<head>
<title>${pageTitle}</title>
@ -167,12 +167,12 @@ function fn_search_article(pageSize, pageIndex) {
<input type="text" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" size="5" maxlength="5" />
<input type="text" name="searchKeyword" id="searchKeyword" title="검색어" value="${searchKeyword }" size="35" maxlength="50" />
<input type="button" name="btnSearch" id="btnSearch" value="검색" />
<input type="button" name="btnSearch" id="btnSearch" title="검색버튼" value="검색" />
<div id="jsGrid" name="jsGrid" style="height: 100%"></div>
<button type="button" name="btnNew" id="btnNew" class="float"
<button type="button" name="btnNew" id="btnNew" class="float" title="글쓰기버튼"
onclick="javascript:location.href='${pageContext.request.contextPath}/board/insertQnAForm.do';">글쓰기</button>
<input type="text" name="articleNo" id="articleNo" value="" title="선택글번호" readonly />

View File

@ -9,7 +9,16 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="<c:url value='/css/nlib.css' />" rel="stylesheet" type="text/css">
<title>${pageTitle}</title>
<title>온라인 자료대출관리 (N-LIB)</title>
<script type="text/javascript">
//제목 설정
$( document ).ready(function() {
document.title = "[NLIB] " + $("#content-wrap-popup").find("title").text();
});
</script>
</head>
<body>
<div id="page-container">
@ -19,11 +28,6 @@
<div id="footer-popup"><tiles:insertAttribute name="footer" /></div>
</div>
<script type="text/javascript">
$(function() {
});
</script>
</body>
</html>

View File

@ -17,6 +17,16 @@
<script src="${pageContext.request.contextPath}/js/nlib.js"></script>
<title>온라인 자료대출관리 (N-LIB)</title>
<script type="text/javascript">
// 제목 설정
$( document ).ready(function() {
document.title = "[NLIB] " + $("#content-wrap").find("title").text();
});
</script>
</head>
<body>
@ -43,14 +53,5 @@
</div>
</div>
<script type="text/javascript">
// 제목 설정
$( document ).ready(function() {
document.title = "[NLIB] " + $("#content-wrap").find("title").text();
});
</script>
</body>
</html>