url중 /nlib 제거함으로 인해 소스 수정
This commit is contained in:
parent
1dbce7c792
commit
00a9984f68
@ -109,7 +109,7 @@ public class UserInfoController extends NlibCommonController {
|
||||
return "nlib/userInfo/putMyInfo";
|
||||
}else {
|
||||
model.addAttribute("msg","비밀번호가 일치하지않습니다.");
|
||||
model.addAttribute("url","/nlib/userInfo/pwCertMyInfo.do");
|
||||
model.addAttribute("url","userInfo/pwCertMyInfo.do");
|
||||
return "nlib/cmm/alert";
|
||||
}
|
||||
}
|
||||
|
||||
@ -98,6 +98,6 @@ function popSubmit() {
|
||||
</c:forEach>
|
||||
</table>
|
||||
|
||||
<a href="javascript:void(0)" onclick="gotoInPop('/nlib/inform/selectNCultureOperationInfo.do')">팝업내에서 링크이동</a>
|
||||
<a href="javascript:void(0)" onclick="gotoInPop('/inform/selectNCultureOperationInfo.do')">팝업내에서 링크이동</a>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -38,7 +38,7 @@ function goFindPw(){
|
||||
if(confirm("비밀번호를 초기화 하시겠습니까?"))
|
||||
{
|
||||
$.ajax({
|
||||
url : "/nlib/member/initPassword.ajax",
|
||||
url : "/member/initPassword.ajax",
|
||||
type : "POST",
|
||||
data : data,
|
||||
success : function(result){
|
||||
|
||||
@ -75,7 +75,7 @@ function signUp(){
|
||||
//연락받을 이메일 입력
|
||||
%>
|
||||
$("#loginUserId").val($("#email").val());
|
||||
document.joinForm.action="/nlib/member/insertMemberInfo.do";
|
||||
document.joinForm.action="/member/insertMemberInfo.do";
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
@ -149,7 +149,7 @@ function emailCert(){
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url : "/nlib/member/emailCertNum.ajax",
|
||||
url : "/member/emailCertNum.ajax",
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"email" : $("#email").val()},
|
||||
@ -179,7 +179,7 @@ function certEmailCheck(){
|
||||
//ajax 사용자가 입력한 번호를 보내 RESTfull server에서 확인 success or fail 반환 (3분이내인지도)
|
||||
%>
|
||||
$.ajax({
|
||||
url : "/nlib/member/emailCertNumChk.ajax",
|
||||
url : "/member/emailCertNumChk.ajax",
|
||||
type : "POST",
|
||||
data : {"emailVrfctNo" : $("#emailVrfctNo").val(),
|
||||
"email" : $("#email").val()},
|
||||
@ -215,7 +215,7 @@ function mobileCert(){
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url : "/nlib/member/mobileCertNum.ajax",
|
||||
url : "/member/mobileCertNum.ajax",
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"mobileNo" : $("#mobileNo").val()},
|
||||
@ -236,7 +236,7 @@ function certMobileCheck(){
|
||||
//ajax 사용자가 입력한 번호를 보내 RESTfull server에서 확인 success or fail 반환 (3분이내인지도)
|
||||
%>
|
||||
$.ajax({
|
||||
url : "/nlib/member/mobileCertNumChk.ajax",
|
||||
url : "/member/mobileCertNumChk.ajax",
|
||||
type : "POST",
|
||||
data : {"mobileVrfctNo" : $("#mobileVrfctNo").val(),
|
||||
"mobileNo" : $("#mobileNo").val()},
|
||||
@ -246,7 +246,7 @@ function certMobileCheck(){
|
||||
{
|
||||
alert("인증되었습니다.");
|
||||
$("#mobileCertYn").val("Y");
|
||||
document.joinForm.action="/nlib/member/selectAlreadySignUpMobilePopup.do";
|
||||
document.joinForm.action="/member/selectAlreadySignUpMobilePopup.do";
|
||||
fn_layerPopFormSubmit("joinForm",false);
|
||||
}else
|
||||
{
|
||||
|
||||
@ -140,7 +140,7 @@ function changePassword(){
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
url : "/nlib/member/changePassword.ajax",
|
||||
url : "/member/changePassword.ajax",
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"password" : $("#password").val()
|
||||
@ -169,7 +169,7 @@ function emailCert(){
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url : "/nlib/member/emailCertNum.ajax",
|
||||
url : "/member/emailCertNum.ajax",
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"email" : $("#email").val(),
|
||||
@ -200,7 +200,7 @@ function certEmailCheck(){
|
||||
//ajax 사용자가 입력한 번호를 보내 RESTfull server에서 확인 success or fail 반환 (3분이내인지도)
|
||||
%>
|
||||
$.ajax({
|
||||
url : "/nlib/member/emailCertNumChk.ajax",
|
||||
url : "/member/emailCertNumChk.ajax",
|
||||
type : "POST",
|
||||
data : {"emailVrfctNo" : $("#emailVrfctNo").val(),
|
||||
"email" : $("#email").val(),
|
||||
@ -237,7 +237,7 @@ function mobileCert(){
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url : "/nlib/member/mobileCertNum.ajax",
|
||||
url : "/member/mobileCertNum.ajax",
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"mobileNo" : $("#mobileNo").val(),
|
||||
@ -260,7 +260,7 @@ function certMobileCheck(){
|
||||
//ajax 사용자가 입력한 번호를 보내 RESTfull server에서 확인 success or fail 반환 (3분이내인지도)
|
||||
%>
|
||||
$.ajax({
|
||||
url : "/nlib/member/mobileCertNumChk.ajax",
|
||||
url : "/member/mobileCertNumChk.ajax",
|
||||
type : "POST",
|
||||
data : {"mobileVrfctNo" : $("#mobileVrfctNo").val(),
|
||||
"mobileNo" : $("#mobileNo").val(),
|
||||
|
||||
@ -43,7 +43,7 @@ if("${message}"!="")
|
||||
|
||||
});
|
||||
function goPutMyInfo(){
|
||||
document.pwInputForm.action="/nlib/userInfo/putMyInfo.do";
|
||||
document.pwInputForm.action="/userInfo/putMyInfo.do";
|
||||
document.pwInputForm.submit();
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -27,13 +27,13 @@ JSESSIONID = <%=session.getId() %>
|
||||
<br>
|
||||
|
||||
<h2>로그인</h2>
|
||||
<a href="/nlib/login/loginDept.do">로그인</a>
|
||||
<a href="/login/loginDept.do">로그인</a>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<h2>로그인이 필요한 화면 링크</h2>
|
||||
<a href="/nlib/system/reloadProperties.do">프로퍼티갱신</a>
|
||||
<a href="/system/reloadProperties.do">프로퍼티갱신</a>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
@ -27,18 +27,18 @@ JSESSIONID = <%=session.getId() %>
|
||||
<br>
|
||||
|
||||
<h2>HOME</h2>
|
||||
<a href="/nlib/">HOME</a>
|
||||
<a href="/">HOME</a>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<h2>로그인</h2>
|
||||
<a href="/nlib/login/loginCouncil.do">로그인</a>
|
||||
<a href="/login/loginCouncil.do">로그인</a>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<h2>로그인이 필요한 화면 링크</h2>
|
||||
<a href="/nlib/system/reloadProperties.do">프로퍼티갱신</a>
|
||||
<a href="/system/reloadProperties.do">프로퍼티갱신</a>
|
||||
|
||||
<%
|
||||
String coutTest = "서울특별시 마포구 ";
|
||||
|
||||
@ -19,7 +19,7 @@ http://localhost:8080/nlib/fileupload/js/dropzone.css
|
||||
<body>
|
||||
|
||||
<div id="dropzone">
|
||||
<form action="/nlib/fileupload/uploadFile.do"
|
||||
<form action="/fileupload/uploadFile.do"
|
||||
class="dropzone needsclick" id="myDropzone">
|
||||
<div class="dz-message needsclick">
|
||||
<button type="button" class="dz-button">Drop files here or click to select files.</button><br />
|
||||
|
||||
@ -22,14 +22,14 @@ function popPop() {
|
||||
|
||||
$.ajax({
|
||||
type: "post",
|
||||
url: "https://seoul.nculture.org/nlib/code/listCodes.do",
|
||||
url: "https://seoul.nculture.org/code/listCodes.do",
|
||||
}).done(function(response){
|
||||
$("#myPop").html(response);
|
||||
});
|
||||
}
|
||||
|
||||
function popPop2() {
|
||||
gotoInPop("https://seoul.nculture.org/nlib/code/listCodesPopup.do");
|
||||
gotoInPop("https://seoul.nculture.org/code/listCodesPopup.do");
|
||||
}
|
||||
|
||||
function gotoInPop(url) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user