<?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://blog.gmane.org/gmane.comp.lang.neko.general">
    <title>gmane.comp.lang.neko.general</title>
    <link>http://blog.gmane.org/gmane.comp.lang.neko.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://comments.gmane.org/gmane.comp.lang.neko.general/2552"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2551"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2549"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2548"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2547"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2545"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2540"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2522"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2517"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2512"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2504"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2503"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2501"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2500"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2489"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2478"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2467"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2466"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2466"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.neko.general/2464"/>
      </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://comments.gmane.org/gmane.comp.lang.neko.general/2552">
    <title>Prototypes export/import</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2552</link>
    <description>&lt;pre&gt;Hello,

I get back to neko and I would like to know how prototypes export system
works.
For example, I createed a file called proto.neko with the following
contents:

-------------------------------------------------------------------------
var proto = $new(null);
proto.foo = function() { $print(this.msg) }
-------------------------------------------------------------------------

then a file called lod.neko with the following contents:

-------------------------------------------------------------------------
var proto = $loader.loadmodule("proto",$loader);

var o = $new(null);
o.msg = "hello";
$objsetproto(o,proto);
o.foo(); // print "hello"
-------------------------------------------------------------------------

But when I do:
nekoc proto.neko
nekoc lod.neko
neko lod.n

I have the following message:

Called from lod.neko line 6
Uncaught exception - Invalid call

Line 6 corresponds to the "o.foo()" so it seems that the prototype isn't
fully imported.

What happens?


Thank you in advance.
&lt;/pre&gt;</description>
    <dc:creator>Konstantin Tcholokachvili</dc:creator>
    <dc:date>2013-03-23T11:15:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2551">
    <title>nekoc -doc and nekoc -link</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2551</link>
    <description>&lt;pre&gt;I see that neko 2.00 for linux has been released. Congratulations  and
thank you!

I would like to know  about two options in the compiler nekoc:

First, the doc option. Looking in source code looks like it search text
between &amp;lt;doc&amp;gt; and &amp;lt;/doc&amp;gt;, can you give an example of how document a
function, please?

Second, the linker option. how can I use it?

Thank you
&lt;/pre&gt;</description>
    <dc:creator>FRD</dc:creator>
    <dc:date>2013-03-22T10:12:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2549">
    <title>Read user input</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2549</link>
    <description>&lt;pre&gt;How can I read user input in Neko?

Something like:

     $print("Give a number");
     var input = read-line();
     $print("Your number was ", input);

Thanks


&lt;/pre&gt;</description>
    <dc:creator>Fernando Raya</dc:creator>
    <dc:date>2013-02-12T12:25:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2548">
    <title>Writting native code</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2548</link>
    <description>&lt;pre&gt;Hi,

I'm doing some bash script to add linux users, delete and upate, also for
htpasswd and mysql.
So I could call them from some haxe/Neko web interface.

Would it be of any interest to make a Neko primitive for those ?

Thanks
Laurent
&lt;/pre&gt;</description>
    <dc:creator>Lars Madson</dc:creator>
    <dc:date>2013-02-10T17:37:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2547">
    <title>apache error load mod_neko2.ndll,undefined symbol ap_log_error</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2547</link>
    <description>&lt;pre&gt;Hi,

I updated Xampp on archlinux. Since then I can't start apache anymore.
I looked on how to fix this from apache then but can't find a solution,
like maybe a way to bypass this check for the missing symbol. Or maybe a
library I should install.

I recompiled neko 1.8.2 but this undefined symbol seems the normal behavior.

Any idea what I should do to fix this ?

thanks
Laurent
&lt;/pre&gt;</description>
    <dc:creator>Lars Madson</dc:creator>
    <dc:date>2013-01-24T12:20:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2545">
    <title>Compiling trunk on Windows/MSVC</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2545</link>
    <description>&lt;pre&gt;Hi there...

I've been trying to compile neko, nekoc, nekoml and associated libs on
Windows/MSVC. Amost everything is working, although I didn't try to compile
mod_tora and mod_neko. However, I couldn't quite figure out what is the
workflow used by Nicolas... What is the easiest way to compile on MSVC?

I also haven't been able to figure out where does os.ndll comes from and
how to compile nekoml.std. I tried running the command in
src/tools/install.neko, but got the follwing error:
Core\Core.nml(201): Cannot unify error and Core\Core.error

Can you provide some help?

*Jonas Malaco Filho*
&lt;/pre&gt;</description>
    <dc:creator>Jonas Malaco Filho</dc:creator>
    <dc:date>2013-01-15T02:17:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2540">
    <title>NekoVM size claim</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2540</link>
    <description>&lt;pre&gt;Hello,

I should start with saying that I'm absolutely amazed by Neko/Haxe -
it's marvelous that in the world trapped in JavaScript mediocrity some
people where brave enough to build complete ecosystem which is both
real-world and based on solid foundations of Lisp and *ML heritage.

Well, people can never get enough, and my question is in that vein. One
of the first things I read about NekoVM was FAQ which is at
http://nekovm.org/faq?s=68#how_is_neko_different_from_llvm_or_c claims
that libneko.so is 68KB. That's not what I see with the latest version:

$ ls -l /usr/lib/libneko.so.0.2 
-rw-r--r-- 1 root root 120992 Apr 27  2012 /usr/lib/libneko.so.0.2

Building it myself (all happens on x86), I got the similar results.

So, on what the information quoted above is based, and is it possible
to cut down the size after all?

It's not idle question - I would never consider giving up Python, if
didn't get a project to put a webapp on an Embedded Linux system with
4Mb flash, with 300Kb space normally free, most of&lt;/pre&gt;</description>
    <dc:creator>Paul Sokolovsky</dc:creator>
    <dc:date>2013-01-11T13:18:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2522">
    <title>Strange behaviour when multiplying by -1</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2522</link>
    <description>&lt;pre&gt;Hello,

I'm implementing a tool which trans-compiles (yet not complete) Python into
neko.
I implemented the abs() built-in function in Python, it's supposed to give
the absolute value of a number, for example abs(-30) must give back 30.

So I've done:

var abs = function(n)
{
if (n &amp;lt; 0)
{
return n * -1;
}
return n;
}

$print(abs(-30)+"\n");

But it gives me back -1.

I wonder if there is a bug in NekoVM because in Python an equivalent
function gives me a correct answer.

def absolute(n):
...     if n &amp;lt; 0:
...         return n * -1
...     return n
...
30

Can someone tell me what really happens?

For the sake of curiosity the project is at:
https://github.com/narke/py2neko


Thanks in advance,

Konstantin Tcholokachvili
&lt;/pre&gt;</description>
    <dc:creator>Konstantin Tcholokachvili</dc:creator>
    <dc:date>2012-10-20T17:19:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2517">
    <title>Does the GC really matters?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2517</link>
    <description>&lt;pre&gt;Hello,

I'm planning to write a hobby OS.
I already hacked a little kernel which needs to be rewritten.

The idea is to be able to write most parts in my preferred languages such
as Python and Mythryl.
The core (memory allocation, etc) will be in C and asm.

I started Python to neko and Mythryl to neko projects but they aren't yet
complete.

So, NekoVM is the cooler VM I found, I plan to integrate it in the kernel
level, but one thing makes me wonder: is the use of GC really mandatory? Or
this is just to avoid memory allocation related errors?

Because instead to port NekoVM + GC, for me it would be much easier to make
a neko compatible interpreter, say in flex &amp;amp; bison.
Thus reducing the size of the binary.

As you are experienced with NekoVM, what's your opinion?

Best regards,

Konstantin Tcholokachvili
&lt;/pre&gt;</description>
    <dc:creator>Konstantin Tcholokachvili</dc:creator>
    <dc:date>2012-07-13T15:19:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2512">
    <title>mod_neko2 with Apache 2.2.1 on Os X 10.6</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2512</link>
    <description>&lt;pre&gt;Hi,

so, I'm still trying to get mod_neko2 running with my Apache installation.

With the prebuilt neko-1.8.2-osx binaries I was getting this error.

httpd: Syntax error on line 118 of /opt/local/apache2/conf/httpd.conf: 
Cannot load /Users/a/dev/bin/neko-1.8.2-osx/mod_neko2.ndll into server: 
dlopen(/Users/a/dev/bin/neko-1.8.2-osx/mod_neko2.ndll, 10): no suitable 
image found.  Did 
find:\n\t/Users/a/dev/bin/neko-1.8.2-osx/mod_neko2.ndll: mach-o, but 
wrong architecture


With my own binaries built today from trunk r1882
I am getting this error.

Cannot load 
/Users/a/dev/workspaces/neko/nekovm-read-only/bin/mod_neko2.ndll into 
server: 
dlopen(/Users/a/dev/workspaces/neko/nekovm-read-only/bin/mod_neko2.ndll, 
10): no suitable image found.  Did 
find:\n\t/Users/a/dev/workspaces/neko/nekovm-read-only/bin/mod_neko2.ndll: 
no matching architecture in universal wrapper


My apache is:

httpd -V
Server version: Apache/2.2.21 (Unix)
Server built:   Dec  5 2011 20:56:38
Server loaded:  APR 1.3.8, APR-Util 1.3.9
Co&lt;/pre&gt;</description>
    <dc:creator>Alexander Syed</dc:creator>
    <dc:date>2012-05-22T23:14:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2504">
    <title>compiling neko on OS X</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2504</link>
    <description>&lt;pre&gt;Hi,
I'm compiling neko sources on OS X 10.6

It gets quite a long way but then fails with this error.

../bin/neko nekoml -nostd neko/Main.nml nekoml/Main.nml core/*.nml -pack 
../bin/nekoml.std
dyld: lazy symbol binding failed: Symbol not found: _deflateInit_
   Referenced from: 
/Users/a/dev/workspaces/neko/nekovm-read-only/bin/zlib.ndll
   Expected in: dynamic lookup

dyld: Symbol not found: _deflateInit_
   Referenced from: 
/Users/a/dev/workspaces/neko/nekovm-read-only/bin/zlib.ndll
   Expected in: dynamic lookup

Called from tools/install.neko line 411
Uncaught exception - Error 5 : aborted
make: *** [libs] Error 1

Any ideas ?

A.


&lt;/pre&gt;</description>
    <dc:creator>Alexander Syed</dc:creator>
    <dc:date>2012-05-22T08:52:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2503">
    <title>Neko server and mod_neko issues on OS X 10.6</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2503</link>
    <description>&lt;pre&gt;Hi all,
I am having some issues with neko-1.8.2-osx.

First approach: I was using this command

nekotools server -p 2000 -h localhost -d $DIR -rewrite

but making requests results in this error.

Starting Neko Server on localhost:2000
Called from tools/Tools.nml line 40
Called from core/Args.nml line 50
Called from tools/Tools.nml line 31
Called from core/Net.nml line 96
Called from core/Array.nml line 100
Called from core/Net.nml line 102
Called from tools/WebServer.nml line 582
Called from tools/WebServer.nml line 583
Called from tools/WebServer.nml line 539
Called from tools/WebServer.nml line 178
Called from core/Lexer.nml line 219
Called from tools/WebServer.nml line 108


Second approach:

I tried to setup mod_neko with apache2 on OS X -
The resulting error is:
httpd: Syntax error on line 118 of /opt/local/apache2/conf/httpd.conf: 
Cannot load /Users/a/dev/bin/neko-1.8.2-osx/mod_neko2.ndll into server: 
dlopen(/Users/a/dev/bin/neko-1.8.2-osx/mod_neko2.ndll, 10): no suitable 
image found.  Did 
find:\n\&lt;/pre&gt;</description>
    <dc:creator>Alexander Syed</dc:creator>
    <dc:date>2012-05-20T14:05:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2501">
    <title>neko on Archlinux ARMv5</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2501</link>
    <description>&lt;pre&gt;Hi all,
I'm new to the mailing list and also new to Neko.
I wanted to get Neko running on a Pogoplug (ARMv5) so that I could run 
some Haxe code on it.

I have outlined how I got it working here...
http://blog.pixelami.com/2012/05/neko-on-archlinux-arm-armv5/

Maybe it's of interest to someone.

A.


&lt;/pre&gt;</description>
    <dc:creator>Alexander Syed</dc:creator>
    <dc:date>2012-05-03T16:35:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2500">
    <title>email for mailing list</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2500</link>
    <description>&lt;pre&gt;Hi
faridwl&amp;lt; at &amp;gt;yahoo.com

BR
Farid Valipour
&lt;/pre&gt;</description>
    <dc:creator>farid wl</dc:creator>
    <dc:date>2012-04-16T05:40:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2489">
    <title>undefined reference</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2489</link>
    <description>&lt;pre&gt;Hi-

I am trying to build neko in Ultimate++. In linux it works fine but in windows I get undefined reference to gc and neko_alloc_abstract.
Any helpful ideas?
thanks
&lt;/pre&gt;</description>
    <dc:creator>Jim McNamara</dc:creator>
    <dc:date>2012-03-20T00:34:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2478">
    <title>Trouble installing mod_neko on Mac</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2478</link>
    <description>&lt;pre&gt;Hi everyone,

I am trying to install mod_neko on Apache2 on my Mac (10.7.3) by adding:

LoadModule neko_module /usr/lib/neko/mod_neko2.ndll

&amp;lt;IfModule mod_neko.c&amp;gt;
        AddHandler neko-handler .n
        DirectoryIndex index.n
&amp;lt;/IfModule&amp;gt;

However, when I restart the server I receive the following error message:

"Syntax error on line 31 of /Applications/MAMP/conf/apache/httpd.conf: Cannot load /usr/lib/neko/mod_neko2.ndll into server: dlopen(/usr/lib/neko/mod_neko2.ndll, 10): no suitable image found.  Did find:\n\t/usr/lib/neko/mod_neko2.ndll: mach-o, but wrong architecture"

Any ideas?

Greetings, Nico.
&lt;/pre&gt;</description>
    <dc:creator>Nico Zimmermann</dc:creator>
    <dc:date>2012-03-18T18:17:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2467">
    <title>Builtin not found</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2467</link>
    <description>&lt;pre&gt;Hello :-)

I'm building 64bit neko 1.8.2 *.deb package.
I've built it, helloworld (trace) works. Also I've built haxe 2.08.
But when I'm trying to compile more smth more complex than helloworld -
I get this message while trying to run compiled *.n:

Uncaught exception - module.c(124) : Builtin not found : t

What does it look like, what does it mean? I can't load ndlls? I've put
them in the wrong place? I have them in /usr/lib/neko. Maybe I've
missed some compilation flags? I had an issue with libneko.so - for
example nekotools server crashed while trying to start. I've created a
symlink /usr/lib/neko/libneko.so -&amp;gt; /usr/lib/libneko.so - now nekotools
server works. But my application still does not. BTW application uses
haxe.Http and neko.vm.Threads.

Best regards
Alexander

&lt;/pre&gt;</description>
    <dc:creator>Alexander Konotop</dc:creator>
    <dc:date>2012-03-05T15:39:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2466">
    <title>ThreadRemotingServer dialoging with a php server</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2466</link>
    <description>&lt;pre&gt;Hi,

I'm having a problem with a neko.net.ThreadRemotingServer opening from 
time to time HttpConnections to make some calls on a remote PHP server.

The issue is that, for some of these calls, the PHP server needs to 
connect though a php_net_Socket to the ThreadRemotingServer within the 
processing of a http request from the ThreadRemotingServer (ouch :)!).

The problem is that when it tries to do so, the connections from the PHP 
server to the neko server aren't opened until the initial http 
connection from the neko server to the PHP one is closed. And the 
initial http request from neko to the PHP server won't be responded 
until the PHP server can process completely the request (and thus make 
these calls to the neko server). What I get is that the http connection 
from the neko server times out as the connections from the PHP server to 
the neko server can't be opened.

Well, I hope I was clear enough :)... The workarounds I've found are :

  - on the neko side, to open the http connections and make t&lt;/pre&gt;</description>
    <dc:creator>Thomas Fétiveau</dc:creator>
    <dc:date>2012-01-09T19:17:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2466">
    <title>ThreadRemotingServer dialoging with a php server</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2466</link>
    <description>&lt;pre&gt;Hi,

I'm having a problem with a neko.net.ThreadRemotingServer opening from 
time to time HttpConnections to make some calls on a remote PHP server.

The issue is that, for some of these calls, the PHP server needs to 
connect though a php_net_Socket to the ThreadRemotingServer within the 
processing of a http request from the ThreadRemotingServer (ouch :)!).

The problem is that when it tries to do so, the connections from the PHP 
server to the neko server aren't opened until the initial http 
connection from the neko server to the PHP one is closed. And the 
initial http request from neko to the PHP server won't be responded 
until the PHP server can process completely the request (and thus make 
these calls to the neko server). What I get is that the http connection 
from the neko server times out as the connections from the PHP server to 
the neko server can't be opened.

Well, I hope I was clear enough :)... The workarounds I've found are :

  - on the neko side, to open the http connections and make t&lt;/pre&gt;</description>
    <dc:creator>Thomas Fétiveau</dc:creator>
    <dc:date>2012-01-09T19:17:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2464">
    <title>Thread dump on nekoVM</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2464</link>
    <description>&lt;pre&gt;Hi,

I would like to know how to take thread dumps on the nekoVM (I'm running 
it on Linux).

Is there any web page summing up all diagnosis and troubleshooting 
tools/procedures for nekoVm applications ?

Thanks in advance.

zabojad

&lt;/pre&gt;</description>
    <dc:creator>Thomas Fétiveau</dc:creator>
    <dc:date>2012-01-04T16:13:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.neko.general/2464">
    <title>Thread dump on nekoVM</title>
    <link>http://comments.gmane.org/gmane.comp.lang.neko.general/2464</link>
    <description>&lt;pre&gt;Hi,

I would like to know how to take thread dumps on the nekoVM (I'm running 
it on Linux).

Is there any web page summing up all diagnosis and troubleshooting 
tools/procedures for nekoVm applications ?

Thanks in advance.

zabojad

&lt;/pre&gt;</description>
    <dc:creator>Thomas Fétiveau</dc:creator>
    <dc:date>2012-01-04T16:13:20</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.neko.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.lang.neko.general</link>
  </textinput>
</rdf:RDF>
