<?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: Writing first YCP program</title>
	<atom:link href="http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/</link>
	<description>Blogs and Ramblings of the openSUSE Members</description>
	<lastBuildDate>Mon, 30 Jan 2012 19:11:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Martin Vidner</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-767</link>
		<dc:creator>Martin Vidner</dc:creator>
		<pubDate>Thu, 19 Feb 2009 11:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-767</guid>
		<description>Ugh, I forgot. If you are not root, you will need to call it with the full path: &lt;code&gt;/sbin/yast2 ...&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Ugh, I forgot. If you are not root, you will need to call it with the full path: <code>/sbin/yast2 ...</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Vidner</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-766</link>
		<dc:creator>Martin Vidner</dc:creator>
		<pubDate>Thu, 19 Feb 2009 11:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-766</guid>
		<description>You can also do it without the symlink: &lt;code&gt;yast2 --qt ./PushButton.ycp&lt;/code&gt;, &lt;code&gt;yast2 --gtk ./PushButton.ycp&lt;/code&gt;, &lt;code&gt;yast2 --ncurses ./PushButton.ycp&lt;/code&gt;

And if people got interested, here&#039;s a page with useful &lt;a href=&quot;http://en.opensuse.org/YaST/Development&quot; rel=&quot;nofollow&quot;&gt;links about YaST development&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You can also do it without the symlink: <code>yast2 --qt ./PushButton.ycp</code>, <code>yast2 --gtk ./PushButton.ycp</code>, <code>yast2 --ncurses ./PushButton.ycp</code></p>
<p>And if people got interested, here&#8217;s a page with useful <a href="http://en.opensuse.org/YaST/Development" rel="nofollow">links about YaST development</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-749</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Fri, 13 Feb 2009 15:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-749</guid>
		<description>well, you never stop learning when using linux, that&#039;s why I love it</description>
		<content:encoded><![CDATA[<p>well, you never stop learning when using linux, that&#8217;s why I love it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Orlovskyy</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-748</link>
		<dc:creator>Alexander Orlovskyy</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-748</guid>
		<description>Robin,i understand , i edited my blog ,so now it makes sense. ;-)
Don`t forget,i still learning .</description>
		<content:encoded><![CDATA[<p>Robin,i understand , i edited my blog ,so now it makes sense. <img src='http://lizards.opensuse.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Don`t forget,i still learning .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-747</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Fri, 13 Feb 2009 13:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-747</guid>
		<description>sure, but exporting a variable and exiting immediately afterwards does nothing.

from the wiki:

export Y2DEBUG=1
yast2

That would start yast2 with the Y2DEBUG variable set to 1.
export Y2DEBUG=1
exit
will set the variable and exit the shell which just discards the variable.

You might want this:
export Y2DEBUG=1    # once in your shell session
...
./y2base ./PushButton.ycp qt</description>
		<content:encoded><![CDATA[<p>sure, but exporting a variable and exiting immediately afterwards does nothing.</p>
<p>from the wiki:</p>
<p>export Y2DEBUG=1<br />
yast2</p>
<p>That would start yast2 with the Y2DEBUG variable set to 1.<br />
export Y2DEBUG=1<br />
exit<br />
will set the variable and exit the shell which just discards the variable.</p>
<p>You might want this:<br />
export Y2DEBUG=1    # once in your shell session<br />
&#8230;<br />
./y2base ./PushButton.ycp qt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Orlovskyy</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-746</link>
		<dc:creator>Alexander Orlovskyy</dc:creator>
		<pubDate>Fri, 13 Feb 2009 12:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-746</guid>
		<description>Hi Robin, please refer to YaST manual
&quot;The y2logs don&#039;t seem to show my problem. Can that logging be made any more verbose?&quot;

http://en.opensuse.org/Bugs/YaST</description>
		<content:encoded><![CDATA[<p>Hi Robin, please refer to YaST manual<br />
&#8220;The y2logs don&#8217;t seem to show my problem. Can that logging be made any more verbose?&#8221;</p>
<p><a href="http://en.opensuse.org/Bugs/YaST" rel="nofollow">http://en.opensuse.org/Bugs/YaST</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://lizards.opensuse.org/2009/02/13/writing-first-ycp-program/#comment-745</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Fri, 13 Feb 2009 11:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://lizards.opensuse.org/?p=424#comment-745</guid>
		<description>&gt; $ su
&gt; $ export Y2DEBUG=1
&gt; $ exit

That does exactly... nothing.

Exporting variables only affects child processes</description>
		<content:encoded><![CDATA[<p>&gt; $ su<br />
&gt; $ export Y2DEBUG=1<br />
&gt; $ exit</p>
<p>That does exactly&#8230; nothing.</p>
<p>Exporting variables only affects child processes</p>
]]></content:encoded>
	</item>
</channel>
</rss>

