<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Google Wave Bots Forum &#187; Recent Topics</title>
<link>http://googlewavebots.info/forum/</link>
<description>Got Bots?</description>
<language>en</language>
<pubDate>Sat, 31 Jul 2010 13:21:43 +0000</pubDate>

<item>
<title>acskomwoh160 on "Community"</title>
<link>http://googlewavebots.info/forum/topic/community#post-32</link>
<pubDate>Sun, 06 Jun 2010 18:49:24 +0000</pubDate>
<dc:creator>acskomwoh160</dc:creator>
<guid isPermaLink="false">32@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;No bad community, very no bad
&#60;/p&#62;</description>
</item>
<item>
<title>BrianBaltzer on "phpbb manager"</title>
<link>http://googlewavebots.info/forum/topic/phpbb-manager#post-28</link>
<pubDate>Wed, 16 Dec 2009 22:31:48 +0000</pubDate>
<dc:creator>BrianBaltzer</dc:creator>
<guid isPermaLink="false">28@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Hi there.&#60;br /&#62;
I read you could manage all your forums and so on from wave with the help of a bot.&#60;/p&#62;
&#60;p&#62;ive been trying to google a bot that would allow me to log into my phpbb forum and use it from wave.&#60;br /&#62;
Does anyone know of a bot like that or does it not exist yet?
&#60;/p&#62;</description>
</item>
<item>
<title>dapipminmonkey on "TOC Generator Bot"</title>
<link>http://googlewavebots.info/forum/topic/toc-generator-bot#post-29</link>
<pubDate>Thu, 17 Dec 2009 14:52:09 +0000</pubDate>
<dc:creator>dapipminmonkey</dc:creator>
<guid isPermaLink="false">29@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;BOT: &#60;a href=&#34;mailto:tocgen@appspot.com&#34;&#62;tocgen@appspot.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How do you use the TOC Generator Bot? When ever I do, I just get &#60;/p&#62;
&#60;p&#62;TOCGen: styles: anns: conv/title; lang; lang; lang; spell; lang; lang; lang; lang; spell; lang; lang; spell; lang; lang; lang;&#60;/p&#62;
&#60;p&#62;Thanks for the help!
&#60;/p&#62;</description>
</item>
<item>
<title>Eck on "Java Bot Tutorial - Wiring Up your Profile - Missing Step?"</title>
<link>http://googlewavebots.info/forum/topic/java-bot-tutorial-wiring-up-your-profile-missing-step#post-27</link>
<pubDate>Sun, 06 Dec 2009 20:33:13 +0000</pubDate>
<dc:creator>Eck</dc:creator>
<guid isPermaLink="false">27@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;When working through the Java Bot tutorial I was very careful and tested my code along the way. After uploading my code, everything worked beautifully except the profile.  I checked my extended Profile servlet, and everything looked fine. I also made sure I could hit the web page I had referenced and the image, no permissions problem there.  It wasn't until I was away from the computer and thinking about the Profile servlet I had written when I realized the problem.  Nowhere in there was the Profile servlet wired up to anything other than just extending the ProfileServlet class.  &#60;/p&#62;
&#60;p&#62;You have to map the servlet in the war/WEB-INF/web.xml file much like you did for the app itself. If you don't do this, your bot will remain a faceless, web-pageless, nameless bot.  &#60;/p&#62;
&#60;p&#62;Add the following to wire up your servlet changing PACKAGE_NAME to your package (like a namespace) that your class is in and CLASS_NAME to the name of the class that extended&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
    &#38;lt;servlet&#38;gt;&#60;br /&#62;
        &#38;lt;servlet-name&#38;gt;Profile&#38;lt;/servlet-name&#38;gt;&#60;br /&#62;
        &#38;lt;servlet-class&#38;gt;PACKAGE_NAME.CLASS_NAME&#38;lt;/servlet-class&#38;gt;&#60;br /&#62;
    &#38;lt;/servlet&#38;gt;&#60;br /&#62;
    &#38;lt;servlet-mapping&#38;gt;&#60;br /&#62;
        &#38;lt;servlet-name&#38;gt;Profile&#38;lt;/servlet-name&#38;gt;&#60;br /&#62;
        &#38;lt;url-pattern&#38;gt;/_wave/robot/profile&#38;lt;/url-pattern&#38;gt;&#60;br /&#62;
    &#38;lt;/servlet-mapping&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;When you fix your bot, don't forget to change the version number, and PUBLISH your changes.  You may also want to check out my Version Management post if you're still having problems.&#60;/p&#62;
&#60;p&#62;- Eck
&#60;/p&#62;</description>
</item>
<item>
<title>Eck on "Version Management for your Bots and Gadgets"</title>
<link>http://googlewavebots.info/forum/topic/version-management-for-your-bots-and-gadgets#post-25</link>
<pubDate>Sun, 06 Dec 2009 18:55:31 +0000</pubDate>
<dc:creator>Eck</dc:creator>
<guid isPermaLink="false">25@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;When I made some changes to my bot and republished them (specifically its profile), I made sure to change the version number.  But, when I went to revisit the bot, it still had the faceless icon as its image and had none of the changes I had made. After checking and rechecking that everything I knew about was correct,  I stumbled across the version management tab on my bot's dashboard and saw there were 2 versions.  Version 1 (default) and version 2.    I set version 2 as the default (and deleted version 1) and everything worked just fine. I probably didn't have to delete version 1, but I wanted to be sure. All the documentation that I read lead me to believe that changing the version number was all I needed to do. &#60;/p&#62;
&#60;p&#62;I hope this saves some time for someone,&#60;br /&#62;
- Eck
&#60;/p&#62;</description>
</item>
<item>
<title>dranorter on "RSSy"</title>
<link>http://googlewavebots.info/forum/topic/rssy#post-11</link>
<pubDate>Thu, 12 Nov 2009 19:45:36 +0000</pubDate>
<dc:creator>dranorter</dc:creator>
<guid isPermaLink="false">11@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;OK, RSSy has not been updated since September 25 and has been broken since at least October 30th. I would really like to use it, in particular because it would actually allow just about all the functionality I would want out of a delicious bot- posting new links into the wave.&#60;/p&#62;
&#60;p&#62;So I got the idea Wave is a really open platform and I should in principle be able to fix anything wrong with a bot. Anyone know how I might try and fix rssy??
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "Alerty"</title>
<link>http://googlewavebots.info/forum/topic/alerty#post-21</link>
<pubDate>Tue, 01 Dec 2009 20:48:49 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">21@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;After a wave has been inactive for a few minutes, users are liable to leave that browser window/tab in the background &#38;amp; go off to do their own thing.  As a result, if their friend replies, they won't be aware until they manually check the wave tab.&#60;br /&#62;
Having a bot which detects when a browser window/tab is not active and a new wave event occurs (e.g. the other user replying) after there has been a delay of a few minutes since the last wave activity would be useful.  Once an alarm has sounded, it should remain silent until the user next activates that tab window (so that the user doesn't get annoyed if they're deliberately ignoring the wave whilst working on something else).
&#60;/p&#62;</description>
</item>
<item>
<title>Admin on "Why you deserve a wave invite more than anyone else!"</title>
<link>http://googlewavebots.info/forum/topic/why-you-deserve-a-wave-invite-more-than-anyone-else#post-18</link>
<pubDate>Thu, 26 Nov 2009 06:57:57 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid isPermaLink="false">18@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Please post your reason below. I will read them on Friday Morning and Saturday morning and judge the replies from the previous days.
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "Standards"</title>
<link>http://googlewavebots.info/forum/topic/standards#post-15</link>
<pubDate>Mon, 23 Nov 2009 19:09:46 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">15@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;It would be good to establish some standard commands which all bots can implement, allowing you to quickly find out all a bot can do without having to go hunting for it.&#60;br /&#62;
e.g.&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /?                          //see /help&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /help                     //brings up a list of commands available&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /about                   //displays a summary of what this robot does&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /devsite                //provides a link to the developer's site&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /mode  private     //the bot's responses are only shown to the person who invited it&#60;br /&#62;
&#60;a href=&#34;mailto:botName@appspot.com&#34;&#62;botName@appspot.com&#60;/a&#62; /mode  public      //everyone in the wave sees the bot's responses
&#60;/p&#62;</description>
</item>
<item>
<title>Admin on "List of bot lists (pages with possibly new bot addresses)"</title>
<link>http://googlewavebots.info/forum/topic/list-of-bot-lists-pages-with-possibly-new-bot-addresses-1#post-17</link>
<pubDate>Wed, 25 Nov 2009 07:31:57 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid isPermaLink="false">17@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;If you find any pages that list bots (hopefully updated ones that have bots we do not) please add them to a list here. I have written a script that will crawl pages and pull out bot names from the text so that I can add them to the wiki. It will not pull descriptions because I do not wish to be copying the sites, just pulling new names out. &#60;/p&#62;
&#60;p&#62;Another user had submitted this list and then deleted the post. I do not know why so I will leave their name out for now but I have crawled all of these pages so far.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wave-samples-gallery.appspot.com/&#34; rel=&#34;nofollow&#34;&#62;http://wave-samples-gallery.appspot.com/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.variousways.com/blog/?tag=google-wave&#34; rel=&#34;nofollow&#34;&#62;http://www.variousways.com/blog/?tag=google-wave&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.carrito.net/board/showthread.php?p=2014881&#34; rel=&#34;nofollow&#34;&#62;http://www.carrito.net/board/showthread.php?p=2014881&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://smarterware.org/my-favorite-google-wave-bots&#34; rel=&#34;nofollow&#34;&#62;http://smarterware.org/my-favorite-google-wave-bots&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.docstoc.com/docs/13086406/Google-Wave-Extension-List&#34; rel=&#34;nofollow&#34;&#62;http://www.docstoc.com/docs/13086406/Google-Wave-Extension-List&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.scribd.com/doc/20979885/Wave&#34; rel=&#34;nofollow&#34;&#62;http://www.scribd.com/doc/20979885/Wave&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.vinodlive.com/2009/10/07/google-wave-extensions-list/&#34; rel=&#34;nofollow&#34;&#62;http://www.vinodlive.com/2009/10/07/google-wave-extensions-list/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.johnroa.net/2009/10/12/list-of-google-wave-gadgets-bots-extensions-games-and-more/&#34; rel=&#34;nofollow&#34;&#62;http://www.johnroa.net/2009/10/12/list-of-google-wave-gadgets-bots-extensions-games-and-more/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://tech-n-games.blogspot.com/2009/10/must-have-google-wave-robots-full-list.html&#34; rel=&#34;nofollow&#34;&#62;http://tech-n-games.blogspot.com/2009/10/must-have-google-wave-robots-full-list.html&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://daroom.info/wordpress/google-wave-bots-list&#34; rel=&#34;nofollow&#34;&#62;http://daroom.info/wordpress/google-wave-bots-list&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://lor3nzo.com/featured/short-guide-to-google-wave.html&#34; rel=&#34;nofollow&#34;&#62;http://lor3nzo.com/featured/short-guide-to-google-wave.html&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://completewaveguide.com/guide/Wave_Bots&#34; rel=&#34;nofollow&#34;&#62;http://completewaveguide.com/guide/Wave_Bots&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for the help and keep em coming!
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "FindMe"</title>
<link>http://googlewavebots.info/forum/topic/findme#post-9</link>
<pubDate>Thu, 05 Nov 2009 22:39:50 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">9@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Uses the GEO features of HTML 5 to locate where each wave user is and lets wavers know where their nearest wavers are. This could also take info about their interests to help match people up to folks whose hobbies they share.
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "Recipe"</title>
<link>http://googlewavebots.info/forum/topic/recipe#post-8</link>
<pubDate>Thu, 05 Nov 2009 22:38:43 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">8@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Finds recipes based on ingredients or dish names in the wave.&#60;br /&#62;
This could either use an internal database, or could use a scraping mechanism to collect recipes from common cooking sites.
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "Pretty – Pretty Print"</title>
<link>http://googlewavebots.info/forum/topic/pretty-%e2%80%93-pretty-print#post-7</link>
<pubDate>Thu, 05 Nov 2009 22:36:52 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">7@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Detects common languages / markup &#38;amp; changes the layout to make it more readable (i.e. by putting in line breaks and spacing as required)
&#60;/p&#62;</description>
</item>
<item>
<title>JohnLBevan on "Webby – The Web Service Robot"</title>
<link>http://googlewavebots.info/forum/topic/webby-%e2%80%93-the-web-service-robot#post-6</link>
<pubDate>Thu, 05 Nov 2009 22:13:49 +0000</pubDate>
<dc:creator>JohnLBevan</dc:creator>
<guid isPermaLink="false">6@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;A robot which when added, detects any URLs in the wave which point to web services, then generates a form based on the parameters, which a user fills out &#38;amp; then clicks subit.  The bot then submits this data via SOAP, and puts the return value into a new blip.
&#60;/p&#62;</description>
</item>
<item>
<title>Admin on "[no longer needed] Bot lister"</title>
<link>http://googlewavebots.info/forum/topic/bot-lister#post-4</link>
<pubDate>Mon, 19 Oct 2009 09:08:31 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid isPermaLink="false">4@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;I think for my use a bot that lists all other bots in a wave would be great. It could be added to a public wave and then maybe ping the person who added it with a list of all of the bots in that wave. That would keep it from annoying the rest of the wave and then it could be removed from the wave without causing any harm. Would be great for harvesting a list.
&#60;/p&#62;</description>
</item>
<item>
<title>Admin on "Contact Add url bot"</title>
<link>http://googlewavebots.info/forum/topic/contact-add-url-bot#post-3</link>
<pubDate>Mon, 19 Oct 2009 07:50:33 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid isPermaLink="false">3@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;I would like to see a bot that turns a wave address into an &#34;add to contacts&#34; url. I would be surprised if there was not a way to implement this in a url. Understandably it wouldnt just automatically add the address to a contact but at least take you to wave with the add to contacts dialog open (get rid of the copy/paste part at least).
&#60;/p&#62;</description>
</item>
<item>
<title>Admin on "Before you submit..."</title>
<link>http://googlewavebots.info/forum/topic/before-you-submit#post-2</link>
<pubDate>Sat, 17 Oct 2009 01:40:10 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid isPermaLink="false">2@http://googlewavebots.info/forum/</guid>
<description>&#60;p&#62;Please check the following page to make sure it does not exist (I would search for the bots address &#38;lt;botname@appspot.com&#38;gt; to see if its is on that page) before adding it here. This will save me a lot of time keeping out duplicates.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
