Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://www.bestcoder.net/?feed=rss2

  1. <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
  2. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  3. xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:atom="http://www.w3.org/2005/Atom"
  6. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  7. xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8. >
  9.  
  10. <channel>
  11. <title>Best Coder &#8211; Mostly about Mobile &amp; Java &#8230;</title>
  12. <atom:link href="http://www.bestcoder.net/?feed=rss2" rel="self" type="application/rss+xml" />
  13. <link>http://www.bestcoder.net</link>
  14. <description>Something about Mobile &#38; Others</description>
  15. <lastBuildDate>Tue, 05 Nov 2019 22:59:48 +0000</lastBuildDate>
  16. <language>en-US</language>
  17. <sy:updatePeriod>
  18. hourly </sy:updatePeriod>
  19. <sy:updateFrequency>
  20. 1 </sy:updateFrequency>
  21. <generator>https://wordpress.org/?v=5.2.20</generator>
  22. <item>
  23. <title>Introduction to Docker &#8211; Simple things &#8230;</title>
  24. <link>http://www.bestcoder.net/?p=797</link>
  25. <comments>http://www.bestcoder.net/?p=797#respond</comments>
  26. <pubDate>Tue, 05 Nov 2019 19:51:58 +0000</pubDate>
  27. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  28. <category><![CDATA[Development]]></category>
  29. <category><![CDATA[Docker]]></category>
  30. <category><![CDATA[docker]]></category>
  31. <category><![CDATA[mac]]></category>
  32. <category><![CDATA[ms-sql]]></category>
  33. <category><![CDATA[nexus]]></category>
  34. <category><![CDATA[osx]]></category>
  35.  
  36. <guid isPermaLink="false">http://www.bestcoder.net/?p=797</guid>
  37. <description><![CDATA[Introduction to Docker ms-sql &#38; nexus repository manager installations Some basic notes for me and also for everyone 🙂 1- Install Docker for Mac from here https://www.docker.com/products/docker-desktop 2- Install SQL Server docker run -d -p 1433:1433 --name mysqlsrvname -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=P@55word' microsoft/mssql-server-linux:2017-latest change &#60;mysqlsrvname&#62; and &#60;P@55word&#62; with your own 3- to list docker images &#8230; ]]></description>
  38. <content:encoded><![CDATA[<p><strong>Introduction to Docker</strong></p>
  39. <p><strong>ms-sql &amp; nexus repository manager installations</strong></p>
  40. <p>Some basic notes for me and also for everyone <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /><span id="more-797"></span></p>
  41. <p>1- Install Docker for Mac from here <a href="https://www.docker.com/products/docker-desktop">https://www.docker.com/products/docker-desktop</a></p>
  42. <p>2- Install SQL Server</p>
  43. <pre class="EnlighterJSRAW" data-enlighter-language="shell">docker run -d -p 1433:1433 --name mysqlsrvname -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=P@55word' microsoft/mssql-server-linux:2017-latest</pre>
  44. <blockquote><p>change &lt;mysqlsrvname&gt; and &lt;P@55word&gt; with your own</p></blockquote>
  45. <p>3- to list docker images</p>
  46. <pre class="EnlighterJSRAW" data-enlighter-language="shell">docker ps</pre>
  47. <p>4- Install Nexus Repository Manager (Maven repository)</p>
  48. <p>Don&#8217;t ask why I need this <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  49. <pre class="EnlighterJSRAW" data-enlighter-language="shell">docker run -d -p 8081:8081 --name nexus sonatype/nexus3</pre>
  50. <p>5- to see nexus default admin&#8217;s password, you need to go inside container image data using bash</p>
  51. <p>5.1- list docker images</p>
  52. <pre class="EnlighterJSRAW" data-enlighter-language="shell">docker ps</pre>
  53. <p>5.2- find id-of-container for nexus3 then run docker exec command.</p>
  54. <p><img class="alignleft size-full wp-image-798" src="http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.37.16.png" alt="" width="2128" height="98" srcset="http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.37.16.png 2128w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.37.16-300x14.png 300w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.37.16-768x35.png 768w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.37.16-1024x47.png 1024w" sizes="(max-width: 2128px) 100vw, 2128px" /></p>
  55. <p>docker exec -it <strong>id-of-container</strong> bash</p>
  56. <pre class="EnlighterJSRAW" data-enlighter-language="shell">docker exec -it 4eb5cfa9687c bash</pre>
  57. <p><img class=" wp-image-799 alignright" src="http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.41.34-262x300.png" alt="" width="270" height="309" srcset="http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.41.34-262x300.png 262w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.41.34-768x879.png 768w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.41.34-895x1024.png 895w, http://www.bestcoder.net/wp-content/uploads/2019/11/Screen-Shot-2019-11-05-at-22.41.34.png 954w" sizes="(max-width: 270px) 100vw, 270px" /></p>
  58. <p>5.3- go to <strong>nexus-data</strong> folder</p>
  59. <p>5.4- your default nexus admin password inside the admin.password file. with cat or vi command you can see the password.</p>
  60. <p>6- Navigate to <strong>http://localhost:8081</strong> then login as an admin. Initial configuration will start after you logged in.</p>
  61. <p>Easy things but after long years, it&#8217;s like baby steps for my blog. After couple googling then I found these infos. Especially 5.2 is important <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  62. <p>That&#8217;s all</p>
  63. <p>Next; will be Websphere Liberty edition. Preparing ready-to-run java web app that includes spring-boot, spring-web, quartz-scheduler, mybatis running over websphere liberty profile.</p>
  64. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=797" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  65. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Introduction+to+Docker+%26%238211%3B+Simple+things+%26%238230%3B%20-%20http://www.bestcoder.net/?p=797%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  66. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=797&amp;media=&amp;description=Introduction+to+Docker%0A%0Ams-sql+%26amp%3B+nexus+repository+manager+installations%0A%0ASome+basic+notes+for+me" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  67. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=797" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  68. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Introduction to Docker &#8211; Simple things &#8230;&amp;body=Introduction to Docker
  69.  
  70. ms-sql &amp; nexus repository manager installations
  71.  
  72. Some basic notes for me%20-%20http://www.bestcoder.net/?p=797" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  73. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=797" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  74. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=797&amp;title=Introduction+to+Docker+%26%238211%3B+Simple+things+%26%238230%3B" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  75. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=797&amp;title=Introduction+to+Docker+%26%238211%3B+Simple+things+%26%238230%3B" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  76. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=797" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  77. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=797</wfw:commentRss>
  78. <slash:comments>0</slash:comments>
  79. </item>
  80. <item>
  81. <title>How To : Prevent xp:comboBox Jumps on Next Line in Read Mode ?</title>
  82. <link>http://www.bestcoder.net/?p=715</link>
  83. <comments>http://www.bestcoder.net/?p=715#respond</comments>
  84. <pubDate>Wed, 13 Feb 2013 00:04:26 +0000</pubDate>
  85. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  86. <category><![CDATA[Development]]></category>
  87. <category><![CDATA[Lotus Notes]]></category>
  88. <category><![CDATA[XPages]]></category>
  89. <category><![CDATA[combobox]]></category>
  90. <category><![CDATA[readmode]]></category>
  91. <category><![CDATA[ui]]></category>
  92. <category><![CDATA[xpages]]></category>
  93.  
  94. <guid isPermaLink="false">http://www.bestcoder.net/?p=715</guid>
  95. <description><![CDATA[Why ComboBox object becomes &#8220;table&#8221; when you are in Read Mode ? It looks like this. Add this CSS properties and It looks good 🙂 display: inline -&#62; Life Save in XPages :)) lotusFormTable is a parent form table class name. (custom class name) table.lotusFormTable td table { display: inline; } table.lotusFormTable td table tbody &#8230; ]]></description>
  96. <content:encoded><![CDATA[<p>Why ComboBox object becomes &#8220;table&#8221; when you are in Read Mode ? It looks like this.</p>
  97. <p style="text-align: left;"><a href="http://www.bestcoder.net/wp-content/uploads/2013/02/Combo.png"><img title="Combo" src="http://www.bestcoder.net/wp-content/uploads/2013/02/Combo.png" alt="" width="489" height="203" /></a></p>
  98. <p style="text-align: left;"><span style="font-size: 13px; line-height: 19px;">Add this CSS properties and It looks good <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span></p>
  99. <p style="text-align: left;">display: inline -&gt; Life Save in XPages :))</p>
  100. <p style="text-align: left;"><strong>lotusFormTable</strong> is a parent form table class name. (custom class name)</p>
  101. <pre class="lang:css decode:true">table.lotusFormTable td table {
  102. display: inline;
  103. }
  104.  
  105. table.lotusFormTable td table tbody tr td {
  106. display: inline;
  107. margin: 0px;
  108. padding: 0px;
  109. }</pre>
  110. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/02/Combo2.png"><img class="size-full wp-image-717 alignleft" title="Combo 2" src="http://www.bestcoder.net/wp-content/uploads/2013/02/Combo2.png" alt="" width="209" height="102" /></a></p>
  111. <p>&nbsp;</p>
  112. <p>&nbsp;</p>
  113. <p>&nbsp;</p>
  114. <p>&nbsp;</p>
  115. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=715" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  116. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=How+To+%3A+Prevent+xp%3AcomboBox+Jumps+on+Next+Line+in+Read+Mode+%3F%20-%20http://www.bestcoder.net/?p=715%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  117. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=715&amp;media=&amp;description=Why+ComboBox+object+becomes+%22table%22+when+you+are+in+Read+Mode+%3F+It+looks+like+this.%0A%0AAdd+this+CSS+pr" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  118. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=715" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  119. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=How To : Prevent xp:comboBox Jumps on Next Line in Read Mode ?&amp;body=Why ComboBox object becomes &quot;table&quot; when you are in Read Mode ? It looks like this.
  120.  
  121. Add this CSS pr%20-%20http://www.bestcoder.net/?p=715" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  122. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=715" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  123. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=715&amp;title=How+To+%3A+Prevent+xp%3AcomboBox+Jumps+on+Next+Line+in+Read+Mode+%3F" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  124. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=715&amp;title=How+To+%3A+Prevent+xp%3AcomboBox+Jumps+on+Next+Line+in+Read+Mode+%3F" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  125. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=715" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  126. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=715</wfw:commentRss>
  127. <slash:comments>0</slash:comments>
  128. </item>
  129. <item>
  130. <title>Debug BlackBerry WebWorks Application on Device</title>
  131. <link>http://www.bestcoder.net/?p=699</link>
  132. <comments>http://www.bestcoder.net/?p=699#respond</comments>
  133. <pubDate>Tue, 05 Feb 2013 17:29:28 +0000</pubDate>
  134. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  135. <category><![CDATA[BlackBerry]]></category>
  136. <category><![CDATA[WebWorks]]></category>
  137.  
  138. <guid isPermaLink="false">http://www.bestcoder.net/?p=699</guid>
  139. <description><![CDATA[BlackBerry WebWorks Cihaz uzerinde Web Inspector ile gelistirilen uygulamanin cihaza yuklendikten sonra cihaz uzerinde calisirken PCden debug edilmesi / incelenmesi. Super ozellik tek kelimeyle &#8230;]]></description>
  140. <content:encoded><![CDATA[<p>BlackBerry WebWorks</p>
  141. <p>Cihaz uzerinde Web Inspector ile gelistirilen uygulamanin cihaza yuklendikten sonra cihaz uzerinde calisirken PCden debug edilmesi / incelenmesi.</p>
  142. <p>Super ozellik tek kelimeyle &#8230;</p>
  143. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/02/20130205-182627.jpg"><img src="http://www.bestcoder.net/wp-content/uploads/2013/02/20130205-182627.jpg" alt="20130205-182627.jpg" class="alignnone size-full" /></a></p>
  144. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/02/20130205-182657.jpg"><img src="http://www.bestcoder.net/wp-content/uploads/2013/02/20130205-182657.jpg" alt="20130205-182657.jpg" class="alignnone size-full" /></a></p>
  145. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=699" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  146. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Debug+BlackBerry+WebWorks+Application+on+Device%20-%20http://www.bestcoder.net/?p=699%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  147. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=699&amp;media=&amp;description=BlackBerry+WebWorks%0A%0ACihaz+uzerinde+Web+Inspector+ile+gelistirilen+uygulamanin+cihaza+yuklendikten+s" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  148. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=699" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  149. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Debug BlackBerry WebWorks Application on Device&amp;body=BlackBerry WebWorks
  150.  
  151. Cihaz uzerinde Web Inspector ile gelistirilen uygulamanin cihaza yuklendikten s%20-%20http://www.bestcoder.net/?p=699" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  152. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=699" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  153. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=699&amp;title=Debug+BlackBerry+WebWorks+Application+on+Device" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  154. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=699&amp;title=Debug+BlackBerry+WebWorks+Application+on+Device" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  155. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=699" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  156. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=699</wfw:commentRss>
  157. <slash:comments>0</slash:comments>
  158. </item>
  159. <item>
  160. <title>How To : Prevent xe:dropDownButton Jumps on Next Line ?</title>
  161. <link>http://www.bestcoder.net/?p=683</link>
  162. <comments>http://www.bestcoder.net/?p=683#respond</comments>
  163. <pubDate>Tue, 22 Jan 2013 23:59:33 +0000</pubDate>
  164. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  165. <category><![CDATA[Development]]></category>
  166. <category><![CDATA[XPages]]></category>
  167. <category><![CDATA[dropdownbutton]]></category>
  168. <category><![CDATA[extlib]]></category>
  169. <category><![CDATA[xpages]]></category>
  170.  
  171. <guid isPermaLink="false">http://www.bestcoder.net/?p=683</guid>
  172. <description><![CDATA[How to prevent xe:dropDownButton jump on next line between regular buttons of your XPages ? I mixed CSS properties and finally solved. First of all, working on Latest ExtLib (853.20121217-1354) Notes 8.5.3 FP3 @ Domino 8.5.3 FP2 64bit &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex"&#62; &#60;xp:button value="Open" id="button1"&#62; &#60;xp:eventHandler event="onclick" submit="true" refreshMode="complete"&#62; &#60;xp:this.action&#62;&#60;![CDATA[#{javascript:submit();}]]&#62;&#60;/xp:this.action&#62; &#60;/xp:eventHandler&#62; &#60;/xp:button&#62; &#60;xe:dropDownButton &#8230; ]]></description>
  173. <content:encoded><![CDATA[<p>How to prevent xe:dropDownButton jump on next line between regular buttons of your XPages ?</p>
  174. <p>I mixed CSS properties and finally solved.</p>
  175. <p>First of all, working on Latest ExtLib (853.20121217-1354) Notes 8.5.3 FP3 @ Domino 8.5.3 FP2 64bit</p>
  176. <pre class="lang:xhtml decode:true">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  177. &lt;xp:view
  178. xmlns:xp="http://www.ibm.com/xsp/core"
  179. xmlns:xe="http://www.ibm.com/xsp/coreex"&gt;
  180. &lt;xp:button
  181. value="Open"
  182. id="button1"&gt;
  183. &lt;xp:eventHandler
  184. event="onclick"
  185. submit="true"
  186. refreshMode="complete"&gt;
  187. &lt;xp:this.action&gt;&lt;![CDATA[#{javascript:submit();}]]&gt;&lt;/xp:this.action&gt;
  188. &lt;/xp:eventHandler&gt;
  189. &lt;/xp:button&gt;
  190. &lt;xe:dropDownButton
  191. id="dropButton1"&gt;
  192. &lt;xe:this.treeNodes&gt;
  193. &lt;xe:basicContainerNode
  194. label="Add Sub Form"&gt;
  195. &lt;xe:this.children&gt;
  196. &lt;xe:basicLeafNode
  197. label="Sub Form 1"&gt;&lt;/xe:basicLeafNode&gt;
  198. &lt;xe:basicLeafNode
  199. label="Sub Form 2"&gt;&lt;/xe:basicLeafNode&gt;
  200. &lt;xe:basicLeafNode
  201. label="Sub Form 3"&gt;&lt;/xe:basicLeafNode&gt;
  202. &lt;xe:basicLeafNode
  203. label="Sub Form 4"&gt;&lt;/xe:basicLeafNode&gt;
  204. &lt;/xe:this.children&gt;
  205. &lt;/xe:basicContainerNode&gt;
  206. &lt;/xe:this.treeNodes&gt;
  207. &lt;/xe:dropDownButton&gt;
  208. &lt;xp:button
  209. value="Close"
  210. id="button2"&gt;
  211. &lt;xp:eventHandler
  212. event="onclick"
  213. submit="true"
  214. refreshMode="complete"&gt;
  215. &lt;xp:this.action&gt;&lt;![CDATA[#{javascript:close();}]]&gt;&lt;/xp:this.action&gt;
  216. &lt;/xp:eventHandler&gt;
  217. &lt;/xp:button&gt;
  218. &lt;/xp:view&gt;</pre>
  219. <p>Now Its looking like this :</p>
  220. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/01/Screen-1.png"><img class="size-full wp-image-684 alignleft" title="Screen 1" src="http://www.bestcoder.net/wp-content/uploads/2013/01/Screen-1.png" alt="" width="284" height="148" /></a></p>
  221. <p>&nbsp;</p>
  222. <p>&nbsp;</p>
  223. <p>&nbsp;</p>
  224. <p>&nbsp;</p>
  225. <p>&nbsp;</p>
  226. <p>After following update &#8230;. (for xe:dropDownButton -&gt; <strong>style=&#8221;display:inline&#8221;</strong>)</p>
  227. <pre class="lang:xhtml decode:true crayon-selected"> &lt;xe:dropDownButton
  228. id="dropButton1"
  229. <strong>style="display:inline"</strong>&gt;
  230. &lt;xe:this.treeNodes&gt;
  231. &lt;xe:basicContainerNode</pre>
  232. <p>Looks good <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  233. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/01/Screen-2.png"><img class="size-full wp-image-685 alignleft" title="Screen 2" src="http://www.bestcoder.net/wp-content/uploads/2013/01/Screen-2.png" alt="" width="257" height="118" /></a></p>
  234. <p>&nbsp;</p>
  235. <p>&nbsp;</p>
  236. <p>&nbsp;</p>
  237. <p>&nbsp;</p>
  238. <p>Happy coding &#8230;</p>
  239. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=683" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  240. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=How+To+%3A+Prevent+xe%3AdropDownButton+Jumps+on+Next+Line+%3F%20-%20http://www.bestcoder.net/?p=683%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  241. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=683&amp;media=&amp;description=How+to+prevent+xe%3AdropDownButton+jump+on+next+line+between+regular+buttons+of+your+XPages+%3F%0D%0A%0D%0AI+mix" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  242. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=683" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  243. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=How To : Prevent xe:dropDownButton Jumps on Next Line ?&amp;body=How to prevent xe:dropDownButton jump on next line between regular buttons of your XPages ?
  244.  
  245. I mix%20-%20http://www.bestcoder.net/?p=683" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  246. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=683" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  247. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=683&amp;title=How+To+%3A+Prevent+xe%3AdropDownButton+Jumps+on+Next+Line+%3F" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  248. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=683&amp;title=How+To+%3A+Prevent+xe%3AdropDownButton+Jumps+on+Next+Line+%3F" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  249. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=683" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  250. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=683</wfw:commentRss>
  251. <slash:comments>0</slash:comments>
  252. </item>
  253. <item>
  254. <title>Another Turkish Char Problem in XPages Editor (XPages Editorde Türkçe Karakter Problemi)</title>
  255. <link>http://www.bestcoder.net/?p=668</link>
  256. <comments>http://www.bestcoder.net/?p=668#respond</comments>
  257. <pubDate>Thu, 10 Jan 2013 10:12:24 +0000</pubDate>
  258. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  259. <category><![CDATA[Development]]></category>
  260.  
  261. <guid isPermaLink="false">http://www.bestcoder.net/?p=668</guid>
  262. <description><![CDATA[Biran geliştirdiğim XPages sayfasını kaybettiğimi sandım ama şükür sorunu tahmin yöntemiyle buldum ve kurtardım yazdığım kodları 🙂 Yapmamanız gereken kodu özetle şu şekildedir ark.lar. Öncelikle sistem özellikleri : Windows 7 64bit IBM Domino Designer 8.5.3 FP2 with Upgrade Pack 1 Sorunun oluşma şekli : Custom Control oluşturun. Property Definition bölümünde bir değişken oluşturun. (Örnek : &#8230; ]]></description>
  263. <content:encoded><![CDATA[<p>Biran geliştirdiğim XPages sayfasını kaybettiğimi sandım ama şükür sorunu tahmin yöntemiyle buldum ve kurtardım yazdığım kodları <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  264. <p>Yapmamanız gereken kodu özetle şu şekildedir ark.lar.</p>
  265. <p>Öncelikle sistem özellikleri :</p>
  266. <ul>
  267. <li>Windows 7 64bit</li>
  268. <li>IBM Domino Designer 8.5.3 FP2 with Upgrade Pack 1</li>
  269. </ul>
  270. <p>Sorunun oluşma şekli :</p>
  271. <ul>
  272. <li>Custom Control oluşturun.</li>
  273. <li>Property Definition bölümünde bir değişken oluşturun. (Örnek : Title)</li>
  274. <li>Design Definition bölümünde istediğiniz tasarımı XML ile yazın. (Xpages sayfasında CC ye eklenen Title bilgisini tasarımda göstermek istediğimden bu yönde bir arayüz düzenlemesi yaptım.)</li>
  275. <li>Yeni bir XPages sayfası oluşturun.</li>
  276. <li>CC yi Xpages e ekleyin.</li>
  277. <li>CC de Title property değişkenine bir değer girin.</li>
  278. </ul>
  279. <p>Evet, işte sorun burada başlıyor. Girdiğiniz Title değerinden;</p>
  280. <ul>
  281. <li>Küçük harfle &#8220;ı ö &#8211; ç &#8211; ş  &#8211; ğ &#8211; ü&#8221; de sorun yok.</li>
  282. <li>Büyük harfle &#8220;İ &#8211; Ç &#8211; Ö &#8211; Ü&#8221; de sorun yok.</li>
  283. </ul>
  284. <p>Ancak &#8220;Ğ&#8221; ve &#8220;Ş&#8221; harfleri (büyük harfle) XPages inizin bir daha XPages Editor de açılmamasına neden olacak bir soruna neden oluyor.</p>
  285. <p>Sakın ama sakın kullanmayın <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  286. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/01/CC-Design-Definition-Turkish-Char-Problem-Stack-Trace.txt" target="_blank">XPages Editorde Oluşan Hatanın Mesajı</a></p>
  287. <p>Not : PMR açtırdım bugün bu konuda.</p>
  288. <p><span id="more-668"></span></p>
  289. <p>&#8212;-</p>
  290. <p>I think that I loose my XPages page but thanks god I tried some solutions and saved my codes <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  291. <p>Summary of the problem is like that.</p>
  292. <p>First, system configuration :</p>
  293. <ul>
  294. <li>Windows 7 64 bit</li>
  295. <li>IBM Domino Designer 8.5.3 FP2 with Upgrade Pack 1</li>
  296. </ul>
  297. <p>How we can face with this problem.</p>
  298. <ul>
  299. <li>Create a Custom Control</li>
  300. <li>Create a property at Property Definition. (Sample : Title)</li>
  301. <li>Write your own XML that how do you want to see your CC in the XPages Editor (I want to see <strong>Title</strong> information of CC in <strong>XPages</strong> page / in Designer)</li>
  302. <li>Crete new XPages</li>
  303. <li>Add CC into XPages</li>
  304. <li>Enter values for Title property in CC</li>
  305. </ul>
  306. <p>Now, It&#8217;s time to create NEW PROBLEM for Domino Designer <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> or for us <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  307. <p>If you enter this characters for Title property, You have a problem !!!</p>
  308. <ul>
  309. <li>with Lowercase &#8220;ı ö &#8211; ç &#8211; ş  &#8211; ğ &#8211; ü&#8221; -&gt; No problem</li>
  310. <li>with Uppercase &#8220;İ &#8211; Ç &#8211; Ö &#8211; Ü&#8221; -&gt; No Problem</li>
  311. </ul>
  312. <p>If you used uppercase &#8220;Ğ&#8221; ve &#8220;Ş&#8221; chars, after SAVE, you will not open your XPages in Designer anyway. unless you have to delete XML code about this.Title @ CC / Design Definition area.</p>
  313. <p><a href="http://www.bestcoder.net/wp-content/uploads/2013/01/CC-Design-Definition-Turkish-Char-Problem-Stack-Trace.txt" target="_blank">Java Error in XPages Editor</a></p>
  314. <p>Happy coding &#8230;</p>
  315. <p>Here some screenshots about the problem.</p>
  316.  
  317. <a href='http://www.bestcoder.net/?attachment_id=669'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/01.-CC-Property-Definition-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  318. <a href='http://www.bestcoder.net/?attachment_id=670'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/02.-CC-Design-Definition-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  319. <a href='http://www.bestcoder.net/?attachment_id=671'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/03.-XPages-CC-Usage-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  320. <a href='http://www.bestcoder.net/?attachment_id=672'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/04.-XPages-CC-Usage-Without-Capital-S-and-G-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  321. <a href='http://www.bestcoder.net/?attachment_id=673'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/05.-XPages-CC-Usage-With-Capital-G-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  322. <a href='http://www.bestcoder.net/?attachment_id=674'><img width="150" height="150" src="http://www.bestcoder.net/wp-content/uploads/2013/01/06.-XPages-CC-Usage-With-Capital-S-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" /></a>
  323.  
  324. <p>&nbsp;</p>
  325. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=668" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  326. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Another+Turkish+Char+Problem+in+XPages+Editor+%28XPages+Editorde+T%C3%BCrk%C3%A7e+Karakter+Problemi%29%20-%20http://www.bestcoder.net/?p=668%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  327. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=668&amp;media=&amp;description=Biran+geli%C5%9Ftirdi%C4%9Fim+XPages+sayfas%C4%B1n%C4%B1+kaybetti%C4%9Fimi+sand%C4%B1m+ama+%C5%9F%C3%BCk%C3%BCr+sorunu+tahmin+y%C3%B6ntemiyl" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  328. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=668" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  329. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Another Turkish Char Problem in XPages Editor (XPages Editorde Türkçe Karakter Problemi)&amp;body=Biran geliştirdiğim XPages sayfasını kaybettiğimi sandım ama şükür sorunu tahmin yöntemiyl%20-%20http://www.bestcoder.net/?p=668" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  330. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=668" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  331. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=668&amp;title=Another+Turkish+Char+Problem+in+XPages+Editor+%28XPages+Editorde+T%C3%BCrk%C3%A7e+Karakter+Problemi%29" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  332. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=668&amp;title=Another+Turkish+Char+Problem+in+XPages+Editor+%28XPages+Editorde+T%C3%BCrk%C3%A7e+Karakter+Problemi%29" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  333. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=668" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  334. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=668</wfw:commentRss>
  335. <slash:comments>0</slash:comments>
  336. </item>
  337. <item>
  338. <title>Blue Now &#8230;</title>
  339. <link>http://www.bestcoder.net/?p=652</link>
  340. <comments>http://www.bestcoder.net/?p=652#respond</comments>
  341. <pubDate>Fri, 14 Dec 2012 00:14:49 +0000</pubDate>
  342. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  343. <category><![CDATA[IBM]]></category>
  344. <category><![CDATA[blue icons]]></category>
  345. <category><![CDATA[domino 9]]></category>
  346. <category><![CDATA[notes 9]]></category>
  347. <category><![CDATA[social edition]]></category>
  348.  
  349. <guid isPermaLink="false">http://www.bestcoder.net/?p=652</guid>
  350. <description><![CDATA[Ed Brill announed that the IBM Notes &#38; Domino 9 Social Edition betas are now available for download. Download IBM Notes &#38; Domino 9 Social Edition Beta Beta Forum for Feedbacks I just installed IBM Notes &#38; Domino 9 Social Edition (Public Beta) on my computer. When installation ended, tried to open http task but not loaded. Domino displayed warning &#8220;there is &#8230; ]]></description>
  351. <content:encoded><![CDATA[<p><a href="http://www.edbrill.com/ebrill/edbrill.nsf/dx/ibm-notes-and-domino-9.0-social-edition-public-beta-now-available" target="_blank">Ed Brill</a> announed that the IBM Notes &amp; Domino 9 Social Edition betas are now available for download.</p>
  352. <p><a href="https://www14.software.ibm.com/webapp/iwm/web/reg/signup.do?source=swg-beta-nodoso&amp;S_PKG=dl" target="_blank">Download IBM Notes &amp; Domino 9 Social Edition Beta</a></p>
  353. <p><a href="http://www-10.lotus.com/ldd/ndsebetaforum.nsf" target="_blank">Beta Forum for Feedbacks</a></p>
  354. <p>I just installed IBM Notes &amp; Domino 9 Social Edition (Public Beta) on my computer.</p>
  355. <p>When installation ended, tried to open http task but not loaded. Domino displayed warning &#8220;there is no httpd.cnf&#8221; file. I saw this error when I installed Domino 8.5.3 on Windows 8.</p>
  356. <p>Don&#8217;t know the exact reason maybe I missed something about configuration <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> But copied old httpd.cnf to data folder and no problem &#8230;</p>
  357. <p><img class="size-full wp-image-659 alignnone" title="No Httpd File" src="http://www.bestcoder.net/wp-content/uploads/2012/12/No-Httpd-File.png" alt="" width="665" height="85" srcset="http://www.bestcoder.net/wp-content/uploads/2012/12/No-Httpd-File.png 665w, http://www.bestcoder.net/wp-content/uploads/2012/12/No-Httpd-File-300x38.png 300w" sizes="(max-width: 665px) 100vw, 665px" /></p>
  358. <p>I always loved Domino &amp; Notes installations. Exactly&#8221;easy to install&#8221;, click 3-5 times Next and fill 3 box. Finished <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  359. <p>Run my older XPages application and no problem yet. I will use it on next days more detailed.</p>
  360. <p>And &#8230; I have blue icons now <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Looks pretty <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  361. <p><img class="size-full wp-image-654 alignnone" title="Blue Icons" src="http://www.bestcoder.net/wp-content/uploads/2012/12/Blue-Icons.png" alt="" width="486" height="128" srcset="http://www.bestcoder.net/wp-content/uploads/2012/12/Blue-Icons.png 486w, http://www.bestcoder.net/wp-content/uploads/2012/12/Blue-Icons-300x79.png 300w" sizes="(max-width: 486px) 100vw, 486px" /></p>
  362. <h1><span style="color: #3d8d8f;"><strong>IBM Notes &amp; Domino 9 Social Edition</strong></span></h1>
  363. <blockquote>
  364. <h2><strong>&#8220;Welcome aboard&#8221;</strong></h2>
  365. </blockquote>
  366. <p><img class="size-full wp-image-655 alignleft" title="Domino Designer" src="http://www.bestcoder.net/wp-content/uploads/2012/12/Domino-Designer.png" alt="" width="960" height="515" srcset="http://www.bestcoder.net/wp-content/uploads/2012/12/Domino-Designer.png 960w, http://www.bestcoder.net/wp-content/uploads/2012/12/Domino-Designer-300x160.png 300w" sizes="(max-width: 960px) 100vw, 960px" /></p>
  367. <p>&nbsp;</p>
  368. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=652" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  369. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Blue+Now+%26%238230%3B%20-%20http://www.bestcoder.net/?p=652%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  370. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=652&amp;media=&amp;description=Ed+Brill+announed%C2%A0that+the%C2%A0IBM+Notes+%26amp%3B+Domino+9+Social+Edition+betas+are+now%C2%A0available+for+do" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  371. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=652" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  372. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Blue Now &#8230;&amp;body=Ed Brill announed that the IBM Notes &amp; Domino 9 Social Edition betas are now available for do%20-%20http://www.bestcoder.net/?p=652" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  373. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=652" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  374. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=652&amp;title=Blue+Now+%26%238230%3B" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  375. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=652&amp;title=Blue+Now+%26%238230%3B" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  376. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=652" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  377. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=652</wfw:commentRss>
  378. <slash:comments>0</slash:comments>
  379. </item>
  380. <item>
  381. <title>Ben de bir IBM Şampiyon &#8216;um :)</title>
  382. <link>http://www.bestcoder.net/?p=634</link>
  383. <comments>http://www.bestcoder.net/?p=634#comments</comments>
  384. <pubDate>Wed, 12 Dec 2012 12:01:10 +0000</pubDate>
  385. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  386. <category><![CDATA[IBM]]></category>
  387. <category><![CDATA[Lotus]]></category>
  388. <category><![CDATA[Community]]></category>
  389. <category><![CDATA[IBM Champion]]></category>
  390. <category><![CDATA[Personal]]></category>
  391.  
  392. <guid isPermaLink="false">http://www.bestcoder.net/?p=634</guid>
  393. <description><![CDATA[Dün Joyce Davis, 2013 IBM Champions for Collaboration Solutions listesini açıkladı. Ben de bu ünvana layık görülerek bir IBM Champion olmaktan büyük onur ve mutluluk duyduğumu belirtmek isterim. Evet artık ben de bir IBM Şampiyon &#8216;um 🙂 &#160; &#160; Bu ünvanın ne demek olduğunu değerli dostum Serdar Başeğmez çok güzel paylaşmıştı geçen sene, 50 kişinin &#8230; ]]></description>
  394. <content:encoded><![CDATA[<p>Dün Joyce Davis, <a href="https://www-304.ibm.com/connections/blogs/socialbusiness/entry/2013_ibm_champions_for_collaboration_solutions?lang=tr_tr" target="_blank">2013 IBM Champions for Collaboration Solutions</a> listesini açıkladı.</p>
  395. <p>Ben de bu ünvana layık görülerek bir <strong>IBM Champion</strong> olmaktan büyük onur ve mutluluk duyduğumu belirtmek isterim. Evet artık ben de bir IBM Şampiyon &#8216;um <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  396. <p><a href="http://www.bestcoder.net/wp-content/uploads/2012/12/ibm-champion-175px1.png"><img class="alignleft size-full wp-image-648" title="ibm-champion-175px" src="http://www.bestcoder.net/wp-content/uploads/2012/12/ibm-champion-175px1.png" alt="" width="191" height="48" /></a></p>
  397. <p>&nbsp;</p>
  398. <p>&nbsp;</p>
  399. <p>Bu ünvanın ne demek olduğunu değerli dostum <a href="http://lotusnotus.com/lotusnotus.nsf/dx/elli-kisiden-biri-olmak....htm" target="_blank">Serdar Başeğmez</a> çok güzel paylaşmıştı geçen sene, 50 kişinin içinde yer alarak gururlandırmıştı bizi.</p>
  400. <p>Kendisini ayrıca tekrar tebrik ediyorum hem bu başarısını devam ettirerek 2. kez IBM Champion seçildiği için (ki kesinlikle ve kesinlikle haketmişti) ve üstüne eski adıyla Lotusphere, yeni adıyla IBM Connect 2013 de bir sunum yapacağı için.</p>
  401. <p>Kısaca hatırlatmak gerekirse; IBM diğer markalarda uzun bir süredir düzenlediği &#8216;IBM Champions&#8217; programını ilk kez Lotus grubu için 2011 senesinde düzenledi. Seçilen şampiyonlar bu ünvanlarını 1 yıl süreyle taşıyacaklar ve her yıl tekrar değerlendiriliyor olacaklar. Seçim son 12-18 ay içerisinde aşağıdaki kriterlere uygun aktivitelere bakılarak yapılıyor;</p>
  402. <ul>
  403. <li>IBM Lotus çözümleri ve teknolojilerinin yaygınlaşması konusunda çalışmalar yapmak,</li>
  404. <li>Bilgi, deneyim ve uzmanlığı paylaşmak,</li>
  405. <li>Lotus topluluğunun büyümesine yardımcı olmak,</li>
  406. <li>Yapıcı ve profesyonel bir şekilde pozitif ya da negatif geribildirimlerde bulunmak,</li>
  407. <li>IBM ürün porföyünü kapsayacak uzmanlıklara sahip olmak.</li>
  408. </ul>
  409. <p>Tüm seçici kurula ve özellikle Joyce Davis&#8217;e bu programı yürüttüğü için teşekkür etmek istiyorum. Ayrıca diğer tüm şampiyonları da tebrik ediyorum, başarılarının ve paylaşımlarının devamını diliyorum &#8230;</p>
  410. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=634" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  411. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Ben+de+bir+IBM+%C5%9Eampiyon+%26%238216%3Bum+%3A%29%20-%20http://www.bestcoder.net/?p=634%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  412. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=634&amp;media=&amp;description=D%C3%BCn+Joyce+Davis%2C+2013+IBM+Champions+for+Collaboration+Solutions+listesini+a%C3%A7%C4%B1klad%C4%B1.%0D%0A%0D%0ABen+de+bu" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  413. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=634" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  414. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Ben de bir IBM Şampiyon &#8216;um :)&amp;body=Dün Joyce Davis, 2013 IBM Champions for Collaboration Solutions listesini açıkladı.
  415.  
  416. Ben de bu%20-%20http://www.bestcoder.net/?p=634" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  417. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=634" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  418. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=634&amp;title=Ben+de+bir+IBM+%C5%9Eampiyon+%26%238216%3Bum+%3A%29" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  419. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=634&amp;title=Ben+de+bir+IBM+%C5%9Eampiyon+%26%238216%3Bum+%3A%29" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  420. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=634" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  421. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=634</wfw:commentRss>
  422. <slash:comments>2</slash:comments>
  423. </item>
  424. <item>
  425. <title>StackOverflow Question (XPages &#8211; xp:fileDownload Control in xp:repeat Control)</title>
  426. <link>http://www.bestcoder.net/?p=618</link>
  427. <comments>http://www.bestcoder.net/?p=618#respond</comments>
  428. <pubDate>Thu, 01 Nov 2012 14:13:43 +0000</pubDate>
  429. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  430. <category><![CDATA[Development]]></category>
  431. <category><![CDATA[Lotus Notes]]></category>
  432. <category><![CDATA[XPages]]></category>
  433. <category><![CDATA[filedownload]]></category>
  434. <category><![CDATA[repeat]]></category>
  435. <category><![CDATA[xpages]]></category>
  436.  
  437. <guid isPermaLink="false">http://www.bestcoder.net/?p=618</guid>
  438. <description><![CDATA[Do you have any idea how can I use xp:fileDownload control in a xp:repeat control ? I binded xp:repeat control to view. So I am available to get NotesViewEntry per line. But I didnt get attachments using var variable in xp:fileDownload control. I placed xp:repeat in xp:panel and created data document in panel object. I &#8230; ]]></description>
  439. <content:encoded><![CDATA[<p>Do you have any idea how can I use xp:fileDownload control in a xp:repeat control ?</p>
  440. <p>I binded xp:repeat control to view. So I am available to get NotesViewEntry per line.</p>
  441. <p>But I didnt get attachments using var variable in xp:fileDownload control.</p>
  442. <p>I placed xp:repeat in xp:panel and created data document in panel object. I placed fileDownload control inside this panel. And binded document data source to fileDownload.</p>
  443. <p>Not worked !</p>
  444. <p>Have an idea ?</p>
  445. <p>I have 10 documents and every document has one more attachment. I want to show these files using filedownload control.</p>
  446. <pre class="lang:default decode:true ">&lt;xp:this.data&gt;
  447. &lt;xp:dominoView var="viewReviews" viewName="vwLookupGoruslerHepsi"&gt;&lt;/xp:dominoView&gt;
  448. &lt;/xp:this.data&gt;
  449.  
  450. &lt;xp:repeat id="repeat1" value="#{viewReviews}" var="viewEntry"&gt;
  451. &lt;xp:table style="width:100%;border:1px solid #ddd;margin-bottom:5px;"
  452. cellpadding="2"&gt;
  453. &lt;xp:tr valign="top"&gt;
  454. &lt;xp:td rowspan="5" style="width:250px"&gt;
  455. &lt;xp:text id="computedField9" tagName="h4" escape="true"&gt;
  456. &lt;xp:this.value&gt;&lt;![CDATA[#{viewEntry["GorusBildirecek_CN"]}]]&gt;&lt;/xp:this.value&gt;
  457. &lt;/xp:text&gt;
  458. &lt;/xp:td&gt;
  459. &lt;/xp:tr&gt;
  460. &lt;xp:tr valign="top"&gt;
  461. &lt;xp:td&gt;
  462. &lt;xp:panel id="panelGorusEkler"&gt;
  463. &lt;xp:this.data&gt;
  464. &lt;xp:dominoDocument var="docGorus" formName="frmGorus"
  465. action="openDocument" documentId="#{javascript:viewEntry.getNoteID()}"&gt;
  466. &lt;/xp:dominoDocument&gt;
  467. &lt;/xp:this.data&gt;
  468. &lt;xp:text escape="true" id="computedField1"
  469. value="#{docGorus.GorusBildiren_OU1_NAME}"&gt;
  470. &lt;/xp:text&gt;
  471. &lt;xp:fileDownload rows="30" id="fileDownload3"
  472. var="rowFile" indexVar="rowIndex" value="#{docGorus.Ekler}"&gt;
  473. &lt;/xp:fileDownload&gt;
  474. &lt;/xp:panel&gt;
  475. &lt;/xp:td&gt;
  476. &lt;/xp:tr&gt;
  477. &lt;/xp:table&gt;
  478. &lt;/xp:repeat&gt;</pre>
  479. <p>Thanks</p>
  480. <p><a href="http://stackoverflow.com/q/13178839/1186375?sem=2">http://stackoverflow.com/q/13178839/1186375?sem=2</a></p>
  481. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=618" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  482. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=StackOverflow+Question+%28XPages+%26%238211%3B+xp%3AfileDownload+Control+in+xp%3Arepeat+Control%29%20-%20http://www.bestcoder.net/?p=618%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  483. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=618&amp;media=&amp;description=Do+you+have+any+idea+how+can+I+use+xp%3AfileDownload+control+in+a+xp%3Arepeat+control+%3F%0D%0A%0D%0AI+binded+xp%3Ar" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  484. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=618" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  485. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=StackOverflow Question (XPages &#8211; xp:fileDownload Control in xp:repeat Control)&amp;body=Do you have any idea how can I use xp:fileDownload control in a xp:repeat control ?
  486.  
  487. I binded xp:r%20-%20http://www.bestcoder.net/?p=618" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  488. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=618" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  489. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=618&amp;title=StackOverflow+Question+%28XPages+%26%238211%3B+xp%3AfileDownload+Control+in+xp%3Arepeat+Control%29" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  490. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=618&amp;title=StackOverflow+Question+%28XPages+%26%238211%3B+xp%3AfileDownload+Control+in+xp%3Arepeat+Control%29" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  491. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=618" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  492. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=618</wfw:commentRss>
  493. <slash:comments>0</slash:comments>
  494. </item>
  495. <item>
  496. <title>Login Manager is now available &#8230;</title>
  497. <link>http://www.bestcoder.net/?p=612</link>
  498. <comments>http://www.bestcoder.net/?p=612#respond</comments>
  499. <pubDate>Sat, 20 Oct 2012 12:46:43 +0000</pubDate>
  500. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  501. <category><![CDATA[Development]]></category>
  502.  
  503. <guid isPermaLink="false">http://www.bestcoder.net/?p=612</guid>
  504. <description><![CDATA[It helps to easy login during application tests. No need to memorize user login details, no typing pass. Just two click to login. Try demo application.]]></description>
  505. <content:encoded><![CDATA[<p style="text-align: left;">It helps to easy login during application tests. No need to memorize user login details, no typing pass. Just two click to login. Try demo application.</p>
  506. <p style="text-align: left;"><a style="text-align: center;" href="http://loginmanager.bestcoder.net"><img class="alignleft" src="http://loginmanager.bestcoder.net/wp-content/uploads/2012/10/lmHomeBanner1.png" alt="" width="552" height="210" /></a></p>
  507. <p style="text-align: left;">
  508. <p style="text-align: left;">
  509. <p style="text-align: left;">
  510. <p style="text-align: left;">
  511. <p style="text-align: left;">
  512. <p style="text-align: left;">
  513. <p style="text-align: left;">
  514. <p style="text-align: left;">
  515. <p style="text-align: left;">
  516. <p style="text-align: left;">
  517. <p style="text-align: left;">
  518. <p style="text-align: left;">
  519. <p style="text-align: left;">
  520. <p style="text-align: left;">
  521. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=612" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  522. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=Login+Manager+is+now+available+%26%238230%3B%20-%20http://www.bestcoder.net/?p=612%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  523. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=612&amp;media=&amp;description=It+helps+to+easy+login+during+application+tests.+No+need+to+memorize+user+login+details%2C+no+typing+p" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  524. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=612" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  525. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=Login Manager is now available &#8230;&amp;body=It helps to easy login during application tests. No need to memorize user login details, no typing p%20-%20http://www.bestcoder.net/?p=612" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  526. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=612" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  527. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=612&amp;title=Login+Manager+is+now+available+%26%238230%3B" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  528. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=612&amp;title=Login+Manager+is+now+available+%26%238230%3B" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  529. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=612" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  530. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=612</wfw:commentRss>
  531. <slash:comments>0</slash:comments>
  532. </item>
  533. <item>
  534. <title>XPages &#8211; Expression Language (EL) &#8211; Some Useful Links &#038; Sample</title>
  535. <link>http://www.bestcoder.net/?p=601</link>
  536. <comments>http://www.bestcoder.net/?p=601#respond</comments>
  537. <pubDate>Thu, 18 Oct 2012 11:33:43 +0000</pubDate>
  538. <dc:creator><![CDATA[ferhatbulut]]></dc:creator>
  539. <category><![CDATA[Development]]></category>
  540. <category><![CDATA[Lotus Notes]]></category>
  541. <category><![CDATA[XPages]]></category>
  542. <category><![CDATA[el]]></category>
  543. <category><![CDATA[expression language]]></category>
  544. <category><![CDATA[xpages]]></category>
  545.  
  546. <guid isPermaLink="false">http://www.bestcoder.net/?p=601</guid>
  547. <description><![CDATA[A JSTL primer, Part 1: The expression language JSF Techniques – EL Resolvers Simple If &#8211; Then for rendered properties in table &#8211; tr using view column data. [Column value of GorusTipi equals &#8220;Zorunlu&#8221;] AND [Column value of UygunlukDurumu IS NOT EMPTY] &#60;xp:this.rendered&#62;&#60;![CDATA[#{viewEntry[&#8220;GorusTipi&#8221;] eq &#8220;Zorunlu&#8221; &#38;&#38; !empty viewEntry[&#8220;UygunlukDurumu&#8221;]}]]&#62;&#60;/xp:this.rendered&#62; Table 2. The EL operators Category Operators &#8230; ]]></description>
  548. <content:encoded><![CDATA[<p><a href="http://www.ibm.com/developerworks/java/library/j-jstl0211/index.html" target="_blank">A JSTL primer, Part 1: The expression language</a></p>
  549. <p><a href="http://www.softwareengineeringsolutions.com/thoughts/frameworks/JSF.Techniques-ELResolvers.htm" target="_blank">JSF Techniques – EL Resolvers</a></p>
  550. <p>Simple If &#8211; Then for <strong>rendered</strong> properties in table &#8211; tr using <strong>view column data</strong>.</p>
  551. <blockquote><p><strong><em>[Column value of GorusTipi equals &#8220;Zorunlu&#8221;] AND [Column value of UygunlukDurumu IS NOT EMPTY<strong><em>]</em></strong></em></strong></p>
  552. <p>&lt;xp:this.rendered&gt;&lt;![CDATA[#{viewEntry[&#8220;GorusTipi&#8221;] eq &#8220;Zorunlu&#8221; &amp;&amp; !empty viewEntry[&#8220;UygunlukDurumu&#8221;]}]]&gt;&lt;/xp:this.rendered&gt;</p></blockquote>
  553. <p><strong>Table 2. The EL operators</strong></p>
  554. <table width="100%" border="1" cellspacing="0" cellpadding="3">
  555. <tbody>
  556. <tr valign="top">
  557. <td><strong>Category</strong></td>
  558. <td><strong>Operators</strong></td>
  559. </tr>
  560. <tr valign="top">
  561. <td>Arithmetic</td>
  562. <td><code>+</code>, <code>-</code>, <code>*</code>, <code>/</code> (or <code>div</code>), <code>%</code> (or <code>mod</code>)</td>
  563. </tr>
  564. <tr valign="top">
  565. <td>Relational</td>
  566. <td><code>==</code> (or <code>eq</code>), <code>!=</code> (or <code>ne</code>), <code>&lt;</code> (or <code>lt</code>), <code>&gt;</code> (or <code>gt</code>), <code>&lt;=</code> (or <code>le</code>), <code>&gt;=</code> (or <code>ge</code>)</td>
  567. </tr>
  568. <tr valign="top">
  569. <td>Logical</td>
  570. <td><code>&amp;&amp;</code> (or <code>and</code>), <code>||</code> (or <code>or</code>), <code>!</code> (or <code>not</code>)</td>
  571. </tr>
  572. <tr valign="top">
  573. <td>Validation</td>
  574. <td><code>empty</code></td>
  575. </tr>
  576. </tbody>
  577. </table>
  578. <div class="wp-socializer wpsr-buttons wpsr-row-1"><div class="wpsr-btn wpsr-srvc-social_icons wpsr-btn-sb-21"><div class="socializer sr-32px sr-circle sr-fade-black sr-count-1 sr-sw-2 sr-pad sr-popup"><span class="sr-facebook "><a rel="nofollow" href="https://www.facebook.com/share.php?u=http://www.bestcoder.net/?p=601" target="_blank"  title="Share this on Facebook"  style="color: #fff"><i class="fa fa-facebook-f"></i></a></span>
  579. <span class="sr-twitter "><a rel="nofollow" href="https://twitter.com/intent/tweet?text=XPages+%26%238211%3B+Expression+Language+%28EL%29+%26%238211%3B+Some+Useful+Links+%26%23038%3B+Sample%20-%20http://www.bestcoder.net/?p=601%20" target="_blank"  title="Tweet this !"  style="color: #fff"><i class="fa fa-twitter"></i></a></span>
  580. <span class="sr-pinterest "><a rel="nofollow" href="https://www.pinterest.com/pin/create/button/?url=http://www.bestcoder.net/?p=601&amp;media=&amp;description=A+JSTL+primer%2C+Part+1%3A+The+expression+language%0D%0A%0D%0AJSF+Techniques+%E2%80%93+EL+Resolvers%0D%0A%0D%0ASimple+If+-+The" target="_blank"  title="Submit this to Pinterest"  style="color: #fff"><i class="fa fa-pinterest"></i></a></span>
  581. <span class="sr-more"><a href="#" target="_blank" title="More sites"  style="color: #fff"><i class="fa fa-share-alt"></i></a><ul class="socializer"><span class="sr-linkedin "><a rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=http://www.bestcoder.net/?p=601" target="_blank"  title="Add this to LinkedIn"  style="color: #fff"><i class="fa fa-linkedin"></i></a></span>
  582. <span class="sr-email "><a rel="nofollow" href="mailto:?to=&amp;subject=XPages &#8211; Expression Language (EL) &#8211; Some Useful Links &#038; Sample&amp;body=A JSTL primer, Part 1: The expression language
  583.  
  584. JSF Techniques – EL Resolvers
  585.  
  586. Simple If - The%20-%20http://www.bestcoder.net/?p=601" target="_blank"  title="Email this "  style="color: #fff"><i class="fa fa-envelope"></i></a></span>
  587. <span class="sr-shortlink "><a rel="nofollow" href="http://www.bestcoder.net/?p=601" target="_blank" onclick="socializer_shortlink( event, this )" title="Short link"  style="color: #fff"><i class="fa fa-link"></i></a></span>
  588. <span class="sr-pocket "><a rel="nofollow" href="https://getpocket.com/save?url=http://www.bestcoder.net/?p=601&amp;title=XPages+%26%238211%3B+Expression+Language+%28EL%29+%26%238211%3B+Some+Useful+Links+%26%23038%3B+Sample" target="_blank"  title="Submit this to Pocket"  style="color: #fff"><i class="fa fa-get-pocket"></i></a></span>
  589. <span class="sr-reddit "><a rel="nofollow" href="https://reddit.com/submit?url=http://www.bestcoder.net/?p=601&amp;title=XPages+%26%238211%3B+Expression+Language+%28EL%29+%26%238211%3B+Some+Useful+Links+%26%23038%3B+Sample" target="_blank"  title="Submit this to Reddit"  style="color: #fff"><i class="fa fa-reddit"></i></a></span>
  590. <span class="sr-print "><a rel="nofollow" href="https://www.printfriendly.com/print?url=http://www.bestcoder.net/?p=601" target="_blank"  title="Print this article "  style="color: #fff"><i class="fa fa-print"></i></a></span></ul></span></div></div></div>]]></content:encoded>
  591. <wfw:commentRss>http://www.bestcoder.net/?feed=rss2&#038;p=601</wfw:commentRss>
  592. <slash:comments>0</slash:comments>
  593. </item>
  594. </channel>
  595. </rss>
  596.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//www.bestcoder.net/%3Ffeed%3Drss2

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda