Skip to content

Commit

Permalink
Update FQN for tag libraries in jerry.tld
Browse files Browse the repository at this point in the history
  • Loading branch information
sangupta committed Dec 17, 2016
1 parent 6118df5 commit 2645488
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/main/resources/META-INF/tld/jerry.tld
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- Formats a given date in a standard default pattern, or used supplied pattern. -->
<tag>
<name>formatDate</name>
<tag-class>com.sangupta.jerry.taglib.DateFormatTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.DateFormatTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>value</name>
Expand All @@ -29,7 +29,7 @@

<tag>
<name>formatSize</name>
<tag-class>com.sangupta.jerry.taglib.FormatSizeTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.FormatSizeTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>bytes</name>
Expand All @@ -41,7 +41,7 @@
<!-- Formats the given value into hex -->
<tag>
<name>hex</name>
<tag-class>com.sangupta.jerry.taglib.HexFormatTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.HexFormatTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>value</name>
Expand All @@ -53,7 +53,7 @@
<!-- Displays currnet user's name -->
<tag>
<name>username</name>
<tag-class>com.sangupta.jerry.taglib.UserNameTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.UserNameTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>onAnonymous</name>
Expand All @@ -65,7 +65,7 @@
<!-- Let's add the javascript into the page context so that it can be added at the end of the page -->
<tag>
<name>includeJS</name>
<tag-class>com.sangupta.jerry.taglib.JavascriptIncludeTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.JavascriptIncludeTag</tag-class>
<body-content>JSP</body-content>
<attribute>
<name>url</name>
Expand All @@ -82,14 +82,14 @@
<!-- Emit all javascript that is included in the request till now -->
<tag>
<name>emitAllJavascript</name>
<tag-class>com.sangupta.jerry.taglib.AllJavascriptTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.AllJavascriptTag</tag-class>
<body-content>empty</body-content>
</tag>

<!-- Display the duration elapsed between the time and now in human understandable format -->
<tag>
<name>timeAgo</name>
<tag-class>com.sangupta.jerry.taglib.TimeAgoTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.TimeAgoTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>time</name>
Expand All @@ -111,7 +111,7 @@
<!-- Base62 encoder/decoder tag -->
<tag>
<name>base62</name>
<tag-class>com.sangupta.jerry.taglib.Base62Tag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.Base62Tag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>encode</name>
Expand All @@ -127,7 +127,7 @@

<tag>
<name>base64</name>
<tag-class>com.sangupta.jerry.taglib.Base64Tag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.Base64Tag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>encode</name>
Expand All @@ -149,20 +149,20 @@
<!-- do body for anonymous user -->
<tag>
<name>anonymous</name>
<tag-class>com.sangupta.jerry.taglib.AnonymousTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.AnonymousTag</tag-class>
<body-content>JSP</body-content>
</tag>

<!-- do body for signed-in user -->
<tag>
<name>signedIn</name>
<tag-class>com.sangupta.jerry.taglib.SignedInTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.SignedInTag</tag-class>
<body-content>JSP</body-content>
</tag>

<tag>
<name>encodeUriComponent</name>
<tag-class>com.sangupta.jerry.taglib.EncodeUriComponentTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.EncodeUriComponentTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>value</name>
Expand All @@ -178,7 +178,7 @@

<tag>
<name>checkbox</name>
<tag-class>com.sangupta.jerry.taglib.CheckBoxTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.CheckBoxTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>id</name>
Expand All @@ -204,7 +204,7 @@

<tag>
<name>option</name>
<tag-class>com.sangupta.jerry.taglib.OptionTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.OptionTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>text</name>
Expand All @@ -225,7 +225,7 @@

<tag>
<name>radio</name>
<tag-class>com.sangupta.jerry.taglib.RadioButtonTag</tag-class>
<tag-class>com.sangupta.jerry.web.taglib.RadioButtonTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>id</name>
Expand Down

0 comments on commit 2645488

Please sign in to comment.