<?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.java.dwr.user">
    <title>gmane.comp.java.dwr.user</title>
    <link>http://blog.gmane.org/gmane.comp.java.dwr.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://comments.gmane.org/gmane.comp.java.dwr.user/11201"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11197"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11189"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11168"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11160"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11142"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11141"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11138"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11133"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11132"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11128"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11123"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11120"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11117"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11115"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11114"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11112"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11106"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11104"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.dwr.user/11102"/>
      </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.java.dwr.user/11201">
    <title>Sylvie Villard added you as a friend on Facebook</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11201</link>
    <description>Sylvie added you as a friend on Facebook.  We need to confirm that you know Sylvie in order for you to be friends on Facebook.

To confirm this friend request, follow the link below: 
http://www.facebook.com/n/?reqs.php

Thanks,
The Facebook Team

___
Want to control which emails you receive from Facebook? Go to:
http://www.facebook.com/editaccount.php?notifications&amp;md=ZnJpZW5kO2Zyb209MTA2NjgyMDQ4ODt0bz03MTgwMzI2OTM=
</description>
    <dc:creator>Facebook</dc:creator>
    <dc:date>2008-05-17T11:58:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11197">
    <title>basic authentication (the right way)</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11197</link>
    <description>Hi,

We’re using basic authentication for our GI app. Before we started using DWR, we passed login credentials via the open() method on GI’s jsx3.net.Request object. With DWR, I expected something similar to be required. However, we ended up hacking engine.js like this:



      if (DWREngine.USER_NAME != undefined) {

        batch.req.open(batch.httpMethod, request.url, batch.async, DWREngine.USER_NAME,

          DWREngine.USER_PASSWORD);

      }

      else

        batch.req.open(batch.httpMethod, request.url, batch.async);



We would set DWREngine.USER_NAME and DWREngine.USER_PASSWORD after logging in successfully. This works, but I’ve never felt comfortable with it. It’s messy etc. etc. etc.

What is the recommended way for doing this? Something like options to be set for the engine?





Regards

Johan Hoogenboezem


No virus found in this outgoing message.
Checked by AVG.
Version: 7.5.524 / Virus Database: 269.23.16/1445 - Release Date: 2008/05/15 07:25 PM

</description>
    <dc:creator>Johan Hoogenboezem</dc:creator>
    <dc:date>2008-05-17T10:14:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11189">
    <title>Serializing closures</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11189</link>
    <description>In Javascript:

function delayedUpdater(message) {
  dwr.util.setValue("id", message);
}

dwr.engine.setActiveReverseAjax(true);
Remote.method(delayedUpdater, 4000 /* No callback */);


And on the server:

public class Remote {
  public void method(JavascriptFunction delayedUpdater, int delay) {
    // Fire off a new thread to do some work
    Thread work = new Thread() {
      public void run() {
        // Loop forever pinging the client
        int i = 0;
        while (true) {
          Thread.currentThread().sleep(delay);
          delayedUpdater.execute("Hello, World: " + (i++));
        }
      }
    }.start();
  }
}


In short: how about we create a new type:
org.directwebremoting.io.JavascriptFunction, with associated converter logic
so we can pass a function to the server for execution.

I was just doing some work on the dwr data store when I found myself needing
something like this, and it seems like it could be generally useful.
Thoughts?

Joe.
</description>
    <dc:creator>Joe Walker</dc:creator>
    <dc:date>2008-05-16T16:15:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11168">
    <title>spring dwr configuration, init-params, SAXParseException</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11168</link>
    <description>

Hi,

I need to set an init parameter for DwrServlet but we are initialising the
DWR in spring and not in web.xml

this is a snippet of code and error message

can anyone help?


&lt;beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
       http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd
       http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"
       default-autowire="byName"&gt;

    &lt;dwr:controller id="dwrController" debug="false"&gt;
        &lt;dwr:config-param name="allowGetForSafariButMakeForgeryEasier"
value="true"/&gt;
    &lt;/dwr:controller&gt;


2008-05-15 13:29:14,328 ERROR
[org.springframework.web.servlet.DispatcherServlet] - &lt;Context
initialization failed&gt;
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line
224 in XML document from ServletContext resource [/WEB-INF/tin-servlet.xml]
is invalid; nested exception is org.xml.sax.SAXParseException:
cvc-complex-type.2.1: Element 'dwr:controller' must have no character or
element information item [children], because the type's content type is
empty.
Caused by: 
org.xml.sax.SAXParseException: cvc-complex-type.2.1: Element
'dwr:controller' must have no character or element information item
[children], because the type's content type is empty.
at
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown
Source)



</description>
    <dc:creator>jamurph</dc:creator>
    <dc:date>2008-05-15T12:55:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11160">
    <title>Firefox 2.0.0.14 dwr utils bug</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11160</link>
    <description>---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe-EyPigyGktj4FDOXUYO6UHQ&lt; at &gt;public.gmane.org
For additional commands, e-mail: users-help-EyPigyGktj4FDOXUYO6UHQ&lt; at &gt;public.gmane.org</description>
    <dc:creator>wesley jordan</dc:creator>
    <dc:date>2008-05-15T06:58:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11142">
    <title>AWARD NOTIFICATION IS ATTACHED</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11142</link>
    <description>---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe-EyPigyGktj4FDOXUYO6UHQ&lt; at &gt;public.gmane.org
For additional commands, e-mail: users-help-EyPigyGktj4FDOXUYO6UHQ&lt; at &gt;public.gmane.org</description>
    <dc:creator>EQUITY INVESTMENT</dc:creator>
    <dc:date>2008-05-13T09:18:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11141">
    <title>Nest List DWR Client Side Problem</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11141</link>
    <description>I have a java POJO/Object that consists of nested LIST (2 levels).  On
the client side, using javascript, I always get an error when trying to
get the innermost List.  That is, I can retrieve the outermost List
easily, but when I go deeper and get the innermost List, I get an
"ERROR" on the DWR test page.   Can someone give me an example on how to
use nested LIST? 

 

 

Tim

</description>
    <dc:creator>Nguyen, Thien 1 (N-Albin Engineering</dc:creator>
    <dc:date>2008-05-13T00:00:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11138">
    <title>Long time processing in the DwrServlet.service()</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11138</link>
    <description>Greetings

I am using DWR with Simple framework
(http://www.simpleframework.org/). It has own Simple API which is
different from servlet-api. But I use Adaptor pattern to convert
simple.Request to HttpServletRequest and HttpServletResponse to simple.Response.

Also I am using Reverse Ajax in my web application.

Simple request handler receives request and forwards it to the DWR
Servlet using DwrServlet.service(request, response) method. DWR
Servlet configured properly and it works.

Sometimes I have strange behavior: request is being processed 1 minute but
method on the class mapped to javascript works only 10 msec.

I received this statistic wrapping DwrServlet.service with timer1 and
adding timer2 to the my Java class.

timer1.maximum value = 1 minute (The maximum time is the same as maximum time for Reverse Ajax request)
timer2.maximum value = 10 msec.

This situation is hard to reproduce in my local version of the
application. But I have this statistic often in the live system. So it
is hard to debug it.

It seems the number of these errors depends on browser (can't
reproduce it with FireFox) and connection quality. (Not sure).

Have you idea where the request can be 60 sec in the
DwrServlet.service?

Thanks in advance.

</description>
    <dc:creator>Dmitry Kudrenko</dc:creator>
    <dc:date>2008-05-12T10:55:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11133">
    <title>hello</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11133</link>
    <description>hello 

2008-05-09 



技术邮箱 
</description>
    <dc:creator>技术邮箱</dc:creator>
    <dc:date>2008-05-09T02:42:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11132">
    <title>Enable Dynamically named checkbox</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11132</link>
    <description>

I have a list of objects that have ID's.  I'm creating a checkbox for each,
naming the checkbox id+"cb" as I iterator through the list.  I am disabling
the checkboxes to begin with.  At a certain point in time, I want to enable
the checkboxes one at a time.  Is that possible with DWR?  This is what I
have now and it is not working. Anybody know how I could do this in DWR or
how I could tweak this code to work?  Thank you...

function enableCheckbox(){
    var id = dwr.util.getValue("selectOutbuilding");
    var name = id+'cb';
    document.choiceForm.+ name + .disabled = false;
}


&lt;c:forEach items="${outbuildings}" var="building"&gt;
      &lt;input type="checkbox" name="${building.id}cb" disabled="true"&gt;
${building.description}&lt;/&gt;&lt;BR&gt;
&lt;/c:forEach&gt;

__________________________________________
The information contained in this message may be privileged and
confidential and protected from disclosure. If you are not the intended
recipient of this message, you are hereby notified that any dissemination,
distribution, or copying of this communication is strictly prohibited. If
you have received this communication in error, please notify us immediately
by replying to the message, and please delete it from your computer.</description>
    <dc:creator>Lauren Riley</dc:creator>
    <dc:date>2008-05-08T19:34:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11128">
    <title>how to make the server aware of ReverseAjax</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11128</link>
    <description>
Seems like i'm messing too much with connection limit problem. But, here goes
my query.
In my application, i do "dwr.engine.setActiveReverseAjax(true)" and
"dwr.engine.setActiveReverseAjax(false)" time-to-time to reduce the burden
of keeping one permanent connection for reverse ajax even if the client does
not need it.

I want my server also to be aware of this thing i.e, whether there is a
reverse ajax connection with a client or not. Explicitly Calling the server
is not a reliable approach. I want some sort of listener at the server end
which keeps track of when ActiveReverseAjax has been set true/false.

Otherwise, can somebody suggest my some way to set ActiveReverseAjax true or
false from server side only.


Plz somebody help me out.. Hey Joe, are you listening?
</description>
    <dc:creator>Nitin Thakur</dc:creator>
    <dc:date>2008-05-08T09:34:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11123">
    <title>Keep track of ScriptSessions for one browser</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11123</link>
    <description>Is there a way to send back information to only one browser even though
multiple browsers are on the given page?

My problem is that I have multiple users logged in accessing their data.  If
there is an update for any given user, I don't want it to be sent to all
users currently logged in.

I saw a post on how to deal with this if the thread is started by DWR, but
in my case it isn't.  Also, in the javadoc there is mention of
getScriptSession(String id) but I can't find the method anywhere.  Maybe I
could use this to determine which ScriptSession I need to send updates to.

Thanks,

Erlend
</description>
    <dc:creator>Erlend Sobec</dc:creator>
    <dc:date>2008-05-07T20:39:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11120">
    <title>how to resize image returned from dwr call bufferedImage</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11120</link>
    <description>
Hi, all,
I can successfully display the images returned from dwr call as
bufferedImage which is retrieved from database, my problem is that the image
is too big to fit my javascript window, I want the image exactly to fit the
window, and resize with the window on the browser without going back to call
dwr java function again to recalculate, so I mean my javascript program can
recalculate the size of the image, with setup like this:

day1.jpg 

I can do that with javascript, but with the dwr retrieved image like this:

/webapp/dwr/download/10ED6EDB38A3C797840F9AB2E2764FD2 

I can not set style with the size, if I do, it will not display anymore.

Any suggestions for me in terms of what to do to resize it with javascript?

Thanks in advance.

Dave
</description>
    <dc:creator>ddduuu</dc:creator>
    <dc:date>2008-05-07T15:31:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11117">
    <title>synchronizing the java function calls in DWR</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11117</link>
    <description>
Is there any way to synchronize java-function-calls from javascript without
server explicitly sending acknowledgment through reverse Ajax. Say, i want
to make a call to method2 (JavaClass.method2) only after my previous call
has been completed (JavaClass.method1). is there any way to assure this.
</description>
    <dc:creator>Nitin Thakur</dc:creator>
    <dc:date>2008-05-07T13:58:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11115">
    <title>Reverse AJAX and ie6</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11115</link>
    <description>Hi,

I'm trying to use reverse ajax to publish online events to a web browser.
Everything works fine with firefox.

In ie6, I get a low update rate. The update period is equal to the parameter
I set in "maxWaitAfterWrite" (if I set 5000, the values are updated once
every 5 seconds). Setting a lower value increase the update rate but then I
get a "memory hog", memory consumption of ie grows very fast until I
minimize the window (very strange behaviour).

The memory problem seems to be triggered by javascript method call on the
java side. I tried to disable all my application logic, but the problem
persists.

I tried severeral version of DWR (from 2.0.1 to 2.0.4rc1) with no luck. My
web application is based on Spring and is deployed on a Jetty6 web server.

Any ideas ? Maybe I am doing something wrong ?

Damien
</description>
    <dc:creator>Damien</dc:creator>
    <dc:date>2008-05-07T13:11:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11114">
    <title>DWR Dinner</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11114</link>
    <description>If you're at JavaOne, and fancy a meal, or just a few beers, we could all
hook up after the comet talk this evening. The talk is in 307-310 and from
6:30 to 7:20.
It would be good to meet up, and I'll buy at least the first round.

Joe.
</description>
    <dc:creator>Joe Walker</dc:creator>
    <dc:date>2008-05-07T12:24:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11112">
    <title>how to get linked collections from Hibernate to the client</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11112</link>
    <description>Hi everybody,

I'm getting a little headache at the moment because of my little test
project. I'm writing a small test application using Hibernate and since
yesterday also DWR. I already managed to request Collections from Hibernate
and display them on the client with this lines:

&lt;convert converter="hibernate3"


The problem now is that i have in some POJOS collections of other POJOS.

example:
1 folder has zero or more sheets
1 sheet has zero or more tags
(which are stored in a collection)

When i request all sheets from the server i return a collection of sheets.
That works perfectly. I want to display all sheets in a simple HTML table.
Per sheet i also want to list all tags that belong to that sheet. The
problem now is that the collection that holds all the tags per sheet is
null. Is there another way (another option) that i missed to let DWR also
return the collections that belong to one object?

Thanks a lot already for DWR. It's a really nice tool.
</description>
    <dc:creator>martin krüger</dc:creator>
    <dc:date>2008-05-07T08:13:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11106">
    <title>javascript to wait for dwr result...</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11106</link>
    <description>
var answer=false;

function callDWR(){

   MyClass.doSomething(returnFunction);
 
}



function returnFunction(result){

answer =result;

}




//my javascript to call the above functions...

callDWR();
if(answer){

  //do something else
}


is it possible to wait for dwr to return result before executing the subsequent code?  in other words, wait for dwr to return result before calling  if(answer)...



       
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.</description>
    <dc:creator>cw</dc:creator>
    <dc:date>2008-05-06T08:28:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11104">
    <title>dwr.util.addOptions problem to show drop down menu please help</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11104</link>
    <description> 
   
  i have this class that i want to get cities for each country  here the code:
  public class TestDWR {
  
    public ArrayList getCities(String value){ 
      ArrayList countriesList=new ArrayList();  
      if(value.equals("1")){
          countriesList.add("Amman");
            countriesList.add("Jerash");
      }else if(value.equals("2")){
           countriesList.add("Jerusalem");
            countriesList.add("Haifa");
      }else if(value.equals("3")){
             countriesList.add("Macca");
            countriesList.add("Madina");
      }
      return countriesList;
    }
  }
   
  it works perfectly when i  test it through:
  http://localhost:8084/DWRPOC/dwr/test/TestDWR
  but i dont know how to see it work in my jsp  my last trial like this:
      function viewCities(value){
            //    alert("value="+value);
          
                 dwr.util.addOptions("citiesReply",TestDWR.getCities(value));
          }
   
  where citiesReply is the name of drop down list.
  please help.
   

       
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.</description>
    <dc:creator>HANI YOUNIS</dc:creator>
    <dc:date>2008-05-06T07:12:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11102">
    <title>wildcards for include/exclude parameters in converters</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11102</link>
    <description>Hello DWR Gurus!

I find the "include" and "exclude" parameters of the BeanConverter very useful.

Is it possible to use wildcards in include/exclude definitions?

I would like to do something like:

        &lt;convert converter="bean" match="MyClass"&gt;
            &lt;param name="exclude" value="str*"/&gt;
        &lt;/convert&gt;

and expect DWR to exclude all member variables of MyClass that start with "str".

Thanks,
Gabor
</description>
    <dc:creator>se</dc:creator>
    <dc:date>2008-05-05T12:41:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.dwr.user/11101">
    <title>DWR config information</title>
    <link>http://comments.gmane.org/gmane.comp.java.dwr.user/11101</link>
    <description>Hi all... I'm looking for a way I can gain access from my own code to 
the DWR configuration information... I'm working on an extension to DWR 
and I need to be able to read the dwr.xml file (or configurations 
resulting from annotations).  I assume they're floating around 
somewhere, I shouldn't have to parse the file myself or something like 
that, but I've been pouring over the javadoc for the last 20 minutes and 
haven't found what I'm looking for... the next step is to tear into the 
code and figure it out, but I'm hoping someone can point me in the right 
direction quickly.

Thanks all,
Frank

</description>
    <dc:creator>Frank W. Zammetti</dc:creator>
    <dc:date>2008-05-05T00:29:18</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.java.dwr.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.java.dwr.user</link>
  </textinput>
</rdf:RDF>
