<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" 
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<channel>
<title>My Messy Workbench: Too Done List</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/too_done_list.xml</link>
<description>A disorganised shambles
obscuring the occasional gem.</description>
<dc:language>en-us</dc:language>
<dc:creator>eBlog@synaptic.bc.ca</dc:creator>
<dc:date>2004-02-04T12:35:05-08:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.movabletype.org/?v=2.661" />
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>

<item>
<title>Fill in the Amazon &quot;Line&quot; for Media Things sideblog.</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2004/02/fill_in_the_amazon_line_for_media_things_sideblog.php</link>
<description>Simply providing the author/artist and album/book title in the keyword search isn&apos;t doing it -- I keep getting books instead of DVDs and audio CDs.

Fortunately, that&apos;s just rewriting a Macro or two (er, four).
&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">178@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2004-02-04T12:35:05-08:00</dc:date>
</item>
<item>
<title>Add Quick Reply phpBB hack to MT.</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2004/01/add_quick_reply_phpbb_hack_to_mt.php</link>
<description>http://www.phpbbhacks.com/viewhack.php?id=540

I&apos;ve already got this simple but elegant hack working in phpBB.  Now it&apos;s just a matter of porting it to my MT installation.

[EDIT]

Done! Want to know how to do it yourself?  Read on! (Note: This MT add-on assumes you&apos;ve already installed the fluffyblog Using phpBB as your MovableType comment engine in 23847392 easy steps tutorial to your MovableType installation.
&lt;br /&gt;&lt;br /&gt;<![CDATA[Once you've installed the above hack to your phpBB installation, it's a fairly simple matter to install it in your MT archives.

First, you need to have fluffyblog's display code installed, so download this php include file to your phpBB root directory.
Now open the file, and find the lines:


echo &quot;&lt;div class=\&quot;comments-footer\&quot;&gt;&quot;;
if ($display_userdata &amp;&amp; $display_userdata['session_logged_in'])


Insert the following code above the lines.


//
// Quick Reply Mod
//
if ( $can_watch_topic &amp;&amp; $is_watching_topic )
{
	$notify = 1;
}
else
{
	$notify = $display_userdata['user_notify'];
}
$quick_reply_form = &quot;
&lt;script language='JavaScript' type='text/javascript'&gt;
function checkForm() {
formErrors = false;
document.post.message.value = '';
if (document.post.input.value.length &lt; 2) {
	formErrors = 'Can't post an empty comment!';
}
if (formErrors) {
	alert(formErrors);
	return false;
} else {
	if (document.post.quick_quote.checked) {
	document.post.message.value = document.post.last_msg.value;
	}
	document.post.message.value += document.post.input.value;
	return true;
	}
}
&lt;/script&gt;&quot;;


if ($display_userdata['session_logged_in'])
{
	$quick_reply_form .= &quot;&lt;form action='&quot; . append_sid($phpbb_root_path . 
	&quot;posting.php&quot;) . &quot;' method='post' name='post' onsubmit='return 
	checkForm(this)'&gt;
	&lt;span class='genmed'&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;&quot;;

	$quick_reply_form .= &quot;&lt;textarea name='message' rows='10' cols='50' 
	class='post'&gt;&lt;/textarea&gt;&lt;br /&gt;
	&lt;input type='hidden' name='quick_quote' /&gt; 
	&lt;input type='checkbox' name='attach_sig' checked='checked' /&gt;Attach Signature 
	(signatures can be changed in profile)&lt;br /&gt;
	&lt;input type='hidden' name='mode' value='reply' /&gt;
	&lt;input type='hidden' name='sid' value='&quot; . $display_userdata['session_id'] . &quot;' /&gt;
	&lt;input type='hidden' name='t' value='&quot; . $thread_id . &quot;' /&gt;
	&lt;input type='hidden' name='input' value='OOPS!' /&gt;
	&lt;input type='hidden' name='notify' value='&quot; . $notify . &quot;' /&gt;
	&lt;input type='submit' name='preview' class='liteoption' value='Preview' /&gt;&amp;nbsp;
	&lt;input type='submit' name='post' class='mainoption' value='Submit' /&gt;
	&lt;/span&gt;&lt;/form&gt;&quot;;
}
echo $quick_reply_form;
//
// END Quick Reply Mod
//


Now, in MT, open the archive template you wish to display the quick comment form in and insert the following code at the very top of the template:


&lt;?
	$phpbb_root_path=&quot;../../Contact/&quot;;
	include_once($phpbb_root_path . 'integrate.inc');
	include_once($phpbb_root_path . 'forumfuncs.inc');
	include_once($phpbb_root_path . 'mods/phpbb_fetch_all/common.' . $phpEx);
	include_once($phpbb_root_path . 'mods/phpbb_fetch_all/posts.' . $phpEx);
	# Note that because of this, this must be included before any HTML is output
	  $display_userdata = session_pagestart($user_ip, PAGE_INDEX);
	  init_userprefs($display_userdata);
?&gt;
  &lt;!-- END phpBB comment engine insert --&gt;


Also, place the following code where you want your comments and comment form to appear in your template:


&lt;?
	$thread_id = &lt;$MTInclude module=&quot;GetForum&quot;$&gt;;
	ThreadDisplay($thread_id);
?&gt;


Don't forget to remove the old phpBB comments display from that template! Otherwise, you'll see the phpBB comments displayed twice!


That should do it.  Save, Rebuild, Etc. and, so long as you're currently logged in to phpBB, you should see a quick comment form.  

p.]]></description>
<guid isPermaLink="false">154@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2004-01-11T02:28:42-08:00</dc:date>
</item>
<item>
<title>Wolfe Camera dropped from linkshare merchant list</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2004/01/wolfe_camera_dropped_from_linkshare_merchant_list.php</link>
<description>So I&apos;ll have to update the Fujifilm affiliate links in my bicycle touring packing list outfitting the multimedia traveller and to some new merchant.

[DONE]

Actually, wasn&apos;t linked to Wolfe Camera anyway, but this got me motivated to clean up some of the other stuff.&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">149@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2004-01-09T06:37:53-08:00</dc:date>
</item>
<item>
<title>Side blogs</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2004/01/side_blogs.php</link>
<description><![CDATA[Here's something to research...

Side Blogs

p.

/" target="_blank">" hspace="4" align="right" border="0">Presently listening to:A Place for my Head - Linkin Park - Hybrid Theory (03:04)&keyword=&mode=music">/" target="_blank">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;[EDIT 21 JAN 04] OK, got one down -- 

http://www.scriptygoddess.com/archives/004014.php

You can see it at work under the Counter Flow heading in the sidebars.

Just beware that step #3 can cause problems for some php versions. See 

http://www.onaje.com/php/article.php4/43 for reasons why.


Next I&apos;ll work on the MT Sideblog tutorials which have an interesting implementation of MTAmazon!</description>
<guid isPermaLink="false">140@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2004-01-06T08:53:17-08:00</dc:date>
</item>
<item>
<title>Fix 100% width banner table</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/fix_100_width_banner_table.php</link>
<description>With the current CSS banner class, a 100% width table forces the banner to be GT the window width. In Netscape, this doesn&apos;t cause any problems...but in IE -- lookout!

Have to rethink the banner formatting.

[EDIT] OK, that&apos;s done. Much better...

Also changed the templates for NoMad MaN to match My Messy Workbench.&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">111@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Notebook</dc:subject>
<dc:date>2003-12-25T18:40:59-08:00</dc:date>
</item>
<item>
<title>AHA!  Add forum notification!</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/aha_add_forum_notification.php</link>
<description><![CDATA[http://www.phpbb.com/phpBB/viewtopic.php?t=13386

Look for Davil's MOD.

Provides the user with the ability to subscribe to a whole forum!

This will also provide a "backdoor" method for allowing blog visitors to receive notificaiton of all new updates.

[EDIT]

That was just too complicated -- mod never seemed to get out of Beta, too many posts with suggested changes...

I'm about to try this one instead:

http://www.phpbbhacks.com/viewhack.php?id=293

Or at least I was until the site went down, just now!

It's back.  We're on.

[EDIT jan 18, 04]

Completed. Want to know how?  See New Topic Notification.

Presently listening to:I Against I feat. Massive Atta - Mos Def - blade 2 (05:43)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">110@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-25T11:30:20-08:00</dc:date>
</item>
<item>
<title>Complete integrating changes for phpBB comment engine</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/complete_integrating_changes_for_phpbb_comment_engine.php</link>
<description><![CDATA[http://trikuare.cx/mt/archives/000425.php

Still working on step Get the correct comment counts.

[edit]

Comment counts installed. 

Now working on comment display, which is not working at the moment. fetch_all is not getting the list of posts, for some reason.

[edit]

got that going (Missing CRLF at the end of a comment in the code, caused a crucial line to get deleted.

Next item up on this list is to integrate fluffy's display code, which includes login/logout links.  Very nice.

[EDIT] 

OK, done with that. Next up: recent discussions list, which should be easy enough...

[EDIT]

Actually, that took some debugging. Fluffy's php was hard-coded for FluffyBlog, so I abstracted the hard-coded stuff to allow a bit more flexibility for use in both my blogs.

It's operating in MyMessyWorkbench, just have to port it over to NoMad MaN -- but it's time to head out to my cousins' for xmas dinner...

[EDIT]

Complete!!

Presently listening to:Peter Gabriel & Massive Attack - Games Without Frontiers - Peter Gabriel -  (05:17)&keyword=&mode=music>/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">95@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-21T15:49:55-08:00</dc:date>
</item>
<item>
<title>Changed comment engine from MT default to phpBB bulletin board.</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/changed_comment_engine_from_mt_default_to_phpbb_bulletin_board.php</link>
<description><![CDATA[Just completed phase I of implementing phpBB as the new comment engine for this blog.

If you like the way the commenting facility is implemented on this site, kudos should be forwarded to fluffy, who wrote the tutorial describing how to do it (and added a bit of code to integrate MT and the phpBB forums which do it.)

The tutorial is big and takes numerous steps, but if you follow the instructions explicitly, it'll get you where you're going. I'd misread a step and fluffy was prompt and quite helpful in resolving the issue.

Presently listening to:Damaged Goods - Gang of Four - Entertainment! (03:21)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">76@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-20T17:10:51-08:00</dc:date>
</item>
<item>
<title>Need more glue</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/need_more_glue.php</link>
<description><![CDATA[http://mt-plugins.org/archives/entry/glue.php

Install this plugin to provide "glue" functionality for MTCategoryList and other listing tags (Only MTEntryEntryCategories is empowered by MT to glue entries together.)

Use it to glue the category menu appearing at the top of the Category Index.

[EDIT completed JAN 06 03]

Also made some minor formatting revisions to the category archive.

p.
Presently listening to:Warm Ways - Fleetwood Mac - Fleetwood Mac (03:55)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">74@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-20T16:39:29-08:00</dc:date>
</item>
<item>
<title>Created a Category Archive Index</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/created_a_category_archive_index.php</link>
<description><![CDATA[I created a Category Archive Index template in the Index Templates section. It creates the file http://www.synaptic.bc.ca/NoMadMan/CategoryIndex.html, listing all categories, with their descriptions, and the entries in them. It also uses &lt;a name="..."&gt to create links to anchors within the document, which I use to build a menu bar at the top of the document.  

To do this yourself, create a new index template called CategoryIndex.

Copy the default MasterArchive index template to your new CategoryIndex template.

Insert the code below into CategoryIndex, replacing the &lt;MTArchive&gt; container.


&lt;div align="center"&gt;
&lt;MTCategories glue=" | "&gt;
    &lt;a href="#&lt;$MTCategoryLabel$&gt;"&gt;&lt;$MTCategoryLabel$&gt;&lt;/a&gt;
&lt;/MTCategories&gt;
&lt;/div&gt;
&lt;div&gt;&nbsp;&lt;/div&gt;
&lt;dl&gt;
&lt;MTCategories&gt;
    &lt;dt&gt;&lt;a name="&lt;$MTCategoryLabel$&gt;"&gt;&lt;/a&gt;&lt;a
    href="&lt;$MTCategoryArchiveLink$&gt;"&gt;&lt;h2&gt;&lt;strong&gt;&lt;$MTCategoryLabel$&gt;
    &nbsp;(&lt;$MTCategoryCount$&gt;)&lt;/strong&gt;&lt;/h3&gt;&lt;/a&gt; &lt;/dt&gt;
&lt;dd&gt;&lt;blockquote&gt;&lt;$MTCategoryDescription$&gt;&lt;/blockquote&gt;
    &lt;MTEntries&gt;
        &lt;a href="&lt;$MTEntryLink$&gt;"&gt;&lt;strong&gt;&lt;$MTEntryTitle$&gt;&lt;/strong&gt;&lt;/a&gt;&nbsp;::&nbsp;
        &lt;MTEntryCategories glue=" | "&gt;
        &lt;a href="&lt;$MTCategoryArchiveLink$&gt;"&gt;&lt;em&gt;&lt;$MTCategoryLabel$&gt;
        &lt;/em&gt;&lt;/a&gt; &lt;/MTEntryCategories&gt;&lt;br /&gt;
      &lt;/MTEntries&gt;
    &lt;/dd&gt;
      &lt;br /&gt;&lt;br /&gt;
&lt;/MTCategories&gt;&lt;/div&gt;
&lt;/dl&gt;


When you rebuild, there'll be a new CategoryIndex in your blog root directory. Just add links in your other templates and you're ready to go.

Presently listening to:September Fifteenth - Pat Metheny & Lyle Mays - As Falls Wichita, So Falls Wichita Falls (07:45)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">68@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-18T20:37:40-08:00</dc:date>
</item>
<item>
<title>Got some category stuff up.</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/got_some_category_stuff_up.php</link>
<description><![CDATA[Obviously way too tired to be doing this.  Slooooow. Bleh.

Anyway, finally got some category stuff displaying. Added some links to the header but also made it so the categories an entry is in will display to the right of the entry. Even wrote up a little tutorial for it, uhhh, yah 
categories to display with my entry?">here.

I'll knock off after propagating that code throughout the templates. That oughtta take, oh, another 5 hours!
Presently listening to:Pigs (Three Different Ones) - Pink Floyd - Animals (11:28)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">56@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-16T01:31:22-08:00</dc:date>
</item>
<item>
<title>Q: How can I get the category(ies) to display with my entry?</title>
<link>http://www.synaptic.bc.ca/MyMessyWorkbench/archives/2003/12/q_how_can_i_get_the_categoryies_to_display_with_my_entry.php</link>
<description><![CDATA[How'd I get the "Notebook" category link to display on the same line as the entry title? 

This one's really easy. First, take a look @ The MT Wiki MTCategory page.  You'll get the basics there. And while you're there, bookmark the MT Wiki site -- very useful.

Armed with that little tidbit of knowledge, all I did was find MTEntryTitle tag in my index templates. They looked like


            &lt;h3 class=&quot;title&quot;&gt;&lt;$MTEntryTitle$&gt;&lt;/h3&gt;

I wrapped them in two-cell tables, like this. 


&lt;table width=&quot;100% border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr valign=top&gt;&lt;td&gt;
    &lt;h3 class=&quot;title&quot;&gt;&lt;$MTEntryTitle$&gt;&lt;/h3&gt;
&lt;/td&gt;&lt;td align=right&gt;
    &lt;MTEntryCategories glue=&quot;, &quot;&gt;
        &lt;a href=&quot;&lt;$MTCategoryArchiveLink$&gt;&quot;&gt;&lt;$MTCategoryLabel$&gt;&lt;/a&gt;
    &lt;/MTEntryCategories&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; 


The title is in the left hand cell and the piece of code from MT Wiki is in the right-hand cell. I set that cell to right justify.

No sweat!

p.
Presently listening to:Letter to Hiro - The Vapours -  New Clear Days - (06:23)/" target="_blank">/" target="_blank">" hspace="4" align="right" border="0">&nbsp;

]]>&lt;br /&gt;&lt;br /&gt;</description>
<guid isPermaLink="false">55@http://www.synaptic.bc.ca/MyMessyWorkbench/</guid>
<dc:subject>Too Done List</dc:subject>
<dc:date>2003-12-15T19:52:45-08:00</dc:date>
</item>


</channel>
</rss>
