Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_altibase.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_altibase.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_altibase.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO COMTNFILE + (ATCH_FILE_ID, CREAT_DT, USE_AT) + VALUES + ( #{atchFileId}, SYSDATE, 'Y') + + + + + + INSERT INTO COMTNFILEDETAIL + ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, + ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) + VALUES + ( #{atchFileId}, #{fileSn}, #{fileStreCours}, #{streFileNm}, + #{orignlFileNm}, #{fileExtsn}, #{fileMg}, #{fileCn} ) + + + + + + DELETE FROM COMTNFILEDETAIL + WHERE + ATCH_FILE_ID = #{atchFileId} + AND + FILE_SN = #{fileSn} + + + + + + + + + + UPDATE COMTNFILE + SET USE_AT = 'N' + WHERE ATCH_FILE_ID = #{atchFileId} + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_cubrid.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_cubrid.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_cubrid.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO COMTNFILE + (ATCH_FILE_ID, CREAT_DT, USE_AT) + VALUES + ( #{atchFileId}, SYSDATETIME, 'Y') + + + + + + INSERT INTO COMTNFILEDETAIL + ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, + ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) + VALUES + ( #{atchFileId}, #{fileSn}, #{fileStreCours}, #{streFileNm}, + #{orignlFileNm}, #{fileExtsn}, #{fileMg}, #{fileCn} ) + + + + + + DELETE FROM COMTNFILEDETAIL + WHERE + ATCH_FILE_ID = #{atchFileId} + AND + FILE_SN = #{fileSn} + + + + + + + + + + UPDATE COMTNFILE + SET USE_AT = 'N' + WHERE ATCH_FILE_ID = #{atchFileId} + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_mysql.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_mysql.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_mysql.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO COMTNFILE + (ATCH_FILE_ID, CREAT_DT, USE_AT) + VALUES + ( #{atchFileId}, SYSDATE(), 'Y') + + + + + + INSERT INTO COMTNFILEDETAIL + ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, + ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) + VALUES + ( #{atchFileId}, #{fileSn}, #{fileStreCours}, #{streFileNm}, + #{orignlFileNm}, #{fileExtsn}, #{fileMg}, #{fileCn} ) + + + + + + DELETE FROM COMTNFILEDETAIL + WHERE + ATCH_FILE_ID = #{atchFileId} + AND + FILE_SN = #{fileSn} + + + + + + + + + + UPDATE COMTNFILE + SET USE_AT = 'N' + WHERE ATCH_FILE_ID = #{atchFileId} + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_oracle.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_oracle.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_oracle.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO COMTNFILE + (ATCH_FILE_ID, CREAT_DT, USE_AT) + VALUES + ( #{atchFileId}, SYSDATE, 'Y') + + + + + + INSERT INTO COMTNFILEDETAIL + ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, + ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) + VALUES + ( #{atchFileId}, #{fileSn}, #{fileStreCours}, #{streFileNm}, + #{orignlFileNm}, #{fileExtsn}, #{fileMg}, #{fileCn} ) + + + + + + DELETE FROM COMTNFILEDETAIL + WHERE + ATCH_FILE_ID = #{atchFileId} + AND + FILE_SN = #{fileSn} + + + + + + + + + + UPDATE COMTNFILE + SET USE_AT = 'N' + WHERE ATCH_FILE_ID = #{atchFileId} + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_tibero.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_tibero.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/fms/EgovFile_SQL_tibero.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO COMTNFILE + (ATCH_FILE_ID, CREAT_DT, USE_AT) + VALUES + ( #{atchFileId}, SYSDATE, 'Y') + + + + + + INSERT INTO COMTNFILEDETAIL + ( ATCH_FILE_ID, FILE_SN, FILE_STRE_COURS, STRE_FILE_NM, + ORIGNL_FILE_NM, FILE_EXTSN, FILE_SIZE, FILE_CN ) + VALUES + ( #{atchFileId}, #{fileSn}, #{fileStreCours}, #{streFileNm}, + #{orignlFileNm}, #{fileExtsn}, #{fileMg}, #{fileCn} ) + + + + + + DELETE FROM COMTNFILEDETAIL + WHERE + ATCH_FILE_ID = #{atchFileId} + AND + FILE_SN = #{fileSn} + + + + + + + + + + UPDATE COMTNFILE + SET USE_AT = 'N' + WHERE ATCH_FILE_ID = #{atchFileId} + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_altibase.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_altibase.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_altibase.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_cubrid.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_cubrid.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_cubrid.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_mysql.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_mysql.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_mysql.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_oracle.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_oracle.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_oracle.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_tibero.xml =================================================================== diff -u --- standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_tibero.xml (revision 0) +++ standard/project/web/src/main/resources/egovframework/sqlmap/com/cmm/use/EgovCmmUse_SQL_tibero.xml (revision 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e) @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovArticle_SQL_altibase.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovArticle_SQL_cubrid.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovArticle_SQL_mysql.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovArticle_SQL_oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovArticle_SQL_tibero.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovBBSMaster_SQL_altibase.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovBBSMaster_SQL_cubrid.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovBBSMaster_SQL_mysql.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovBBSMaster_SQL_oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/bbs/EgovBBSMaster_SQL_tibero.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDetail_SQL_altibase.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDetail_SQL_cubrid.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDetail_SQL_mysql.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDetail_SQL_oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDetail_SQL_tibero.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDtls_SQL_altibase.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDtls_SQL_cubrid.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDtls_SQL_mysql.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDtls_SQL_oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailDtls_SQL_tibero.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailRegist_SQL_altibase.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailRegist_SQL_cubrid.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailRegist_SQL_mysql.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailRegist_SQL_oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/cop/ems/EgovSndngMailRegist_SQL_tibero.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/ext/jstree/springiBatis/jstreeCoreManage_SQL_Oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/ext/jstree/springiBatis/jstreeMonitorManage_SQL_Oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/ext/jstree/strutsiBatis/jstreeCoreManage_SQL_Oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/com/ext/jstree/strutsiBatis/jstreeMonitorManage_SQL_Oracle.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/config/oracle/sql-map-config-oracle-ext-jstree.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 11819ef1f2c146fdbf43894110b26071de2a5040 refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/sqlmap/config/sql-map-config.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/app/EgovKnoAppraisal.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/map/mat/EgovMapMaterial.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/map/tea/EgovMapTeam.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/mgm/KnoManagement.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/per/EgovKnoPersonal.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/spe/req/EgovKnoRequestOffer.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/dam/spe/spe/EgovKnoSpecialist.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/ssi/syi/iis/EgovCntcInstt.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/ssi/syi/ims/EgovCntcMessage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/ssi/syi/ist/EgovCntcMessage1.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/ssi/syi/sim/EgovSystemCntc.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sts/rst/EgovReprtStats.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/bat/EgovBatchOpert.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/bat/EgovBatchSchdul.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/cal/EgovRestdeManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/ccm/adc/EgovAdministCodeManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/ccm/cca/EgovCmmnCodeManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/ccm/ccc/EgovCmmnClCodeManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/ccm/cde/EgovCmmnDetailCodeManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/ccm/zip/EgovZipManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/log/slg/EgovSysHistManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/mnu/bmm/EgovBkmkmanage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/mnu/mcm/EgovMenuCreat.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/mnu/mcm/EgovMenuSiteMap.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/mnu/mpm/EgovMenuManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/prm/EgovProgrmManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/prm/EgovProgrmManageDtl.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/sym/bak/EgovBackupOpert.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/sym/nwk/EgovNtwrk.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/sym/srv/EgovServer.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/sym/sym/srv/EgovServerEqpmn.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uat/uap/EgovLoginPolicy.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uat/uia/EgovIdPasswordSearch.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/ans/EgovAnnvrsryManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/bnr/EgovBanner.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/bnt/EgovBndtCeckManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/bnt/EgovBndtDiary.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/bnt/EgovBndtManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/ctn/EgovCtsnnManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/ecc/EgovEventCmpgn.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/evt/EgovEventAtdrn.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/evt/EgovEventManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/isg/EgovIntnetSvcGuidance.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/lsi/EgovLoginScrinImage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/msi/EgovMainImage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/mtg/EgovMtgPlaceManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/mtg/EgovMtgPlaceResve.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/noi/EgovNtfcRegist.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/ntm/EgovNoteManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/nws/EgovNewsManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/pwm/PopupManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/rec/EgovRecomendSiteManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/rmm/EgovRoughMap.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/rsm/RecentSrchwrd.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/rss/RssManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/rwd/EgovRwardManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/sit/EgovSiteManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/tir/TwitterInfo.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/ulm/EgovUnityLink.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/vct/EgovVcatnManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/ion/yrc/EgovIndvdlYrycManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/mpe/EgovIndvdlpge.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/awm/AdministrationWordManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/faq/EgovFaqManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/hpc/EgovHpcmManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/omm/EgovOnlineManual.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/qna/EgovQnaManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olh/wor/EgovWordDicary.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/cns/EgovCnsltManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/mgt/EgovMeetingManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/opm/EgovOnlinePollManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qim/EgovQustnrItemManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qmc/EgovQustnrManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qqm/EgovQustnrQestnManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qri/EgovQustnrRespondInfo.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qrm/EgovQustnrRespondManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/olp/qtm/EgovQustnrTmplatManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/sam/cpy/EgovCpyrhtPrtcPolicy.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/sam/ipm/EgovIndvdlInfoPolicy.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/sam/stp/EgovStplatManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/umt/EgovEntrprsManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/umt/EgovMberManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/umt/EgovPassword.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/uss/umt/EgovUserManage.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sim/EgovSysInfo.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/dbm/EgovDbMntrng.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/fsm/EgovFileSysMntrng.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/htm/EgovHttpMon.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/nsm/EgovNtwrkSvcMntrng.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/prm/EgovProcessMon.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/pxy/EgovProxySvc.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/ssy/EgovSynchrnServer.xml'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 95cf86234bf1d2485c1ed4c94856a1a9ccc7718e refers to a dead (removed) revision in file `standard/project/web/src/main/resources/egovframework/validator/com/utl/sys/trm/EgovTrsmrcvMntrng.xml'. FishEye: No comparison available. Pass `N' to diff?