% /************************************************************@@ * Program Name : popup_copy_form.jsp * Description : /Áý°èÀÚ/³»¹®¼ÇÔ/µî·ÏÇÔ/º¹»ç¾ç½Ä ÷ºÎ * Author : °¿øÁß * Create Date : 2004-11-05 * History : @@************************************************************/ %> <%@ page contentType="text/html; charset=euc-kr" import="kr.co.kihyun.lang.MString" import="kr.co.kihyun.lang.MLong" import="kr.co.kihyun.text.html.TagFilter" import="kr.co.kihyun.lang.StringConverter" import="kr.co.kihyun.moumi.Moumi" import="kr.co.kihyun.beans.user.UserGroupList" import="kr.co.kihyun.beans.user.UserGroup" import="javax.jdo.PersistenceManager" import="javax.jdo.Transaction" import="kr.co.kihyun.beans.entity.util.*" import="kr.co.kihyun.beans.entity.TotDoc"%> <% PersistenceManager pm = new MPersistenceManager(PMF.get().getPersistenceManager()); Transaction tx = pm.currentTransaction(); try{ /********** get Parameter *************/ Long reuseDocID = MLong.parseLong(request.getParameter("reuseDocID"), null); /*********** doc value *****************/ String repDocForm = ""; if(reuseDocID != null){ TotDoc totDoc = pm.getObjectById(TotDoc.class, reuseDocID); repDocForm = totDoc.getForm(); repDocForm = TagFilter.convertSingle(repDocForm); repDocForm = StringConverter.toOneLine(repDocForm); } %>