<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>lekkimworld.comgreasemonkey</title>
    <link>http://lekkimworld.com/tags/greasemonkey/</link>
    <description>IBM Lotus Notes/Domino, Websphere, IBM Connections, mobile, web, JavaScript, Java...</description>
    <language>en</language>
    <copyright>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</copyright>
    <pubDate>Sat, 19 May 2012 06:50:25 GMT</pubDate>
    <dc:creator>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</dc:creator>
    <dc:date>2012-05-19T06:50:25Z</dc:date>
    <dc:language>en</dc:language>
    <dc:rights>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</dc:rights>
    <image>
      <title>lekkimworld.comgreasemonkey</title>
      <url>http://lekkimworld.com/tags/greasemonkey/</url>
    </image>
    <item>
      <title>Using Greasemonkey for Forum Friday</title>
      <link>http://lekkimworld.com/2008/01/30/using_greasemonkey_for_forum_friday.html</link>
      <content:encoded>&lt;p&gt;
I read Declans post on &lt;a href="http://www.qtzar.com/blogs/qtzar.nsf/d6plinks/HOBS-7BBMFS"&gt;Forum Friday&lt;/a&gt; as an addition to Show-and-Tell-Thursday and I think it's a good idea. There was some discussion about a similar idea (Question Wedneyday) at the blogger BOF. If I'm to respond to posts in the Notes 8 forum (my primary focus) I want a nicer default footer. 
&lt;/p&gt;
&lt;p&gt;
I'm already using a Greasemonkey script &lt;a href="http://lekkimworld.com/2006/06/22/show_n_tell_thursday_automatically_insert_signature_in_the_notes_domino_6_7_forum_22_june_2006.html"&gt;I blogged about a while back&lt;/a&gt; for the LDD6/7 forum. Unfortunately there's a difference between the HTML markup between the Notes 6/7 forum and the Notes 8 forum so the Greasemonkey script needs to take this into account. 
&lt;/p&gt;
&lt;p&gt;
Here's the updated script (updates in bold):
&lt;pre&gt;
// ==UserScript==
// @name          Notes/Domino 6/7/8 Forum Signature
// @namespace     http://lekkimworld.com/greasemonkey/ldd_signature
// @description	  Inserts my LDD Forum signature
// @include       http*://www-10.lotus.com/ldd/nd6forum.nsf/*?OpenForm*
&lt;b&gt;// @include       http*://www-10.lotus.com/ldd/nd8forum.nsf/*?OpenForm*&lt;/b&gt;
// ==/UserScript==

// get elements
var e_subject = document.getElementById("Subject");
var e_body = document.getElementById("Body");

&lt;b&gt;// handle Notes 8 forum
if (null == e_subject) {
	e_subject = document.forms[0].elements[1];
	e_body = document.forms[0].elements[2];
	e_body.style.fontFamily = "Verdana";
	e_body.style.fontSize = "11px";
}&lt;/b&gt;

// compose signature
var signature = "\n\n/Mikkel Heisterberg\nVisit my Notes/Domino blog " + 
    "@ http://lekkimworld.com\nfor posts on Notes, Domino, Sametime " + 
    "and how to use Java in Notes/Domino...";

// set signature
e_body.value = signature;

// set focus
if (e_subject.value == "") {
   e_subject.focus();
} else {
   e_body.focus();
   e_body.setSelectionRange(0, 0); 
}
&lt;/pre&gt;
Feel free to copy the script and modify to your liking. Installation guide is in my &lt;a href="http://lekkimworld.com/2006/06/22/show_n_tell_thursday_automatically_insert_signature_in_the_notes_domino_6_7_forum_22_june_2006.html"&gt;previous post&lt;/a&gt;.
&lt;/p&gt;</content:encoded>
      <category domain="http://lekkimworld.com/tags/greasemonkey/">greasemonkey</category>
      <pubDate>Wed, 30 Jan 2008 09:35:00 GMT</pubDate>
      <guid isPermaLink="false">tag:lekkimworld.com,2008-01-30:default/1201685700000</guid>
      <dc:date>2008-01-30T09:35:00Z</dc:date>
    </item>
    <item>
      <title>Show 'n Tell Thursday: Automatically insert signature in the Notes/Domino 6/7 forum (22 June 2006)</title>
      <link>http://lekkimworld.com/2006/06/22/show_n_tell_thursday_automatically_insert_signature_in_the_notes_domino_6_7_forum_22_june_2006.html</link>
      <content:encoded>&lt;p&gt;
I finally got tired of having to compose and insert my closing signature in my posts in the forum on Lotus developerWorks so I wrote up a little &lt;a href="http://greasemonkey.mozdev.org/"&gt;Greasemonkey&lt;/a&gt; script to do it for me.
&lt;/p&gt;
&lt;p&gt;
Technorati tags: &lt;a href="http://technorati.com/tag/Show-n-tell+Thursday" rel="tag"&gt;Show-n-tell Thursday&lt;/a&gt;, &lt;a href="http://technorati.com/tag/SnTT" rel="tag"&gt;SnTT&lt;/a&gt;
&lt;/p&gt;&lt;p&gt;&lt;a href="http://lekkimworld.com/2006/06/22/show_n_tell_thursday_automatically_insert_signature_in_the_notes_domino_6_7_forum_22_june_2006.html"&gt;Read more...&lt;/a&gt;&lt;/p&gt;</content:encoded>
      <category domain="http://lekkimworld.com/categories/sntt/">SnTT</category>
      <category domain="http://lekkimworld.com/categories/web/">Web</category>
      <category domain="http://lekkimworld.com/tags/firefox/">firefox</category>
      <category domain="http://lekkimworld.com/tags/greasemonkey/">greasemonkey</category>
      <category domain="http://lekkimworld.com/tags/show-n-tellthursday/">show-n-tellthursday</category>
      <category domain="http://lekkimworld.com/tags/sntt/">sntt</category>
      <pubDate>Thu, 22 Jun 2006 04:37:51 GMT</pubDate>
      <guid isPermaLink="false">tag:lekkimworld.com,2006-06-22:default/1150951071609</guid>
      <dc:date>2006-06-22T04:37:51Z</dc:date>
    </item>
  </channel>
</rss>


