<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	>
<channel>
	<title>Comments for John Brunswick</title>
	<atom:link href="http://www.johnbrunswick.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johnbrunswick.com</link>
	<description>WebCenter Portal, Sites and Content</description>
	<lastBuildDate>Wed, 04 Apr 2012 14:44:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on WebCenter Content &amp; Sites Dynamic Parameter Image URLs FancyBox Fix by JurisMurziks</title>
		<link>http://www.johnbrunswick.com/2012/04/webcenter-content-and-sites-dynamic-parameter-image-urls-fancybox-fix/#comment-875</link>
		<dc:creator>JurisMurziks</dc:creator>
		<pubDate>Wed, 04 Apr 2012 14:44:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=1305#comment-875</guid>
		<description>If you would use fancybox v2 then you could simply use links like &lt;a href=&quot;..&quot; class=&quot;fancybox fancybox.image&quot;&gt;</description>
		<content:encoded><![CDATA[<p>If you would use fancybox v2 then you could simply use links like &amp;lt;a href=&#8221;..&#8221; class=&#8221;fancybox fancybox.image&#8221;&amp;gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 25 Excellent Oracle WebCenter Resources by 15 Great WebCenter and ADF Resources &#171; TEAM Informatics blog</title>
		<link>http://www.johnbrunswick.com/2011/04/25-excellent-oracle-webcenter-resources/#comment-872</link>
		<dc:creator>15 Great WebCenter and ADF Resources &#171; TEAM Informatics blog</dc:creator>
		<pubDate>Tue, 06 Mar 2012 16:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=846#comment-872</guid>
		<description>[...] of products. Expanding upon last year’s posts from John Brunswick on 25 Great ADF resources and 25 Excellent WebCenter resources, I have added 15 additional resources that will assist you with getting up to speed on these [...]</description>
		<content:encoded><![CDATA[<p>[...] of products. Expanding upon last year’s posts from John Brunswick on 25 Great ADF resources and 25 Excellent WebCenter resources, I have added 15 additional resources that will assist you with getting up to speed on these [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 5 – WebCenter Image Gallery with Content Presenter by gudavies</title>
		<link>http://www.johnbrunswick.com/2011/06/e2-0-workbench-podcast-5-%e2%80%93-webcenter-image-gallery-with-content-presenter/#comment-870</link>
		<dc:creator>gudavies</dc:creator>
		<pubDate>Wed, 29 Feb 2012 01:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=975#comment-870</guid>
		<description>The following is an enhacement of the template.
 
Prereqs:
-Requires static renditions to be accessible, need config.cfg renditions for preview and thumbnail. You can just google that
-Requires dispersion to be turned off, kyle has an article on this
 
You&#039;d replace the iterator code in the template with the below:
 
&lt;af:iterator rows=&quot;0&quot; var=&quot;node&quot; varStatus=&quot;iterator&quot; value=&quot;#{nodes}&quot; id=&quot;it0&quot;&gt;        
&lt;af:outputText escape=&quot;false&quot; value=&quot;&lt;a class=&quot;grouped_elements&quot; title=&quot;#{node.propertyMap[&#039;xComments&#039;] != &#039;xComments: &#039; ? node.propertyMap[&#039;xComments&#039;].asTextHtml : node.propertyMap[&#039;dDocTitle&#039;].value.stringValue}&quot; rel=&quot;group&quot; href=&quot;/cs/groups/#{fn:toLowerCase(node.propertyMap[&#039;dSecurityGroup&#039;].value.stringValue)}/documents/#{fn:toLowerCase(node.propertyMap[&#039;dDocType&#039;].value.stringValue)}/~extract/#{node.propertyMap[&#039;dDocName&#039;].value.stringValue}~1~staticrendition/preview.gif&quot;&gt;&quot;/&gt;        
&lt;af:image source=&quot;//cs/groups/#{fn:toLowerCase(node.propertyMap[&#039;dSecurityGroup&#039;].value.stringValue)}/documents/#{fn:toLowerCase(node.propertyMap[&#039;dDocType&#039;].value.stringValue)}/~extract/#{node.propertyMap[&#039;dDocName&#039;].value.stringValue}~1~staticrendition/thumbnail.png&quot; styleClass=&quot;gallery&quot;/&gt;        
&lt;af:outputText escape=&quot;false&quot; value=&quot;&lt;/a&gt;&quot;/&gt;    
&lt;/af:iterator&gt;
 
This allows any security group, or document type on checkin, also uses relative urls.It standardizes the thumbnail and enlarged size. The only remaining issue with this code, is if you put the image inside a space rather than any contribution folder, it requires the auth and account value to be dynamically set in the file path. I haven&#039;t worked out how to do string manipulation to make this dynamic. So this code only supports sourcing the presenter from any contribution folders.Also the folder must only contain images. If your images are in folders with mixed content or sub folders, you need to use a list rather than point presenter to a folder.
 
For convenience I&#039;ve made a blog post about this as well:http://spiderwebcenter.blogspot.com.au/2012/02/enhancements-to-content-presenter-image.html
Feel free to further comment so maybe we can get the string manipulation for accounts to work. That way images could be sourced from any folder!</description>
		<content:encoded><![CDATA[<p>The following is an enhacement of the template.<br />
 <br />
Prereqs:<br />
-Requires static renditions to be accessible, need config.cfg renditions for preview and thumbnail. You can just google that<br />
-Requires dispersion to be turned off, kyle has an article on this<br />
 <br />
You&#8217;d replace the iterator code in the template with the below:<br />
 <br />
&lt;af:iterator rows=&#8221;0&#8243; var=&#8221;node&#8221; varStatus=&#8221;iterator&#8221; value=&#8221;#{nodes}&#8221; id=&#8221;it0&#8243;&gt;        <br />
&lt;af:outputText escape=&#8221;false&#8221; value=&#8221;&lt;a class=&#8221;grouped_elements&#8221; title=&#8221;#{node.propertyMap['xComments'] != &#8216;xComments: &#8216; ? node.propertyMap['xComments'].asTextHtml : node.propertyMap['dDocTitle'].value.stringValue}&#8221; rel=&#8221;group&#8221; href=&#8221;/cs/groups/#{fn:toLowerCase(node.propertyMap['dSecurityGroup'].value.stringValue)}/documents/#{fn:toLowerCase(node.propertyMap['dDocType'].value.stringValue)}/~extract/#{node.propertyMap['dDocName'].value.stringValue}~1~staticrendition/preview.gif&#8221;&gt;&#8221;/&gt;        <br />
&lt;af:image source=&#8221;//cs/groups/#{fn:toLowerCase(node.propertyMap['dSecurityGroup'].value.stringValue)}/documents/#{fn:toLowerCase(node.propertyMap['dDocType'].value.stringValue)}/~extract/#{node.propertyMap['dDocName'].value.stringValue}~1~staticrendition/thumbnail.png&#8221; styleClass=&#8221;gallery&#8221;/&gt;        <br />
&lt;af:outputText escape=&#8221;false&#8221; value=&#8221;&lt;/a&gt;&#8221;/&gt;    <br />
&lt;/af:iterator&gt;<br />
 <br />
This allows any security group, or document type on checkin, also uses relative urls.It standardizes the thumbnail and enlarged size. The only remaining issue with this code, is if you put the image inside a space rather than any contribution folder, it requires the auth and account value to be dynamically set in the file path. I haven&#8217;t worked out how to do string manipulation to make this dynamic. So this code only supports sourcing the presenter from any contribution folders.Also the folder must only contain images. If your images are in folders with mixed content or sub folders, you need to use a list rather than point presenter to a folder.<br />
 <br />
For convenience I&#8217;ve made a blog post about this as well:<a href="http://spiderwebcenter.blogspot.com.au/2012/02/enhancements-to-content-presenter-image.html" rel="nofollow">http://spiderwebcenter.blogspot.com.au/2012/02/enhancements-to-content-presenter-image.html</a><br />
Feel free to further comment so maybe we can get the string manipulation for accounts to work. That way images could be sourced from any folder!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 2 – WebCenter PS3 Navigation Models and CSS Menus by Spikey</title>
		<link>http://www.johnbrunswick.com/2011/01/webcenter-ps3-navigation-models-and-css-menus/#comment-869</link>
		<dc:creator>Spikey</dc:creator>
		<pubDate>Mon, 23 Jan 2012 21:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=727#comment-869</guid>
		<description>[apologies, I couldn&#039;t get your content to display so this comment is  based on the sample:  http://www.johnbrunswick.com/images/Complete_Sample.jspx]

 

Hi John,

 

There are a couple of things I would change in this sample based on the immediate and deferred EL syntax.  Your sample is setup to only support &lt;a href=&quot;..&quot; rel=&quot;nofollow&quot;&gt;.  GET requests will always force a loopback request and cause a browser flash.

 

For the deferred($) vs. immediate(#) EL issue, there is a writeup here:  http://java.sun.com/products/jsp/reference/techart/unifiedEL.html.  See the &quot;Compatibility of Deferred Expressions in Iteration Tags&quot; section.

 

Using this, change your iterator to:



 

Then replace your &lt;a href=&quot;/webcenter${menu.goLinkPrettyUrl}&quot; rel=&quot;nofollow&quot;&gt;${menu.title}&lt;/a&gt; with:

 



                          &lt;!-- pass node to processAction for setting current selection and navigation  --&gt;

                          



 

The final HTML output is the same as your &quot;&lt;a&gt;&quot; . However, this will allow you to use standard ADF navigation using POST requests, which will leverage the default WebCenter PPR Navigation. 

 

Of course, if you want the URL to update, you will need to do your original GET request.

 

Is there any reason you are using the ?  This could be removed and the  can reference the backing bean directly.  In the navigation use-case, I would only expect to see a  if your trying to create additionally derived values, which aren&#039;t supported by the built-in backing beans.</description>
		<content:encoded><![CDATA[<p>[apologies, I couldn't get your content to display so this comment is  based on the sample:  <a href="http://www.johnbrunswick.com/images/Complete_Sample.jspx" rel="nofollow">http://www.johnbrunswick.com/images/Complete_Sample.jspx</a></p>
<p>Hi John,</p>
<p>There are a couple of things I would change in this sample based on the immediate and deferred EL syntax.  Your sample is setup to only support <a href=".." rel="nofollow">.  GET requests will always force a loopback request and cause a browser flash.</p>
<p>For the deferred($) vs. immediate(#) EL issue, there is a writeup here:  </a><a href="http://java.sun.com/products/jsp/reference/techart/unifiedEL.html" rel="nofollow">http://java.sun.com/products/jsp/reference/techart/unifiedEL.html</a>.  See the &#8220;Compatibility of Deferred Expressions in Iteration Tags&#8221; section.</p>
<p>Using this, change your iterator to:</p>
<p>Then replace your <a href="/webcenter${menu.goLinkPrettyUrl}" rel="nofollow">${menu.title}</a> with:</p>
<p>                          <!-- pass node to processAction for setting current selection and navigation  --></p>
<p>The final HTML output is the same as your &#8220;<a>&#8221; . However, this will allow you to use standard ADF navigation using POST requests, which will leverage the default WebCenter PPR Navigation. </p>
<p>Of course, if you want the URL to update, you will need to do your original GET request.</p>
<p>Is there any reason you are using the ?  This could be removed and the  can reference the backing bean directly.  In the navigation use-case, I would only expect to see a  if your trying to create additionally derived values, which aren&#8217;t supported by the built-in backing beans.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 6 – WebCenter Portal Mobile Templates using Adaptive Styles by John Brunswick</title>
		<link>http://www.johnbrunswick.com/2011/09/e2-0-workbench-podcast-6-%e2%80%93-webcenter-portal-mobile-templates-using-adaptive-styles/#comment-868</link>
		<dc:creator>John Brunswick</dc:creator>
		<pubDate>Wed, 11 Jan 2012 18:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=1076#comment-868</guid>
		<description>@radhikac Hey Radhikac,

 

I have not personally worked with that before.  What is the specific issue you are running into?

 

Cheers,

John</description>
		<content:encoded><![CDATA[<p>@radhikac Hey Radhikac,</p>
<p>I have not personally worked with that before.  What is the specific issue you are running into?</p>
<p>Cheers,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 6 – WebCenter Portal Mobile Templates using Adaptive Styles by radhikac</title>
		<link>http://www.johnbrunswick.com/2011/09/e2-0-workbench-podcast-6-%e2%80%93-webcenter-portal-mobile-templates-using-adaptive-styles/#comment-867</link>
		<dc:creator>radhikac</dc:creator>
		<pubDate>Tue, 10 Jan 2012 07:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=1076#comment-867</guid>
		<description>John,

 

Have you come across any Mobile/ tablet Webcenter UI&#039;s that may need file uploads ? One major problem we have for iPad interfaces are the file browse and upload features. 

 

Thanks

Radhika</description>
		<content:encoded><![CDATA[<p>John,</p>
<p>Have you come across any Mobile/ tablet Webcenter UI&#8217;s that may need file uploads ? One major problem we have for iPad interfaces are the file browse and upload features. </p>
<p>Thanks</p>
<p>Radhika</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 5 – WebCenter Image Gallery with Content Presenter by John Brunswick</title>
		<link>http://www.johnbrunswick.com/2011/06/e2-0-workbench-podcast-5-%e2%80%93-webcenter-image-gallery-with-content-presenter/#comment-866</link>
		<dc:creator>John Brunswick</dc:creator>
		<pubDate>Wed, 04 Jan 2012 14:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=975#comment-866</guid>
		<description>@sama Glad to hear it is sorted :-)  Yes - if you are using navigation models that checkbox is definitely important!</description>
		<content:encoded><![CDATA[<p>@sama Glad to hear it is sorted <img src='http://www.johnbrunswick.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Yes &#8211; if you are using navigation models that checkbox is definitely important!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 5 – WebCenter Image Gallery with Content Presenter by sama</title>
		<link>http://www.johnbrunswick.com/2011/06/e2-0-workbench-podcast-5-%e2%80%93-webcenter-image-gallery-with-content-presenter/#comment-865</link>
		<dc:creator>sama</dc:creator>
		<pubDate>Wed, 04 Jan 2012 08:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=975#comment-865</guid>
		<description>@John Brunswick i can solve thaaaaaaaaaaaaaaaaat !!! its so silmple solution just i check box or redirect in navigation and its work good now :)</description>
		<content:encoded><![CDATA[<p>@John Brunswick i can solve thaaaaaaaaaaaaaaaaat !!! its so silmple solution just i check box or redirect in navigation and its work good now <img src='http://www.johnbrunswick.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 5 – WebCenter Image Gallery with Content Presenter by sama</title>
		<link>http://www.johnbrunswick.com/2011/06/e2-0-workbench-podcast-5-%e2%80%93-webcenter-image-gallery-with-content-presenter/#comment-864</link>
		<dc:creator>sama</dc:creator>
		<pubDate>Wed, 04 Jan 2012 07:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=975#comment-864</guid>
		<description>@John Brunswick no errors appear :(

any help is so appreciated ..</description>
		<content:encoded><![CDATA[<p>@John Brunswick no errors appear <img src='http://www.johnbrunswick.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>any help is so appreciated ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on E2.0 Workbench Podcast 5 – WebCenter Image Gallery with Content Presenter by sama</title>
		<link>http://www.johnbrunswick.com/2011/06/e2-0-workbench-podcast-5-%e2%80%93-webcenter-image-gallery-with-content-presenter/#comment-863</link>
		<dc:creator>sama</dc:creator>
		<pubDate>Wed, 04 Jan 2012 06:56:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnbrunswick.com/?p=975#comment-863</guid>
		<description>@John Brunswick when i navigate between the pages then turn to the page which contains this content presenter , all the css disappeared :S

its appear only as image without any functionality of this template , when i refresh the page then every thing appear normal , but i cant force the user to refresh the page to let him see the right template !!</description>
		<content:encoded><![CDATA[<p>@John Brunswick when i navigate between the pages then turn to the page which contains this content presenter , all the css disappeared :S</p>
<p>its appear only as image without any functionality of this template , when i refresh the page then every thing appear normal , but i cant force the user to refresh the page to let him see the right template !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic

Served from: www.johnbrunswick.com @ 2012-05-19 13:32:10 -->
