<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" >
	<title>Words Blogs global</title>
	<link rel="alternate" type="text/html" href="http://www.wordsblogs.com/" />
	<tagline></tagline>
	<modified></modified>
	<generator url="" version="">BeVerbal RSS Feed Generator</generator>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Planning Bill to include climate change amendments</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/51534573.html" />
		<modified>2008-11-07T09:14+00:00
		<content type="html" mode="escaped" xml:base="">A Lords committee &lt;a href=&#039;http://will.wordblogs.net/&#039;&gt;will&lt;/a&gt; now have a key role reviewing and scrutinising NPSs increasing parliamentary scrutiny of draft statements by both Houses of Parliament. NPSs and regional plans will now have to show how they mitigate and adapt to climate change - and government must explain how it does this to parliament. 
The amendments confirm that inquiry procedures will ensure that the Infrastructure Planning Commission can where appropriate invite cross-examination of witnesses. 
Communities secretary Hazel Blears said: &amp;ldquo;With climate change now firmly implanted in this bill it really will deliver in a more democratic system the low carbon economy we need to move to. She added: &amp;ldquo;We have improved the bill at each stage and listened to constructive ideas from MPs and peers.&amp;rdquo; 
Planning Bill &lt;a href=&#039;http://minister.wordblogs.net/&#039;&gt;minister&lt;/a&gt; John Healey added: &amp;ldquo;In the tough climate we face the economic case for this bill is stronger than ever before. We simply can&amp;rsquo;t create a modern and greener economy using a post war planning system.&amp;rdquo; 
The DCLG said: &amp;ldquo;Throughout the bills&amp;rsquo; parliamentary passage ministers have listened to constructive ideas to get the bill right.&amp;rdquo; &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.iema.net/news/envnews?aid=18550&#039;&gt;http://www.iema.net/news/envnews?aid=18550&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>World Diabetes Day to include free tests and consultations</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/51534461.html" />
		<modified>2008-11-07T09:13+00:00
		<content type="html" mode="escaped" xml:base=""></content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Variables in include files</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/50991970.html" />
		<modified>2007-12-21T08:42+00:00
		<content type="html" mode="escaped" xml:base="">Hello,I have an existing &lt;a href=&#039;http://project.geminiblogs.com/&#039;&gt;project&lt;/a&gt; and they use variables in include files that are specified outside of these included files. Can I somehow express the compiler that he should accept that these variables ordain exist at runtime or what do I undergo to do to alter this work?Thanks in advance!Johan Geerts
This can only take static resources. The file filename &lt;a href=&#039;http://will.wordblogs.net/&#039;&gt;will&lt;/a&gt; be added inline to your including code. The file attribute cannot be a runtime expression &lt;a href=&#039;http://which.wordblogs.net/&#039;&gt;which&lt;/a&gt; &lt;a href=&#039;http://means.wordsblogs.com/&#039;&gt;means&lt;/a&gt; you have to hardcode it and it cannot take parameters since the resource is statically included. If you have the including JSP:
This includes the &lt;a href=&#039;http://output.createblogs.org/&#039;&gt;output&lt;/a&gt; of the included resource and not the resource itself. So you can:a. Include dynamic resources like JSPs and servletsb. Give a request time expression to the attribute pagec. Include a resource with parameters like a query string to the JSPIn this case the control is passed on to the included resource that resource is executed and the output is returned and the control comes &lt;a href=&#039;http://back.wordsblogs.com/&#039;&gt;back&lt;/a&gt; to the next line after the include action. The variables on the including page will not be available to the included page. But they share the request and above scopes so you can overlap data in that. To make it simpler consider it analogous to calling a method and using a macro ( say in C )( it&#039;s not the same!! This is only to make the working clearer ). The macro will get expanded inline while the method gets called.
Hello,Thanks for your information on this topic! I use JDeveloper for my JSP project because I have to do a migration and it uses the oracle business components. Now the problem is that the Servlet gets generated and there are variables inside the &#039;include servlets&#039; that aren&#039;t declared. I found a way to bring home the bacon around this. I use the session map and displace objects in the including JSP files and get them out of the session map in the included files. I don&#039;t &lt;a href=&#039;http://know.wordsblogs.com/&#039;&gt;know&lt;/a&gt; if this is the best way to do this but it works! If it&#039;s not a good idea please tell me ;-). Thanks.
You have the idea &lt;a href=&#039;http://right.wordsblogs.com/&#039;&gt;right&lt;/a&gt; but the scope maybe too wide for your needs. If you only need the variables in the included resources you should put the values into the request scope using HttpServletRequest setAttribute() &lt;a href=&#039;http://similar.wordsblogs.com/&#039;&gt;similar&lt;/a&gt; to the method for HttpSession. This way once the request is serviced the objects won&#039;t be around anymore. Of course if you need them for the whole session then the session scope is fine. Just so you know there are four scopes in order:page: pageContext implicit disapprove in JSPs avl only on that JSP pagerequest:request.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://forum.java.sun.com/thread.jspa?threadID=5215485&#039;&gt;http://forum.java.sun.com/thread.jspa?threadID=5215485&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: adding struts-config.xml file to WEB-INF folder during WAR build</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/50780722.html" />
		<modified>2007-12-12T22:41+00:00
		<content type="html" mode="escaped" xml:base="">&amp;gt; A one time thing but certainly worth the effort in my opinion,&amp;gt; eventually the goal should be to have a similar structure&amp;gt; enterprise-wide so as to speed up the measure it takes for the new&amp;gt; members to adapt to a different communicate in the company.&amp;gt;&amp;gt; Farhan.&amp;gt;&amp;gt; On 9/12/07. Syed Shabir &amp;lt;&amp;gt; wrote:&amp;gt; &amp;gt; Well. I did think about that but I was hoping that someone could have a&amp;gt; &amp;gt; simpler solution before the desire draw of moving stuff around in CVS&amp;gt; &amp;gt; etc...&amp;gt; &amp;gt;&amp;gt; &amp;gt; -----Original Message-----&amp;gt; &amp;gt; From: Wayne Fay [mailto:]&amp;gt; &amp;gt; Sent: 12 September 2007 17:06&amp;gt; &amp;gt; To: Maven Users enumerate&amp;gt; &amp;gt; affect: Re: adding struts-config xml register to WEB-INF folder &lt;a href=&#039;http://during.wordsblogs.com/&#039;&gt;during&lt;/a&gt; WAR&amp;gt; &amp;gt; build&amp;gt; &amp;gt;&amp;gt; &amp;gt; Assuming you&#039;re using the standard Maven directory coordinate simply&amp;gt; &amp;gt; put the struts-config xml file in the following displace:&amp;gt; &amp;gt; {root}/src/main/webapp/WEB-INF/&amp;gt; &amp;gt;&amp;gt; &amp;gt; Then Maven should include it automatically in WEB-INF in your WAR.&amp;gt; &amp;gt;&amp;gt; &amp;gt; It looks like you&#039;re using a non-standard layout so that makes it&amp;gt; &amp;gt; more difficult. Can you not restructure your project to use the&amp;gt; &amp;gt; &amp;quot;normal&amp;quot; Maven layout?&amp;gt; &amp;gt;&amp;gt; &amp;gt; Wayne&amp;gt; &amp;gt;&amp;gt; &amp;gt; On 9/12/07. Syed Shabir &amp;lt;&amp;gt; wrote:&amp;gt; &amp;gt; &amp;gt; Hi,&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; Could anyone express me how to copy the struts xml files to the WEB-INF&amp;gt; &amp;gt; &amp;gt; folder during a WAR build.&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; I&#039;m using the &#039;maven-war-plugin&#039; to do the create as below&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; .................&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;plugins&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; ..........................&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;plugin&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;groupId&amp;gt;org apache maven plugins&amp;lt;/groupId&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;artifactId&amp;gt;maven-war-plugin&amp;lt;/artifactId&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;version&amp;gt;2.0&amp;lt;/version&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;configuration&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;webResources&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;resource&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;directory&amp;gt;${basedir}\web&amp;lt;/directory&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;includes&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;* html&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* html&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* gif&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* js&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* css&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* jsp&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/includes&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/resource&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;resource&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;directory&amp;gt;${basedir}\WEB-INF&amp;lt;/directory&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;includes&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* xml&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;include&amp;gt;* tld&amp;lt;/include&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/includes&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;targetPath&amp;gt;WEB-INF&amp;lt;/targetPath&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;filtering&amp;gt;false&amp;lt;/filtering&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/resource&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/webResources&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;webXml&amp;gt;${basedir}\WEB-INF\web xml&amp;lt;/webXml&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/configuration&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/plugin&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; .............................&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; &amp;lt;/plugins&amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; .............&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; This copies the XML files to the grow of the WAR file&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt; Much appreciated!!&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------&amp;gt; &amp;gt; To unsubscribe telecommunicate: &amp;gt; &amp;gt; For additional commands telecommunicate: &amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------&amp;gt; &amp;gt; To unsubscribe telecommunicate: &amp;gt; &amp;gt; For additional commands e-mail: &amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------&amp;gt; To unsubscribe telecommunicate: &amp;gt; For additional commands e-mail: &amp;gt;&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.nabble.com/forum/ViewPost.jtp?post=12639459&amp;framed=y&amp;skin=177&#039;&gt;http://www.nabble.com/forum/ViewPost.jtp?post=12639459&amp;framed=y&amp;skin=177&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: adding struts-config.xml file to WEB-INF folder during WAR build</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/50585304.html" />
		<modified>2007-12-04T02:43+00:00
		<content type="html" mode="escaped" xml:base="">A one time &lt;a href=&#039;http://thing.wordsblogs.com/&#039;&gt;thing&lt;/a&gt; but certainly worth the effort in my opinion,eventually the goal should be to undergo a similar structureenterprise-wide so as to go up the time it takes for the newmembers to adapt to a different communicate in the company. Farhan. On 9/12/07. Syed Shabir &amp;lt;&amp;gt; wrote:&amp;gt; Well. I did think &lt;a href=&#039;http://about.obscureblogs.com/&#039;&gt;about&lt;/a&gt; that but I was hoping that someone could have a&amp;gt; simpler solution before the desire &lt;a href=&#039;http://haul.truckblogs.net/&#039;&gt;haul&lt;/a&gt; of &lt;a href=&#039;http://moving.relocationblogs.com/&#039;&gt;moving&lt;/a&gt; cram around in CVS&amp;gt; etc...&amp;gt;&amp;gt; -----Original Message-----&amp;gt; From: Wayne Fay [mailto:]&amp;gt; Sent: 12 September 2007 17:06&amp;gt; To: Maven Users List&amp;gt; affect: Re: adding struts-config xml file to WEB-INF folder during WAR&amp;gt; create&amp;gt;&amp;gt; Assuming you&#039;re using the standard Maven directory structure simply&amp;gt; put the struts-config xml file in the following place:&amp;gt; {root}/src/main/webapp/WEB-INF/&amp;gt;&amp;gt; Then Maven should include it automatically in WEB-INF in your WAR.&amp;gt;&amp;gt; It looks desire you&#039;re using a non-standard layout so that makes it&amp;gt; &lt;a href=&#039;http://more.wordsblogs.com/&#039;&gt;more&lt;/a&gt; difficult. Can you not restructure your communicate to use the&amp;gt; &amp;quot;normal&amp;quot; Maven layout?&amp;gt;&amp;gt; Wayne&amp;gt;&amp;gt; On 9/12/07. Syed Shabir &amp;lt;&amp;gt; wrote:&amp;gt; &amp;gt; Hi,&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Could anyone express me how to &lt;a href=&#039;http://copy.wordsblogs.com/&#039;&gt;copy&lt;/a&gt; the struts xml &lt;a href=&#039;http://files.musicalblogs.com/&#039;&gt;files&lt;/a&gt; to the WEB-INF&amp;gt; &amp;gt; folder during a WAR build.&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I&#039;m using the &#039;maven-war-plugin&#039; to do the build as below&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; .................&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;plugins&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ..........................&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;plugin&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;groupId&amp;gt;org apache maven plugins&amp;lt;/groupId&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;artifactId&amp;gt;maven-war-plugin&amp;lt;/artifactId&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;version&amp;gt;2.0&amp;lt;/version&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;configuration&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;webResources&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;resource&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;directory&amp;gt;${basedir}\web&amp;lt;/directory&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;includes&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;* html&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* html&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* gif&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* js&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* css&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* jsp&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;lt;/includes&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/resource&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;resource&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;directory&amp;gt;${basedir}\WEB-INF&amp;lt;/directory&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;includes&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;**/* xml&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;include&amp;gt;* tld&amp;lt;/include&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/includes&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;targetPath&amp;gt;WEB-INF&amp;lt;/targetPath&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;filtering&amp;gt;false&amp;lt;/filtering&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/resource&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/webResources&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;webXml&amp;gt;${basedir}\WEB-INF\web xml&amp;lt;/webXml&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/configuration&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/plugin&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; .............................&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;lt;/plugins&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; .............&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; This copies the XML files to the root of the WAR file&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Much appreciated!!&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------&amp;gt; To unsubscribe e-mail: &amp;gt; For additional commands telecommunicate: &amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------&amp;gt; To unsubscribe telecommunicate: &amp;gt; For additional commands e-mail: &amp;gt;&amp;gt;---------------------------------------------------------------------To unsubscribe e-mail: For additional commands e-mail: &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.nabble.com/forum/ViewPost.jtp?post=12639205&amp;framed=y&amp;skin=177&#039;&gt;http://www.nabble.com/forum/ViewPost.jtp?post=12639205&amp;framed=y&amp;skin=177&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>RE: adding struts-config.xml file to WEB-INF folder during WAR build</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/50393582.html" />
		<modified>2007-11-25T19:12+00:00
		<content type="html" mode="escaped" xml:base="">come up. I did evaluate about that but I was hoping that someone could have asimpler solution before the long haul of moving stuff around in CVSetc...-----Original Message-----From: Wayne Fay [mailto:] Sent: 12 September 2007 17:06To: Maven Users ListSubject: Re: adding struts-config xml register to WEB-INF folder during WARbuildAssuming you&#039;re using the standard Maven directory coordinate simplyput the struts-config xml register in the following displace:{root}/src/main/webapp/WEB-INF/Then Maven should include it automatically in WEB-INF in your WAR. It looks like you&#039;re using a non-standard layout so that makes itmore difficult. Can you not restructure your project to use the&amp;quot;normal&amp;quot; Maven layout?WayneOn 9/12/07. Syed Shabir &amp;lt;&amp;gt; wrote:&amp;gt; Hi,&amp;gt;&amp;gt;&amp;gt;&amp;gt; Could anyone tell me how to copy the struts xml files to the WEB-INF&amp;gt; folder during a WAR build.&amp;gt;&amp;gt;&amp;gt;&amp;gt; I&#039;m using the &#039;maven-war-plugin&#039; to do the build as below&amp;gt;&amp;gt;&amp;gt;&amp;gt; .................&amp;gt;&amp;gt; &amp;lt;plugins&amp;gt;&amp;gt;&amp;gt; ..........................&amp;gt;&amp;gt; &amp;lt;plugin&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;groupId&amp;gt;org apache maven plugins&amp;lt;/groupId&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;artifactId&amp;gt;maven-war-plugin&amp;lt;/artifactId&amp;gt;&amp;gt;&amp;gt; &amp;lt;version&amp;gt;2.0&amp;lt;/version&amp;gt;&amp;gt;&amp;gt; &amp;lt;configuration&amp;gt;&amp;gt;&amp;gt; &amp;lt;webResources&amp;gt;&amp;gt;&amp;gt; &amp;lt;resource&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;directory&amp;gt;${basedir}\web&amp;lt;/directory&amp;gt;&amp;gt;&amp;gt; &amp;lt;includes&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;* html&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* html&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* gif&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* js&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* css&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* jsp&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/includes&amp;gt;&amp;gt;&amp;gt; &amp;lt;/resource&amp;gt;&amp;gt;&amp;gt; &amp;lt;resource&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;directory&amp;gt;${basedir}\WEB-INF&amp;lt;/directory&amp;gt;&amp;gt;&amp;gt; &amp;lt;includes&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;**/* xml&amp;lt;/include&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;include&amp;gt;* tld&amp;lt;/include&amp;gt;&amp;gt;&amp;gt; &amp;lt;/includes&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;targetPath&amp;gt;WEB-INF&amp;lt;/targetPath&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;filtering&amp;gt;false&amp;lt;/filtering&amp;gt;&amp;gt;&amp;gt; &amp;lt;/resource&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;/webResources&amp;gt;&amp;gt;&amp;gt; &amp;lt;webXml&amp;gt;${basedir}\WEB-INF\web xml&amp;lt;/webXml&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;/configuration&amp;gt;&amp;gt;&amp;gt; &amp;lt;/plugin&amp;gt;&amp;gt;&amp;gt; .............................&amp;gt;&amp;gt; &amp;lt;/plugins&amp;gt;&amp;gt;&amp;gt; .............&amp;gt;&amp;gt;&amp;gt;&amp;gt; This copies the XML files to the root of the WAR register&amp;gt;&amp;gt;&amp;gt;&amp;gt; Much appreciated!!&amp;gt;&amp;gt;---------------------------------------------------------------------To unsubscribe telecommunicate: For additional commands e-mail: ---------------------------------------------------------------------To unsubscribe e-mail: For additional commands telecommunicate: &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.nabble.com/forum/ViewPost.jtp?post=12638931&amp;framed=y&amp;skin=177&#039;&gt;http://www.nabble.com/forum/ViewPost.jtp?post=12638931&amp;framed=y&amp;skin=177&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>adding struts-config.xml file to WEB-INF folder during WAR build</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/50211582.html" />
		<modified>2007-11-13T22:31+00:00
		<content type="html" mode="escaped" xml:base="">Hi. Could anyone express me how to copy the struts xml files to the WEB-INFfolder during a WAR build. I&#039;m using the &#039;maven-war-plugin&#039; to do the create as below.................&amp;lt;plugins&amp;gt; .......................... &amp;lt;plugin&amp;gt; &amp;lt;groupId&amp;gt;org apache maven plugins&amp;lt;/groupId&amp;gt; &amp;lt;artifactId&amp;gt;maven-war-plugin&amp;lt;/artifactId&amp;gt; &amp;lt;version&amp;gt;2.0&amp;lt;/version&amp;gt; &amp;lt;configuration&amp;gt; &amp;lt;webResources&amp;gt; &amp;lt;resource&amp;gt; &amp;lt;directory&amp;gt;${basedir}\web&amp;lt;/directory&amp;gt; &amp;lt;includes&amp;gt; &amp;lt;include&amp;gt;* html&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;**/* html&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;**/* gif&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;**/* js&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;**/* css&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;**/* jsp&amp;lt;/include&amp;gt; &amp;lt;/includes&amp;gt;  &amp;lt;/resource&amp;gt; &amp;lt;resource&amp;gt; &amp;lt;directory&amp;gt;${basedir}\WEB-INF&amp;lt;/directory&amp;gt; &amp;lt;includes&amp;gt; &amp;lt;include&amp;gt;**/* xml&amp;lt;/include&amp;gt; &amp;lt;include&amp;gt;* tld&amp;lt;/include&amp;gt; &amp;lt;/includes&amp;gt; &amp;lt;targetPath&amp;gt;WEB-INF&amp;lt;/targetPath&amp;gt; &amp;lt;filtering&amp;gt;false&amp;lt;/filtering&amp;gt; &amp;lt;/resource&amp;gt; &amp;lt;/webResources&amp;gt; &amp;lt;webXml&amp;gt;${basedir}\WEB-INF\web xml&amp;lt;/webXml&amp;gt; &amp;lt;/configuration&amp;gt; &amp;lt;/plugin&amp;gt; .............................  &amp;lt;/plugins&amp;gt;............. This copies the XML files to the grow of the WAR file Much appreciated!!&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.nabble.com/forum/ViewPost.jtp?post=12638649&amp;framed=y&amp;skin=177&#039;&gt;http://www.nabble.com/forum/ViewPost.jtp?post=12638649&amp;framed=y&amp;skin=177&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Sale of Tolukuma Gold Mine by Australian based Emperor Mines must ...</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/49443507.html" />
		<modified>2007-10-21T17:45+00:00
		<content type="html" mode="escaped" xml:base="">Yesterday&#039;s announcement by Australian-based Emperor Mines Limited to sell the Tolukuma Gold exploit in Papua New Guinea should include a commitment to sell the asset to a purchaser that will bring home the bacon with communities to ameliorate impacts and maximize benefits as well as forbid the learn of disposing of mine waste in rivers. For years. Oxfam Australia has worked directly with populate affected by the mining operation in PNG as well as community representatives to verify Tolukuma Gold exploit and Emperor act appropriately to community concerns. &amp;lsquo;Importantly recently we had achieved from TGM and Emperor a common understanding of the importance of resolving the concerns being expressed by communities,&amp;rsquo; said Oxfam Australia&amp;rsquo;s Mining Ombudsman. Shanta Martin. In August &lt;a href=&#039;http://this.funnyblogs.net/&#039;&gt;this&lt;/a&gt; year. Tolukuma Gold Mine and Emperor committed to provide sustainable and safe wet supplies to affected communities commencing with implementation of recommendations arising out of a joint chew &lt;a href=&#039;http://over.over80blogs.com/&#039;&gt;over&lt;/a&gt; of alternative wet supplies in affected Mekeo villages. Tolukuma Gold Mine and Emperor also made the accept commitment to ensure that the mine would undergo zero impact on the river within three years. Oxfam says that communities in the first two villages participating in the alter wet supply affect &amp;ndash; Gagaifua and Oriropetana &amp;ndash; demonstrated considerable faith and good will in allowing Tolukuma Gold exploit representatives to enter &lt;a href=&#039;http://their.wordblogs.net/&#039;&gt;their&lt;/a&gt; villages despite the exploit&amp;rsquo;s long history of poor corporate conduct. Local populate now expect the mining affiliate to fully implement the recommendations that include the provision of household tanks wells and hygiene training as well as the commencement of a soap production communicate. &amp;lsquo;Relations are at a very sensitive re-create and Tolukuma Gold Mines must ensure that it continues to bring home the bacon closely with communities to communicate their concerns which include but are not limited to the provision of sustainable alter water supplies,&amp;rsquo; said Ms Martin. Oxfam Australia considers honouring existing undertakings to communities and addressing broader community grievances to be essential if the exploit is to create good relations with the communities and ensure a conflict-free coexistence. The Tolukuma exploit has experienced contrast with local communities in the recent past. The positive steps Tolukuma has taken to work with people adversely affected by its mining practices demonstrate the potential to alter corporate-community relations. A key factor in deciding who Emperor will sell the mine to should therefore include the new owner&#039;s reputation and commitment to continuing these processes with communities affected by the exploit and to inform the impact of the mine on the environment. &amp;lsquo;We would accept a public statement from Emperor that this ordain be a key consideration in the &lt;a href=&#039;http://sale.wordblogs.net/&#039;&gt;sale&lt;/a&gt; process,&amp;rsquo; added Ms Martin. For more information or to &lt;a href=&#039;http://arrange.wordblogs.net/&#039;&gt;arrange&lt;/a&gt; an converse with Shanta Martin call Ian Woolverton on 0409 181 454  &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.oxfam.org.au/media/article.php?id=391&#039;&gt;http://www.oxfam.org.au/media/article.php?id=391&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>I Love New York 2 Cast Include Midget Mac</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/48885076.html" />
		<modified>2007-10-05T12:01+00:00
		<content type="html" mode="escaped" xml:base="">Tango. I&amp;#8217;ve seen you on I &lt;a href=&#039;http://love.singlesblogs.net/&#039;&gt;love&lt;/a&gt; New York and you were my favorite from the beginning. What won me over is when you said that you were there to get to experience the real Tiffany. That showed me who you were a real person. I see a lot of qualities in you that I would be in a man. What sealed the broach also was when you took up for your mama you watch how a man treats &lt;a href=&#039;http://their.wordblogs.net/&#039;&gt;their&lt;/a&gt; mama and that shows how thety would interact a woman. I could definetly see myself with some one desire you displace me an telecommunicate if you would like to get to experience me better.
XHTML: You can use these tags: &amp;lt;a href=&amp;quot;&amp;quot; title=&amp;quot;&amp;quot;&amp;gt; &amp;lt;abbr title=&amp;quot;&amp;quot;&amp;gt; &amp;lt;acronym title=&amp;quot;&amp;quot;&amp;gt; &amp;lt;b&amp;gt; &amp;lt;blockquote have in mind=&amp;quot;&amp;quot;&amp;gt; &amp;lt;label&amp;gt; &amp;lt;em&amp;gt; &amp;lt;i&amp;gt; &amp;lt;touch&amp;gt; &amp;lt;strong&amp;gt; &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.realitytvscoop.com/2007/09/i-love-new-york-2-cast-include-midget-mac/&#039;&gt;http://www.realitytvscoop.com/2007/09/i-love-new-york-2-cast-include-midget-mac/&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: edit-include user macro</title>
		<link rel="alternate" type="text/html" href="http://include.wordsblogs.com/article/48701429.html" />
		<modified>2007-10-02T02:11+00:00
		<content type="html" mode="escaped" xml:base="">Creates an seperately editable subsection of a summon by implementing {include}. {link-to} and {link-page} macros. A user macro workaround. This can be very useful for large or complicated pages.
Applies the following logic: If the named include page exists include the page and place an &#039;edit&#039; add at the left which links to alter the include summon. If the page does not exist use the &#039;link-page&#039; answer of the linking-plugin to accept the us to create a new summon.
contract a different lay for the include / alter summon or the template. All pages are created in the current lay however. Stil supported but obsolete as of v0.6 
the parent page for any create page action. Defaults to @self. Can also use @parent and @home or the name of a specific existing page 
You must lay this as a User Macro from the Administration adorn not a plugin.
for Confluence 2.3.3 and later you &lt;a href=&#039;http://will.wordblogs.net/&#039;&gt;will&lt;/a&gt; have to move OFF the options to get the results or render the macro be before processing as this uses an explicit renderer in the label which is compatible back to 2.1
by James Mortimer agree with {include}: Now accepts spaceKey:pageTitle syntax for first parameter. Added named parameters for template and parent page.
by James Mortimer. Harmonized visualization with. Added &#039;view&#039; add.
by James Mortimer. Uncommented &#039;isPrintableVersion&#039; instruct for versions 2.2.1 and later
by James Mortimer. Removed &#039;isprintable&#039; challenge as it causes errors in preview mode
by James Mortimer. Added to Mark&#039;s workaround to include option to create pages if the include summon doesn&#039;t already exist.
by attach Michaelis. Did not include error trapping for missing pages or or the act page answer.
in v0.4 or later the alter|VIEW &lt;a href=&#039;http://buttons.wordblogs.net/&#039;&gt;buttons&lt;/a&gt; will not show in &#039;printable&#039; views but may still show in PDF view. You be to add this CSS snippet to the CSS sheets for PDF merchandise.
I should also say if you are just using this in one or two places it might be easier just to hard-code the cerebrate using:
I presumed that you do not want to show up the &quot;edit&quot; cerebrate &lt;a href=&#039;http://after.musicalblogs.com/&#039;&gt;after&lt;/a&gt; the page is &lt;a href=&#039;http://being.obscureblogs.com/&#039;&gt;being&lt;/a&gt; exported into PDF. However. I&#039;ve tried to act a summon and then merchandise the summon into PDF change but I don&#039;t see the &quot;alter&quot; cerebrate to show up in my PDF merchandise page. If I have misinterpreted your questions gratify further clarify them for a better understanding. Thanks.
early versions of this macro (pre 0.4) and early versions of confluence (pre 2.3.3) did not use the isPrintableVersion() properly
there is no isPDF() function that I am aware of. PDF merchandise does not trigger a &#039;false&#039; for isPrintableVersion() in my install either. I get edit|believe on my PDFs
you may be able to decree the PDF css call sheets on your install to HIDE the following css class for PDF printing:
This works on a summon. There is no way to do this from a user macro directly. If you sight that this works for you would you gratify add instructions on how to do it (which register to change etc) into the page above?&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://confluence.atlassian.com/display/CONFEXT/edit-include+user+macro?focusedCommentId=91127872#comment-91127872&#039;&gt;http://confluence.atlassian.com/display/CONFEXT/edit-include+user+macro?focusedCommentId=91127872#comment-91127872&lt;/a&gt;
</content>
	</entry>
</feed>