You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

358 lines
15 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/cm/css/all.css" type="text/css"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:w2="http://www.inswave.com/websquare" xmlns:xf="http://www.w3.org/2002/xforms">
<head>
<w2:type>DEFAULT</w2:type>
<w2:buildDate/>
<xf:model>
<xf:instance>
<data xmlns=""/>
</xf:instance>
<w2:dataCollection baseNode="map">
<w2:dataMap baseNode="map" id="dma_search">
<w2:keyInfo>
<w2:key id="START_NUM" name="시작 순번" dataType="text" defaultValue="0"></w2:key>
<w2:key id="END_NUM" name="끝 순번" dataType="text" defaultValue="5"></w2:key>
</w2:keyInfo>
</w2:dataMap>
<w2:dataList id="dlt_release" baseNode="list" saveRemovedData="true" repeatNode="map">
<w2:columnInfo>
<w2:column id="SEQ" name="순번" dataType="text"></w2:column>
<w2:column id="TITLE" name="제목" dataType="text"></w2:column>
<w2:column id="CONTENT" name="내용" dataType="text"></w2:column>
<w2:column id="CREATED_DATE" name="작성일" dataType="text"></w2:column>
</w2:columnInfo>
</w2:dataList>
<w2:dataList baseNode="list" id="dataList1" repeatNode="map" saveRemovedData="true" style="">
<w2:columnInfo>
<w2:column dataType="text" id="col1" name="Month"></w2:column>
<w2:column dataType="number" id="col2" name="Price"></w2:column>
</w2:columnInfo>
<w2:data use="true">
<w2:row>
<col1><![CDATA[January]]></col1>
<col2><![CDATA[17400]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[February]]></col1>
<col2><![CDATA[19800]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[March]]></col1>
<col2><![CDATA[21800]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[April]]></col1>
<col2><![CDATA[23800]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[May]]></col1>
<col2><![CDATA[29600]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[June]]></col1>
<col2><![CDATA[27600]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[July]]></col1>
<col2><![CDATA[31800]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[August]]></col1>
<col2><![CDATA[39700]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[September]]></col1>
<col2><![CDATA[37800]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[October]]></col1>
<col2><![CDATA[21900]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[November]]></col1>
<col2><![CDATA[32900]]></col2>
</w2:row>
<w2:row>
<col1><![CDATA[December]]></col1>
<col2><![CDATA[39800]]></col2>
</w2:row>
</w2:data>
</w2:dataList>
</w2:dataCollection>
<w2:workflowCollection>
</w2:workflowCollection>
<xf:submission id="sbm_selectRelease" ref='data:json,dma_search' target='data:json,{"id":"dlt_Update","key":"data"}' action="/main/selectReleaseForMain" method="post" mediatype="application/json"
encoding="UTF-8" instance="" replace="" errorHandler="" customHandler="" mode="asynchronous" processMsg="" ev:submit="" ev:submitdone="scwin.sbm_selectRelease_submitdone" ev:submiterror="">
</xf:submission>
</xf:model>
<script type="text/javascript" lazy="false"><![CDATA[
/**
* 화면 초기화
*
* @lastUpdate 2018.06.07
* @author InswaveSystems
* @since 2016.08.26
*/
scwin.onpageload = function() {
dma_search.set("START_NUM", 0);
dma_search.set("END_NUM", 5);
com.executeSubmission(sbm_selectRelease);
};
scwin.onpageunload = function() {
};
/**
* 통신 정상 콜백 - release board list 결과 값 중 dlt_release로 게시판을 생성한다.
*
* @lastUpdate 2018.06.07
* @param {Object} submission의 정상 통신 시 넘겨주는 객체
* @author InswaveSystems
* @since 2016.08.26
*/
scwin.sbm_selectRelease_submitdone = function(e) {
var rsCode = com.getResultCode(e);
if (rsCode == "S") {
scwin.setReleaseInfo(e.responseJSON.dlt_release);
}
};
/**
* 제품 릴리즈 정보를 세팅한다.
*
* @lastUpdate 2018.06.07
* @param {JSONArray} json array타입의 데이터. TITLE, CONTENT
* @author InswaveSystems
* @since 2016.08.26
*/
scwin.setReleaseInfo = function(rsArr) {
if(rsArr != null && rsArr.length > 0){
if (typeof rsArr[0] !== "undefined") {
var title = rsArr[0].TITLE;
txt_releaseTitle1.setValue(txt_releaseTitle1.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
txt_createdDate1.setValue(rsArr[0].CREATED_DATE);
txt_title1.setValue(title.substr(1, title.indexOf("]")-1));
txt_content1.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
}
if (typeof rsArr[1] !== "undefined") {
var title = rsArr[1].TITLE;
txt_releaseTitle2.setValue(txt_releaseTitle2.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
txt_createdDate2.setValue(rsArr[1].CREATED_DATE);
txt_title2.setValue(title.substr(1, title.indexOf("]")-1));
txt_content2.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
}
}
txt_engineVersion.setValue(WebSquare.text.BASE64Decode(WebSquare.ver));
if(rsArr != null && rsArr.length > 0){
txt_templateVersion.setValue(rsArr[0].TITLE.substr(1, rsArr[0].TITLE.indexOf("]")-1));
}
};
]]></script>
</head>
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
<xf:group id="" style="" class="main_contents">
<xf:group style="" id="" class="mnbox">
<xf:group style="" id="" class="m_cont">
<xf:group style="" id="" class="mn_layout">
<xf:group class="mn_column" id="" style="">
<xf:group style="" id="" class="cnt_grp">
<xf:group style="" id="" class="cnt_cell">
<xf:group style="" id="" class="cnt_box ico01">
<w2:textbox tagname="strong" style="" id="" label="템플릿 프로젝트 버전"></w2:textbox>
<w2:anchor outerDiv="false" style="" id="txt_templateVersion">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
</xf:group>
</xf:group>
<xf:group style="" id="" class="block_box mt30">
<w2:textbox label="릴리즈 노트 " style="" id="txt_releaseTitle1" class="bk_tit"></w2:textbox>
<xf:group style="" id="" class="bk_cont">
<xf:group style="" id="" class="memo_lst" tagname="ul">
<xf:group style="" id="" class="" tagname="li">
<w2:textbox label="작성일" style="" id="" tagname="strong"></w2:textbox>
<w2:anchor outerDiv="false" style="" id="txt_createdDate1">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="버전" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_title1" outerDiv="false" style="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="제목" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_content1" outerDiv="false" style="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="mn_column" id="" style="">
<xf:group class="cnt_grp" id="" style="">
<xf:group class="cnt_cell" id="" style="">
<xf:group class="cnt_box ico01" id="" style="">
<w2:textbox id="" label="엔진 버전" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_engineVersion" outerDiv="false" style="" localeRef="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="block_box mt30" id="" style="">
<w2:textbox class="bk_tit" id="txt_releaseTitle2" label="릴리즈 노트 " style=""></w2:textbox>
<xf:group class="bk_cont" id="" style="">
<xf:group class="memo_lst" id="" style="" tagname="ul">
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="작성일" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_createdDate2" outerDiv="false" style="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="버전" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_title2" outerDiv="false" style="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="제목" style="" tagname="strong"></w2:textbox>
<w2:anchor id="txt_content2" outerDiv="false" style="">
<xf:label><![CDATA[]]></xf:label>
</w2:anchor>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="block_box mt30" id="" style="">
<w2:textbox class="bk_tit" id="" label="시스템정보" style=""></w2:textbox>
<xf:group class="bk_cont" id="" style="">
<xf:group class="memo_lst" id="" style="" tagname="ul">
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="권장 브라우저" style="" tagname="strong" class="w150 fl"></w2:textbox>
<w2:span label="IE9이상, Chrome, Safari, FireFox, Opera" style="" id="" class=""></w2:span>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<w2:textbox id="" label="최적 해상도" style="" tagname="strong" class="w150 fl"></w2:textbox>
<w2:span id="" label="Tab View : 1024 X N/A (가로 1024 미만은 적응형 지원) , &amp;nbsp;Multi View : 1280 X N/A" style="" class=""></w2:span>
</xf:group>
</xf:group>
</xf:group>
</xf:group><xf:group style="" id="" class="mn_layout mt50">
<xf:group style="" id="" class="mn_column">
<xf:group class="block_box" id="" style="">
<w2:textbox class="bk_tit" id="" label="Statistics" style=""></w2:textbox>
<xf:group class="bk_cont02" id="" style="">
<xf:group style="" id="" class="chartbox"><w2:fusionchart accessibility="false" seriesType="simple" drawType="javascript" runflashAt="IE6,IE7,IE8" chartType="Column2D" style="width: 100%;height: 249px;" id="" dataList="" ref="data:dataList1">
</w2:fusionchart></xf:group></xf:group>
</xf:group>
</xf:group>
<xf:group class="mn_column" id="" style="">
<xf:group class="block_box" id="" style="">
<w2:textbox class="bk_tit" id="" label="Statistics" style=""></w2:textbox>
<xf:group class="bk_cont02" id="" style="">
<xf:group style="" id="" class="chartbox"><w2:fusionchart accessibility="false" seriesType="simple" chartType="doughnut2d" drawType="javascript" runflashAt="IE6,IE7,IE8" style="width: 100%;height: 249px;" id="" ref="data:dataList1">
</w2:fusionchart></xf:group></xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
<xf:group class="m_side" id="" style="">
<xf:group style="" id="" class="calendar_box">
<w2:calendar footerDiv="false" style="" id="" calendarClass=""></w2:calendar>
</xf:group>
<xf:group style="" id="" class="tocbox">
<w2:textbox label="Messenger" style="" id="" class="toc_tit"></w2:textbox>
<xf:group style="" id="" class="toc_cont">
<xf:group style="" id="" class="toc_search">
<xf:input adjustMaxLength="false" style="" id=""></xf:input>
<w2:anchor outerDiv="false" style="" id="">
<xf:label><![CDATA[search]]></xf:label>
</w2:anchor>
</xf:group>
<xf:group style="" id="" class="toc_lst" tagname="ul">
<xf:group style="" id="" class="" tagname="li">
<xf:group style="" id="" class="thumn">
<xf:image src="/cm/images/contents/img_temp01.png" style="" id=""></xf:image>
<w2:span label="7" style="" id=""></w2:span>
</xf:group>
<xf:group style="" id="" class="txtbox">
<w2:anchor outerDiv="false" style="" id="">
<xf:label><![CDATA[김성동/UX지원팀]]></xf:label>
</w2:anchor>
<w2:textbox label="진행상황을 알려주세요." style="" id="" tagname="p"></w2:textbox>
</xf:group>
</xf:group>
<xf:group class="on" id="" style="" tagname="li">
<xf:group class="thumn" id="" style="">
<xf:image id="" src="/cm/images/contents/img_temp01.png" style=""></xf:image>
<w2:span id="" label="7" style=""></w2:span>
</xf:group>
<xf:group class="txtbox" id="" style="">
<w2:anchor id="" outerDiv="false" style="">
<xf:label><![CDATA[김은찬/SW컨설팅팀]]></xf:label>
</w2:anchor>
<w2:textbox id="" label="진행상황을 알려주세요." style="" tagname="p"></w2:textbox>
</xf:group>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<xf:group class="thumn" id="" style="">
<xf:image id="" src="/cm/images/contents/img_temp01.png" style=""></xf:image>
<w2:span id="" label="7" style=""></w2:span>
</xf:group>
<xf:group class="txtbox" id="" style="">
<w2:anchor id="" outerDiv="false" style="">
<xf:label><![CDATA[허생훈/연구소]]></xf:label>
</w2:anchor>
<w2:textbox id="" label="진행상황을 알려주세요." style="" tagname="p"></w2:textbox>
</xf:group>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<xf:group class="thumn" id="" style="">
<xf:image id="" src="/cm/images/contents/img_temp01.png" style=""></xf:image>
<w2:span id="" label="7" style=""></w2:span>
</xf:group>
<xf:group class="txtbox" id="" style="">
<w2:anchor id="" outerDiv="false" style="">
<xf:label><![CDATA[김영수/기술지원팀]]></xf:label>
</w2:anchor>
<w2:textbox id="" label="진행상황을 알려주세요." style="" tagname="p"></w2:textbox>
</xf:group>
</xf:group>
<xf:group class="" id="" style="" tagname="li">
<xf:group class="thumn" id="" style="">
<xf:image id="" src="/cm/images/contents/img_temp01.png" style=""></xf:image>
<w2:span id="" label="7" style=""></w2:span>
</xf:group>
<xf:group class="txtbox" id="" style="">
<w2:anchor id="" outerDiv="false" style="">
<xf:label><![CDATA[심수호/UX지원팀]]></xf:label>
</w2:anchor>
<w2:textbox id="" label="진행상황을 알려주세요." style="" tagname="p"></w2:textbox>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</xf:group>
</body>
</html>