<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user">
    <title>gmane.comp.jakarta.taglibs.user</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8721"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8720"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8719"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8718"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8717"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8716"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8715"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8714"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8713"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8712"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8711"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8710"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8709"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8708"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8707"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8706"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8705"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8704"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8703"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8702"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8721">
    <title>Re: JSTLExamples NetBean Sample Project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8721</link>
    <description>&lt;pre&gt;Hi Tim/Stani,

I'd go so far as to say SQL doesn't even belong in the model layer as 
per Fowler/Larmen/whomever 3-layer approaches.

My recommendation is to use some form of Controller servlet that takes 
care of much of what is needed, like setting up connections and setting 
attributes (not directly, see Fowler's P of EAA or my thesis --if you're 
a masochist-- 
https://soenea.htmlweb.com/trac/browser/Documentation/trunk/Thesis/Thesis_Stuart.pdf). 
This allows problems like that to be addressed in the appropriate 
places, leaving the JSP Templates oblivious to it all and letting the 
jstl stuff stick to providing appropriate support to display relevant 
data in the JSPs. Even if your abstraction was less religiously (Domain) 
Object-Oriented than what I propose, having your jstl stuff just 
manipulate some form of ResultSet/DAO would probably achieve appropriate 
separation, with problems like missing database drivers happening before 
the JSP is even dispatched to (and possibly leading to the dispatching&lt;/pre&gt;</description>
    <dc:creator>Stuart Thiel</dc:creator>
    <dc:date>2011-10-27T15:54:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8720">
    <title>Re: JSTLExamples NetBean Sample Project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8720</link>
    <description>&lt;pre&gt;Hi Tim,

1) using SQL tags in a JSP is a bad design choice, I recommend against it.
SQL belongs in the model layer, not the presentation layer.
2) I am not familiar with how NetBeans does things nor have I tried Derby
but to me this sounds like a typical Tomcat class loader problem. The SQL
tags (or whatever is looking for the Derby driver) are outside your
application (loaded by Tomcat's common class loader) so they cannot see the
Derby classes loaded inside your application. Try locating the Tomcat
installation that NetBeans is starting and add the Derby driver jar to the
lib folder in there, that will most likely fix it.

Good Luck,
Stani

On Thu, Oct 27, 2011 at 11:14 AM, Tim Puchala &amp;lt;tim.puchala&amp;lt; at &amp;gt;hotmail.com&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Stani Ryabenkiy</dc:creator>
    <dc:date>2011-10-27T15:21:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8719">
    <title>JSTLExamples NetBean Sample Project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8719</link>
    <description>&lt;pre&gt;I’m trying to run explore SQL Tags section of the sample project provided by NetBeans called JSTLExamples
I changed the database url to use sample rather than the default jstl-sample because that is the databes in the Services pane under Databases. The schema is APP and the user is app.
I used app and app for user and password.
I am getting an SQLException when executing the QueryIterate option (first on the page).
The description of the exception is “No suitable driver found for jdbc:derby://localhost:1527/sample;create=true
I have tried adding the jar file derbyclient.jar to the project library, but this doesn’t correct the error.
I would have thought the project shouldn’t need tweaking like this anyway if it’s a sample project provided by Netbeans.
Any ideas, anybody?&lt;/pre&gt;</description>
    <dc:creator>Tim Puchala</dc:creator>
    <dc:date>2011-10-27T09:14:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8718">
    <title>Re: standard-1.1.3 Bugfix release?</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8718</link>
    <description>&lt;pre&gt;Thanks. As Henri said, real life is occupying me at the moment.

The outstanding work on 1.2 is really just the release process (with a bit of cleanup for Maven 3.0) and the website. I don't have time to finish that but would be able to run the TCK against a candidate.

46052 still needs to be addressed for running on JRE1.6 but IIRC we were not going to hold a release for that.

Cheers
Jeremy

On Oct 6, 2011, at 11:03 PM, Henri Yandell wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jeremy Boynes</dc:creator>
    <dc:date>2011-10-07T14:57:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8717">
    <title>Re: standard-1.1.3 Bugfix release?</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8717</link>
    <description>&lt;pre&gt;A 1.2 would be awesome as it's got more bugfixes than the Oracle
version. Jeremy was working on the TCK side of things, but has other
priorities right now.

Hen

On Thu, Oct 6, 2011 at 8:19 AM, Florian Kirchmeir
&amp;lt;florian.kirchmeir&amp;lt; at &amp;gt;unycom.com&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Henri Yandell</dc:creator>
    <dc:date>2011-10-07T06:03:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8716">
    <title>standard-1.1.3 Bugfix release?</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8716</link>
    <description>&lt;pre&gt;Hi Devs!

Will there ever be any further 1.1.x releases of the standard JSTL library?
It's almost 7 years now since the last stable release, and there are some bufixes (like https://issues.apache.org/bugzilla/show_bug.cgi?id=31789) sitting there that would be most welcome.
Unless there will be a stable 1.2 release the other day, I'd really appreciate another 1.1.x tag!

Best regards,
Florian Kirchmeir
&lt;/pre&gt;</description>
    <dc:creator>Florian Kirchmeir</dc:creator>
    <dc:date>2011-10-06T15:19:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8715">
    <title>Re: Taglib and Tomcat 6 &amp; 7</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8715</link>
    <description>&lt;pre&gt;

The taglib releases should work fine with the newer versions of Tomcat.&lt;/pre&gt;</description>
    <dc:creator>Jeremy Boynes</dc:creator>
    <dc:date>2011-07-02T05:16:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8714">
    <title>Taglib and Tomcat 6 &amp; 7</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8714</link>
    <description>&lt;pre&gt;Hi All,

I was wondering for Tomcat 6 &amp;amp; 7 is the taglib support those versions since the 
support stopped at servlet spec 2.4 and Tomcat 6 is servlet 2.5.

Thanks,
-Tony
&lt;/pre&gt;</description>
    <dc:creator>Tony Anecito</dc:creator>
    <dc:date>2011-06-30T14:56:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8713">
    <title>Getting error during the compilation of JSP tag library using Jasper compliler of Tomcat.</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8713</link>
    <description>&lt;pre&gt;Hi List,

I am trying to shift my project from Resin to Tomcat 7. Everything goes fine during deployment. But when I try to access JSP page it is giving me SEVERE Error as follows.

Error details:
[jasper] Jun 22, 2011 2:32:19 AM org.apache.jasper.xmlparser.MyEntityResolver resolveEntity
      [jasper] SEVERE: Invalid PUBLIC ID: -//Sun Microsystems, Inc.//DTD JSP Tag Library

JSP Detail : (inside my application)
      &amp;lt;%&amp;lt; at &amp;gt; taglib uri="http://www.myCompany.com/tld/paf/rswitch" prefix="rs" %&amp;gt;
      ...

TLD file paf-rswitch.tld (can't change, Code freeze belongs to other project)
&amp;lt;?xml version="1.0" encoding="ISO-8859-1" ?&amp;gt;
&amp;lt;!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library"
                 "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"&amp;gt;
...

This tld is present inside a jar META-INF/tlds folder.

Here is some more detail about my environment :
Tag lib version : 1.0
JSP version 1.2
Tomcat : 7.0.14
JDK : 1.6_14

This will be great help if someone could help me in this issue.

I saw the&lt;/pre&gt;</description>
    <dc:creator>Paramjeet Singh Bawa</dc:creator>
    <dc:date>2011-06-22T10:09:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8712">
    <title>Jonathan Whitall is out of the office</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8712</link>
    <description>&lt;pre&gt;
I will be out of the office starting 05/03/2011 and will not return until
05/04/2011




HCSC Company Disclaimer

The information contained in this communication is confidential, private,
proprietary, or otherwise privileged and is intended only for the use of
the addressee.  Unauthorized use, disclosure, distribution or copying is
strictly prohibited and may be unlawful.  If you have received this
communication in error, please notify the sender immediately at (312)
653-6000 in Illinois; (800)835-8699 in New Mexico; (918)560-3500 in
Oklahoma; or (972)766-6900 in Texas.
&lt;/pre&gt;</description>
    <dc:creator>Jonathan_Whitall&lt; at &gt;bcbsil.com</dc:creator>
    <dc:date>2011-05-03T17:06:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8711">
    <title>I have a patch to add encode/decode to extended...</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8711</link>
    <description>&lt;pre&gt;Where/how should I submit this?
&lt;/pre&gt;</description>
    <dc:creator>Jake Swartwood</dc:creator>
    <dc:date>2011-05-03T16:33:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8710">
    <title>Re: [email] Dynamic attachments in mailer taglib 2 using JavaBean</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8710</link>
    <description>&lt;pre&gt;This is a static reference to the method:
and will lead to that compiler error.

How about
filename="${getFilePath.tempFilePath}"

On Sep 2, 2010, at 8:32 PM, Ferindo Middleton wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jeremy Boynes</dc:creator>
    <dc:date>2010-09-05T15:34:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8709">
    <title>[email] Dynamic attachments in mailer taglib 2 using JavaBean</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8709</link>
    <description>&lt;pre&gt;I've written a javabean that connects to a database, downloads a file,
and one of the getter methods returns the complete file path to the
file.

The problem I have is: when the JSP runs and gets to the part where it
gets the file path to pass to the taglib, I get an error message that
is typical of a reference to a nonstatic variable. This concerns me as
I thout getter methods in javabeans would inherently returns values
that are valid instance variables in a JSP.

I will paste my getter method below, the JSP call to that method and
the error message below: any guidance is welcome. Thank you:

Getter method in jsvabean (javabean compiles fine):

                public String getTempFilePath() {
                    this.downloadedfilename=tempFilePath;
                    return this.downloadedfilename;
                  }

JSP call to getter method above:

        &amp;lt;jsp:useBean id="getFilePath" scope="request"
        class="hall.RadTicketsFileDownloadForEmailAttachmentBean"&amp;gt;
   &amp;lt;jsp:setProperty name="getFil&lt;/pre&gt;</description>
    <dc:creator>Ferindo Middleton</dc:creator>
    <dc:date>2010-09-03T03:32:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8708">
    <title>Mailer taglib: dynamic file attachments</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8708</link>
    <description>&lt;pre&gt;I'm using the old Mailer Taglib (
http://jakarta.apache.org/taglibs/doc/mailer-doc/). Because the mailer tag
only provides a means to provide a path to the file, I'm trying to code it
so it dynamically attaches an attachment that was downloaded via a servlet I
wrote. The servlet retrieves the file from a database, downloads it, and
then my plan is to simply provide the the path to the JSP via the servlet.
I'm having difficulty embedding the servelt into the JSP page so I can throw
the path argument to the file property of the mailer tag.

Does anyone know what happened to the Mailer 2 taglib? I tried downloading
the svn (
http://svn.apache.org/repos/asf/jakarta/taglibs/deprecated-sandbox/mailer2/trunk/)
and building it using ant but I get an error message which appears to mean
the svn isn't finished because  ant says it can find files and I don't see a
.tld file in that svn either.

The mailer tag is working for me, I just need a way to get dynamically
created attachments embedded.
&lt;/pre&gt;</description>
    <dc:creator>Ferindo Middleton</dc:creator>
    <dc:date>2010-08-22T21:29:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8707">
    <title>New taglib to script JSP pages in languages other than Java</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8707</link>
    <description>&lt;pre&gt;Hello,

as I haven't posted here before, I hope I won't make a mistake by
posting to both of these lists. IMHO, this announcement is relevant to
both communities.

This is to inform the taglibs-user and tomcat-dev communities of a
small new taglib which allows to script JSP pages in languages other
than Java. Scriptlets and expressions using the taglib have access to
the same implicit objects normal JSP scriptlets have access to.
Internally, the taglib only depends on the javax.script interface
defined as part of JSR-223 and included in Java 6 onwards, although it
can also work with other implementations of javax.script on earlier
version of Java (such as, for instance, Bean Scripting Framework 3).
So for people who want to include scripts in their JSP pages, any
scripting language that exposes a javax.script interface can be used.

Given the nature of the project, and the existence of partial
alternatives at least for some languages (such as Quercus/Resin), I
expect interest to be quite small (if any), but &lt;/pre&gt;</description>
    <dc:creator>Stanislav Ryabenkiy</dc:creator>
    <dc:date>2010-08-04T07:49:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8706">
    <title>Re: import tag for dynamic content</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8706</link>
    <description>&lt;pre&gt;As I read the spec, something like this should work:
&amp;lt;c:set var="url" value="/x/y/z"/&amp;gt;
&amp;lt;c:import var="doc" url="${url}"/&amp;gt;
&amp;lt;x:parse varDom="dom" doc="${doc}"/&amp;gt;

The &amp;lt;c:import&amp;gt; should dispatch to the servlet at "/x/y/z" in your application and store the response in ${doc} as a String. The &amp;lt;x:parse&amp;gt; should then parse that String into a Document stored in ${dom}.

If that's not working for you can you open a bug (ideally with something to reproduce the error or best of all a patch) and I'll look in to it.
Thanks
Jeremy

On Jul 29, 2010, at 3:03 AM, paulbrickell wrote:

&lt;/pre&gt;</description>
    <dc:creator>Jeremy Boynes</dc:creator>
    <dc:date>2010-07-29T15:47:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8705">
    <title>Re: import tag for dynamic content</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8705</link>
    <description>&lt;pre&gt;
Then you're not doing it the way I have described.

I have been battling with this for ages. Every time I want to import
dynamically generated xml document it doesn't work. The URL gets mangled by
the import tag.

I can use the request parameters to form a full URL but that doesn't work
for a secure app because the credentials aren't shared.

Create a Jersey web service and use the tags as I have described. Just
doesn't work at all. I have resorted to writing my own tag. 

Hey ho.



Hassan Schroeder-2 wrote:

&lt;/pre&gt;</description>
    <dc:creator>paulbrickell</dc:creator>
    <dc:date>2010-07-29T10:03:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8704">
    <title>Re: Location of new Extended Taglibs project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8704</link>
    <description>&lt;pre&gt;I'd seen #2, but not #1, thanks!

--adam

On Tue, Jul 13, 2010 at 12:51, Rahul Akolkar &amp;lt;rahul.akolkar&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Adam Gordon</dc:creator>
    <dc:date>2010-07-13T19:02:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8703">
    <title>Re: Location of new Extended Taglibs project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8703</link>
    <description>&lt;pre&gt;oh, *that* "extended"... ;-)

On Tue, Jul 13, 2010 at 2:51 PM, Rahul Akolkar &amp;lt;rahul.akolkar&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Kris Schneider</dc:creator>
    <dc:date>2010-07-13T18:54:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8702">
    <title>Re: Location of new Extended Taglibs project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8702</link>
    <description>&lt;pre&gt;Not sure what you mean by "extended", but the "Taglibs" link is at the
top-left of the Tomcat homepage. It will take you here:

http://tomcat.apache.org/taglibs/

On Tue, Jul 13, 2010 at 2:41 PM, Adam Gordon &amp;lt;adam.n.gordon&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Kris Schneider</dc:creator>
    <dc:date>2010-07-13T18:53:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8701">
    <title>Re: Location of new Extended Taglibs project</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.taglibs.user/8701</link>
    <description>&lt;pre&gt;&amp;lt;snip/&amp;gt;

The extended taglib is not released and does not yet have a website.
The SVN location after the move is here [1]. The main taglibs website
is here [2].

-Rahul

P.S.- I moderated your message through, please subscribe before
posting any more messages to the list.

[1] http://svn.apache.org/repos/asf/tomcat/taglibs/extended/trunk/
[2] http://tomcat.apache.org/taglibs/


&lt;/pre&gt;</description>
    <dc:creator>Rahul Akolkar</dc:creator>
    <dc:date>2010-07-13T18:51:09</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.jakarta.taglibs.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.jakarta.taglibs.user</link>
  </textinput>
</rdf:RDF>

