<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title>PmWiki | Main / Logbook</title><meta http-equiv="Content-Style-Type" content="text/css"><link rel="stylesheet" href="Logbook%20errors_files/pmwiki.css" type="text/css"><style type="text/css"><!--
  ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
  code.escaped { white-space: nowrap; }
  .vspace { margin-top:1.33em; }
  .indent { margin-left:40px; }
  .outdent { margin-left:40px; text-indent:-40px; }
  a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
  a.createlink { text-decoration:none; position:relative; top:-0.5em;
    font-weight:bold; font-size:smaller; border-bottom:none; }
  img { border:0px; }
  .editconflict { color:green; 
  font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }

  table.markup { border:2px dotted #ccf; width:90%; }
  td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
  table.vert td.markup1 { border-bottom:1px solid #ccf; }
  table.horiz td.markup1 { width:23em; border-right:1px solid #ccf; }
  table.markup caption { text-align:left; }
  div.faq p, div.faq pre { margin-left:2em; }
  div.faq p.question { margin:1em 0 0.75em 0; font-weight:bold; }
   
    .frame 
      { border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
    .lfloat { float:left; margin-right:0.5em; }
    .rfloat { float:right; margin-left:0.5em; }
a.varlink { text-decoration:none; }

--></style><link rel="stylesheet" href="Logbook%20errors_files/wikilog.css" type="text/css"><meta name="robots" content="index,follow"></head><body>\n";

/* Change in v 0.5 let's go AJAX loading the excellent Mochikit and logbook.js if $LogbookEnbaleAJAX (set in local/config.php)*/

if ($LogbookEnableAJAX) {
      $return.="

                        <script language="javascript" src="Logbook%20errors_files/js.js"></script>

<script type="text/javascript" src="Logbook%20errors_files/MochiKit.htm">
</script>\n
<script type="text/javascript" src="Logbook%20errors_files/logbook.htm">
</script>\n";
}

    $return.="<div id="logbook">\n\n";

/* Change in v 0.4 to allow for language support in naming months*/

    $month=$LogbookMonths[date("n",$time)-1]." ".date("y",$time);

/* Chaneg in v 0.5 $fmt in MakeLink to include class='async' in A tag */

    $return.="\n";
    foreach($LogbookDays as $day) {
        $return.="\n";
    }
    $return.="\n";
/* Generation of the calendar table as such. $week is used to keep
track of how many weeks are covered by the month displayed and know
when to change line (row). */ $week=1;
/* while loop increasing $week by 1 as long as $acc is lower than the
number of days in the displayed month. */
/* &lt;= bug fix in 0.6 */ while($acc&lt;=$max_day) { $return.="\n";
/* There are 7 days in a week. If the accumulator is positive or null
i.e. we are at least on the first day of the month, and less or equal
to the number of days in the month i.e. not past the last day, we
display $cell (the accumulator with a leading 0 when required)
otherwise and empty cell. For every day in the displayed month check if
an entry exist. Entries are stored in $WorkDir under the name
$LogbookGroup.YYYYMMDD where YYYYMMDD is $log_month$acc. */
for($day=1;$day&lt;=7;$day++) { if ($acc&gt;0 and $acc&lt;=$max_day) {
$class="";
/* Change in version 0.2 to pad days bellow 10 with a 0 for date format
consistency (YYYYMMDD). */ $cell=$acc; if ($acc&lt;10) { $cell="0$acc";
}
/* Change in version 0.2 to deal with non CleanUrl installation using
PmWiki pre-defined function MakeLink which automatically generate the
appropriate html code for a given installation. */
$file="$WorkDir/$LogbookGroup.$log_month$cell"; if (file_exists($file))
{ $class="exists "; $cell=MakeLink($pagename,
"$LogbookGroup/$log_month$cell", $cell); } else if ($LogbookNewPost) {
/* Change in version 0.3 if $LogbookNewPost is set to True in
local/config.php links to create a new document appear in the calendar.
*/ $cell=MakeLink($pagename, "$LogbookGroup/$log_month$cell", $cell,"",
$fmt="<a href="http://localhost/www/pmwiki-2.2.0-beta/%5C$PageUrl?action=edit" class="newpost">\$LinkText</a>"
                          );
                }

/* Change in version 0.4 to make todays day more visible following Daniel's Request */

                if ($acc==date("d")&amp;&amp;($log_month==date("Ym"))) {
                    $class.="today ";
                }

                $return.="\n";
            } else {
                $return.="\n";
            }
            $acc++;
        }
        $return.="\n";
        $week++;
    }

/* We are done, closing the table tag and the div tag (which is CSS related). */

    $return.="<table><caption>".
              MakeLink($pagename,
                       $pagename,
                       '[-]','',
                       $fmt="<a class="async" href="http://localhost/www/pmwiki-2.2.0-beta/%5C$PageUrl?log_month=$prev">\$LinkText</a>").
              "<span class="month">$month</span>".
              MakeLink($pagename,
                       $pagename,
                       '[+]','',
                       $fmt="<a class="async" href="http://localhost/www/pmwiki-2.2.0-beta/%5C$PageUrl?log_month=$next">\$LinkText</a>"
);
/* The first row contains the days of the week as showing in $Days.
foreach is a very useful function, this is one of the 2 ways of using
it. */ $return.="</caption><tbody><tr><th>$day</th></tr><tr><td class="$class">$cell</td><td>&nbsp;</td></tr></tbody></table>\n</div>\n";
return $return;
}
function ajax() {
/* Change in v 0.5. Basically a repeat of logbook() but without all the
PmWiki helpers that are unfortunately unavailable when logbook.php is
called outside of PmWiki i.e. not as an include. This function requires
some minor user tweaking to get efficient AJAX support. */ global
$PubDirUrl,$WorkDir,$pagename,
$LogbookGroup,$LogbookDays,$LogbookMonths,$LogbookNewPost,
$LogbookEnableAJAX; if ($log_month=$_GET['log_month']) {
$time=strtotime($log_month."01"); $_SESSION['log_month']=$log_month; }
elseif ($log_month=$_SESSION['log_month']) {
$time=strtotime($log_month."01"); } else { $time=time();
$log_month=date("Ym"); } $prev=date("Ym",strtotime("-1 month",$time));
$next=date("Ym",strtotime("+1 month",$time));
$offset=date("w",strtotime("1 ".date("F Y",$time)))-1; if
($offset&lt;0) $offset=6; $max_day=date("t",$time); $acc=-$offset+1;
$month=$LogbookMonths[date("n",$time)-1]." ".date("y",$time); $return="\n";
    $return.="";                 
    $return.="\n";
    foreach($LogbookDays as $day) {
        $return.="\n";
    }
    $return.="\n";

    $week=1;

    while($acc&lt;=$max_day) {
        $return.="\n";
for($day=1;$day&lt;=7;$day++) { if ($acc&gt;0 and $acc&lt;=$max_day) {
$class=""; $cell=$acc; if ($acc&lt;10) { $cell="0$acc"; }
/* TWEAK check the path from cookbook/logbook.php to your $WorkDir and
set $file accordingly. Usually ../ before $WorkDir. */
$file="../$WorkDir/$LogbookGroup.$log_month$cell"; if
(file_exists($file)) { $class="exists ";
/* TWEAK we can't use MakeLink so you must know what your URLs look
like and modify the href accordingly (usually
?n=$LogbookGroup.$log_month$cell or for CleanUrl
/$LogbookGroup/$log_month$cell */ $cell="<a href="http://localhost/$LogbookGroup/$log_month$cell">$cell</a>";
} else if ($LogbookNewPost) {
/* TWEAK we can't use MakeLink so you must know what your URLs look
like and modify the href accordingly (usually
?n=$LogbookGroup.$log_month$cell&amp;action=edit or for CleanUrl
/$LogbookGroup/$log_month$cell?action=edit */ $cell="<a href="http://localhost/$LogbookGroup/$log_month$cell?action=edit">$cell</a>";
                }
                if ($acc==date("d")&amp;&amp;($log_month==date("Ym"))) {
                    $class.="today ";
                }

                $return.="\n";
            } else {
                $return.="\n";
            }
            $acc++;
        }
        $return.="\n";
        $week++;
    }

    $return.="<table><caption><a class="async" href='javascript:logbookShow(\"$prev\")'>[-]</a>".
             "<span class="month">$month</span>".
             "<a class="async" href='javascript:logbookShow(\"$next\")'>[+]</a></caption><tbody><tr><th>$day</th></tr><tr><td class="$class">$cell</td><td>&nbsp;</td></tr></tbody></table>\n\n";

    return $return;
}

?&gt;<br>
<font size="1"><table border="1" cellpadding="1" cellspacing="0">
<tbody><tr><th colspan="5" align="left" bgcolor="#f57900"><span style="background-color: rgb(204, 0, 0); color: rgb(252, 233, 79); font-size: x-large;">( ! )</span>
Warning: Cannot modify header information - headers already sent by
(output started at
C:\wwwroot\www\pmwiki-2.2.0-beta\cookbook\logbook.php:74) in
C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php on line <i>1031</i></th></tr>
<tr><th colspan="5" align="left" bgcolor="#e9b96e">Call Stack</th></tr>
<tr><th align="center" bgcolor="#eeeeec">#</th><th align="left" bgcolor="#eeeeec">Time</th><th align="left" bgcolor="#eeeeec">Memory</th><th align="left" bgcolor="#eeeeec">Function</th><th align="left" bgcolor="#eeeeec">Location</th></tr>
<tr><td align="center" bgcolor="#eeeeec">1</td><td align="center" bgcolor="#eeeeec">0.0557</td><td align="right" bgcolor="#eeeeec">1835008</td><td bgcolor="#eeeeec">{main}(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>0</td></tr>
<tr><td align="center" bgcolor="#eeeeec">2</td><td align="center" bgcolor="#eeeeec">0.6857</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">HandleDispatch(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>342</td></tr>
<tr><td align="center" bgcolor="#eeeeec">3</td><td align="center" bgcolor="#eeeeec">0.6858</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">HandleBrowse(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>355</td></tr>
<tr><td align="center" bgcolor="#eeeeec">4</td><td align="center" bgcolor="#eeeeec">0.8569</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">PrintFmt(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>1505</td></tr>
<tr><td align="center" bgcolor="#eeeeec">5</td><td align="center" bgcolor="#eeeeec">0.8571</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">PrintFmt(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>1029</td></tr>
<tr><td align="center" bgcolor="#eeeeec">6</td><td align="center" bgcolor="#eeeeec">0.8575</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">PrintSkin(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>1038</td></tr>
<tr><td align="center" bgcolor="#eeeeec">7</td><td align="center" bgcolor="#eeeeec">0.8575</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec">PrintFmt(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\scripts\skins.php" bgcolor="#eeeeec">..(null)<b>:</b>142</td></tr>
<tr><td align="center" bgcolor="#eeeeec">8</td><td align="center" bgcolor="#eeeeec">0.8576</td><td align="right" bgcolor="#eeeeec">3670016</td><td bgcolor="#eeeeec"><a href="http://www.php.net/header" target="_new">header</a>
(  )</td><td title="C:\wwwroot\www\pmwiki-2.2.0-beta\pmwiki.php" bgcolor="#eeeeec">..(null)<b>:</b>1031</td></tr>
<tr><th colspan="5" align="left" bgcolor="#e9b96e">Variables in local scope (#7)</th></tr>
<tr><td bgcolor="#eeeeec">$filelist</td><td colspan="4" bgcolor="#eeeeec"><i>Undefined</i></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$f&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><small>string</small> <font color="#cc0000">'local/localmap.txt'</font> <i>(length=18)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$FmtV&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre>&amp;
<b>array</b>
  '$PageText' <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'&lt;p&gt;(:logbook:)
&lt;/p&gt;
'</font> <i>(length=20)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$h&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><small>string</small> <font color="#cc0000">'Expires: Tue, 01 Jan 2002 00:00:00 GMT'</font> <i>(length=38)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$HTTPHeaders&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre>&amp;
<b>array</b>
  0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Expires: Tue, 01 Jan 2002 00:00:00 GMT'</font> <i>(length=38)</i>
  1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Cache-Control: no-store, no-cache, must-revalidate'</font> <i>(length=50)</i>
  2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Content-type: text/html; charset=ISO-8859-1;'</font> <i>(length=44)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$pagename&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><small>string</small> <font color="#cc0000">'Main.Logbook'</font> <i>(length=12)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$match&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><b>array</b>
  0 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'PmWiki:                http://www.pmwiki.org/wiki/PmWiki/'</font> <i>(length=43)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'PmWiki:'</font> <i>(length=7)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.pmwiki.org/wiki/PmWiki/'</font> <i>(length=34)</i>
  1 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Cookbook:        http://www.pmwiki.org/wiki/Cookbook/'</font> <i>(length=46)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Cookbook:'</font> <i>(length=9)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.pmwiki.org/wiki/Cookbook/'</font> <i>(length=36)</i>
  2 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Wiki:                http://www.c2.com/cgi/wiki?'</font> <i>(length=34)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Wiki:'</font> <i>(length=5)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.c2.com/cgi/wiki?'</font> <i>(length=27)</i>
  3 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'UseMod:                http://www.usemod.com/cgi-bin/wiki.pl?'</font> <i>(length=47)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'UseMod:'</font> <i>(length=7)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.usemod.com/cgi-bin/wiki.pl?'</font> <i>(length=38)</i>
  4 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Meatball:        http://www.usemod.com/cgi-bin/mb.pl?'</font> <i>(length=46)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Meatball:'</font> <i>(length=9)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.usemod.com/cgi-bin/mb.pl?'</font> <i>(length=36)</i>
  5 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Wikipedia:        http://www.wikipedia.com/wiki/'</font> <i>(length=41)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Wikipedia:'</font> <i>(length=10)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.wikipedia.com/wiki/'</font> <i>(length=30)</i>
  6 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'PITS:                http://www.pmwiki.org/PITS/'</font> <i>(length=34)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'PITS:'</font> <i>(length=5)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'http://www.pmwiki.org/PITS/'</font> <i>(length=27)</i>
  7 <font color="#888a85">=&gt;</font> 
    <b>array</b>
      0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Path:            '</font> <i>(length=17)</i>
      1 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'Path:'</font> <i>(length=5)</i>
      2 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">''</font> <i>(length=0)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$fmt&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><small>string</small> <font color="#cc0000">'headers:'</font> <i>(length=8)</i>
</pre></td></tr>
<tr><td colspan="2" align="right" bgcolor="#eeeeec" valign="top"><pre>$x&nbsp;=</pre></td><td colspan="4" bgcolor="#eeeeec"><pre><b>array</b>
  0 <font color="#888a85">=&gt;</font> <small>string</small> <font color="#cc0000">'pmwiki'</font> <i>(length=6)</i>
</pre></td></tr>
</tbody></table></font>



  
  
  
  <!--HTMLHeader-->  


<!--PageHeaderFmt-->
  <div id="wikilogo"><a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php"><img src="Logbook%20errors_files/pmwiki-32.gif" alt="PmWiki" border="0"></a></div>
  <div id="wikihead">
  <form action="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php">
    <span class="headnav"><a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.RecentChanges" accesskey="c">Recent Changes</a> -</span>
    <input name="n" value="Main.Logbook" type="hidden">
    <input name="action" value="search" type="hidden">
    <a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Site.Search">Search</a>:
    <input name="q" value="" class="inputbox searchbox" type="text">
    <input class="inputbutton searchbutton" value="Go" type="submit"></form></div>
<!--/PageHeaderFmt-->
  <table id="wikimid" cellpadding="0" cellspacing="0" width="100%"><tbody><tr>
<!--PageLeftFmt-->
      <td id="wikileft" valign="top">
        <ul><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.HomePage">HomePage</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.WikiSandbox">WikiSandbox</a>
</li></ul><p class="vspace sidehead"> <a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.PmWiki">PmWiki</a>
</p><ul><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.InitialSetupTasks">Initial Setup Tasks</a>  
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.BasicEditing">Basic Editing</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.DocumentationIndex">Documentation Index</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.FAQ">PmWiki FAQ</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.PmWikiPhilosophy">PmWikiPhilosophy</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.ReleaseNotes">Release Notes</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.ChangeLog">ChangeLog</a>
</li></ul><p class="vspace sidehead"> <a class="urllink" href="http://www.pmwiki.org/" rel="nofollow">pmwiki.org</a>
</p><ul><li><a class="urllink" href="http://www.pmwiki.org/wiki/Cookbook/CookbookBasics" rel="nofollow">Cookbook (addons)</a>
</li><li><a class="urllink" href="http://www.pmwiki.org/wiki/Cookbook/Skins" rel="nofollow">Skins (themes)</a>
</li><li><a class="urllink" href="http://www.pmwiki.org/PITS/PITS" rel="nofollow">PITS (issue tracking)</a>
</li><li><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=PmWiki.MailingLists">Mailing Lists</a>
</li></ul><p class="vspace" style="text-align: right;"> <span style="font-size: 83%;"><a class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Site.SideBar?action=edit">edit SideBar</a></span>
</p>
</td>
<!--/PageLeftFmt-->
      <td id="wikibody" valign="top">
<!--PageActionFmt-->
        <div id="wikicmds"><ul><li class="browse"><a accesskey="" class="selflink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook">View</a>
</li><li class="edit"><a accesskey="e" rel="nofollow" class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=edit">Edit</a>
</li><li class="diff"><a accesskey="h" rel="nofollow" class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=diff">History</a>
</li><li class="print"><a accesskey="" rel="nofollow" class="wikilink" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=print">Print</a>
</li></ul>
</div>
<!--PageTitleFmt-->
        <div id="wikititle">
          <div class="pagegroup"><a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main">Main</a> /</div>
          <h1 class="pagetitle">Logbook</h1></div>
<!--PageText-->
<div id="wikitext">
<p>(:logbook:)
</p>
</div>

      </td>
    </tr></tbody></table>
<!--PageFooterFmt-->
  <div id="wikifoot">
    <div class="footnav">
      <a rel="nofollow" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=edit">Edit</a> -
      <a rel="nofollow" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=diff">History</a> -
      <a rel="nofollow" href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.Logbook?action=print" target="_blank">Print</a> -
      <a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Main.RecentChanges">Recent Changes</a> -
      <a href="http://localhost/www/pmwiki-2.2.0-beta/pmwiki.php?n=Site.Search">Search</a></div>
    <div class="lastmod">Page last modified on May 23, 2007, at 01:43 PM</div></div>
<!--HTMLFooter-->
<script language="javascript">postamble();</script>
</body></html>