<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.webtools.jsf</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/maillist.html</link>
		<description>NewsGroup: news.eclipse.webtools.jsf</description>
		<language>en-us</language>
		<pubDate>Wed, 02 Sep 2009 15:20:25 GMT</pubDate>
		<lastBuildDate>Wed, 02 Sep 2009 15:20:25 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.webtools.jsf</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.webtools.jsf] Re: JSF faces config file outside	WEB-INF?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00988.html</link>
		<description> You can have the file anywhere inside your application's context root (e.g. /WebContent), I believe. The main benefit of putting config files in WEB-INF folder is that the folder is by default protected by the server in that it's not accessible by users. ...</description>
		<content:encoded><![CDATA[<pre>On 9/1/2009 9:48 PM, Debajit Adhikary wrote:
&gt; When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3)
&gt; 
&gt; If yes, how should this faces-config.xml be declared in web.xml? the paths generated by IDE's (like Eclipse/JDev) generally use something like:
&gt; 
&gt; &lt;context-param&gt;
&gt;     &lt;param-name&gt;javax.faces.CONFIG_FILES&lt;/param-name&gt;
&gt;     &lt;param-value&gt;/WEB-INF/faces-config1.xml&lt;/param-value&gt;
&gt; &lt;/context-param&gt;
&gt; 
&gt; Now, if my faces-config.xml is outside WEB-INF -- is it correct to declare the param-value as something like &quot;/WebContent/WEB-INF/faces-config2.xml&quot;?

You can have the file anywhere inside your application's context root (e.g. /WebContent), I believe.
The main benefit of putting config files in WEB-INF folder is that the folder is by default protected by the server
in that it's not accessible by users. If you put the file into /WebContent/folder, then a user can enter the path
in the browser and take a look at your configuration file.

If your file was in /WebContent/folder, then the param value would be /folder/faces-config2.xml,
assuming /WebContent is your application's context root.

</pre>]]></content:encoded>
		<pubDate>Wed, 02 Sep 2009 15:07:10 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00988.html</guid>
		<author>ykats@xxxxxxx (Yury Kats)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] JSF faces config file outside WEB-INF?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00987.html</link>
		<description>When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3) If yes, how should this faces-config.xml be declared in web.xml? the paths gen...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3)</pre><br>
<pre style="margin: 0em;">If yes, how should this faces-config.xml be declared in web.xml? the paths generated by IDE's (like Eclipse/JDev) generally use something like:</pre><br>
<pre style="margin: 0em;">&lt;context-param&gt;
   &lt;param-name&gt;javax.faces.CONFIG_FILES&lt;/param-name&gt;
   &lt;param-value&gt;/WEB-INF/faces-config1.xml&lt;/param-value&gt;
&lt;/context-param&gt;</pre><br>
<pre style="margin: 0em;">Now, if my faces-config.xml is outside WEB-INF -- is it correct to declare the param-value as something like &quot;/WebContent/WEB-INF/faces-config2.xml&quot;?</pre><br>
]]></content:encoded>
		<pubDate>Wed, 02 Sep 2009 01:48:52 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00987.html</guid>
		<author>debajit.adhikary@xxxxxxx (Debajit Adhikary)</author>
	</item>
	<item>
		<title>[news.eclipse.webtools.jsf] JSF config file outside WEB-INF?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00986.html</link>
		<description>When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3) If yes, how should this faces-config.xml be declared in web.xml? The paths gen...</description>
		<content:encoded><![CDATA[<tt>When creating multiple faces config files, it is correct to have the 
faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very 
clear about this (Section 10.1.3)</tt><br>
<br>
<tt>If yes, how should this faces-config.xml be declared in web.xml? The paths 
generated by IDE's (like Eclipse/JDev) generally use something like:</tt><br>
<br>
<pre style="margin: 0em;">&lt;context-param&gt;
   &lt;param-name&gt;javax.faces.CONFIG_FILES&lt;/param-name&gt;
   &lt;param-value&gt;/WEB-INF/faces-config1.xml&lt;/param-value&gt;
&lt;/context-param&gt;</pre><br>
<tt>Now, if my faces-config.xml is outside WEB-INF -- is it correct to declare 
the param-value as something like &quot;/WebContent/WEB-INF/faces-config2.xml&quot;?</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Wed, 02 Sep 2009 01:47:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00986.html</guid>
		<author>debajit.adhikary@xxxxxxx (Debajit Adhikary)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] Re: Trying to generate HTML file from a	JSF page</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00985.html</link>
		<description>The HTML generated by the Web Page Editor is a design-time approximation of what is generated at runtime. The obvious way to get the correct HTML is by running the form on a server. -Raghu </description>
		<content:encoded><![CDATA[<tt>The HTML generated by the Web Page Editor is a design-time approximation 
of what is generated at runtime. The obvious way to get the correct HTML 
is by running the form on a server.<br>
-Raghu</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Mon, 31 Aug 2009 22:04:47 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00985.html</guid>
		<author>raghunathan.srinivasan@xxxxxxx (Raghu Srinivasan)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] Trying to generate HTML file from a JSF	page</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00984.html</link>
		<description>Hi everyone, Does anyone know of a way I can generate HTML file from an already designed JSF page. I was thinking if I can simulate how the Web page editor does on right click and &amp;quot;View Source&amp;quot; of a web page. Any ideas ? </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi everyone,</pre><br>
<tt>Does anyone know of a way I can generate HTML file from an already 
designed JSF page.</tt><br>
<br>
<tt>I was thinking if I can simulate how the Web page editor does on right 
click and &quot;View Source&quot; of a web page.</tt><br>
<br>
<pre style="margin: 0em;">Any ideas ?</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 12 Aug 2009 13:23:55 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00984.html</guid>
		<author>shilpashandilya@xxxxxxx (shilpa )</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] Re: visual editing of JSF facelets</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00983.html</link>
		<description>Visual editing of Facelets in the Web Page Editor is not supported in Galileo. We will be working on it in a future release. We welcome contributions from the community. Thanks Raghu Srinivasan Project Lead - JSF Tools Project </description>
		<content:encoded><![CDATA[<tt>Visual editing of Facelets in the Web Page Editor is not supported in 
Galileo. We will be working on it in a future release. We welcome 
contributions from the community.</tt><br>
<br>
<pre style="margin: 0em;">Thanks
Raghu Srinivasan
Project Lead - JSF Tools Project</pre><br>
<br>
]]></content:encoded>
		<pubDate>Mon, 10 Aug 2009 18:32:29 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00983.html</guid>
		<author>raghunathan.srinivasan@xxxxxxx (Raghu Srinivasan)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] visual editing of JSF facelets</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00982.html</link>
		<description>Does &amp;quot;Web Page Editor&amp;quot; [Web tools project] support visual editing of JSF facelets? I have added JSF-facelet library to Web page editor palette but when I use components like decorate, I dont see the controls being rendered on the source page. Thanks, Sunil...</description>
		<content:encoded><![CDATA[<tt>Does &quot;Web Page Editor&quot; [Web tools project] support visual editing of JSF 
facelets? I have added JSF-facelet library to Web page editor palette but 
when I use components like decorate, I dont see the controls being 
rendered on the source page.</tt><br>
<br>
<pre style="margin: 0em;">Thanks,
Sunil</pre><br>
<br>
]]></content:encoded>
		<pubDate>Thu, 30 Jul 2009 20:48:00 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00982.html</guid>
		<author>stayi@xxxxxxx (Sunil Tayi)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] Re: Facelets Tools Project - Status?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00981.html</link>
		<description>I'm a little confused by the previous message. I'm using Galileo. Is there a place to download the current version of facelets tools for JSF 1.2 support? Is it the same as the version for Eclipse 3.4? Michael </description>
		<content:encoded><![CDATA[<tt>I'm a little confused by the previous message.  I'm using Galileo.  Is 
there a place to download the current version of facelets tools for JSF 
1.2 support?</tt><br>
<br>
<pre style="margin: 0em;">Is it the same as the version for Eclipse 3.4?</pre><br>
<pre style="margin: 0em;">Michael</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 29 Jul 2009 14:44:29 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00981.html</guid>
		<author>michael_giroux@xxxxxxx (Michael Giroux)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] Re: galileo Default JSF Version</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00980.html</link>
		<description>Hi, I hate to answer my own question. I found out that this erratic behaviour is caused by a workspace create by ganymed 3.4. If I create a new Workspace with 3.5 (galileo) the initial tooling seems to work correctly. Thanks, Olaf </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I hate to answer my own question. I found out that this erratic 
behaviour is caused by a workspace create by ganymed 3.4. If I create a 
new Workspace with 3.5 (galileo) the initial tooling seems to work 
correctly.</tt><br>
<br>
<pre style="margin: 0em;">Thanks,
   Olaf</pre><br>
<br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi,</pre><br>
<tt>The only default JSF configuration available when creating a new dynamic 
web project in galileo jee is still java server faces 1.1.</tt><br>
<br>
<tt>One has to choose customize... . In this Dialog is java server faces 1.2 
available.</tt><br>
<br>
<pre style="margin: 0em;">Is this a bug or a feature?</pre><br>
<pre style="margin: 0em;">Greetings,
  Olaf</pre><br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Tue, 07 Jul 2009 07:17:35 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00980.html</guid>
		<author>o.flebbe@xxxxxxx (Olaf Flebbe)</author>
	</item>


	<item>
		<title>[news.eclipse.webtools.jsf] galileo Default JSF Version</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00979.html</link>
		<description>Hi, The only default JSF configuration available when creating a new dynamic web project in galileo jee is still java server faces 1.1. One has to choose customize... . In this Dialog is java server faces 1.2 available. Is this a bug or a feature? Greeting...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>The only default JSF configuration available when creating a new dynamic 
web project in galileo jee is still java server faces 1.1.</tt><br>
<br>
<tt>One has to choose customize... . In this Dialog is java server faces 1.2 
available.</tt><br>
<br>
<pre style="margin: 0em;">Is this a bug or a feature?</pre><br>
<pre style="margin: 0em;">Greetings,
  Olaf</pre><br>
<br>
]]></content:encoded>
		<pubDate>Tue, 30 Jun 2009 10:28:27 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.webtools.jsf/msg00979.html</guid>
		<author>o.flebbe@xxxxxxx (Olaf Flebbe)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
