Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
b845bc00e8
@ -161,7 +161,40 @@ public class CollectionVO extends PagingVO {
|
|||||||
//---------------------------------------------
|
//---------------------------------------------
|
||||||
protected String deptNm; /* 관리부서이름 */
|
protected String deptNm; /* 관리부서이름 */
|
||||||
protected String domainHostNm; /* 관리부서 호스트주소 */
|
protected String domainHostNm; /* 관리부서 호스트주소 */
|
||||||
// 생성자
|
|
||||||
|
|
||||||
|
//---------------------------------------------
|
||||||
|
// 각종 상태 제공 서비스
|
||||||
|
//---------------------------------------------
|
||||||
|
public boolean canRead() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean canRent() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean canOnline() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean canReadNow() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean canRentNow() {
|
||||||
|
return canRentAppNow() || canRentResNow();
|
||||||
|
}
|
||||||
|
public boolean canRentAppNow() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean canRentResNow() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public boolean canOnlineNow() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------
|
||||||
|
// 생성자
|
||||||
|
//---------------------------------------------
|
||||||
public CollectionVO() {
|
public CollectionVO() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,7 +30,7 @@ Globals.DbType = maria
|
|||||||
# > grant all privileges on uac_cltr_db.* to 'uac_cltr';
|
# > grant all privileges on uac_cltr_db.* to 'uac_cltr';
|
||||||
# > flush privileges;
|
# > flush privileges;
|
||||||
Globals.maria.DriverClassName=org.mariadb.jdbc.Driver
|
Globals.maria.DriverClassName=org.mariadb.jdbc.Driver
|
||||||
Globals.maria.Url=jdbc:mariadb://nlib-db.nculture.org:3306/uac_cltr_db
|
Globals.maria.Url=jdbc:mariadb://210.181.197.70:3306/uac_cltr_db
|
||||||
Globals.maria.UserName = uac_cltr
|
Globals.maria.UserName = uac_cltr
|
||||||
Globals.maria.Password = uac_cltr
|
Globals.maria.Password = uac_cltr
|
||||||
|
|
||||||
|
|||||||
@ -36,7 +36,7 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
// 메시지 표출
|
// 메시지 표출
|
||||||
if(!fn_isEmpty('${message}')) {
|
if(!fn_isEmpty('${message}')) {
|
||||||
alert("${message}");
|
alert("${message}");
|
||||||
@ -155,6 +155,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<!-- 공지사항 섹션 -->
|
<!-- 공지사항 섹션 -->
|
||||||
<div class="location noti-data">
|
<div class="location noti-data">
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -185,12 +185,21 @@ $(document).ready(function(){
|
|||||||
$('.pop-change').fadeOut();
|
$('.pop-change').fadeOut();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 필터 팝업
|
||||||
|
$('.filter-btn').click(function(){
|
||||||
|
$('.article-side').fadeIn();
|
||||||
|
});
|
||||||
|
// 닫기
|
||||||
|
$('.filter-close').on('click', function () {
|
||||||
|
$('.article-side').fadeOut();
|
||||||
|
});
|
||||||
|
|
||||||
// 검색 닫기
|
// 검색 닫기
|
||||||
$('.search-close').on('click', function () {
|
$('.search-close').on('click', function () {
|
||||||
$('.search-wrap').hide();
|
$('.search-wrap').hide();
|
||||||
$('.nav-wrap').show();
|
$('.nav-wrap').show();
|
||||||
});
|
});
|
||||||
|
|
||||||
/* 메인 메뉴 반응형 */
|
/* 메인 메뉴 반응형 */
|
||||||
jQuery(function ($) {
|
jQuery(function ($) {
|
||||||
$.fn.responsivenav = function (args) {
|
$.fn.responsivenav = function (args) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user