Merge branch 'master' of http://rosewiper@vcs.iten.co.kr:9999/hylee/mjon_git
This commit is contained in:
commit
8a440f9ba9
@ -279,6 +279,11 @@ public class MjonMsgCampainDataController {
|
||||
}
|
||||
model.addAttribute("letterVO", letterVO);
|
||||
|
||||
// 문자 재전송 New
|
||||
model.addAttribute("msgResendAllFlag", searchVO.getMsgResendAllFlag());
|
||||
model.addAttribute("msgResendAllGroupId", searchVO.getMsgResendAllGroupId());
|
||||
model.addAttribute("msgResendAllAdvertiseYn", searchVO.getMsgResendAllAdvertiseYn());
|
||||
|
||||
return "web/msgcampain/MsgDataView";
|
||||
}
|
||||
|
||||
|
||||
@ -157,5 +157,12 @@ public interface MjonMsgDataService {
|
||||
|
||||
public List<MjonMsgVO> selectPayUserWithKakaoList(MjonMsgVO mjonMsgVO) throws Exception;
|
||||
|
||||
public List<MjonMsgVO> selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception;
|
||||
public List<MjonMsgVO> selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception;
|
||||
|
||||
// 문자 그룹정보 => 재전송용
|
||||
public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception;
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
public List<MjonMsgDataVO> selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception;
|
||||
|
||||
}
|
||||
|
||||
@ -60,6 +60,71 @@ public class MjonMsgDataVO extends UserDefaultVO{
|
||||
|
||||
private String userIp; //사용자 아이피 정보
|
||||
private String refundYn; //문자전송 실패시 환불처리 완료 여부
|
||||
|
||||
private String msgGroupId;
|
||||
private String filePath1; //그림이미지1 경로
|
||||
private String filePath2; //그림이미지2 경로
|
||||
private String filePath3; //그림이미지3 경로
|
||||
private String callFrom;
|
||||
private String callTo;
|
||||
private String msgResendAllFlag;
|
||||
private String msgResendAllGroupId;
|
||||
private String msgResendAllAdvertiseYn;
|
||||
|
||||
public String getMsgGroupId() {
|
||||
return msgGroupId;
|
||||
}
|
||||
public void setMsgGroupId(String msgGroupId) {
|
||||
this.msgGroupId = msgGroupId;
|
||||
}
|
||||
public String getFilePath1() {
|
||||
return filePath1;
|
||||
}
|
||||
public void setFilePath1(String filePath1) {
|
||||
this.filePath1 = filePath1;
|
||||
}
|
||||
public String getFilePath2() {
|
||||
return filePath2;
|
||||
}
|
||||
public void setFilePath2(String filePath2) {
|
||||
this.filePath2 = filePath2;
|
||||
}
|
||||
public String getFilePath3() {
|
||||
return filePath3;
|
||||
}
|
||||
public void setFilePath3(String filePath3) {
|
||||
this.filePath3 = filePath3;
|
||||
}
|
||||
public String getCallFrom() {
|
||||
return callFrom;
|
||||
}
|
||||
public void setCallFrom(String callFrom) {
|
||||
this.callFrom = callFrom;
|
||||
}
|
||||
public String getCallTo() {
|
||||
return callTo;
|
||||
}
|
||||
public void setCallTo(String callTo) {
|
||||
this.callTo = callTo;
|
||||
}
|
||||
public String getMsgResendAllFlag() {
|
||||
return msgResendAllFlag;
|
||||
}
|
||||
public void setMsgResendAllFlag(String msgResendAllFlag) {
|
||||
this.msgResendAllFlag = msgResendAllFlag;
|
||||
}
|
||||
public String getMsgResendAllGroupId() {
|
||||
return msgResendAllGroupId;
|
||||
}
|
||||
public void setMsgResendAllGroupId(String msgResendAllGroupId) {
|
||||
this.msgResendAllGroupId = msgResendAllGroupId;
|
||||
}
|
||||
public String getMsgResendAllAdvertiseYn() {
|
||||
return msgResendAllAdvertiseYn;
|
||||
}
|
||||
public void setMsgResendAllAdvertiseYn(String msgResendAllAdvertiseYn) {
|
||||
this.msgResendAllAdvertiseYn = msgResendAllAdvertiseYn;
|
||||
}
|
||||
|
||||
public String getCodeId() {
|
||||
return codeId;
|
||||
|
||||
@ -329,4 +329,16 @@ public class MjonMsgDataDAO extends EgovAbstractDAO {
|
||||
public List<MjonMsgVO> selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception{
|
||||
return (List<MjonMsgVO>) list("mjonMsgDAO.selectPayUserWithKakaoSumList",mjonMsgVO);
|
||||
}
|
||||
|
||||
// 문자 그룹정보 => 재전송용
|
||||
public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{
|
||||
return (MjonMsgDataVO) select("MjonMsgDataDAO.selectMjMsgGroupInfoByResend", mjonMsgDataVO);
|
||||
}
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
@SuppressWarnings("unchecked")
|
||||
public List<MjonMsgDataVO> selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{
|
||||
return (List<MjonMsgDataVO>) list("MjonMsgDataDAO.selectMjMsgListByResend", mjonMsgDataVO);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -2279,5 +2279,16 @@ public class MjonMsgDataServiceImpl extends EgovAbstractServiceImpl implements M
|
||||
@Override
|
||||
public List<MjonMsgVO> selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception {
|
||||
return mjonMsgDataDAO.selectPayUserWithKakaoSumList(mjonMsgVO);
|
||||
}
|
||||
}
|
||||
|
||||
// 문자 그룹정보 => 재전송용
|
||||
public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{
|
||||
return mjonMsgDataDAO.selectMjMsgGroupInfoByResend(mjonMsgDataVO);
|
||||
}
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
public List<MjonMsgDataVO> selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{
|
||||
return mjonMsgDataDAO.selectMjMsgListByResend(mjonMsgDataVO);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -398,6 +398,11 @@ public class MjonMsgDataController {
|
||||
|
||||
}
|
||||
|
||||
// 문자 재전송 New
|
||||
model.addAttribute("msgResendAllFlag", searchVO.getMsgResendAllFlag());
|
||||
model.addAttribute("msgResendAllGroupId", searchVO.getMsgResendAllGroupId());
|
||||
model.addAttribute("msgResendAllAdvertiseYn", searchVO.getMsgResendAllAdvertiseYn());
|
||||
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
|
||||
@ -5865,4 +5870,81 @@ public class MjonMsgDataController {
|
||||
return rtnValue;
|
||||
}
|
||||
|
||||
@RequestMapping(value= {"/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do"})
|
||||
public ModelAndView selectMjMsgGroupInfoByResendAjax(
|
||||
MjonMsgDataVO mjonMsgDataVO,
|
||||
HttpServletRequest request,
|
||||
ModelMap model) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
boolean isSuccess = true;
|
||||
String msg = "";
|
||||
|
||||
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
|
||||
|
||||
try {
|
||||
if(userId.equals("")) {
|
||||
isSuccess = false;
|
||||
msg = "로그인이 필요합니다.";
|
||||
}
|
||||
else {
|
||||
mjonMsgDataVO.setUserId(userId);
|
||||
mjonMsgDataVO.setMsgGroupId(mjonMsgDataVO.getMsgResendAllGroupId());
|
||||
mjonMsgDataVO = mjonMsgDataService.selectMjMsgGroupInfoByResend(mjonMsgDataVO);
|
||||
}
|
||||
}
|
||||
catch(Exception e) {
|
||||
isSuccess = false;
|
||||
msg = e.getMessage();
|
||||
}
|
||||
|
||||
modelAndView.addObject("isSuccess", isSuccess);
|
||||
modelAndView.addObject("msg", msg);
|
||||
modelAndView.addObject("result", mjonMsgDataVO);
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
@RequestMapping(value= {"/web/mjon/msgdata/selectMjMsgListByResendAjax.do"})
|
||||
public ModelAndView selectMjMsgListByResendAjax(
|
||||
MjonMsgDataVO mjonMsgDataVO,
|
||||
HttpServletRequest request,
|
||||
ModelMap model) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
boolean isSuccess = true;
|
||||
String msg = "";
|
||||
List<MjonMsgDataVO> resultList = null;
|
||||
|
||||
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
|
||||
|
||||
try {
|
||||
if(userId.equals("")) {
|
||||
isSuccess = false;
|
||||
msg = "로그인이 필요합니다.";
|
||||
}
|
||||
else {
|
||||
mjonMsgDataVO.setUserId(userId);
|
||||
mjonMsgDataVO.setMsgGroupId(mjonMsgDataVO.getMsgResendAllGroupId());
|
||||
resultList = mjonMsgDataService.selectMjMsgListByResend(mjonMsgDataVO);
|
||||
}
|
||||
}
|
||||
catch(Exception e) {
|
||||
isSuccess = false;
|
||||
msg = e.getMessage();
|
||||
}
|
||||
|
||||
modelAndView.addObject("isSuccess", isSuccess);
|
||||
modelAndView.addObject("msg", msg);
|
||||
modelAndView.addObject("resultList", resultList);
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -7248,5 +7248,55 @@
|
||||
)FN1
|
||||
ORDER BY msgGroupId DESC
|
||||
</select>
|
||||
|
||||
<!-- 문자 그룹정보 => 재전송용 -->
|
||||
<select id="MjonMsgDataDAO.selectMjMsgGroupInfoByResend" parameterClass="mjonMsgDataVO" resultClass="mjonMsgDataVO">
|
||||
SELECT
|
||||
CALL_FROM AS callFrom
|
||||
, SUBJECT AS subject
|
||||
, SMS_TXT AS smsTxt
|
||||
, (
|
||||
SELECT
|
||||
IFNULL(FILE_PATH1, '')
|
||||
FROM MJ_MSG_DATA
|
||||
WHERE
|
||||
USER_ID = #userId#
|
||||
AND MSG_GROUP_ID = #msgGroupId#
|
||||
LIMIT 1
|
||||
) filePath1
|
||||
, (
|
||||
SELECT
|
||||
IFNULL(FILE_PATH2, '')
|
||||
FROM MJ_MSG_DATA
|
||||
WHERE
|
||||
USER_ID = #userId#
|
||||
AND MSG_GROUP_ID = #msgGroupId#
|
||||
LIMIT 1
|
||||
) filePath2
|
||||
, (
|
||||
SELECT
|
||||
IFNULL(FILE_PATH3, '')
|
||||
FROM MJ_MSG_DATA
|
||||
WHERE
|
||||
USER_ID = #userId#
|
||||
AND MSG_GROUP_ID = #msgGroupId#
|
||||
LIMIT 1
|
||||
) filePath3
|
||||
FROM MJ_MSG_GROUP_DATA
|
||||
WHERE
|
||||
USER_ID = #userId#
|
||||
AND MSG_GROUP_ID = #msgGroupId#
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<select id="MjonMsgDataDAO.selectMjMsgListByResend" parameterClass="mjonMsgDataVO" resultClass="mjonMsgDataVO">
|
||||
SELECT
|
||||
CALL_TO AS callTo
|
||||
FROM MJ_MSG_DATA
|
||||
WHERE
|
||||
USER_ID = #userId#
|
||||
AND MSG_GROUP_ID = #msgGroupId#
|
||||
</select>
|
||||
|
||||
</sqlMap>
|
||||
|
||||
|
||||
@ -3858,7 +3858,7 @@ function kakaoATDelayCancel(msgGroupId){
|
||||
<c:when test="${mjonMsgSentList.agentCode == '01' && mjonMsgSentList.fileCnt > 1}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:when test="${(mjonMsgSentList.agentCode == '02' || mjonMsgSentList.agentCode == '03' || mjonMsgSentList.agentCode == '04') && mjonMsgSentList.fileCnt > 0}">
|
||||
<c:when test="${mjonMsgSentList.agentCode != '01' && mjonMsgSentList.fileCnt > 0}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
@ -4068,7 +4068,7 @@ function kakaoATDelayCancel(msgGroupId){
|
||||
<c:when test="${mjonMsgSentList.agentCode == '01' && mjonMsgSentList.fileCnt > 1}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:when test="${(mjonMsgSentList.agentCode == '02' || mjonMsgSentList.agentCode == '03' || mjonMsgSentList.agentCode == '04') && mjonMsgSentList.fileCnt > 0}">
|
||||
<c:when test="${mjonMsgSentList.agentCode != '01' && mjonMsgSentList.fileCnt > 0}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
@ -4287,7 +4287,7 @@ function kakaoATDelayCancel(msgGroupId){
|
||||
<c:when test="${mjonMsgDelaySentList.agentCode == '01' && mjonMsgDelaySentList.fileCnt > 1}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:when test="${(mjonMsgDelaySentList.agentCode == '02' || mjonMsgDelaySentList.agentCode == '03' || mjonMsgDelaySentList.agentCode == '04') && mjonMsgDelaySentList.fileCnt > 0}">
|
||||
<c:when test="${mjonMsgDelaySentList.agentCode != '01' && mjonMsgDelaySentList.fileCnt > 0}">
|
||||
그림
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
|
||||
<script src="/pb/js/jquery-3.5.0.js"></script>
|
||||
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
|
||||
<script src="//mozilla.github.io/pdf.js/build/pdf.js"></script>
|
||||
<script src="/js/pdfjs-3.11.174/build/pdf.js"></script>
|
||||
|
||||
<style>
|
||||
html {
|
||||
|
||||
@ -40,7 +40,7 @@ html {
|
||||
|
||||
<script src="/pb/js/jquery-3.5.0.js"></script>
|
||||
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
|
||||
<script src="//mozilla.github.io/pdf.js/build/pdf.js"></script>
|
||||
<script src="/js/pdfjs-3.11.174/build/pdf.js"></script>
|
||||
|
||||
<script type="text/javaScript" language="javascript">
|
||||
|
||||
|
||||
@ -295,7 +295,7 @@ function leadingZeros(n, digits) {
|
||||
// 슬라이드 이미지 변경
|
||||
function setMainSlideImgChange() {
|
||||
var parentsDayShow = false;
|
||||
var rsvDate = "2023-09-04";
|
||||
var rsvDate = "2023-10-10";
|
||||
var now = new Date();
|
||||
now = leadingZeros(now.getFullYear(), 4) + '-' + leadingZeros(now.getMonth() + 1, 2) + '-' + leadingZeros(now.getDate(), 2);
|
||||
if (now >= rsvDate) {
|
||||
@ -304,10 +304,10 @@ function setMainSlideImgChange() {
|
||||
|
||||
// 석가탄신일 => 현충일 이미지로 변경
|
||||
if (parentsDayShow == true) {
|
||||
$("#mainSlideImg_1001").attr("src", "/publish/images/main/f_visual_01_20230904.jpg");
|
||||
$("#mainSlideImg_1001").attr("alt", "문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 풍성한 한가위 되세요 풍요로움과 넉넉함이 함께하는 한가위가 되시길 기원합니다. 秋夕 행복하고 안전한 귀성길 되세요! 즐겁고 행복한 한가위 보내시고, 고향길 안전하게 다녀오시길 바랍니다.");
|
||||
$("#mainSlideImg_1002").attr("src", "/publish/images/main/f_visual_03_20230904.jpg");
|
||||
$("#mainSlideImg_1002").attr("alt", "다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 밝은 보름달처럼 행복한 추석 보내세요 秋夕 우리 민족 최대의 큰 명절 추석을 맞이하여 보름달에 걱정근심 맡기고 건강과 안녕을 기원하며 가족들과 함께 뜻 깊고 따뜻한 명절이 되시기를 바랍니다. 고향 가시는 길 안전하고 편안하게 다녀오십시오 항상 웃음 가득한 날이 가득하시길 바랍니다. 감사합니다 - 문자온 일동 - 이벤트 기간 : 09월 25일부터 9월 30일까지 문자온몰에서 추석맞이 쇼핑도 하GO! 소원도 빌GO! 추석맞이 소원빌기 보름달님 제 소원을 들어주세요 제 소원은 바로 가족 모두가 건강하는거예요~~ ID : MUNJAON_USER 한가위를 맞이하여 소원빌기 이벤트를 진행합니다. 공식 SNS를 팔로우 한 후 이벤트 게시물에 자신이 바라는 소원을 댓글로 달아주세요! 추첨을 통해 푸짐한 선물을 드립니다. ▶ 당첨자 발표 : 10월 2일 Korea Thanksgiving Day 추석맞이 배송비무료 EVENT 2099.09.28 ~ 2099.09.30");
|
||||
$("#mainSlideImg_1001").attr("src", "/publish/images/main/f_visual_01_20231006.jpg");
|
||||
$("#mainSlideImg_1001").attr("alt", "문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?");
|
||||
$("#mainSlideImg_1002").attr("src", "/publish/images/main/f_visual_03_20231006.jpg");
|
||||
$("#mainSlideImg_1002").attr("alt", "다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01 10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567");
|
||||
|
||||
// Main Visual Swiper
|
||||
getMainVisualSwiper();
|
||||
@ -1237,17 +1237,13 @@ function fn_click_banner_add_stat(bannerMenuCode){
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_06_20230802.jpg" alt="문자온, 카카오 '알림톡' 서비스 오픈! 문자온 알림톡, 대한민국 최저가 선언! 조건없이 무조건 6.9원! 카카오톡 채널아이디 추가를 하지 않은 이용자에게도 카카오톡 메시지 발송이 가능한 서비스! 알림톡 바로가기 알림톡 도착 kakao 문자온에서 알림톡이 도착하였습니다! 기업전용/1,000자 이하 텍스트 & 이미지/문자 대비 65% 저렴" usemap="#allimtalk-map"></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<!-- <div class="slideImg"><img id="mainSlideImg_1001" src="/publish/images/main/f_visual_01_20230918.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 풍요로운 한가위 되세요 유난히도 더웠던 여름이 엊그제 같은데 벌써 한없이 밝은 보름달이 기다려지는 한가위가 다가왔습니다. 가정에 평안함과 넉넉함이 함께하는 한가위가 되시길 기원합니다. 추석 민족의 명절 추석입니다. 풍요롭고 즐거운 한가위 보내시기 바랍니다." usemap="#image-map"></div> -->
|
||||
<!-- <div class="slideImg"><img src="/publish/images/main/f_visual_01_20230930.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 개천절 단군왕검께서 우리나라를 세우신 날을 기념하는 개천절입니다 사랑 가득한 가을 보내세요" usemap="#image-map" /></div> -->
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_01_20231004.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 책과 함께 하는 가을 여행 10월 9일 한글날 아름다운 우리말을 사용하며, 행복한 한글날 보내시길 바랍니다." usemap="#image-map" /></div>
|
||||
<div class="slideImg"><img id="mainSlideImg_1001" src="/publish/images/main/f_visual_01_20231006.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?" usemap="#image-map" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_02_20221116.jpg" alt="문자도 보내고! 현금도 챙기는! 문자온만의 특별한 혜택! 결제금액의 2% 포인트 추가 적립! 포인트 1만점 이상 적립 시 현금페이백" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<!-- <div class="slideImg"><img id="mainSlideImg_1002" src="/publish/images/main/f_visual_03_20230918.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 자연의 맛과 정성을 담은 추석송편 사전예약 추석 특선 오색송편 선물세트 30개 세트 ₩29,000 오색 송편 사전예약 구매하고 무료배송 혜택과 우리쌀로 빚은 식혜도 받아가세요! 예약기간 : 9월 21일 - 9월 24일 ·행사기간 : 9월 21일 9월 30일 예약문의 1234-5678 秋夕 문자온몰 추석특집 최대 15,000원 할인!! 떴다떴어 추석쿠폰대전 이벤트 기간 2099.09.01~09.31 추석할인쿠폰 10,000원 100,000원 이상 구매시 사용가능 둥근 보름달 같은 추석맞이쇼핑대전 문자온샵 추석맞이 다양한 쇼핑 이벤트 더도 말고 한가위만 같아라! 보름달처럼 풍성한 혜택으로 찾아갑니다. 지금 당장! 추석맞이 특별혜택을 지금 바로 체험해보세요! 구매한 금액 상관없이 전품목 무료배송 추석선물 예약구매 할인쿠폰 증정 보름달처럼 가득한 혜택 포인트적립 두배!"></div> -->
|
||||
<!-- <div class="slideImg"><img src="/publish/images/main/f_visual_03_20230930.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. AUTUMN 가을맞이 정기세일 9.15-10.15 가을맞이 특별한 세일 전품목 최대 70% 할인의 기회를 누리세요! 10월 3일(화) 휴진 개천절 휴진안내 예약 및 내원에 착오 없으시길 바랍니다. 건강한 10월 보내세요 S M T W T F S 1 2-3(휴진) 4 5 6 7 10월 3일은 개천절은 하늘이 열린날 개천절 휴/진/안/내" /></div> -->
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_03_20231004.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. Fall in Music Autumn Concert 09/15(토) 출연가수 온밴드, 온스파, 온와이스, 온뱅, 문자아이들, 온마이걸 주관: 문자온 코리아 협찬: 문자온추진위원회 후원 : 문자온추진위원회 한글날 한글날 이벤트 3행시 짓기 #한글날 #쿠폰 #이벤트 #좋아요 #댓글 이벤트 기간 2023.10.01 ~ 2023.10.06 당첨상품 음료 기프티콘 쿠폰(200명) 100% 국내산 유기농 우리김치 김장김치 예약판매 최적의 산지에서 수확한 신선한 배추와 엄선된 양념으로 보다 깊은 감칠맛을 선사합니다. 행사기간 2029.10.20~11.7" /></div>
|
||||
<div class="slideImg"><img id="mainSlideImg_1002" src="/publish/images/main/f_visual_03_20231006.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01 10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_04_20221116.jpg" alt="문자는 이제, 문자온! 선택은 역시 문자온! 문자사이트 선택의 5가지 기준 1. 가격, 속도, 성능, 기능, 보안이 보장되는가? 2. 결제, 정산, 계산서 발행 등 업무가 자동화 되어 있고 편리한가? 3. 최신 IT 기술과 트렌드가 반영되어 있는가? 4. 회원가입 및 발신번호 인증이 쉽고 빠르며, 대량문자를 전송하기에 사용이 편리한가? 5. 매일 문자샘플이 업데이트 되고, CS 및 기술응대가 실시간적으로 이루어지는가?" /></div>
|
||||
|
||||
@ -20,6 +20,10 @@ var tableAddr = null; //주소록 불러오기 팝업 Tabulator 변수
|
||||
var loginVO = '${loginVO}';
|
||||
|
||||
var popCustomScrT=0; // 맞춤제작 요청 JSPark => 2023.02.21 추가
|
||||
var msgResendAllFlag = "${msgResendAllFlag}";
|
||||
var msgResendAllGroupId = "${msgResendAllGroupId}";
|
||||
var msgResendAllAdvertiseYn = "${msgResendAllAdvertiseYn}";
|
||||
|
||||
$(document).ready(function(){
|
||||
//문자 발송 화면 폼 불러오기
|
||||
listMsgDataView();
|
||||
@ -50,8 +54,102 @@ $(document).ready(function(){
|
||||
// 맞춤제작 요청 JSPark => 2023.02.21 추가
|
||||
//맞춤제작 등록 Popup
|
||||
//customPopup();
|
||||
|
||||
});
|
||||
|
||||
//문자 그룹정보 => 재전송용
|
||||
function getMjMsgGroupInfoByResend() {
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do",
|
||||
data: {"msgResendAllGroupId" : msgResendAllGroupId},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if(data.isSuccess == true){
|
||||
//data.result.callFrom;
|
||||
//data.result.subject;
|
||||
//data.result.smsTxt;
|
||||
//data.result.filePath1;
|
||||
//data.result.filePath2;
|
||||
//data.result.filePath3;
|
||||
|
||||
// 발신번호
|
||||
var reCallFrom = $.trim(removeDash($("#callFromList option:selected").val()));
|
||||
if ($.trim(removeDash(data.result.callFrom)) != reCallFrom) {
|
||||
alert("선택된 발신번호가 이전에 발송한 발신번호가 아닙니다.\n발신번호를 확인해주세요.")
|
||||
}
|
||||
|
||||
/*
|
||||
// 제목
|
||||
if (data.result.subject != null && data.result.subject != "") {
|
||||
$('.msg_title').addClass('active');
|
||||
$("input:radio[name='title_status']:radio[value='Y']").prop('checked', true); // 선택하기
|
||||
$('.textbox').show();
|
||||
$("#mmsSubject").val(data.result.subject);
|
||||
}
|
||||
|
||||
var reSmsTxt = data.result.smsTxt.replaceAll("<br/>", "\n"); //줄발꿈문자 변환하기
|
||||
// 문자내용
|
||||
if(reSmsTxt != null){
|
||||
$("#smsTxtArea").val(reSmsTxt);
|
||||
fnByteString(reSmsTxt);
|
||||
}
|
||||
*/
|
||||
|
||||
} else {
|
||||
alert("Message : " + msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
//alert("저장에 실패하였습니다.");
|
||||
//console.log("ERROR : ", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
function getMjMsgListByResend() {
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/mjon/msgdata/selectMjMsgListByResendAjax.do",
|
||||
data: {"msgResendAllGroupId" : msgResendAllGroupId},
|
||||
dataType:'json',
|
||||
async: true,
|
||||
success: function (data) {
|
||||
if(data.isSuccess == true){
|
||||
var listCnt = data.resultList.length;
|
||||
|
||||
//수신자 처리 변수
|
||||
var callToList = []; //수신자 처리 리스트
|
||||
var tableData = []; //수신자 tabulator 처리 변수
|
||||
|
||||
for(var i = 0; i < listCnt; i++){ // 수신자 리스트 Tabulator에 입력해 주기
|
||||
callToList[i] = data.resultList[i].callTo;
|
||||
tableData.push({phone: removeDash(callToList[i])});
|
||||
}
|
||||
|
||||
if(tableData.length > 0){
|
||||
tableL.addData(dupliPhoneData(tableData)); // 받는사람 목록에 주소 정보 입력하기
|
||||
|
||||
totRows = tableL.getRows().length;
|
||||
updateTotCnt(totRows); //전체 데이터 갯수 구하기
|
||||
|
||||
//결제 금액 구하기
|
||||
totalPriceSum(totRows);
|
||||
}
|
||||
|
||||
} else {
|
||||
//alert("Message : " + msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
//alert("저장에 실패하였습니다.");
|
||||
//console.log("ERROR : ", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function listMsgDataView(){
|
||||
|
||||
var sendData = $(document.searchForm).serializeArray() ;
|
||||
@ -77,6 +175,15 @@ function listMsgDataView(){
|
||||
fnAddrSet(moveAddrFlag, addrIdList);
|
||||
}
|
||||
|
||||
// 문자 재전송 New
|
||||
if (msgResendAllFlag == "Y") {
|
||||
// 문자 그룹정보 => 재전송용
|
||||
getMjMsgGroupInfoByResend();
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
getMjMsgListByResend();
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
@ -20,6 +20,10 @@ var tableAddr = null; //주소록 불러오기 팝업 Tabulator 변수
|
||||
var loginVO = '${loginVO}';
|
||||
|
||||
var popCustomScrT=0; // 맞춤제작 요청 JSPark => 2023.02.21 추가
|
||||
var msgResendAllFlag = "${msgResendAllFlag}";
|
||||
var msgResendAllGroupId = "${msgResendAllGroupId}";
|
||||
var msgResendAllAdvertiseYn = "${msgResendAllAdvertiseYn}";
|
||||
|
||||
$(document).ready(function(){
|
||||
var tsMoreSampleYn = "${moreSampleYn}";
|
||||
var tsMainImgFlag = "${mainImgVO.mainImgFlag}";
|
||||
@ -79,6 +83,99 @@ $(document).ready(function(){
|
||||
//customPopup();
|
||||
});
|
||||
|
||||
// 문자 그룹정보 => 재전송용
|
||||
function getMjMsgGroupInfoByResend() {
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do",
|
||||
data: {"msgResendAllGroupId" : msgResendAllGroupId},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if(data.isSuccess == true){
|
||||
//data.result.callFrom;
|
||||
//data.result.subject;
|
||||
//data.result.smsTxt;
|
||||
//data.result.filePath1;
|
||||
//data.result.filePath2;
|
||||
//data.result.filePath3;
|
||||
|
||||
// 발신번호
|
||||
var reCallFrom = $.trim(removeDash($("#callFromList option:selected").val()));
|
||||
if ($.trim(removeDash(data.result.callFrom)) != reCallFrom) {
|
||||
alert("선택된 발신번호가 이전에 발송한 발신번호가 아닙니다.\n발신번호를 확인해주세요.")
|
||||
}
|
||||
|
||||
/*
|
||||
// 제목
|
||||
if (data.result.subject != null && data.result.subject != "") {
|
||||
$('.msg_title').addClass('active');
|
||||
$("input:radio[name='title_status']:radio[value='Y']").prop('checked', true); // 선택하기
|
||||
$('.textbox').show();
|
||||
$("#mmsSubject").val(data.result.subject);
|
||||
}
|
||||
|
||||
var reSmsTxt = data.result.smsTxt.replaceAll("<br/>", "\n"); //줄발꿈문자 변환하기
|
||||
// 문자내용
|
||||
if(reSmsTxt != null){
|
||||
$("#smsTxtArea").val(reSmsTxt);
|
||||
fnByteString(reSmsTxt);
|
||||
}
|
||||
*/
|
||||
|
||||
} else {
|
||||
alert("Message : " + msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
//alert("저장에 실패하였습니다.");
|
||||
//console.log("ERROR : ", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
function getMjMsgListByResend() {
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/mjon/msgdata/selectMjMsgListByResendAjax.do",
|
||||
data: {"msgResendAllGroupId" : msgResendAllGroupId},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if(data.isSuccess == true){
|
||||
var listCnt = data.resultList.length;
|
||||
|
||||
//수신자 처리 변수
|
||||
var callToList = []; //수신자 처리 리스트
|
||||
var tableData = []; //수신자 tabulator 처리 변수
|
||||
|
||||
for(var i = 0; i < listCnt; i++){ // 수신자 리스트 Tabulator에 입력해 주기
|
||||
callToList[i] = data.resultList[i].callTo;
|
||||
tableData.push({phone: removeDash(callToList[i])});
|
||||
}
|
||||
|
||||
if(tableData.length > 0){
|
||||
tableL.addData(dupliPhoneData(tableData)); // 받는사람 목록에 주소 정보 입력하기
|
||||
|
||||
totRows = tableL.getRows().length;
|
||||
updateTotCnt(totRows); //전체 데이터 갯수 구하기
|
||||
|
||||
//결제 금액 구하기
|
||||
totalPriceSum(totRows);
|
||||
}
|
||||
|
||||
} else {
|
||||
//alert("Message : " + msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
//alert("저장에 실패하였습니다.");
|
||||
//console.log("ERROR : ", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function listMsgDataView(){
|
||||
|
||||
@ -268,6 +365,14 @@ function listMsgDataView(){
|
||||
fnAddrSet(moveAddrFlag, addrIdList);
|
||||
}
|
||||
|
||||
// 문자 재전송 New
|
||||
if (msgResendAllFlag == "Y") {
|
||||
// 문자 그룹정보 => 재전송용
|
||||
getMjMsgGroupInfoByResend();
|
||||
|
||||
// 문자 상세정보 => 재전송용
|
||||
getMjMsgListByResend();
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
@ -136,9 +136,21 @@ $(document).ready(function(){
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:set var="replaceCnt" value="0" />
|
||||
<c:set var="electionCnt" value="0" />
|
||||
<c:set var="advertisementCnt" value="0" />
|
||||
<c:choose>
|
||||
<c:when test="${not empty resultAllSentList}">
|
||||
<c:forEach var="resultAllSentList" items="${resultAllSentList}" varStatus="status">
|
||||
<c:if test="${fn:indexOf(resultAllSentList.smsTxt,'[*이름*]') != -1 || fn:indexOf(resultAllSentList.smsTxt,'[*1*]') != -1 || fn:indexOf(resultAllSentList.smsTxt,'[*2*]') != -1 || fn:indexOf(resultAllSentList.smsTxt,'[*3*]') != -1 || fn:indexOf(resultAllSentList.smsTxt,'[*4*]') != -1}">
|
||||
<c:set var="replaceCnt" value="1" />
|
||||
</c:if>
|
||||
<c:if test="${fn:indexOf(resultAllSentList.smsTxt,'(선거운동정보)') == 0}">
|
||||
<c:set var="electionCnt" value="1" />
|
||||
</c:if>
|
||||
<c:if test="${fn:indexOf(resultAllSentList.smsTxt,'(광고)') == 0}">
|
||||
<c:set var="advertisementCnt" value="1" />
|
||||
</c:if>
|
||||
<tr>
|
||||
<td name="listTd">
|
||||
<label for="msgSentDel${status.count}" class="label">선택</label>
|
||||
@ -194,6 +206,9 @@ $(document).ready(function(){
|
||||
</td>
|
||||
<td name="listTd">
|
||||
<button class="btnType btnType20" data-tooltip="rev_popup01" onClick="javascript:fnRevDetailPop('${resultAllSentList.msgGroupId}','${resultAllSentList.msgId}','${resultAllSentList.fileCnt}'); return false;">상세보기</button>
|
||||
<%--
|
||||
<button class="btnType btnType20" onClick="javascript:fnMjMsgReSendAll('${resultAllSentList.msgGroupId}','${replaceCnt}','${electionCnt}','${advertisementCnt}'); return false;">재전송</button>
|
||||
--%>
|
||||
</td>
|
||||
<td name="listTd">
|
||||
<c:choose>
|
||||
|
||||
@ -704,6 +704,40 @@ function infoPop(pageUrl){
|
||||
document.popForm.target = "infoPop";
|
||||
document.popForm.submit();
|
||||
}
|
||||
|
||||
//문자 재전송
|
||||
function fnMjMsgReSendAll(msgGroupId, replaceCnt, electionCnt, advertisementCnt) {
|
||||
if (replaceCnt > 0) {
|
||||
alert("치환문자는 재전송 불가합니다.");
|
||||
}
|
||||
else {
|
||||
var title = "";
|
||||
if (electionCnt > 0) {
|
||||
title = "선거문자발송";
|
||||
}
|
||||
else {
|
||||
title = "문자발송";
|
||||
}
|
||||
|
||||
if (confirm(title + " 화면으로 이동합니다.\n문자내용, 받는사람 확인후 발송해주세요.")) {
|
||||
var form = document.reSendAllForm;
|
||||
form.msgResendAllFlag.value = "Y";
|
||||
form.msgResendAllGroupId.value = msgGroupId;
|
||||
if (electionCnt > 0) {
|
||||
form.action="/web/mjon/msgcampain/selectMsgDataView.do";
|
||||
}
|
||||
else {
|
||||
if (advertisementCnt > 0) {
|
||||
// 광고문자
|
||||
form.msgResendAllAdvertiseYn.value = "Y";
|
||||
}
|
||||
form.action="/web/mjon/msgdata/selectMsgDataView.do";
|
||||
}
|
||||
form.submit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
<!-- 문자내용 팝업 data-tooltip: rev_popup01 -->
|
||||
<div class="tooltip-wrap">
|
||||
@ -1046,4 +1080,8 @@ function infoPop(pageUrl){
|
||||
<form name="popForm" id="popForm" method="post">
|
||||
<input type="hidden" name="pageType" id="pageType" value=""/>
|
||||
</form>
|
||||
|
||||
<form name="reSendAllForm" method="post">
|
||||
<input type="hidden" name="msgResendAllFlag" value="N"/>
|
||||
<input type="hidden" name="msgResendAllGroupId" value=""/>
|
||||
<input type="hidden" name="msgResendAllAdvertiseYn" value="N"/>
|
||||
</form>
|
||||
177
src/main/webapp/js/pdfjs-3.11.174/LICENSE
Normal file
177
src/main/webapp/js/pdfjs-3.11.174/LICENSE
Normal file
@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
18146
src/main/webapp/js/pdfjs-3.11.174/build/pdf.js
Normal file
18146
src/main/webapp/js/pdfjs-3.11.174/build/pdf.js
Normal file
File diff suppressed because it is too large
Load Diff
1
src/main/webapp/js/pdfjs-3.11.174/build/pdf.js.map
Normal file
1
src/main/webapp/js/pdfjs-3.11.174/build/pdf.js.map
Normal file
File diff suppressed because one or more lines are too long
280
src/main/webapp/js/pdfjs-3.11.174/build/pdf.sandbox.js
Normal file
280
src/main/webapp/js/pdfjs-3.11.174/build/pdf.sandbox.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
58353
src/main/webapp/js/pdfjs-3.11.174/build/pdf.worker.js
vendored
Normal file
58353
src/main/webapp/js/pdfjs-3.11.174/build/pdf.worker.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
src/main/webapp/js/pdfjs-3.11.174/build/pdf.worker.js.map
vendored
Normal file
1
src/main/webapp/js/pdfjs-3.11.174/build/pdf.worker.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Add-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
Binary file not shown.
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-0.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-0.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-1.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-1.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-2.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-2.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-3.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-3.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-4.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-4.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-5.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-5.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
Binary file not shown.
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
Binary file not shown.
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5pc-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5pc-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5pc-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/B5pc-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS-EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS-EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS1-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS1-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS1-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS1-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS2-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS2-H.bcmap
Normal file
Binary file not shown.
3
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS2-V.bcmap
Normal file
3
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/CNS2-V.bcmap
Normal file
@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEáCNS2-H
|
||||
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETHK-B5-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETHK-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETHK-B5-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETHK-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETen-B5-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETen-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETen-B5-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETen-B5-V.bcmap
Normal file
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEá ETen-B5-H` ^
|
||||
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETenms-B5-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/ETenms-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/Ext-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-EUC-V.bcmap
Normal file
Binary file not shown.
4
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-H.bcmap
Normal file
4
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-H.bcmap
Normal file
@ -0,0 +1,4 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSE!!<21>º]aX!!]`<60>21<32>> <09>p<0B>z<EFBFBD>$]‚<06>"R‚d<E2809A>-Uƒ7<C692>*„
4„%<25>+ „Z „{<7B>/…%…<<3C>9K…b<E280A6>1]†.<2E>"‡‰`]‡,<2C>"]ˆ
|
||||
<EFBFBD>"]ˆh<CB86>"]‰F<E280B0>"]Š$<24>"]‹<02>"]‹`<60>"]Œ><3E>"]<5D><1C>"]<5D>z<EFBFBD>"]ŽX<C5BD>"]<5D>6<EFBFBD>"]<5D><14>"]<5D>r<EFBFBD>"]‘P<E28098>"]’.<2E>"]“<0C>"]“j<E2809C>"]”H<E2809D>"]•&<26>"]–<04>"]–b<E28093>"]—@<40>"]˜<1E>"]˜|<7C>"]™Z<E284A2>"]š8<C5A1>"]›<16>"]›t<E280BA>"]œR<C593>"]<5D>0<EFBFBD>"]ž<0E>"]žl<C5BE>"]ŸJ<C5B8>"] (<28>"]¡<06>"]¡d<C2A1>"]¢B<C2A2>"]£ <20>"X£~<7E>']¤W<C2A4>"]¥5<C2A5>"]¦<13>"]¦q<C2A6>"]§O<C2A7>"]¨-<2D>"]©<0B>"]©i<C2A9>"]ªG<C2AA>"]«%<25>"]¬<03>"]¬a<C2AC>"]?<3F>"]®<1D>"]®{<7B>"]¯Y<C2AF>"]°7<C2B0>"]±<15>"]±s<C2B1>"]²Q<C2B2>"]³/<2F>"]´
<0A>"]´k<C2B4>"]µI<C2B5>"]¶'<27>"]·<05>"]·c<C2B7>"]¸A<C2B8>"]¹<1F>"]¹}<7D>"]º[<5B>"]»9
|
||||
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GB-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK-EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK-EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK2K-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK2K-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK2K-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBK2K-V.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBKp-EUC-H.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBKp-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBKp-EUC-V.bcmap
Normal file
BIN
src/main/webapp/js/pdfjs-3.11.174/web/cmaps/GBKp-EUC-V.bcmap
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user