커스텀 태그 파일 추가
parent
16af310dc7
commit
4d0fd62ead
@ -1,4 +1,7 @@
|
|||||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"
|
||||||
%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"
|
%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"
|
||||||
%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"
|
%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"
|
||||||
%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
||||||
|
|
||||||
|
<%@ taglib prefix="code" uri="/WEB-INF/tlds/code.tld"%>
|
||||||
|
<%@ taglib prefix="privacy" uri="/WEB-INF/tlds/privacy.tld"%>
|
@ -0,0 +1,76 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!--
|
||||||
|
/**
|
||||||
|
* @Class Name : custom.tld
|
||||||
|
* @Description : 커스텀 태그
|
||||||
|
* 수정일 수정자 수정내용
|
||||||
|
* ================================================
|
||||||
|
* 2014.02.14. pi 최초 생성
|
||||||
|
*
|
||||||
|
* @USE : <cct:codeTag pcode="schBdcode" tagType="select" tagName="tname" selectedValue="" tagTitle="구분" className="form-control input-sm" useNullOpt="N"/>
|
||||||
|
*
|
||||||
|
* useNullOpt : 전체선택 등 옵션, 기본값 : N, N이 아닌 다른 문자열이 들어갈 경우 해당 문자열이 첫번째 옵션으로 출력됨.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
|
||||||
|
version="2.1">
|
||||||
|
|
||||||
|
<tlib-version>1.2</tlib-version>
|
||||||
|
<uri>cct</uri>
|
||||||
|
<tag>
|
||||||
|
<description>코드관리 코드 리스트 태그(select, checkbox, radio) 만들기</description>
|
||||||
|
<name>codeTag</name>
|
||||||
|
<tag-class>egovframework.itgcms.util.CreateCodeTag</tag-class>
|
||||||
|
<body-content>empty</body-content>
|
||||||
|
|
||||||
|
<attribute>
|
||||||
|
<name>pcode</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>tagType</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>tagName</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>selectedValue</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>tagTitle</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>className</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>useNullOpt</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
<tag>
|
||||||
|
<description>코드관리 코드 이름 가져오기</description>
|
||||||
|
<name>getCodeName</name>
|
||||||
|
<tag-class>egovframework.itgcms.util.GetCode</tag-class>
|
||||||
|
<body-content>empty</body-content>
|
||||||
|
|
||||||
|
<attribute>
|
||||||
|
<name>code</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
</taglib>
|
@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!--
|
||||||
|
/**
|
||||||
|
* @Class Name : custom.tld
|
||||||
|
* @Description : 커스텀 태그
|
||||||
|
* 수정일 수정자 수정내용
|
||||||
|
* ================================================
|
||||||
|
* 2014.02.14. pi 최초 생성
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
|
||||||
|
version="2.1">
|
||||||
|
|
||||||
|
<tlib-version>1.2</tlib-version>
|
||||||
|
<uri>ora</uri>
|
||||||
|
<tag>
|
||||||
|
<description>코드관리 코드 리스트 SELECT 태그 만들기</description>
|
||||||
|
<name>selectCodeList</name>
|
||||||
|
<tag-class>egovframework.itgcms.util.CustomTagSelectCodeList</tag-class>
|
||||||
|
<body-content>empty</body-content>
|
||||||
|
<attribute>
|
||||||
|
<name>codeList</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>selectName</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>selectedValue</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>selectTitle</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>className</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
</taglib>
|
@ -0,0 +1,145 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
|
||||||
|
version="2.0">
|
||||||
|
<description>Common Code tag library</description>
|
||||||
|
<display-name>Common Code tag library</display-name>
|
||||||
|
<tlib-version>1.0</tlib-version>
|
||||||
|
<short-name>code</short-name>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>select box JSTL</description>
|
||||||
|
<name>select</name>
|
||||||
|
<tag-class>cokr.xit.fims.framework.support.tag.code.CodeSelectBoxTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<name>type</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>grpId</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_1</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_2</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_3</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>id</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>name</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>title</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>defaultSelect</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>isEmptySelect</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>emptyMessageKey</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>cls</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>alt</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>onchange</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>disabled</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>display</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
<tag>
|
||||||
|
<name>radio</name>
|
||||||
|
<tag-class>cokr.xit.fims.framework.support.tag.code.CodeRadioBoxTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<name>grpId</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>type</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_1</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_2</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>etc_3</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>id</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>name</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>defaultSelect</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>cls</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>alt</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>onclick</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
</taglib>
|
||||||
|
|
@ -0,0 +1,552 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
|
||||||
|
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
|
||||||
|
version="2.0">
|
||||||
|
|
||||||
|
<description>Egov CrossSite Tag Replace Special Html Code Convert(JSTL 1.1 core library 기반)</description>
|
||||||
|
<display-name>Egov JSTL core</display-name>
|
||||||
|
<tlib-version>1.1</tlib-version>
|
||||||
|
<short-name>egovc</short-name>
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Catches any Throwable that occurs in its body and optionally
|
||||||
|
exposes it.
|
||||||
|
</description>
|
||||||
|
<name>catch</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.common.core.CatchTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
exception thrown from a nested action. The type of the
|
||||||
|
scoped variable is the type of the exception thrown.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Simple conditional tag that establishes a context for
|
||||||
|
mutually exclusive conditional operations, marked by
|
||||||
|
<when> and <otherwise>
|
||||||
|
</description>
|
||||||
|
<name>choose</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.common.core.ChooseTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Simple conditional tag, which evalutes its body if the
|
||||||
|
supplied condition is true and optionally exposes a Boolean
|
||||||
|
scripting variable representing the evaluation of this condition
|
||||||
|
</description>
|
||||||
|
<name>if</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.IfTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
The test condition that determines whether or
|
||||||
|
not the body content should be processed.
|
||||||
|
</description>
|
||||||
|
<name>test</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>boolean</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
resulting value of the test condition. The type
|
||||||
|
of the scoped variable is Boolean.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Scope for var.
|
||||||
|
</description>
|
||||||
|
<name>scope</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Retrieves an absolute or relative URL and exposes its contents
|
||||||
|
to either the page, a String in 'var', or a Reader in 'varReader'.
|
||||||
|
</description>
|
||||||
|
<name>import</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.ImportTag</tag-class>
|
||||||
|
<tei-class>org.apache.taglibs.standard.tei.ImportTEI</tei-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
The URL of the resource to import.
|
||||||
|
</description>
|
||||||
|
<name>url</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
resource's content. The type of the scoped
|
||||||
|
variable is String.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Scope for var.
|
||||||
|
</description>
|
||||||
|
<name>scope</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
resource's content. The type of the scoped
|
||||||
|
variable is Reader.
|
||||||
|
</description>
|
||||||
|
<name>varReader</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the context when accessing a relative
|
||||||
|
URL resource that belongs to a foreign
|
||||||
|
context.
|
||||||
|
</description>
|
||||||
|
<name>context</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Character encoding of the content at the input
|
||||||
|
resource.
|
||||||
|
</description>
|
||||||
|
<name>charEncoding</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
The basic iteration tag, accepting many different
|
||||||
|
collection types and supporting subsetting and other
|
||||||
|
functionality
|
||||||
|
</description>
|
||||||
|
<name>forEach</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.ForEachTag</tag-class>
|
||||||
|
<tei-class>org.apache.taglibs.standard.tei.ForEachTEI</tei-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Collection of items to iterate over.
|
||||||
|
</description>
|
||||||
|
<name>items</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>java.lang.Object</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
If items specified:
|
||||||
|
Iteration begins at the item located at the
|
||||||
|
specified index. First item of the collection has
|
||||||
|
index 0.
|
||||||
|
If items not specified:
|
||||||
|
Iteration begins with index set at the value
|
||||||
|
specified.
|
||||||
|
</description>
|
||||||
|
<name>begin</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
If items specified:
|
||||||
|
Iteration ends at the item located at the
|
||||||
|
specified index (inclusive).
|
||||||
|
If items not specified:
|
||||||
|
Iteration ends when index reaches the value
|
||||||
|
specified.
|
||||||
|
</description>
|
||||||
|
<name>end</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Iteration will only process every step items of
|
||||||
|
the collection, starting with the first one.
|
||||||
|
</description>
|
||||||
|
<name>step</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
current item of the iteration. This scoped
|
||||||
|
variable has nested visibility. Its type depends
|
||||||
|
on the object of the underlying collection.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
status of the iteration. Object exported is of type
|
||||||
|
javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested
|
||||||
|
visibility.
|
||||||
|
</description>
|
||||||
|
<name>varStatus</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Iterates over tokens, separated by the supplied delimeters
|
||||||
|
</description>
|
||||||
|
<name>forTokens</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.ForTokensTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
String of tokens to iterate over.
|
||||||
|
</description>
|
||||||
|
<name>items</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>java.lang.String</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
The set of delimiters (the characters that
|
||||||
|
separate the tokens in the string).
|
||||||
|
</description>
|
||||||
|
<name>delims</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>java.lang.String</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Iteration begins at the token located at the
|
||||||
|
specified index. First token has index 0.
|
||||||
|
</description>
|
||||||
|
<name>begin</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Iteration ends at the token located at the
|
||||||
|
specified index (inclusive).
|
||||||
|
</description>
|
||||||
|
<name>end</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Iteration will only process every step tokens
|
||||||
|
of the string, starting with the first one.
|
||||||
|
</description>
|
||||||
|
<name>step</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>int</type>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
current item of the iteration. This scoped
|
||||||
|
variable has nested visibility.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
status of the iteration. Object exported is of
|
||||||
|
type
|
||||||
|
javax.servlet.jsp.jstl.core.LoopTag
|
||||||
|
Status. This scoped variable has nested
|
||||||
|
visibility.
|
||||||
|
</description>
|
||||||
|
<name>varStatus</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Like <%= ... >, but for expressions.
|
||||||
|
</description>
|
||||||
|
<name>out</name>
|
||||||
|
<tag-class>egovframework.com.cmm.EgovComCrossSiteHndlr</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Expression to be evaluated.
|
||||||
|
</description>
|
||||||
|
<name>value</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Default value if the resulting value is null.
|
||||||
|
</description>
|
||||||
|
<name>default</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Determines whether characters <,>,&,'," in the
|
||||||
|
resulting string should be converted to their
|
||||||
|
corresponding character entity codes. Default value is
|
||||||
|
true.
|
||||||
|
</description>
|
||||||
|
<name>escapeXml</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Subtag of <choose> that follows <when> tags
|
||||||
|
and runs only if all of the prior conditions evaluated to
|
||||||
|
'false'
|
||||||
|
</description>
|
||||||
|
<name>otherwise</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.common.core.OtherwiseTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Adds a parameter to a containing 'import' tag's URL.
|
||||||
|
</description>
|
||||||
|
<name>param</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.ParamTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the query string parameter.
|
||||||
|
</description>
|
||||||
|
<name>name</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Value of the parameter.
|
||||||
|
</description>
|
||||||
|
<name>value</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Redirects to a new URL.
|
||||||
|
</description>
|
||||||
|
<name>redirect</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.RedirectTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
The URL of the resource to redirect to.
|
||||||
|
</description>
|
||||||
|
<name>url</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the context when redirecting to a relative URL
|
||||||
|
resource that belongs to a foreign context.
|
||||||
|
</description>
|
||||||
|
<name>context</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Removes a scoped variable (from a particular scope, if specified).
|
||||||
|
</description>
|
||||||
|
<name>remove</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.common.core.RemoveTag</tag-class>
|
||||||
|
<body-content>empty</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the scoped variable to be removed.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Scope for var.
|
||||||
|
</description>
|
||||||
|
<name>scope</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Sets the result of an expression evaluation in a 'scope'
|
||||||
|
</description>
|
||||||
|
<name>set</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.SetTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable to hold the value
|
||||||
|
specified in the action. The type of the scoped variable is
|
||||||
|
whatever type the value expression evaluates to.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Expression to be evaluated.
|
||||||
|
</description>
|
||||||
|
<name>value</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Target object whose property will be set. Must evaluate to
|
||||||
|
a JavaBeans object with setter property property, or to a
|
||||||
|
java.util.Map object.
|
||||||
|
</description>
|
||||||
|
<name>target</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the property to be set in the target object.
|
||||||
|
</description>
|
||||||
|
<name>property</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Scope for var.
|
||||||
|
</description>
|
||||||
|
<name>scope</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Creates a URL with optional query parameters.
|
||||||
|
</description>
|
||||||
|
<name>url</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.UrlTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the exported scoped variable for the
|
||||||
|
processed url. The type of the scoped variable is
|
||||||
|
String.
|
||||||
|
</description>
|
||||||
|
<name>var</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Scope for var.
|
||||||
|
</description>
|
||||||
|
<name>scope</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>false</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
URL to be processed.
|
||||||
|
</description>
|
||||||
|
<name>value</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
Name of the context when specifying a relative URL
|
||||||
|
resource that belongs to a foreign context.
|
||||||
|
</description>
|
||||||
|
<name>context</name>
|
||||||
|
<required>false</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>
|
||||||
|
Subtag of <choose> that includes its body if its
|
||||||
|
condition evalutes to 'true'
|
||||||
|
</description>
|
||||||
|
<name>when</name>
|
||||||
|
<tag-class>org.apache.taglibs.standard.tag.rt.core.WhenTag</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<description>
|
||||||
|
The test condition that determines whether or not the
|
||||||
|
body content should be processed.
|
||||||
|
</description>
|
||||||
|
<name>test</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
<type>boolean</type>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
|
||||||
|
</taglib>
|
@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
|
||||||
|
version="2.0">
|
||||||
|
<description>Common Code tag library</description>
|
||||||
|
<display-name>Common Code tag library</display-name>
|
||||||
|
<tlib-version>1.0</tlib-version>
|
||||||
|
<short-name>privacy</short-name>
|
||||||
|
|
||||||
|
<tag>
|
||||||
|
<description>주민번호 입력 box JSTL</description>
|
||||||
|
<name>input</name>
|
||||||
|
<tag-class>cokr.xit.fims.framework.support.tag.privacy.input</tag-class>
|
||||||
|
<body-content>JSP</body-content>
|
||||||
|
<attribute>
|
||||||
|
<name>id</name>
|
||||||
|
<required>true</required>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>name</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>cls</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>disabled</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
<attribute>
|
||||||
|
<name>readonly</name>
|
||||||
|
<rtexprvalue>true</rtexprvalue>
|
||||||
|
</attribute>
|
||||||
|
</tag>
|
||||||
|
</taglib>
|
||||||
|
|
Loading…
Reference in New Issue