<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Hebrew ToolTip Translation | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/6773</link>
    <description>Recent comments on userscript: Hebrew ToolTip Translation</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>New Styled Tooltip, replied by simon!</title>
      <description>&lt;p&gt;damn formatting...&lt;/p&gt;

&lt;p&gt;so, about the Javascript code:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://tinypaste.com/c9ca5af&quot;&gt;http://tinypaste.com/c9ca5af&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 Oct 2009 15:14:20 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:36910:177609</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/177609</link>
    </item>
    <item>
      <title>New Styled Tooltip, replied by simon!</title>
      <description>&lt;p&gt;See: &lt;a href=&quot;http://www.knoppix.org/&quot;&gt;http://www.knoppix.org/&lt;/a&gt; (or &lt;a href=&quot;http://www.knopper.net/knoppix/&quot;&gt;http://www.knopper.net/knoppix/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;JavaScript code:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.knopper.net/style/infobox.js&quot;&gt;http://www.knopper.net/style/infobox.js&lt;/a&gt;
&lt;br /&gt;+++=========&gt;&lt;a href=&quot;#posts-177609&quot;&gt;click here to go down&lt;/a&gt;&lt;pre&gt;//
// Bubblehelp infoboxes, (C) 2007 Klaus Knopper &amp;lt;infobox&gt;
// You can copy/modify and distribute this code under the conditions
// of the GNU GENERAL PUBLIC LICENSE Version 2.
//
var IWIDTH=250  // Tip box width
var ns4         // Are we using Netscape4?
var ie4         // Are we using Internet Explorer Version 4?
var ie5         // Are we using Internet Explorer Version 5 and up?
var kon         // Are we using KDE Konqueror?
var x,y,winW,winH  // Current help position and main window size
var idiv=null   // Pointer to infodiv container
var px=&quot;px&quot;     // position suffix with &quot;px&quot; in some cases

function nsfix(){setTimeout(&quot;window.onresize = rebrowse&quot;, 2000);}

function rebrowse(){window.location.reload();}

function hascss(){ return gettip('infodiv')?true:false }

function infoinit(){
 ns4=(document.layers)?true:false, ie4=(document.all)?true:false;
 ie5=((ie4)&amp;amp;&amp;amp;((navigator.userAgent.indexOf('MSIE 5')&gt;0)||(navigator.userAgent.indexOf('MSIE 6')&gt;0)))?true:false;
 kon=(navigator.userAgent.indexOf('konqueror')&gt;0)?true:false;
 x=0;y=0;winW=800;winH=600;
 idiv=null;
 document.onmousemove = mousemove;
 if(ns4&amp;amp;&amp;amp;document.captureEvents) document.captureEvents(Event.MOUSEMOVE);
 // Workaround for just another netscape bug: Fix browser confusion on resize
 // obviously conqueror has a similar problem :-(
 if(ns4||kon){ nsfix() }
 if(ns4) { px=&quot;&quot;; }
}

function untip(){
 if(idiv) idiv.visibility=ns4?&quot;hide&quot;:&quot;hidden&quot;;
 idiv=null;
}

function gettip(name){return (document.layers&amp;amp;&amp;amp;document.layers[name])?document.layers[name]:(document.all&amp;amp;&amp;amp;document.all[name]&amp;amp;&amp;amp;document.all[name].style)?document.all[name].style:document[name]?document[name]:(document.getElementById(name)?document.getElementById(name).style:0);}

// Prepare tip boxes, but don't show them yet
function maketip(name,title,text){
 if(hascss()) document.write('&lt;div&gt;&lt;table width=&quot;+IWIDTH+&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;table width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;th&gt;&lt;span&gt;&lt;b&gt;&amp;lt;font&gt;'+title+'&amp;lt;/font&gt;&lt;/b&gt;&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;span&gt;&amp;lt;font&gt;'+text+'&amp;lt;/font&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;'+&quot;\n&quot;);
}

function tip(name){
 if(hascss()){
  if(idiv) untip();
  idiv=gettip(name);
  if(idiv){
   // winW=(window.innerWidth)? window.innerWidth+window.pageXOffset-16:document.body.offsetWidth-20;
   // winH=(window.innerHeight)?window.innerHeight+window.pageYOffset  :document.body.offsetHeight;
   // IE standards compliant mode compatibility partly contributed by Stefan Neufeind
   winW=(window.innerWidth)? window.innerWidth+window.pageXOffset-16:(document.documentElement&amp;amp;&amp;amp;document.documentElement.clientWidth)?document.documentElement.clientWidth-20:document.body.offsetWidth-20;
   winH=(window.innerHeight)?window.innerHeight+window.pageYOffset  :(document.documentElement&amp;amp;&amp;amp;document.documentElement.clientHeight)?document.documentElement.clientHeight:document.body.offsetHeight;
   if(x&amp;lt;=0||y&amp;lt;=0){ // konqueror can't get mouse position
    x=(winW-IWIDTH)/2+(window.pageXOffset?window.pageXOffset:0); y=(winH-50)/2+(window.pageYOffset?window.pageYOffset:0); // middle of window
   }
   showtip();
  }
 }
}

function showtip(){
  idiv.left=(((x+260)&amp;lt;winw&gt;&amp;lt;winh&gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;The CSS file (below) is not really needed, but when you block it, all the text in the tooltip is &quot;text-align:center&quot;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.knopper.net/style/style.css&quot;&gt;http://www.knopper.net/style/style.css&lt;/a&gt;
&lt;br /&gt;&lt;pre&gt;BODY          {font-family:Helvetica,Arial,sans-serif; background-color:white; color:black; text-align:justify}
TD            {font-family:Helvetica,Arial,sans-serif}
.clean        {font-family:Helvetica,Arial,sans-serif}
.tip          {font-family:Helvetica,Arial,sans-serif; position:absolute; left:0px; top:0px; visibility:hidden; z-index:20}
TD.tiptd      {border-bottom:1px solid #333366; border-top:1px solid #DDDDEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:2px; font-family:Helvetica,Arial,sans-serif}
A:link        {font-family:Helvetica,Arial,sans-serif; color:#6060ff; text-decoration:none; font-weight:bold}
A:visited     {font-family:Helvetica,Arial,sans-serif; color:#6060a0; text-decoration:none; font-weight:bold}
A:active      {font-family:Helvetica,Arial,sans-serif; color:#6060f0; text-decoration:none; font-weight:bold}
A:hover       {font-family:Helvetica,Arial,sans-serif; background-color:#DDEEFF; color:#6060f0; text-decoration:none; font-weight:bold}
SPAN.nav      {font-family:Helvetica,Arial,sans-serif; color:#000000; text-decoration:none; font-size:small; font-weight:bold}
SPAN.subnav   {font-family:Helvetica,Arial,sans-serif; color:#000000; text-decoration:none; font-size:x-small; font-weight:bold}
A.nav:link    {font-family:Helvetica,Arial,sans-serif; color:#4040ff; text-decoration:none; font-size:small; font-weight:normal}
A.nav:visited {font-family:Helvetica,Arial,sans-serif; color:#4040a0; text-decoration:none; font-size:small; font-weight:normal}
A.nav:active  {font-family:Helvetica,Arial,sans-serif; color:#4040f0; text-decoration:none; font-size:small; font-weight:normal}
A.subnav:link    {font-family:Helvetica,Arial,sans-serif; color:#4040ff; text-decoration:none; font-size:x-small; font-weight:normal}
A.subnav:visited {font-family:Helvetica,Arial,sans-serif; color:#4040a0; text-decoration:none; font-size:x-small; font-weight:normal}
A.subnav:active  {font-family:Helvetica,Arial,sans-serif; color:#4040f0; text-decoration:none; font-size:x-small; font-weight:normal}
TABLE.nav     {padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-weight:normal}
TABLE.subnav  {padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-size:small; font-weight:normal}
TH.nav        {border-bottom:1px solid #333366; border-top:1px solid #DDDDEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-weight:normal}
TH.hnav       {border-bottom:1px solid #CCCCCC; border-top:1px solid #DDDDEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-weight:normal}
TH.subnav     {border-bottom:1px solid #333366; border-top:1px solid #DDDDDD; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-size:small; font-weight:normal}
TD.nav        {border-bottom:1px solid #333366; border-top:1px solid #DDDDEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-weight:normal}
TD.hnav       {border-bottom:1px solid #EEEEEE; border-top:1px solid #DDDDEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-weight:normal}
TD.subnav     {border-bottom:1px solid #333366; border-top:1px solid #EEEEEE; border-left:1px solid #DDDDEE; border-right:1px solid #333366; padding:0px; font-family:Helvetica,Arial,sans-serif; text-decoration:none; font-size:small; font-weight:normal}
SPAN.ptt      {font-family:Helvetica,Arial,sans-serif; font-size:small; font-weight:bold; color:white; text-align:center}
SPAN.pst      {font-family:Helvetica,Arial,sans-serif; font-size:small; font-weight:normal; color:black; text-align:left}
UL.pst        {font-family:Helvetica,Arial,sans-serif; font-size:small; font-weight:normal; color:black; text-align:left}
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;see more: &lt;a href=&quot;http://www.knopper.net/style/&quot;&gt;http://www.knopper.net/style/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 Oct 2009 15:09:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:36910:177601</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/177601</link>
    </item>
    <item>
      <title>Tooltip position, replied by simon!</title>
      <description>&lt;p&gt;there was no conflict of any kind with the default position then and now, but the new position configuration dialog (for me &quot;To the left + Above&quot;) option is very comfortable to me, especially when reading articles :)&lt;/p&gt;

&lt;p&gt;Thank You IzzySoft for posting the suggestion and Thank You to Eyal for adding this new ability to the script.&lt;/p&gt;</description>
      <pubDate>Sun, 09 Aug 2009 09:22:54 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:26776:156252</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/156252</link>
    </item>
    <item>
      <title>Font definition?, replied by simon!</title>
      <description>&lt;p&gt;hhhmm... talking about enhancing tooltip...&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.darknet.org.uk/wp-content/themes/tonus/plugins/fancytooltips/&quot;&gt;&lt;tt&gt;http://www.darknet.org.uk/wp-content/themes/tonus/plugins/fancytooltips/&lt;/tt&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 09 Aug 2009 09:14:14 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28413:156251</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/156251</link>
    </item>
    <item>
      <title>SELECTING - one word or more., replied by simon!</title>
      <description>&lt;p&gt;So far it is working wonderful.
&lt;br /&gt;I'll post (accurate) suggestions in a month or two.&lt;/p&gt;

&lt;p&gt;Thank you very much, Eyal.&lt;/p&gt;</description>
      <pubDate>Sun, 09 Aug 2009 09:10:14 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27758:156250</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/156250</link>
    </item>
    <item>
      <title>SELECTING - one word or more., replied by simon!</title>
      <description>&lt;p&gt;Whoops! pretty long time, sorry.&lt;/p&gt;

&lt;p&gt;I'm trying it now and it's not perfect - pretty frustrating... maybe.&lt;/p&gt;

&lt;p&gt;I'll write down my issues as soon as I can.&lt;/p&gt;

&lt;p&gt;Thank you so much for your attention.&lt;/p&gt;</description>
      <pubDate>Sat, 08 Aug 2009 01:29:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27758:155920</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/155920</link>
    </item>
    <item>
      <title>SELECTING - one word or more., replied by Eyal Soha</title>
      <description>&lt;p&gt;I added some options for you.  There are now 4 ways to activate HTT:&lt;/p&gt;

&lt;p&gt;&lt;ol&gt;&lt;li&gt;Hover - let the mouse sit over a word and we will look it up.  The time until lookup is configurable
&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click - click on a word and get the translation.
&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Highlight - Select a word &lt;b&gt;or phrase&lt;/b&gt; with the mouse.
&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Press a keyboard button - If a phrase is highlighted, that phrase is translated.  Otherwise the word under the cursor is translated.
&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;It's brand-new so there might still be bugs.  If you find any, let me know.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jul 2009 14:44:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27758:140718</guid>
      <author>Eyal Soha</author>
      <link>http://userscripts.org/posts/140718</link>
    </item>
    <item>
      <title>Font definition?, replied by Eyal Soha</title>
      <description>&lt;p&gt;Consider using the Mozilla add-in &quot;Stylish&quot; to add a global user style.  I'd like to keep the styles separate from the code, that way the style of the tooltip is the default font for the user.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Jul 2009 08:55:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28413:140637</guid>
      <author>Eyal Soha</author>
      <link>http://userscripts.org/posts/140637</link>
    </item>
    <item>
      <title>Font definition?, replied by IzzySoft</title>
      <description>&lt;p&gt;Great the tooltip position is configurable now - works fantastic! Now I'm just left with a simple issue: While the font used on Windows system is well readable, this does not apply to the one used on Linux. Maybe an issue of browser configuration, don't know - but it would be superb if the font could (optionally) be overridden. To me it looks like this is working fine:
&lt;br /&gt;&lt;pre&gt;div.HTTtooltip span { font-family: Arial, FreeSans, sans-serif !important; }&lt;/pre&gt;
&lt;br /&gt;Though it's still not the best selection &lt;img title=&quot;Unsure&quot; src=&quot;http://www.freesmileys.org/smileys/smiley-basic/unsure.gif&quot; alt=&quot;Unsure&quot; /&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 08 Jun 2009 17:58:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:28413:130156</guid>
      <author>IzzySoft</author>
      <link>http://userscripts.org/posts/130156</link>
    </item>
    <item>
      <title>SELECTING - one word or more., replied by simon!</title>
      <description>&lt;p&gt;&#1491;&#1512;&#1498; &#1488;&#1490;&#1489;, &lt;a href=&quot;http://milon.morfix.co.il/Default.aspx?q=%D7%97%D7%92%20%D7%A9%D7%9E%D7%97&quot;&gt;&#1495;&#1490; &#1513;&#1502;&#1495;&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 May 2009 17:35:20 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27758:126746</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/126746</link>
    </item>
    <item>
      <title>SELECTING - one word or more., replied by simon!</title>
      <description>I don't want it to &lt;a href=&quot;http://milon.morfix.co.il/Default.aspx?q=popup&quot;&gt;popup&lt;/a&gt; (or &lt;a href=&quot;http://milon.morfix.co.il/Default.aspx?q=pop+up&quot;&gt;pop up&lt;/a&gt;) when I don't need it to, it would be nice to click on a word when I'll really going to need it. and I also can't translate a phrase (more than one word) like: &lt;a href=&quot;http://milon.morfix.co.il/Default.aspx?q=strictly%20speaking&quot;&gt;strictly speaking&lt;/a&gt;, &lt;a href=&quot;http://milon.morfix.co.il/Default.aspx?q=of+course&quot;&gt;of course&lt;/a&gt; etc.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;if you need some code for the clicking thing... &lt;a href=&quot;http://userscripts.org/scripts/show/23012&quot;&gt;Page_Bookmarker&lt;/a&gt; (btw, I tried with no success, but, &lt;s&gt;I'm probably&lt;/s&gt; apparently, I'm doing something wrong).&lt;/i&gt;</description>
      <pubDate>Thu, 28 May 2009 17:23:51 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:27758:126745</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/126745</link>
    </item>
    <item>
      <title>Tooltip position, replied by IzzySoft</title>
      <description>&lt;p&gt;Eyal, could you make the tooltip opening &lt;b&gt;&lt;i&gt;above&lt;/i&gt;&lt;/b&gt; the word? Otherwise it collides with the translation tooltip from the Google toolbar (translating the word under the cursor from foreign language to yours). I'd like to have both &lt;img title=&quot;|-)&quot; src=&quot;http://www.freesmileys.org/smileys/smiley-basic/lol.gif&quot; alt=&quot;|-)&quot; /&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 13 May 2009 16:23:55 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:26776:120983</guid>
      <author>IzzySoft</author>
      <link>http://userscripts.org/posts/120983</link>
    </item>
    <item>
      <title>putting script on page, replied by Eyal Soha</title>
      <description>&lt;p&gt;Looks like cross-site XMLHttpRequest might be supported in Firefox 3.5 and onwards, but I don't know if that will help you with Opera and Safari, etc.&lt;/p&gt;

&lt;p&gt;The best route would be to install a small script on your server, maybe written in perl, that can fetch translations.  You still need to use XMLHttpRequests, but then they won't be cross-site.  I imagine that all modern browsers support XMLHttpRequest by now.&lt;/p&gt;</description>
      <pubDate>Fri, 17 Apr 2009 22:34:52 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:21389:111881</guid>
      <author>Eyal Soha</author>
      <link>http://userscripts.org/posts/111881</link>
    </item>
    <item>
      <title>putting script on page, replied by benleevolk</title>
      <description>&lt;p&gt;As far as I know, security restrictions will deny any xmlhttprequests you will try to make to different domains, if your script is simply running from a web page and not from the chrome environment, so I don't really see how it's possible to enable this script for a single web page.&lt;/p&gt;</description>
      <pubDate>Tue, 17 Feb 2009 08:04:43 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:21389:96530</guid>
      <author>benleevolk</author>
      <link>http://userscripts.org/posts/96530</link>
    </item>
    <item>
      <title>putting script on page, replied by Ben Fleischer</title>
      <description>&lt;p&gt;I want to just stick this script on a page but see that it calls two gm functions, GM_log and GM-xmlhttprequest.  Without uploading the whole greasemonkey.jar archive I was wondering if you had an alternative xmlhttprequest function that may work. e.g. I have a hebrew blog that I want to have the tooltip appear on for anyone with ff safari or chrome&lt;/p&gt;</description>
      <pubDate>Fri, 06 Feb 2009 15:40:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:21389:94539</guid>
      <author>Ben Fleischer</author>
      <link>http://userscripts.org/posts/94539</link>
    </item>
    <item>
      <title>Archived Comments, replied by Eyal Soha</title>
      <description>&lt;p&gt;&#1488;&#1489;&#1504;&#1512;?  &#1500;&#1502;&#1492;?  &#1500;&#1488; &#1506;&#1493;&#1489;&#1491; &#1500;&#1498;?&lt;/p&gt;</description>
      <pubDate>Thu, 13 Nov 2008 10:44:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64005</guid>
      <author>Eyal Soha</author>
      <link>http://userscripts.org/posts/64005</link>
    </item>
    <item>
      <title>Archived Comments, replied by benleevolk</title>
      <description>&lt;p&gt;Hi Eyal,
&lt;br /&gt;Please take a look at this: &lt;a href=&quot;http://userscripts.org/scripts/show/35593&quot;&gt;http://userscripts.org/scripts/show/35593&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 17 Oct 2008 07:47:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64006</guid>
      <author>benleevolk</author>
      <link>http://userscripts.org/posts/64006</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;&#1488;&#1491;&#1493;&#1504;&#1497;, &#1488;&#1497;&#1497;&#1500; &#1505;&#1493;&#1492;&#1488;&lt;/p&gt;

&lt;p&gt;&#1489;&#1489;&#1511;&#1513;&#1492; &#1510;&#1493;&#1512; &#1506;&#1497;&#1502;&#1497; &#1511;&#1513;&#1512; &#1489;&#1492;&#1511;&#1491;&#1501;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;mailto:avner.sss@gmail.com&quot;&gt;avner.sss@gmail.com&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 18 Sep 2008 04:43:08 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64007</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/64007</link>
    </item>
    <item>
      <title>Archived Comments, replied by Eyal Soha</title>
      <description>&lt;p&gt;I was on holiday.  I added CityOfSphere's fix.  If you have Script Updater, &lt;a href=&quot;http://userscripts.org/scripts/show/8877&quot;&gt;http://userscripts.org/scripts/show/8877&lt;/a&gt; , you should get it automatically very soon.&lt;/p&gt;</description>
      <pubDate>Sun, 04 May 2008 12:03:29 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64008</guid>
      <author>Eyal Soha</author>
      <link>http://userscripts.org/posts/64008</link>
    </item>
    <item>
      <title>Archived Comments, replied by CityOfSpheres</title>
      <description>&lt;p&gt;Bevakasha :)&lt;/p&gt;

&lt;p&gt;Ulay meyutar lehosif she ani geveret :P&lt;/p&gt;</description>
      <pubDate>Mon, 28 Apr 2008 05:57:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64009</guid>
      <author>CityOfSpheres</author>
      <link>http://userscripts.org/posts/64009</link>
    </item>
    <item>
      <title>Archived Comments, replied by barryoni</title>
      <description>&lt;p&gt;Gever, ata melech toda raba me'od CityOfSpheres.
&lt;br /&gt;You saved us, and because of we love you and truly grateful for that.
&lt;br /&gt;10 Millions thanks for you. (-: (-: (-:&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 18:34:13 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64010</guid>
      <author>barryoni</author>
      <link>http://userscripts.org/posts/64010</link>
    </item>
    <item>
      <title>Archived Comments, replied by CityOfSpheres</title>
      <description>&lt;p&gt;I uploaded the script with the change:
&lt;br /&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/25598&quot;&gt;http://userscripts.org/scripts/show/25598&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Aliti et ha script im ha shinuy:
&lt;br /&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/25598&quot;&gt;http://userscripts.org/scripts/show/25598&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:30:41 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64011</guid>
      <author>CityOfSpheres</author>
      <link>http://userscripts.org/posts/64011</link>
    </item>
    <item>
      <title>Archived Comments, replied by CityOfSpheres</title>
      <description>&lt;p&gt;To make this script work with the recent change in the Morfix website, change &quot;tblTrans&quot; to &quot;TableTranslation&quot; in the source. That is,
&lt;br /&gt;instead of 
&lt;br /&gt;startText = responseDetails.responseText.indexOf(&quot;tblTrans&quot;);
&lt;br /&gt;put
&lt;br /&gt;startText = responseDetails.responseText.indexOf(&quot;TableTranslation&quot;);&lt;/p&gt;

&lt;p&gt;I also made a copy of &lt;a href=&quot;http://www.amhaaretz.org/translit/&quot;&gt;http://www.amhaaretz.org/translit/&lt;/a&gt; with a working Morfix button, at 
&lt;br /&gt;&lt;a href=&quot;http://bumba.net/~skaya/translit/ahtModified.html&quot;&gt;http://bumba.net/~skaya/translit/ahtModified.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ha baaya hi lo be Firefox ela be shinuy hadash be Morfix. Efshar laasot she ha script yaavod im Morfix 2.0 - tsarih lehahlif &quot;tblTrans&quot; le &quot;TableTranslation&quot; ba script. Zot omeret,
&lt;br /&gt;bimkom ze
&lt;br /&gt;startText = responseDetails.responseText.indexOf(&quot;tblTrans&quot;);
&lt;br /&gt;tsarih lasim ze
&lt;br /&gt;startText = responseDetails.responseText.indexOf(&quot;TableTranslation&quot;);&lt;/p&gt;

&lt;p&gt;Gam asiti translit kmo &lt;a href=&quot;http://www.amhaaretz.org/translit/&quot;&gt;http://www.amhaaretz.org/translit/&lt;/a&gt; she shuv oved im Morfix, ze be
&lt;br /&gt;&lt;a href=&quot;http://bumba.net/~skaya/translit/ahtModified.html&quot;&gt;http://bumba.net/~skaya/translit/ahtModified.html&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 10:17:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64012</guid>
      <author>CityOfSpheres</author>
      <link>http://userscripts.org/posts/64012</link>
    </item>
    <item>
      <title>Archived Comments, replied by CityOfSpheres</title>
      <description>&lt;p&gt;I believe it might be Morfix changing something, not Firefox, because at the same time the &quot;Morfix&quot; button in &lt;a href=&quot;http://www.amhaaretz.org/translit/&quot;&gt;http://www.amhaaretz.org/translit/&lt;/a&gt; stoppped working, and it's not working in Internet Explorer or Safari either.&lt;/p&gt;</description>
      <pubDate>Thu, 24 Apr 2008 03:30:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64013</guid>
      <author>CityOfSpheres</author>
      <link>http://userscripts.org/posts/64013</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon!</title>
      <description>&lt;p&gt;&#1499;&#1503;, &#1512;&#1493;&#1488;&#1497;&#1501; &#1513;&#1492;&#1495;&#1489;&#1512;'&#1492; &#1499;&#1488;&#1503; &#1497;&#1493;&#1491;&#1506;&#1497;&#1501; &#1488;&#1504;&#1490;&#1500;&#1497;&#1514; :)&lt;/p&gt;</description>
      <pubDate>Wed, 23 Apr 2008 18:34:19 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15438:64014</guid>
      <author>simon!</author>
      <link>http://userscripts.org/posts/64014</link>
    </item>
  </channel>
</rss>
