- Added Google AdSense to the task.html page.

This commit is contained in:
Paul Beckingham 2008-06-07 22:53:18 -04:00
parent e8b7114ce8
commit 90df505982
3 changed files with 632 additions and 573 deletions

View file

@ -13,6 +13,7 @@ represents a feature release, and the 3 represents patch.
space and thus work better on small-screen devices
+ Better formatting of "task tags" output
+ http://www.beckingham.net/task.html home page set up
+ "dateformat" configuration now determines how dates are formatted
1.0.2 (?)

12
adsense.html Normal file
View file

@ -0,0 +1,12 @@
<script type="text/javascript"><!--
google_ad_client = "pub-9709799404235424";
/* Task Main */
google_ad_slot = "8660617875";
google_ad_width = 120;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

154
task.html
View file

@ -118,11 +118,11 @@ body {
font: normal 12px "lucida grande", verdana, arial, helvetica, sans-serif;
}
th {
.table_h {
background-color: #e0e0e0;
}
td {
.table_d {
background-color: #f7f7f7;
}
input,
@ -147,6 +147,11 @@ a img { border: none; padding: 0; margin: 0; }
</div>
<div id="container">
<table>
<tr>
<td>
<div id="content">
<br />
<br />
@ -158,10 +163,7 @@ a img { border: none; padding: 0; margin: 0; }
</p>
<br />
<h2 class="title">
Get the Source Code
</h2>
<h2 class="title">Get the Source Code</h2>
<div class="content">
<p>
Download the latest task source code
@ -171,6 +173,7 @@ a img { border: none; padding: 0; margin: 0; }
<p>
Task has been built and tested on the following configurations:
</p>
<ul>
<li>OS X 10.4 Tiger
@ -181,14 +184,10 @@ a img { border: none; padding: 0; margin: 0; }
<li>Solaris 10
<li>Cygwin 1.5.25-14
</ul>
</p>
</div>
<br />
<h2 class="title">
Task Program Tutorial
</h2>
<h2 class="title">Task Program Tutorial</h2>
<div class="content">
<p>
This guide shows how to quickly set up the task program, and become
@ -197,15 +196,12 @@ a img { border: none; padding: 0; margin: 0; }
</div>
<br />
<h2 class="title">
<a name="setup">Quick Setup<a>
</h2>
<h2 class="title"><a name="setup">Quick Setup</a></h2>
<div class="content">
<p>
Build the task program according to the directions in the INSTALL
file. This transcript illustrates a typical installation:
<p>
</p>
<pre><code>% ls
task-1.1.0.tar.gz
@ -227,7 +223,7 @@ task-1.1.0.tar.gz
<p>
You need to make sure that the installed task program is in your
PATH environment variable.
<p>
</p>
<p>
Task reads a configuration file - called .taskrc in your home
@ -253,10 +249,7 @@ Done.
</div>
<br />
<h2 class="title">
<a name="simple">Simple Usage</a>
</h2>
<h2 class="title"><a name="simple">Simple Usage</a></h2>
<div class="content">
<p>
Let us begin by adding some tasks:
@ -293,7 +286,7 @@ Permanently delete task? (y/n) y</code></pre>
<p>
Task wants you to confirm deletions. To remove the confirmation,
edit your .taskrc file and change the line:
<p>
</p>
<pre><code>confirmation=yes</code></pre>
@ -480,10 +473,7 @@ ID Project Pri Due Active Age Description
</div>
<br />
<h2 class="title">
<a name="advanced">Advanced Usage</a>
</h2>
<h2 class="title"><a name="advanced">Advanced Usage</a></h2>
<div class="content">
<p>
Here are the other commands, in some detail.
@ -744,10 +734,7 @@ ID Project Pri Description
</div>
<br />
<h2 class="title">
<a name="shell">Interacting with the Shell</a>
</h2>
<h2 class="title"><a name="shell">Interacting with the Shell</a></h2>
<div class="content">
<p>
Certain characters are interpreted by the shell. For example, the
@ -828,10 +815,7 @@ on_white on_bright_white</code></pre>
</div>
<br />
<h2 class="title">
<a name="config">Configuring Task</a>
</h2>
<h2 class="title"><a name="config">Configuring Task</a></h2>
<div class="content">
<p>
Task recognizes several entries in the .taskrc file for
@ -912,13 +896,41 @@ on_white on_bright_white</code></pre>
The string should contain the characters:
<table>
<tr> <th>Character</th> <th>Meaning</th> <th>Example</th> </tr>
<tr> <td>m</td> <td>minimal-digit month</td> <td>1, 12</td> </tr>
<tr> <td>d</td> <td>minimal-digit day</td> <td>1, 30</td> </tr>
<tr> <td>y</td> <td>two-digit year</td> <td>08</td> </tr>
<tr> <td>M</td> <td>two-digit month</td> <td>01, 12</td> </tr>
<tr> <td>D</td> <td>two-digit day</td> <td>01, 30</td> </tr>
<tr> <td>Y</td> <td>four-digit year</td> <td>2008</td> </tr>
<tr>
<th class="table_h">Character</th>
<th class="table_h">Meaning</th>
<th class="table_h">Example</th>
</tr>
<tr>
<td class="table_d">m</td>
<td class="table_d">minimal-digit month</td>
<td class="table_d">1, 12</td>
</tr>
<tr>
<td class="table_d">d</td>
<td class="table_d">minimal-digit day</td>
<td class="table_d">1, 30</td>
</tr>
<tr>
<td class="table_d">y</td>
<td class="table_d">two-digit year</td>
<td class="table_d">08</td>
</tr>
<tr>
<td class="table_d">M</td>
<td class="table_d">two-digit month</td>
<td class="table_d">01, 12</td>
</tr>
<tr>
<td class="table_d">D</td>
<td class="table_d">two-digit day</td>
<td class="table_d">01, 30</td>
</tr>
<tr>
<td class="table_d">Y</td>
<td class="table_d">four-digit year</td>
<td class="table_d">2008</td>
</tr>
</table>
</p>
@ -929,10 +941,22 @@ on_white on_bright_white</code></pre>
<p>
<table>
<tr> <th>dateformat</td> <th>How it looks</th> </tr>
<tr> <td>d/m/Y</td> <td>7/6/2008</td> </tr>
<tr> <td>YMD</td> <td>20080607</td> </tr>
<tr> <td>m-d-y</td> <td>6-7-08</td> </tr>
<tr>
<th class="table_h">dateformat</td>
<th class="table_h">How it looks</th>
</tr>
<tr>
<td class="table_d">d/m/Y</td>
<td class="table_d">7/6/2008</td>
</tr>
<tr>
<td class="table_d">YMD</td>
<td class="table_d">20080607</td>
</tr>
<tr>
<td class="table_d">m-d-y</td>
<td class="table_d">6-7-08</td>
</tr>
</table>
</p>
<dd>
@ -976,14 +1000,10 @@ on_white on_bright_white</code></pre>
<dd>
Colors any task where the description contains X.
</dd>
</div>
<br />
<h2 class="title">
<a name="color">Colors</a>
</h2>
<h2 class="title"><a name="color">Colors</a></h2>
<div class="content">
<p>
Task supports color in several places. In cases where you may
@ -1017,10 +1037,7 @@ on_white on_bright_white</code></pre>
</div>
<br />
<h2 class="title">
<a name="usage">Command Usage<a>
</h2>
<h2 class="title"><a name="usage">Command Usage<a></h2>
<div class="content">
<pre><code>task add [tags] [attrs] desc...
task list [tags] [attrs] desc...
@ -1081,6 +1098,35 @@ Many characters have special meaning to the shell, including:
</div>
</div>
</td>
<td align="right" valign="top" width="200px">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9709799404235424";
/* Task Main */
google_ad_slot = "8660617875";
google_ad_width = 120;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td>
</tr>
</table>
</div>
</body>
</html>