<?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.lib.protocol-buffers.general">
    <title>gmane.comp.lib.protocol-buffers.general</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general</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.lib.protocol-buffers.general/9775"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9774"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9773"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9772"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9771"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9770"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9769"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9768"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9767"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9766"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9765"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9764"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9763"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9762"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9761"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9760"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9759"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9758"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9757"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9756"/>
      </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.lib.protocol-buffers.general/9775">
    <title>Re: List of projects/products using protobuf?</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9775</link>
    <description>&lt;pre&gt;Thanks, Marc. I agree that the downloads are significant. I was just 
looking for names to help with the internal sales job...

--Eric

On Tuesday, May 21, 2013 12:29:05 AM UTC-7, Marc Gravell wrote:

&lt;/pre&gt;</description>
    <dc:creator>EWO</dc:creator>
    <dc:date>2013-05-21T21:20:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9774">
    <title>Re: Issue 148 in protobuf: RFE: Support Documentation option in proto files and javadoc in generated Java files</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9774</link>
    <description>&lt;pre&gt;
Comment #10 on issue 148 by r.vaneet...&amp;lt; at &amp;gt;iterend.com: RFE: Support  
Documentation option in proto files and javadoc in generated Java files
http://code.google.com/p/protobuf/issues/detail?id=148

Thanks for the quick response ... I will apply it right now :)

&lt;/pre&gt;</description>
    <dc:creator>protobuf&lt; at &gt;googlecode.com</dc:creator>
    <dc:date>2013-05-21T14:13:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9773">
    <title>Re: Issue 148 in protobuf: RFE: Support Documentation option in proto files and javadoc in generated Java files</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9773</link>
    <description>&lt;pre&gt;
Comment #9 on issue 148 by jakob.ha...&amp;lt; at &amp;gt;exthex.com: RFE: Support  
Documentation option in proto files and javadoc in generated Java files
http://code.google.com/p/protobuf/issues/detail?id=148

I saw basic support for javadoc as suggested in #7 is already included  
since proto 2.5.0

message Message {
optional string field = 1; // a string
}

is now converted to

/**
  * &amp;lt;code&amp;gt;optional string field = 1;&amp;lt;/code&amp;gt;
  *
  * &amp;lt;pre&amp;gt;
  * a string
  * &amp;lt;/pre&amp;gt;
  */

as javadoc for at least getters and setters in the generated Message and  
MessageBuilder classes



&lt;/pre&gt;</description>
    <dc:creator>protobuf&lt; at &gt;googlecode.com</dc:creator>
    <dc:date>2013-05-21T13:18:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9772">
    <title>Re: Issue 148 in protobuf: RFE: Support Documentation option in proto files and javadoc in generated Java files</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9772</link>
    <description>&lt;pre&gt;
Comment #8 on issue 148 by r.vaneet...&amp;lt; at &amp;gt;iterend.com: RFE: Support  
Documentation option in proto files and javadoc in generated Java files
http://code.google.com/p/protobuf/issues/detail?id=148

Usefull functionnality to publish a proto within a team

&lt;/pre&gt;</description>
    <dc:creator>protobuf&lt; at &gt;googlecode.com</dc:creator>
    <dc:date>2013-05-21T13:09:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9771">
    <title>Re: List of projects/products using protobuf?</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9771</link>
    <description>&lt;pre&gt;I don't know about project/product lists, but you could look to
https://code.google.com/p/protobuf/downloads/list - 50,000 downloads of
protoc 2.5 since late February, which suggests reasonable usage - and that
doesn't include packages that either don't use protoc, or which embed
protoc. You could chalk up at least another 13,000 just from the most
recent version of protobuf-net (nuget+googlecode downloads), but there are
many other external implementations (
https://code.google.com/p/protobuf/wiki/ThirdPartyAddOns) - perhaps that
list is a fair measure of community uptake.

It is a core part of many internal google APIs, and a few of the public
APIs. And more anecdotal: it has certainly featured in most projects with a
need for serialization (persistence, network, etc) that I've been involved
in for the last few years ;p

Marc

&lt;/pre&gt;</description>
    <dc:creator>Marc Gravell</dc:creator>
    <dc:date>2013-05-21T07:29:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9770">
    <title>List of projects/products using protobuf?</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9770</link>
    <description>&lt;pre&gt;Is there a list somewhere of projects or products that use protobuf? I am 
being asked to justify choosing protobuf for a new project and one aspect 
is adoption by others. Thanks in advance for any feedback.

&lt;/pre&gt;</description>
    <dc:creator>EWO</dc:creator>
    <dc:date>2013-05-21T01:04:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9769">
    <title>Re: usage of 'null' as a variable name in protobuf-2.5.0</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9769</link>
    <description>&lt;pre&gt;

Still, it might not be a good idea to use such a name. I could imagine
translating this proto buffer into other languages might create trouble.

-h



&lt;/pre&gt;</description>
    <dc:creator>Henner Zeller</dc:creator>
    <dc:date>2013-05-20T19:52:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9768">
    <title>Re: How could I get service, rpc request &amp; response, message types at runtime?</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9768</link>
    <description>&lt;pre&gt;I would suggest that you include the type of request/response in your
messages. You could perhaps have an enum with your message types and that
way you can check once you parse the message. Of course this means that you
might need to use optionals for the payload of your message. Parsing to
identify the type of message is frowned upon as all messages with the same
structure parse as the same thing. Reflection is mostly used in my
experience to query the structure of an already identified message.

An idea could be to have for both request and response a structure like
this:

message Rpc1 { ... }
message Rpc2 { ... }
message RpcMessage {
  required uint32 message_type = 1;
  optional Rpc1 rpc1 = 2;
  optional Rpc2 rpc2 = 3;
}





On 20 May 2013 08:36, 李俊彦 &amp;lt;giggham&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:


&lt;/pre&gt;</description>
    <dc:creator>Dan Schmidt Valle</dc:creator>
    <dc:date>2013-05-20T16:17:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9767">
    <title>about authenticating my post</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9767</link>
    <description>&lt;pre&gt;Hey guys,
 If you think my post is not legitimate or the issue is already raised then 
please give me the link of that issue. else I am a real guy and please 
accept my issue. I am using protobuf 2.5.0. Please contact me on 
lakhan.pandya91&amp;lt; at &amp;gt;gmail.com

thank you.

&lt;/pre&gt;</description>
    <dc:creator>lakhan.pandya91&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-05-20T16:06:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9766">
    <title>Re: usage of 'null' as a variable name in protobuf-2.5.0</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9766</link>
    <description>&lt;pre&gt;

I believe it is. You are probably using some library which defines null as
a macro.



&lt;/pre&gt;</description>
    <dc:creator>Feng Xiao</dc:creator>
    <dc:date>2013-05-20T16:55:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9765">
    <title>Re: Unit test fails on VS2010 -</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9765</link>
    <description>&lt;pre&gt;
How did you run the tests? The error message below usually means you are
not running the tests in the correct working directory.



&lt;/pre&gt;</description>
    <dc:creator>Feng Xiao</dc:creator>
    <dc:date>2013-05-20T16:50:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9764">
    <title>libprotobuf.so: incompatible target</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9764</link>
    <description>&lt;pre&gt;Hello,

I am  a newbie to linux and protobuf so please try to answer as thoroughly 
as possible,

I am trying to cross compile OLA(Open Lighting Architecture ) for Android 
and for that I am using protobuf version 2.5.0
I have installed protobuf locally at /usr/local
And I have installed protobuf for *arm-linux-androideabi *at 
$HOME/android/root/usr/local 

After running configure script when I try to run make i get this error:

*/home/lakhan/android-ndk-r8e/standalone-toolchain-api9/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: 
error: /usr/local/lib/libprotobuf.so: incompatible target

*I am using protobuf version 2.5.0 for both the installation then why am I 
getting this error? please help me.

The instructions i follow is at this page : 
http://www.opendmx.net/index.php/OLA_on_Android

I am attaching the log file while running make with this mail if it helps !!

Thanks!!

&lt;/pre&gt;</description>
    <dc:creator>lakhan.pandya91&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-05-17T13:17:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9763">
    <title>php bindings</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9763</link>
    <description>&lt;pre&gt;Hi there,

I've nearly opened protocol buffers extension for PHP.
it's not completed but able to encode / decode simple messages.

https://github.com/chobie/php-protocolbuffers

could someone help me out with my ext who loves protocol buffers and PHP?
I'd like to fix some latent bugs and implement protocol buffers correctly.

Thanks,
Shuhei

&lt;/pre&gt;</description>
    <dc:creator>shuhei.tanuma&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-05-19T18:35:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9762">
    <title>Unit test fails on VS2010 -</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9762</link>
    <description>&lt;pre&gt;Hi, 
I run unit tests (tests.exe) on version 2.5.0. but 13 tests fail.

[----------] Global test environment tear-down
[==========] 868 tests from 112 test cases ran. (94055 ms total)
[  PASSED  ] 855 tests.
[  FAILED  ] 13 tests, listed below:
[  FAILED  ] CommandLineInterfaceTest.BasicPlugin
[  FAILED  ] CommandLineInterfaceTest.GeneratorAndPlugin
[  FAILED  ] CommandLineInterfaceTest.MultipleInputs
[  FAILED  ] CommandLineInterfaceTest.MultipleInputsWithImport
[  FAILED  ] CommandLineInterfaceTest.CreateDirectoryA
[  FAILED  ] CommandLineInterfaceTest.GeneratorParameters
[  FAILED  ] CommandLineInterfaceTest.Insert
[  FAILED  ] CommandLineInterfaceTest.PluginOutputWriteError
[  FAILED  ] CommandLineInterfaceTest.PluginOutputDirectoryNotFoundError
[  FAILED  ] CommandLineInterfaceTest.GeneratorPluginError
[  FAILED  ] CommandLineInterfaceTest.GeneratorPluginFail
[  FAILED  ] CommandLineInterfaceTest.GeneratorPluginCrash
[  FAILED  ] CommandLineInterfaceTest.PluginReceivesSourceCodeInfo

In detail:

1)
[ RU&lt;/pre&gt;</description>
    <dc:creator>Kopernik003</dc:creator>
    <dc:date>2013-05-20T15:31:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9761">
    <title>libprotobuf.so:incompatible target</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9761</link>
    <description>&lt;pre&gt;Hello everyone,

I am a student trying to use protobuf for cross compilation for Android and 
I get this error 

*error ; /usr/local/lib/libprotobuf.so: incompatible target* 
please help me how to solve it.
 I have protobuf 2.5.0 for both , my host system which is ubuntu 12.04 and 
also for arm-linux-androideabi..

If you want I can provide you the log..
Thanks in advance .

Lakhan

&lt;/pre&gt;</description>
    <dc:creator>lakhan.pandya91&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-05-20T14:24:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9760">
    <title>[PATCH] add generic atomic operations using gcc 4.7 __atomic_* builtins</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9760</link>
    <description>&lt;pre&gt;---

The idea of this patch is that for all platforms that are not
supported by explicit implementations of atomic operations but happen
to use gcc 4.7 or later we can use the generic builtin functions in
there.

Someone might want to do a quick review if my understanding of the
semantics of the interface was correct in all cases.

When implementing this I wondered though whether it probably would
make sense to limit the interface to be implemented to only those
functions that are actually used.  Currently this would be
Acquire_CompareAndSwap, Release_Store, and Acquire_Load.  I
definitely would consider removing at least those functions that seem
to have quite questionable semantics like Acquire_Store and
Release_Load.  I completely fail to see what those could be useful
for and in fact even in the v8 project where this stuff is taken from
there seems to be absolutely no user of those specific functions.  It
seems that implementors of those functions tried to find some kind of
useful semantics by just addin&lt;/pre&gt;</description>
    <dc:creator>Robert Schiele</dc:creator>
    <dc:date>2013-05-17T14:40:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9759">
    <title>usage of 'null' as a variable name in protobuf-2.5.0</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9759</link>
    <description>&lt;pre&gt;Version 2.5.0 has the following line in a couple of places in 
repeated_field.h:

MessageLite* null = NULL;


My gnu-based compiler doesn't like this as it thinks 'null' is a constant.

If I rename 'null' as 'narl' then it's OK.

Is 'null' a valid variable name?

&lt;/pre&gt;</description>
    <dc:creator>daniel.ng1234&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-05-17T05:58:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9758">
    <title>How could I get service, rpc request &amp; response, message types at runtime?</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9758</link>
    <description>&lt;pre&gt;take a simple example:

message MyRequest
{
    required uint32 Request = 1;
}

message MyResponse
{
    required uint32 Response = 1;
}

service MyService
{
    rpc MyRpc(MyRequest) returns (MyResponse)
}


if I have string "MyService" and "MyRpc", and binary data for MyRequest and 
MyResponse,
how could I get known that the request is type "MyRequest" and the response 
is type "MyResponse" and then
construct objects of "MyRequest" &amp;amp; "MyResponse" to parse the binary data?

is it so called reflection?

&lt;/pre&gt;</description>
    <dc:creator>李俊彦</dc:creator>
    <dc:date>2013-05-20T07:36:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9757">
    <title>Issue 514 in protobuf: Unit tests (tests.exe) fail on version 2.5.0</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9757</link>
    <description>&lt;pre&gt;Status: New
Owner: liujisi&amp;lt; at &amp;gt;google.com
Labels: Type-Defect Priority-Medium

New issue 514 by bruno.pa...&amp;lt; at &amp;gt;gmail.com: Unit tests (tests.exe) fail on  
version 2.5.0
http://code.google.com/p/protobuf/issues/detail?id=514

What steps will reproduce the problem?
1. Execute unit tests (tests.exe)
2.
3.

What is the expected output? What do you see instead?
I expect that all tests pass but:
[----------] Global test environment tear-down
[==========] 868 tests from 112 test cases ran. (94055 ms total)
[  PASSED  ] 855 tests.
[  FAILED  ] 13 tests, listed below:
[  FAILED  ] CommandLineInterfaceTest.BasicPlugin
[  FAILED  ] CommandLineInterfaceTest.GeneratorAndPlugin
[  FAILED  ] CommandLineInterfaceTest.MultipleInputs
[  FAILED  ] CommandLineInterfaceTest.MultipleInputsWithImport
[  FAILED  ] CommandLineInterfaceTest.CreateDirectoryA
[  FAILED  ] CommandLineInterfaceTest.GeneratorParameters
[  FAILED  ] CommandLineInterfaceTest.Insert
[  FAILED  ] CommandLineInterfaceTest.PluginOutputWriteError
[  FAILED  ] CommandLi&lt;/pre&gt;</description>
    <dc:creator>protobuf&lt; at &gt;googlecode.com</dc:creator>
    <dc:date>2013-05-20T15:36:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9756">
    <title>Re: Re: 2.5.0 released.</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9756</link>
    <description>&lt;pre&gt;
It has already been updated:
https://developers.google.com/protocol-buffers/docs/overview



&lt;/pre&gt;</description>
    <dc:creator>Feng Xiao</dc:creator>
    <dc:date>2013-05-16T16:39:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9755">
    <title>Re: maven protocolBuffers plugin: unable to find imported .proto files</title>
    <link>http://permalink.gmane.org/gmane.comp.lib.protocol-buffers.general/9755</link>
    <description>&lt;pre&gt;The B.proto needs to be packaged into a jar file and listed as a dependency 
in your project. In that case the maven-protoc-plugin will do as stated in 
the documentation:

The Plugin automatically scans all project dependencies for bundled .proto 


ref: http://sergei-ivanov.github.io/maven-protoc-plugin/ 

So if you start with a maven module with one file, and the appropriate 
pom.xml with maven-protoc-plugin configured
src/main/proto/B.proto
it will produce 'B.jar' which you can reference as a dependency from A's 
pom.xml

details: http://sergei-ivanov.github.io/maven-protoc-plugin/usage.html


Regards,
Paul Nyheim

On Wednesday, May 15, 2013 12:30:16 PM UTC+2, Safi Ali wrote:

&lt;/pre&gt;</description>
    <dc:creator>pnyheim</dc:creator>
    <dc:date>2013-05-16T09:25:01</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lib.protocol-buffers.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lib.protocol-buffers.general</link>
  </textinput>
</rdf:RDF>
