<?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.php.general">
    <title>gmane.comp.php.general</title>
    <link>http://permalink.gmane.org/gmane.comp.php.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.php.general/225928"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225927"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225926"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225925"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225924"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225923"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225922"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225921"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225920"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225919"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225918"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225917"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225916"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225915"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225914"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225913"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225912"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225911"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225910"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.general/225909"/>
      </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.php.general/225928">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225928</link>
    <description>&lt;pre&gt;Jim L. I did't actually consider that wide range of time values.  Here
is an update. Still  this can be written without help of regex. I must
add one more thing that a '00:01' is invalid in 12 hour format. OP
wants it to be 12-hour format.

function valid_time($time){
        $m = substr($time, -2);
        $h = (explode(':', substr($time, 0, -2)));
        $h = $h[0];
        return (is_numeric($h) &amp;amp;&amp;amp; is_numeric($m) &amp;amp;&amp;amp; $h&amp;gt;0 &amp;amp;&amp;amp; $h&amp;lt;13 &amp;amp;&amp;amp;
$m&amp;gt;=0 &amp;amp;&amp;amp; $m&amp;lt;60);
}

See the code in action here http://ideone.com/tSQIb

&lt;/pre&gt;</description>
    <dc:creator>Shiplu</dc:creator>
    <dc:date>2012-05-18T05:46:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225927">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225927</link>
    <description>&lt;pre&gt;
I optimized it a little...

http://www.cmsws.com/examples/php/testscripts/shiplu.net&amp;lt; at &amp;gt;gmail.com/pt_regex.php
http://www.cmsws.com/examples/php/testscripts/shiplu.net&amp;lt; at &amp;gt;gmail.com/pt_regex.phps

&amp;lt;pre&amp;gt;&amp;lt;?php

$times = array(
   '100',      # valid
   '1100',     # valid
   '1300',     # invalid
   '01:00',    # valid
   '12:59',    # valid
   '00:01',    # valid
   '00:25pm',  # invalid
   '0000',     # valid
   'a00',      # invalid
   '00',       # invalid
   );

foreach ( $times AS $time )
   echo "{$time} is ".(valid_time($time)?'valid':'invalid')."\n";

function valid_time($time) {
   if (
       preg_match('#^(\d{1,2}):?(\d{2})$#', $time, $m) &amp;amp;&amp;amp;
       ( 0 &amp;lt;= (int) $m[1] &amp;amp;&amp;amp; 12 &amp;gt;= (int) $m[1] ) &amp;amp;&amp;amp;
       ( 0 &amp;lt;= (int) $m[2] &amp;amp;&amp;amp; 59 &amp;gt;= (int) $m[2] )
      ) {
     return TRUE;
   }
   return FALSE;
}


&lt;/pre&gt;</description>
    <dc:creator>Jim Lucas</dc:creator>
    <dc:date>2012-05-18T05:31:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225926">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225926</link>
    <description>&lt;pre&gt;
How about this instead?

&amp;lt;pre&amp;gt;&amp;lt;?php

$times = array(
         '100',          # valid
         '1100',         # valid
         '1300',         # invalid
         '01:00',        # valid
         '12:59',        # valid
         '00:01',        # valid
         '00:25pm',      # invalid
         '0000',         # valid
         'a00',          # invalid
         '00',           # invalid
         );

foreach ( $times AS $time )
   echo "{$time} is ".(valid_date($time)?'valid':'invalid')."\n";

function valid_date($time) {

   if ( ( $c_time = preg_replace('|[^\d\:]+|', '', $time) ) != $time )
     return false;

   preg_match('#^(?P&amp;lt;hour&amp;gt;\d{1,2}):?(?P&amp;lt;minute&amp;gt;\d{2})$#', $time, $m);

   if (
       $m &amp;amp;&amp;amp;
       ( 0 &amp;lt;= (int) $m['hour']   &amp;amp;&amp;amp; 12 &amp;gt;= (int) $m['hour'] ) &amp;amp;&amp;amp;
       ( 0 &amp;lt;= (int) $m['minute'] &amp;amp;&amp;amp; 59 &amp;gt;= (int) $m['minute'] )
      ) {
     return TRUE;
   }

   return false;

}

Let me know.

&lt;/pre&gt;</description>
    <dc:creator>Jim Lucas</dc:creator>
    <dc:date>2012-05-18T04:52:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225925">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225925</link>
    <description>&lt;pre&gt;
"Jim Lucas" &amp;lt;lists&amp;lt; at &amp;gt;cmsws.com&amp;gt; wrote in message 
news:4FB5B89E.8050000&amp;lt; at &amp;gt;cmsws.com...

Thanks for the work you did, but I really wanted to try to solve this using 
the more "elegant" way, which from my readings over the last year as a new 
php developer, seemed to be the regexp methodology.  I'm so close - it's 
only the 1300,1400,etc. time values that are getting by my expression.

And thank you Shiplu also for your simple, but non-regexp, solution.  Yes - 
it works and I had something similar that was just missing one more check 
when I decided to explore the regexp method.




&lt;/pre&gt;</description>
    <dc:creator>Jim Giner</dc:creator>
    <dc:date>2012-05-18T03:07:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225924">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225924</link>
    <description>&lt;pre&gt;
That won't work, it doesn't account for the possibility of a single 
digit hour field.

I would do something like this:

&amp;lt;?php

$times = array(
         '100',          # valid
         '1100',         # valid
         '1300',         # invalid
         '01:00',        # valid
         '12:59',        # valid
         '00:01',        # valid
         '00:25pm',      # invalid
         '0000',         # valid
         'a00',          # invalid
         '00',           # invalid
         );

foreach ( $times AS $time )
         echo "{$time} is ".(valid_date($time)?'valid':'invalid')."\n";

function valid_date($time) {
   if ( ( $c_time = preg_replace('|[^\d:]+|', '', $time) ) !== $time )
     return false;

   if ( ( $pos = strpos($c_time, ':') ) !== false ) {
     list($hour, $minute) = explode(':', $c_time, 2);
   } else {
     $break  = (strlen($c_time) - 2);
     $hour   = substr($c_time, 0, $break);
     $minute = substr($c_time, $break, 2);
   }
   $hour = (int)$hour;
   $minute = (int)$minute;

   if &lt;/pre&gt;</description>
    <dc:creator>Jim Lucas</dc:creator>
    <dc:date>2012-05-18T02:49:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225923">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225923</link>
    <description>&lt;pre&gt;Thank you !
"Govinda" &amp;lt;govinda.webdnatalk&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote in message 
news:3E5DCE87-29C1-4679-AD3A-53326435F864&amp;lt; at &amp;gt;gmail.com...

this helps alot:

http://www.gskinner.com/RegExr/

you can paste your pattern (needle) in  the top input, and hover over each 
char to see what it means in grep land.
Paste your haystack in the big box (input), under that, to see where all 
your needle will be found.





&lt;/pre&gt;</description>
    <dc:creator>Jim Giner</dc:creator>
    <dc:date>2012-05-17T21:21:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225922">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225922</link>
    <description>&lt;pre&gt;
this helps alot:

http://www.gskinner.com/RegExr/

you can paste your pattern (needle) in  the top input, and hover over each char to see what it means in grep land.
Paste your haystack in the big box (input), under that, to see where all your needle will be found. 




&lt;/pre&gt;</description>
    <dc:creator>Govinda</dc:creator>
    <dc:date>2012-05-17T21:19:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225921">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225921</link>
    <description>&lt;pre&gt;"Yared Hufkens" &amp;lt;y423d&amp;lt; at &amp;gt;yahoo.de&amp;gt; wrote in message 
news:4FB5667D.7020801&amp;lt; at &amp;gt;yahoo.de...

Nope - that didn't work.  Tested it against  1900, 1300 and 13:00 and all 
came thru as OK.
Also - I don't understand at all the following:


I know (?) that [1-9] validates any digit from 1 to 9 - I was already using 
that.
And your point about [1-2] doesn't make sense to me since I need to validate 
10:00 which [1-2] in my usage would cause 10:00 to fail.
And I don't know what ? means at all.

FWIW - I couldn't find much in the way of tutorials on the meanings of the 
various chars in regexp's. 



&lt;/pre&gt;</description>
    <dc:creator>Jim Giner</dc:creator>
    <dc:date>2012-05-17T21:07:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225920">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225920</link>
    <description>&lt;pre&gt;Try this:
/(0?[1-9]|[12][0-9]):?[0-5][0-9]/

FYI: ? is equal to {0,1}, and [1-9] to [123456789] (and therefore [1-2]
to [12]).


Am 17.05.2012 22:37, schrieb Jim Giner:

&lt;/pre&gt;</description>
    <dc:creator>Yared Hufkens</dc:creator>
    <dc:date>2012-05-17T20:58:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225919">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225919</link>
    <description>&lt;pre&gt;
I can not correct your regexp. But I must tell you that trying to tweak a
regex for hours is surely **not productive**. If you got any type of text
processing dont always go for regular expression. This problem can be
solved just by simple string parsing.
Here I have done that for you.


function valid_time($time){
        $m  = (int) substr($time, -2);
        $h  = (int) substr($time, 0, -2);
        return ($h&amp;gt;=0 &amp;amp;&amp;amp; $h&amp;lt;13 &amp;amp;&amp;amp; $m&amp;gt;=0 &amp;amp;&amp;amp; $m&amp;lt;60);
}


&lt;/pre&gt;</description>
    <dc:creator>shiplu</dc:creator>
    <dc:date>2012-05-17T20:57:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225918">
    <title>Re: regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225918</link>
    <description>&lt;pre&gt;OOPS
FORGOT to mention that I modify the string to add a colon if it is entered 
without one, so my regexp
always expects a ":" to be in the middle.  So in actuality - my regexp is 
'passing' a value of 13:00 as legitimate, when it should not be.



&lt;/pre&gt;</description>
    <dc:creator>Jim Giner</dc:creator>
    <dc:date>2012-05-17T20:43:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225917">
    <title>regexp novice</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225917</link>
    <description>&lt;pre&gt;ok - finally had to come up with my own regexp - and am failing.

Trying to validate an input of a time value in the format hh:mm, wherein 
I'll accept anything like the following:
hmm
hhmm
h:mm
hh:mm

in a 12 hour format.  My problem is my test is ok'ing an input of 1300.

Here is my test:

 if (0 == preg_match("/([0][1-9]|[1][0-2]|[1-9]):[0-5][0-9]/",$t))
    return true;
else
    return false;

Can someone help me correct my regexp? 



&lt;/pre&gt;</description>
    <dc:creator>Jim Giner</dc:creator>
    <dc:date>2012-05-17T20:37:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225916">
    <title>Re: Performance / AB issue?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225916</link>
    <description>&lt;pre&gt;

Arghh!!!! :-S

Its an APC issue.... If I turn off php's apc it can handle multiple
connections! ... have to study apc!

Best regards / Med venlig hilsen

LFWeb
Lars Nielsen


&lt;/pre&gt;</description>
    <dc:creator>Lars Nielsen</dc:creator>
    <dc:date>2012-05-15T10:06:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225915">
    <title>Re: Performance / AB issue?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225915</link>
    <description>&lt;pre&gt;
Now i have the result of a test on localhost:


ab -c 1 -n 20 http://localhost/
This is ApacheBench, Version 2.3 &amp;lt;$Revision: 655654 $&amp;gt;
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient).....done


Server Software:        Apache/2.2.22
Server Hostname:        localhost
Server Port:            80

Document Path:          /
Document Length:        14463 bytes

Concurrency Level:      1
Time taken for tests:   3.540 seconds
Complete requests:      20
Failed requests:        0
Write errors:           0
Total transferred:      298480 bytes
HTML transferred:       289260 bytes
Requests per second:    5.65 [#/sec] (mean)
Time per request:       177.020 [ms] (mean)
Time per request:       177.020 [ms] (mean, across all concurrent requests)
Transfer rate:          82.33 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    0   0.0      0 &lt;/pre&gt;</description>
    <dc:creator>Lars Nielsen</dc:creator>
    <dc:date>2012-05-15T09:40:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225914">
    <title>Re: Bug in DOMDocument schemaValidate() function?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225914</link>
    <description>&lt;pre&gt;Hello,

I am sorry, but everything is ok here. I am performing an unmarshalling and marshalling unit test for every resource and 
the problem was, that after unmarshalling to the object, the marshalling of the object did not create the version 
element. I did not notice this in the first place.

So the validation error occured after the step of testing the marshalling and not before testing the unmarshalling.

Thank you anyways!

Best regards,
Marko

Am 14.05.2012 16:43, schrieb Matijn Woudt:


-------------------------------------------------------

Fachinformationszentrum Karlsruhe, Gesellschaft für wissenschaftlich-technische Information mbH. 
Sitz der Gesellschaft: Eggenstein-Leopoldshafen, Amtsgericht Mannheim HRB 101892. 
Geschäftsführerin: Sabine Brünger-Weilandt. 
Vorsitzender des Aufsichtsrats: MinDirig Dr. Thomas Greiner.

&lt;/pre&gt;</description>
    <dc:creator>Voß, Marko</dc:creator>
    <dc:date>2012-05-14T14:49:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225913">
    <title>Re: Bug in DOMDocument schemaValidate() function?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225913</link>
    <description>&lt;pre&gt;
If you're 100% sure this XML is valid, then this is a bug. You should
report it at bugs.php.net, but it is most likely this bug is in
libXML, and needs to be fixed there.

- Matijn

&lt;/pre&gt;</description>
    <dc:creator>Matijn Woudt</dc:creator>
    <dc:date>2012-05-14T14:43:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225912">
    <title>Bug in DOMDocument schemaValidate() function?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225912</link>
    <description>&lt;pre&gt;Hello,

I am validating user DOM against schema files using the following piece of code:

$valid = &amp;lt; at &amp;gt;$doc-&amp;gt;schemaValidate($xsdFile);

where $doc is of type DOMDocument and $xsdFile is the file location of the XSD file.

Everything worked fine until the following validation occured:

A validation of a XML against the SRW/U schema (http://www.loc.gov/standards/sru/sru1-1archive/xml-files/srw-types.xsd) 
failed.

Here is the XML:

-----------------------------------------------------
&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;srw:explainResponse xmlns:srw="http://www.loc.gov/zing/srw/" xmlns:zr="http://explain.z3950.org/dtd/2.0/"&amp;gt;
   &amp;lt;srw:version&amp;gt;1.1&amp;lt;/srw:version&amp;gt;
   &amp;lt;srw:record&amp;gt;
     &amp;lt;srw:recordSchema&amp;gt;http://explain.z3950.org/dtd/2.0/&amp;lt;/srw:recordSchema&amp;gt;
     &amp;lt;srw:recordPacking&amp;gt;XML&amp;lt;/srw:recordPacking&amp;gt;
     &amp;lt;srw:recordData&amp;gt;
       &amp;lt;zr:explain&amp;gt;
         &amp;lt;zr:serverInfo wsdl="http://myserver.com/db" protocol="SRU" version="1.1"&amp;gt;
           &amp;lt;host&amp;gt;myserver.com&amp;lt;/host&amp;gt;
           &amp;lt;port&amp;gt;80&amp;lt;/port&amp;gt;
           &amp;lt;database&amp;gt;sru&amp;lt;/d&lt;/pre&gt;</description>
    <dc:creator>Voß, Marko</dc:creator>
    <dc:date>2012-05-14T11:39:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225911">
    <title>Re: looking for some PECL PHP GTK tutorial</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225911</link>
    <description>&lt;pre&gt;On Mon, May 14, 2012 at 7:05 AM, Mihamina Rakotomandimby
&amp;lt;mihamina&amp;lt; at &amp;gt;rktmb.org&amp;gt; wrote:

Installing PECL packages under linux is as simple as:
$ pecl install &amp;lt;packagename&amp;gt;

- Matijn

&lt;/pre&gt;</description>
    <dc:creator>Matijn Woudt</dc:creator>
    <dc:date>2012-05-14T09:44:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225910">
    <title>Re: code deployment through php</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225910</link>
    <description>&lt;pre&gt;
one final gotcha; if you want to backup the git repositories, you have
to use xcopy /s /h source destination. it needs that /h to copy .git
directories that are hidden by default.

&lt;/pre&gt;</description>
    <dc:creator>rene7705</dc:creator>
    <dc:date>2012-05-14T09:01:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225909">
    <title>looking for some PECL PHP GTK tutorial</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225909</link>
    <description>&lt;pre&gt;Hi all

As PHP-GTK has "moved" to the PECL, I suppose several part of this 
documentation are not relevent anymore: 
http://gtk.php.net/manual/en/tutorials.installation.linux.php

Would you know a place where I could find some way to work with it?

Thank you!


&lt;/pre&gt;</description>
    <dc:creator>Mihamina Rakotomandimby</dc:creator>
    <dc:date>2012-05-14T05:05:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.general/225908">
    <title>Re: Converting date string to unix timestamp</title>
    <link>http://permalink.gmane.org/gmane.comp.php.general/225908</link>
    <description>&lt;pre&gt;
If you want to see your post, you can check (drill down) here:

http://marc.info/?l=php-general

-Govinda


&lt;/pre&gt;</description>
    <dc:creator>Govinda</dc:creator>
    <dc:date>2012-05-14T00:59:17</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.php.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.php.general</link>
  </textinput>
</rdf:RDF>

