<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to 132: "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/</link><description>Recent changes to 132: "Advanced settings..." in wizard excludes files from STMF3xx template build</description><atom:link href="https://sourceforge.net/p/gnuarmeclipse/bugs/132/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 28 Feb 2015 12:40:51 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/gnuarmeclipse/bugs/132/feed.rss" rel="self" type="application/rss+xml"/><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#3889</link><description>&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;: open-accepted --&amp;gt; pending-postponed&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Liviu Ionescu (ilg)</dc:creator><pubDate>Sat, 28 Feb 2015 12:40:51 -0000</pubDate><guid>https://sourceforge.net9484d172bb0dfdfc36a915bd70d3f5f97e2949f5</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#f06b</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;At least the problem is easy to avoid, and is now documented in case someone else runs into it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Wed, 10 Dec 2014 18:01:18 -0000</pubDate><guid>https://sourceforge.net1bdb2a20fa3b727e2ac917e7aa48b7588713cdcf</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#91cc</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;thank you for the screenshots, they were useful, I finally managed to reproduce the problem.&lt;/p&gt;
&lt;p&gt;it happens to other templates too, not only to F3.&lt;/p&gt;
&lt;p&gt;the template marks both the 'src' and the 'system' folders using exactly the same procedure:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="nt"&gt;&amp;lt;if&lt;/span&gt; &lt;span class="na"&gt;condition=&lt;/span&gt;&lt;span class="s"&gt;"1==1"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="c"&gt;&amp;lt;!-- src --&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;process&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"org.eclipse.cdt.core.CreateSourceFolder"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;simple&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"projectName"&lt;/span&gt; &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"$(projectName)"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;simple&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"path"&lt;/span&gt; &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"$(sourceDir)"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/process&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/if&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;if&lt;/span&gt; &lt;span class="na"&gt;condition=&lt;/span&gt;&lt;span class="s"&gt;"1==1"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="c"&gt;&amp;lt;!-- system --&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;process&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"org.eclipse.cdt.core.CreateSourceFolder"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;simple&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"projectName"&lt;/span&gt; &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"$(projectName)"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;simple&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"path"&lt;/span&gt; &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"$(sysDir)"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/process&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/if&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;the problem is that when the Advanced tab is entered, the source folders definitions made by the template are overwritten. &lt;/p&gt;
&lt;p&gt;I'm afraid there isn't much to do in the plug-in to fix this :-(&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Liviu Ionescu (ilg)</dc:creator><pubDate>Wed, 10 Dec 2014 11:32:21 -0000</pubDate><guid>https://sourceforge.netda217f447cad57b7826f6a58a31b44f33c011960</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#5354</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;No difference with Kepler, also tried running both Kepler and Luna with jdk1.7.0_71.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Tue, 09 Dec 2014 21:56:54 -0000</pubDate><guid>https://sourceforge.net6e1c254e8e0090cf65c3e078f0f3f95cba0add0a</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#97dd</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;still could not reproduce it... :-(&lt;/p&gt;
&lt;p&gt;the only significant difference is Java 1.8, but it shouldn't behave so much different.&lt;/p&gt;
&lt;p&gt;could you also try the same sequence on a fresh Kepler SR2, with a fresh workspace?&lt;/p&gt;
&lt;p&gt;and possibly send me pictures with template settings?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Liviu Ionescu (ilg)</dc:creator><pubDate>Tue, 09 Dec 2014 09:21:05 -0000</pubDate><guid>https://sourceforge.netb0a76bce6c40753fc84e8ebb19ce1469a914d58d</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#6109</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;No exceptions. Creating the project only produces this entry in the log:&lt;/p&gt;
&lt;p&gt;!ENTRY org.eclipse.cdt.core 1 0 2014-12-09 11:04:49.537&lt;br /&gt;
!MESSAGE Indexed '1' (4 sources, 62 headers) in 1.17 sec: 4,152 declarations; 4,981 references; 0 unresolved inclusions; 0 syntax errors; 0 unresolved names (0%)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Tue, 09 Dec 2014 09:12:30 -0000</pubDate><guid>https://sourceforge.net4a59c569c6d7c1a2d6c25cbd60c646616fbc683e</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#cb10</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;yes, the project is obviously incomplete.&lt;/p&gt;
&lt;p&gt;can you check the workspace logs for any exceptions? (.metadata/.log)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Liviu Ionescu (ilg)</dc:creator><pubDate>Tue, 09 Dec 2014 08:03:48 -0000</pubDate><guid>https://sourceforge.netae97b1c7c01ba9abe3840f7900e87806c0a3ccd8</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#760d</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Generated project.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Mon, 08 Dec 2014 23:38:24 -0000</pubDate><guid>https://sourceforge.net5bdb19523d336ebd3449de959872c7dfb7e0ccb8</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#5d0d</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In the generated project, root "src" is the only listed source location.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Mon, 08 Dec 2014 23:37:39 -0000</pubDate><guid>https://sourceforge.netc95399c8a0b1a7a0f787f197fe13ba3049aeccda</guid></item><item><title>#132 "Advanced settings..." in wizard excludes files from STMF3xx template build</title><link>https://sourceforge.net/p/gnuarmeclipse/bugs/132/?limit=25#e703</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In advanced settings I just click "OK", and I touch no settings in the wizard except selecting the template and entering the name. It seems that clicking "Cancel" in advanced settings does not trigger this.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anders Montonen</dc:creator><pubDate>Mon, 08 Dec 2014 23:36:38 -0000</pubDate><guid>https://sourceforge.net63869163711251a485b39236b52e796b1abf6202</guid></item></channel></rss>