<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: ksshmenu - A graphical SSH manager for KDE</title>
	<atom:link href="http://burnachurch.com/82/ksshmenu-a-graphical-ssh-manager-for-kde/feed/" rel="self" type="application/rss+xml" />
	<link>http://burnachurch.com/82/ksshmenu-a-graphical-ssh-manager-for-kde/</link>
	<description>Zucht und Ordnung from hell</description>
	<pubDate>Sat, 31 Jul 2010 16:27:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Linux connection manager &#171; Linux T&#38;T</title>
		<link>http://burnachurch.com/82/ksshmenu-a-graphical-ssh-manager-for-kde/#comment-1963</link>
		<dc:creator>Linux connection manager &#171; Linux T&#38;T</dc:creator>
		<pubDate>Wed, 14 Apr 2010 11:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://burnachurch.com/82/ksshmenu-a-kde-frontend-for-managing-your-ssh-shells/#comment-1963</guid>
		<description>[...] connection manager Monocaffe Connections ManagerGnome Connection ManagerPAC ManagerSSHMenuksshmenuSecPanel  Author: WladyX on 14 April, 2010   Category: General, Ssh      Older: Restore hidden menu [...]</description>
		<content:encoded><![CDATA[<p>[...] connection manager Monocaffe Connections ManagerGnome Connection ManagerPAC ManagerSSHMenuksshmenuSecPanel  Author: WladyX on 14 April, 2010   Category: General, Ssh      Older: Restore hidden menu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arno</title>
		<link>http://burnachurch.com/82/ksshmenu-a-graphical-ssh-manager-for-kde/#comment-1418</link>
		<dc:creator>Arno</dc:creator>
		<pubDate>Sat, 27 Sep 2008 13:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://burnachurch.com/82/ksshmenu-a-kde-frontend-for-managing-your-ssh-shells/#comment-1418</guid>
		<description>Thank you very much. That seems, however be a matter of taste. I do like the original method.</description>
		<content:encoded><![CDATA[<p>Thank you very much. That seems, however be a matter of taste. I do like the original method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wedra</title>
		<link>http://burnachurch.com/82/ksshmenu-a-graphical-ssh-manager-for-kde/#comment-1417</link>
		<dc:creator>Wedra</dc:creator>
		<pubDate>Sat, 27 Sep 2008 10:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://burnachurch.com/82/ksshmenu-a-kde-frontend-for-managing-your-ssh-shells/#comment-1417</guid>
		<description>Simply wonderfull!!!

I made a little patch to use always one window

--- src-dist/ksshmenu.cpp       2008-05-16 17:48:39.000000000  0200
    src/ksshmenu.cpp    2008-09-27 11:24:16.000000000  0200
@@ -41,6  41,7 @@
 ksshmenu::ksshmenu()
     : KSystemTray( 0, "ksshmenu" )
 {
        this-&#62;first = true;
        QString conf_file = QString("%1/.ksshmenu.xml").arg(getenv("HOME"));

        this-&#62;loader = KGlobal::iconLoader();
@@ -91,20  92,19 @@

 void ksshmenu::open_window(int elemid)
 {
-       this-&#62;comm-&#62;sendCommand(this-&#62;servers.at(elemid).name, this-&#62;servers.at(elemid).host, this-&#62;servers.at(elemid).user, this-&#62;servers.at(elemid).pass, true, "");
        this-&#62;window = this-&#62;comm-&#62;sendCommand(this-&#62;servers.at(elemid).name, this-&#62;servers.at(elemid).host, this-&#62;servers.at(elemid).user, this-&#62;servers.at(elemid).pass, this-&#62;first, this-&#62;window);
        this-&#62;first = false;
 }

 void ksshmenu::open_all_windows(int elemid)
 {
        std::vector::iterator i;
-       QString window;
-       bool first = true;
        for( i = this-&#62;servers.begin(); i != this-&#62;servers.end(); i   )
        {
                if ((*i).group.compare(this-&#62;servers.at(elemid).group) == 0 &#38;&#38; ! (*i).is_group)
                {
-                       window = this-&#62;comm-&#62;sendCommand((*i).name, (*i).host, (*i).user, (*i).pass, first, window);
-                       first = false;
                        this-&#62;window = this-&#62;comm-&#62;sendCommand((*i).name, (*i).host, (*i).user, (*i).pass, this-&#62;first, this-&#62;window);
                        this-&#62;first = false;
                }
        }
 }
diff -Naur src-dist/ksshmenu.h src/ksshmenu.h
--- src-dist/ksshmenu.h 2008-05-16 15:26:58.000000000  0200
    src/ksshmenu.h      2008-09-27 10:54:47.000000000  0200
@@ -61,6  61,8 @@
        virtual ~ksshmenu();

 protected:
        QString window;
        bool first;
        std::vector  servers;
        void mousePressEvent( QMouseEvent *e );
        KonsoleCommunicator * comm;</description>
		<content:encoded><![CDATA[<p>Simply wonderfull!!!</p>
<p>I made a little patch to use always one window</p>
<p>&#8212; src-dist/ksshmenu.cpp       2008-05-16 17:48:39.000000000  0200<br />
    src/ksshmenu.cpp    2008-09-27 11:24:16.000000000  0200<br />
@@ -41,6  41,7 @@<br />
 ksshmenu::ksshmenu()<br />
     : KSystemTray( 0, &#8220;ksshmenu&#8221; )<br />
 {<br />
        this-&gt;first = true;<br />
        QString conf_file = QString(&#8221;%1/.ksshmenu.xml&#8221;).arg(getenv(&#8221;HOME&#8221;));</p>
<p>        this-&gt;loader = KGlobal::iconLoader();<br />
@@ -91,20  92,19 @@</p>
<p> void ksshmenu::open_window(int elemid)<br />
 {<br />
-       this-&gt;comm-&gt;sendCommand(this-&gt;servers.at(elemid).name, this-&gt;servers.at(elemid).host, this-&gt;servers.at(elemid).user, this-&gt;servers.at(elemid).pass, true, &#8220;&#8221;);<br />
        this-&gt;window = this-&gt;comm-&gt;sendCommand(this-&gt;servers.at(elemid).name, this-&gt;servers.at(elemid).host, this-&gt;servers.at(elemid).user, this-&gt;servers.at(elemid).pass, this-&gt;first, this-&gt;window);<br />
        this-&gt;first = false;<br />
 }</p>
<p> void ksshmenu::open_all_windows(int elemid)<br />
 {<br />
        std::vector::iterator i;<br />
-       QString window;<br />
-       bool first = true;<br />
        for( i = this-&gt;servers.begin(); i != this-&gt;servers.end(); i   )<br />
        {<br />
                if ((*i).group.compare(this-&gt;servers.at(elemid).group) == 0 &amp;&amp; ! (*i).is_group)<br />
                {<br />
-                       window = this-&gt;comm-&gt;sendCommand((*i).name, (*i).host, (*i).user, (*i).pass, first, window);<br />
-                       first = false;<br />
                        this-&gt;window = this-&gt;comm-&gt;sendCommand((*i).name, (*i).host, (*i).user, (*i).pass, this-&gt;first, this-&gt;window);<br />
                        this-&gt;first = false;<br />
                }<br />
        }<br />
 }<br />
diff -Naur src-dist/ksshmenu.h src/ksshmenu.h<br />
&#8212; src-dist/ksshmenu.h 2008-05-16 15:26:58.000000000  0200<br />
    src/ksshmenu.h      2008-09-27 10:54:47.000000000  0200<br />
@@ -61,6  61,8 @@<br />
        virtual ~ksshmenu();</p>
<p> protected:<br />
        QString window;<br />
        bool first;<br />
        std::vector  servers;<br />
        void mousePressEvent( QMouseEvent *e );<br />
        KonsoleCommunicator * comm;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
