<?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.web.wiki.dokuwiki.general">
    <title>gmane.comp.web.wiki.dokuwiki.general</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.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.web.wiki.dokuwiki.general/15526"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15525"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15524"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15523"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15522"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15521"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15520"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15519"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15518"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15517"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15516"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15515"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15514"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15513"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15512"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15511"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15510"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15509"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15508"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15507"/>
      </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.web.wiki.dokuwiki.general/15526">
    <title>git changes 2012-05-21</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15526</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/5a9866e97863490816d932e98e8e170e49405d43
Author: Andreas Gohr &amp;lt;andi[at]splitbrain.org&amp;gt;
Date:   Sun May 20 09:44:46 2012 +0200

    do not surpress any errors when loading plugin files
    
    When a plugin file exists, we can assume it is the correct file and load
    it without error supression. This makes it much easier to detect and
    debug problematic plugins.

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

You can download individual diffs or patches by appending .diff or
.patch to the given commit URLs above.

Bye,
your git changelog mailer


&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-21T01:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15525">
    <title>[PATCH] Allow admin access without configuring acls</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15525</link>
    <description>&lt;pre&gt;Add a new config option 'easyadmin' that, if enabled, gives admin-rights
to a user if:
    a) He is authenticated via .htaccess or otherwise and his login is
       found in $REMOTE_USER.
    b) $REMOTE_USER == $conf['superuser'].
---
I run a dokuwiki for people that are authenticated via .htaccess and use
neither notifications nor any other stuff that would require an acl
setup. Since I do want to use admin-plugins I came up with this patch to
enable a single login to gain admin-rights. 

As it adds an alternative way to something that is quiet possible right
now I won’t be offended, if you don’t consider appling it. But for open-
source’s sake, here it is.

 conf/dokuwiki.php |    1 +
 inc/actions.php   |    3 ++-
 inc/common.php    |    5 +++++
 3 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php
index cbd4211..6dacfbf 100644
--- a/conf/dokuwiki.php
+++ b/conf/dokuwiki.php
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -53,6 +53,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; $conf['hidepages']   = '';                //Regexp for pages &lt;/pre&gt;</description>
    <dc:creator>Niki Hansche</dc:creator>
    <dc:date>2012-05-20T17:58:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15524">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15524</link>
    <description>&lt;pre&gt;Hi,


My mistake, sorry. Should be fixed now.

Andi

&lt;/pre&gt;</description>
    <dc:creator>Andreas Gohr</dc:creator>
    <dc:date>2012-05-20T12:07:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15523">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15523</link>
    <description>&lt;pre&gt;The problem here is that the vandal could go to the Forum and register!


&lt;/pre&gt;</description>
    <dc:creator>Myron Turner</dc:creator>
    <dc:date>2012-05-20T12:06:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15522">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15522</link>
    <description>&lt;pre&gt;


Oh, I haven't noticed that. I'm sure that's a mistake and it will be 
switched on as soon as a member of the infrastructure team reads this.
I will notify them separately.

Anika
&lt;/pre&gt;</description>
    <dc:creator>Anika Henke</dc:creator>
    <dc:date>2012-05-20T11:55:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15521">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15521</link>
    <description>&lt;pre&gt;2012/5/20 Myron Turner &amp;lt;turnermm02&amp;lt; at &amp;gt;shaw.ca&amp;gt;:

I am logged in as well and cannot see any edit button or do ?do=edit on a page

Mark

&lt;/pre&gt;</description>
    <dc:creator>Mark Prins</dc:creator>
    <dc:date>2012-05-20T11:44:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15520">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15520</link>
    <description>&lt;pre&gt;Yes, but even logged-in, you still can't u[pdate pages.

&lt;/pre&gt;</description>
    <dc:creator>Myron Turner</dc:creator>
    <dc:date>2012-05-20T11:28:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15519">
    <title>Re: dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15519</link>
    <description>&lt;pre&gt;
Yes, after several vicious attacks from an unknown vandal who kept on 
vandalising hundreds of pages for the last few days, sadly we needed to 
remove the permissions for anonymous editing. :(

This is a sad day when you learn that some of your freedom needs to be 
taken away just because of one single idiot who apparently enjoys 
destroying the good work of many people. But there you go, that's 
reality for you...

In the meantime you can only either log in (and register before if you 
haven't done that, obviously) or wait a couple of days when it will 
hopefully be safe to open it up back again.

Cheers,
Anika
&lt;/pre&gt;</description>
    <dc:creator>Anika Henke</dc:creator>
    <dc:date>2012-05-20T11:16:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15518">
    <title>dokuwiki.org in read-only mode?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15518</link>
    <description>&lt;pre&gt;Is it just me or is the dokuwiki.org site in read-only mode for all?

&lt;/pre&gt;</description>
    <dc:creator>Mark Prins</dc:creator>
    <dc:date>2012-05-20T10:53:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15517">
    <title>Re: Syntax errors in plugins being suppressed?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15517</link>
    <description>&lt;pre&gt;Thank you!  :-)  That's great.

&lt;/pre&gt;</description>
    <dc:creator>Sam Wilson</dc:creator>
    <dc:date>2012-05-20T09:50:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15516">
    <title>Re: Syntax errors in plugins being suppressed?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15516</link>
    <description>&lt;pre&gt;Hi,


Yeah that's the case and yes that's a bit problematic when you try to
debug a faulty plugin. I just pushed a patch to change this.

Andi

&lt;/pre&gt;</description>
    <dc:creator>Andreas Gohr</dc:creator>
    <dc:date>2012-05-20T07:48:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15515">
    <title>This week's new issues      2012-05-18</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15515</link>
    <description>&lt;pre&gt;
Hello,

during the last week, the following bugs and feature requests where
opened at the DokuWiki bug tracker:

FS#2524  Interwiki images does not appear in RTL wiki  [Bug Report]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2524

FS#2525  Diff size in metadata and page history  [Feature Request]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2525

FS#2526  syntax of &amp;lt;code asm&amp;gt; &amp;lt;/code&amp;gt; error  [Bug Report]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2526

Please help to resolve them by reviewing, adding comments and sending
patches.

Thanks for your help,
your bug mailer

&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-18T13:00:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15514">
    <title>git changes 2012-05-17</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15514</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/ba6e9e9bd8c1ead8b4cd4afabf582b979b8b30e2
Author: Andreas Gohr &amp;lt;gohr[at]cosmocode.de&amp;gt;
Date:   Wed May 16 11:18:24 2012 +0200

    make sure SSO data for AD backend is always UTF-8
    
    In some circumstances the username was set in latin1.

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

You can download individual diffs or patches by appending .diff or
.patch to the given commit URLs above.

Bye,
your git changelog mailer


&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-17T01:00:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15513">
    <title>git changes 2012-05-15</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15513</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/16f15a8172591c8e5725677b192ec836030b424a
Author: Dominik Eckelmann &amp;lt;deckelmann[at]gmail.com&amp;gt;
Date:   Mon May 14 21:56:38 2012 +0200

    empty ID in wl() will be treated as $conf['start']

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

You can download individual diffs or patches by appending .diff or
.patch to the given commit URLs above.

Bye,
your git changelog mailer


&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-15T01:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15512">
    <title>git changes 2012-05-12</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15512</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/8414853140930bdf4f14cfee2f8a532d47c07129
Author: Michael Hamann &amp;lt;michael[at]content-space.de&amp;gt;
Date:   Fri May 11 17:34:26 2012 +0200

    tpl_get_action: Return empty params array instead of params string
    
    This prevents an "Illegal string offset" error in PHP 5.4 in the test
    cases (the integration tests failed here with PHP 5.4).


http://github.com/splitbrain/dokuwiki/commit/df08777d58fac730aae02fc6448b4085ae0d4b7c
Author: Michael Hamann &amp;lt;michael[at]content-space.de&amp;gt;
Date:   Fri May 11 17:31:14 2012 +0200

    Adapt tests for PHP 5.4
    
    Call-time pass-by-reference is a fatal syntax error in PHP 5.4 and
    stdClass objects can't be instantiated automatically anymore.


http://github.com/splitbrain/dokuwiki/commit/8cb3706df5ad54c654bffb76a69ac0ca1006521e
Author: Michae&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-12T01:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15511">
    <title>This week's new issues      2012-05-11</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15511</link>
    <description>&lt;pre&gt;
Hello,

during the last week, the following bugs and feature requests where
opened at the DokuWiki bug tracker:

FS#2519  Language update to move the email signature from *.txt to lang.php  [ToDo]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2519

FS#2520  minor, trivial edits causing pages to blank out  [Bug Report]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2520

FS#2521  Uploading files fails if single sign on is used  [Bug Report]
         http://bugs.dokuwiki.org/?do=details&amp;amp;task_id=2521

Please help to resolve them by reviewing, adding comments and sending
patches.

Thanks for your help,
your bug mailer

&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-11T13:00:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15510">
    <title>git changes 2012-05-11</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15510</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/2daedc0b7ff9126ebb9855f6b8b39f830bd625ed
Author: Andreas Gohr &amp;lt;andi[at]splitbrain.org&amp;gt;
Date:   Thu May 10 15:48:01 2012 +0200

    GeSHi updated to 1.0.8.10

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

You can download individual diffs or patches by appending .diff or
.patch to the given commit URLs above.

Bye,
your git changelog mailer


&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-11T01:00:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15509">
    <title>git changes 2012-05-10</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15509</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/c7217c0bb77c4d3d6bc644be80063670c3037acf
Merge: f6e1661 d6b9c7b
Author: Andreas Gohr &amp;lt;andi[at]splitbrain.org&amp;gt;
Date:   Wed May 9 00:47:51 2012 -0700

    Merge pull request #100 from lupo49/master
    
    This allows easier identifying of which version has been restored (FS#2522)


http://github.com/splitbrain/dokuwiki/commit/d6b9c7bffaacf3b0b983386eca336e4f8d60a2f3
Author: lupo49 &amp;lt;post[at]lupo49.de&amp;gt;
Date:   Tue May 8 20:18:35 2012 +0200

    Restore page versions - add timestamp of the restored version to to the summary field.
    This allows easier identifying of which version has been restored. (FS#2522)

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

You can download individual diffs or patches by appending .diff or
.patch to the given commit URLs above.

Bye&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-10T01:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15508">
    <title>git changes 2012-05-08</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15508</link>
    <description>&lt;pre&gt;
Good Morning!

This are the git changes for DokuWiki committed
yesterday. Please test them and report bugs.

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

http://github.com/splitbrain/dokuwiki/commit/f6e1661406b3af965d76120b9acd30c507977e4e
Author: Anika Henke &amp;lt;anika[at]selfthinker.org&amp;gt;
Date:   Mon May 7 23:57:42 2012 +0100

    changed old link icons to use icons from same icon set as sitetools


http://github.com/splitbrain/dokuwiki/commit/f34e94ddf468613b81daeb0021d06d6e7ec97125
Author: Anika Henke &amp;lt;anika[at]selfthinker.org&amp;gt;
Date:   Mon May 7 23:21:18 2012 +0100

    added icons for user and site tools (FS#2450)


http://github.com/splitbrain/dokuwiki/commit/fa24fb1096d5ea38b271d68570d6cacc97008200
Merge: de9737a ffec60b
Author: Anika Henke &amp;lt;anika[at]selfthinker.org&amp;gt;
Date:   Mon May 7 09:45:38 2012 -0700

    Merge pull request #98 from splitbrain/pagetoolfix
    
    some tweaks to the pagetool css FS#2481


http://github.com/splitbrain/dokuwiki/commit/de9737a55b1b338d88f9700d45&lt;/pre&gt;</description>
    <dc:creator>DokuWiki Devel Tools</dc:creator>
    <dc:date>2012-05-08T01:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15507">
    <title>Frontend improvements need review</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15507</link>
    <description>&lt;pre&gt;Hi all,

About a month ago I finally managed to improve some parts of the 
DokuWiki frontend I planned to do for some years now. Part of that is 
finally the preparations for full HTML5 compatibility. Another part are 
general improvements [http://www.dokuwiki.org/devel:template_changes], 
specifically rewriting the TOC and search results, reducing the number 
of exe/css.php requests and improving how RTL styles are handled.

Template authors, this is your chance to get your say now rather than 
when it's too late. Can anyone interested please code review my pull 
request [https://github.com/splitbrain/dokuwiki/pull/93], so that it can 
be part of the next release?

While you're at it, there are also some other pull requests which need 
reviewing [https://github.com/splitbrain/dokuwiki/pulls]. As the code 
freeze is overdue, this should happen rather sooner than later.

Thanks,
Anika
&lt;/pre&gt;</description>
    <dc:creator>Anika Henke</dc:creator>
    <dc:date>2012-05-07T23:18:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15506">
    <title>Re: Patch: give people option to display homepage on diffs, etc...</title>
    <link>http://permalink.gmane.org/gmane.comp.web.wiki.dokuwiki.general/15506</link>
    <description>&lt;pre&gt;On Mon 7 May 2012 11:09, Andreas Gohr pondered:

OK - I like that as well - it makes sense to me to use the interwiki link 
[[user&amp;gt;&amp;lt; at &amp;gt;USER&amp;lt; at &amp;gt;]].

// interwikilink($match, $name = NULL, $wikiName, $wikiUri)
   interwikilink(NULL,   $ret        ,    'user',    $username)

should work or is there a better way? (assume $ret is the username or real 
name if the interwiki link exists).

I can update tpl_userinfo() to do the same if you think that's helpful too.


OK - no problem.


Wouldn't the interwiki link handle that?


&lt;/pre&gt;</description>
    <dc:creator>Getz, Robin</dc:creator>
    <dc:date>2012-05-07T16:59:01</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.wiki.dokuwiki.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.web.wiki.dokuwiki.general</link>
  </textinput>
</rdf:RDF>

