[Winpt-commits] r363 - trunk/doc/website

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Dec 5 20:29:38 CET 2011


Author: twoaday
Date: 2011-12-05 20:29:38 +0100 (Mon, 05 Dec 2011)
New Revision: 363

Modified:
   trunk/doc/website/ChangeLog
   trunk/doc/website/bugs.html.in
   trunk/doc/website/contact.html.in
   trunk/doc/website/development.html.in
   trunk/doc/website/download.html.in
   trunk/doc/website/index.html.in
   trunk/doc/website/mailinglist.html.in
   trunk/doc/website/related.html.in
   trunk/doc/website/screenshots.html.in
Log:
2011-12-05  Timo Schulz <woaday at gmx.net>

        * Use a simple template engine to be DRY.
	


Modified: trunk/doc/website/ChangeLog
===================================================================
--- trunk/doc/website/ChangeLog	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/ChangeLog	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,3 +1,7 @@
+2011-12-05  Timo Schulz <woaday at gmx.net>
+
+	* Use a simple template engine to be DRY.
+
 2011-12-03  Timo Schulz <twoaday at gmx.net>
 
         * Use a single stylsheet file.

Modified: trunk/doc/website/bugs.html.in
===================================================================
--- trunk/doc/website/bugs.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/bugs.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,9 +1,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Windows Privacy Tray - WinPT</title>
- <link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
@@ -11,33 +9,38 @@
   <tr>
     <td align="left" valign="middle" bgcolor="#FFFFCC">
      <span class="style1">
-      <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
-       WinPT - A Free Graphical Front-End for GnuPG
+      <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" />
+      {{title}}
      </span>
     </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">
       <tr>
-        <td width="150" align="left" valign="top" bgcolor="#FFFFCC">
+        <td align="left" valign="top" bgcolor="#FFFFCC">
 	  <p class="extra">
 	  {{navbar}}
           </p>          
 	</td>
         <td align="left" valign="top"> 
-	  <p class="style2">WinPT has a special &quot;bug tracker&quot; for keeping information about bugs and problems. 
-	  Basically it is a database to store information about problems.
+	  <p class="style2">
+	   WinPT has a special &quot;bug tracker&quot; 
+	   for keeping information about bugs and problems. 
+	   Basically it is a database to store information about problems.
 	  </p>
 	  
-	  <p class="style2"> If you use WinPT and discover an error, please take a moment to submit 
-	  a little report to the bug tracker, but please also check that the bug is not already listed there.
-	  This will allow us to deal with the issue far more quickly. Please provide much 
-	  information as possible for better reproducibility. <br/>
-	  This includes your OS type, which program versions you use, the local gpg config 
-	  and maybe even public key information if needed.
+	  <p class="style2">
+	   If you use WinPT and discover an error, please take a moment to submit 
+	   a little report to the bug tracker, but please also check that the bug is not already listed there.
+	   This will allow us to deal with the issue far more quickly. Please provide much 
+	   information as possible for better reproducibility. <br/>
+	   This includes your OS type, which program versions you use, the local gpg config 
+	   and maybe even public key information if needed.
 	  </p>
           <p class="style2">
-	   [ <a href="http://wald.intevation.org/tracker/?atid=138&amp;group_id=14&amp;func=browse" target="_blank">Submit a problem to the bug tracker</a>. ] 
+	   [ <a href="http://wald.intevation.org/tracker/?atid=138&amp;group_id=14&amp;func=browse" target="_blank">
+	     Submit a problem to the bug tracker
+	    </a>. ]
 	  </p>
           <p>
 	   &nbsp;

Modified: trunk/doc/website/contact.html.in
===================================================================
--- trunk/doc/website/contact.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/contact.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,16 +1,17 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Windows Privacy Tray - WinPT</title>
- <link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
     <td align="left" valign="middle" bgcolor="#FFFFCC">
-     <span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+     <span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" />
+     {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">

Modified: trunk/doc/website/development.html.in
===================================================================
--- trunk/doc/website/development.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/development.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,20 +1,22 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>Windows Privacy Tray - WinPT</title>
-<link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
-    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+    <td align="left" valign="middle" bgcolor="#FFFFCC">
+     <span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
+     {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">
       <tr>
-        <td width="150" align="left" valign="top" bgcolor="#FFFFCC">
+        <td align="left" valign="top" bgcolor="#FFFFCC">
 	  <p class="extra">
 	  {{navbar}}
           </p>          

Modified: trunk/doc/website/download.html.in
===================================================================
--- trunk/doc/website/download.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/download.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,21 +1,22 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>Windows Privacy Tray - WinPT</title>
-<link rel="stylesheet" href="winpt-style.css">
-
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
-    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+    <td align="left" valign="middle" bgcolor="#FFFFCC">
+     <span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
+      {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">
       <tr>
-        <td width="150" align="left" valign="top" bgcolor="#FFFFCC">
+        <td align="left" valign="top" bgcolor="#FFFFCC">
 	 <p class="extra">
 	  {{navbar}}
          </p> 

Modified: trunk/doc/website/index.html.in
===================================================================
--- trunk/doc/website/index.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/index.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -2,10 +2,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="keywords" content="WinPT Encryption Public-Key Privacy PGP GPG GnuPG Crypto Tray Taskbar OpenPGP Frontend Shell">
-<title>Windows Privacy Tray - WinPT</title>
-<link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
@@ -14,7 +11,7 @@
     <td align="left" valign="middle" bgcolor="#FFFFCC">
     <span class="style1">
      <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" />
-     WinPT - A Free Graphical Windows Front-End for GnuPG
+     {{title}}
     </span>
     </td>
   </tr>
@@ -29,25 +26,29 @@
         <td align="left" valign="top">
 		
 	<p class="style2">
-	WinPT is a taskbar front-end for GnuPG which includes key 
-	management, encryption via the clipboard, direct file 
-	encryption and support for OpenPGP smartcards.
+	 WinPT is a taskbar front-end for GnuPG which includes key 
+	 management, encryption via the clipboard, direct file 
+	 encryption and support for OpenPGP smartcards.
 	</p>
 	
 	<p class="style2">
-	WinPT is designed to make life easier for people who want encryption, 
-	and to make security less daunting for people who are new to securing 
-	data. </p>
+	 WinPT is designed to make life easier for people who want encryption, 
+	 and to make security less daunting for people who are new to securing 
+	 data. 
+        </p>
 	
 	<p class="style4">
-	The latest version of WinPT is 1.5.0. You can download it 
-	from <a href="download.html">here</a>.</p>
+	 The latest version of WinPT is 1.5.0. You can download it 
+	 from <a href="download.html">here</a>.
+	</p>
 	
 	<p class="style3">
-	{{license}}
+	 {{license}}
 	</p>
 
-	<p>&nbsp;</p>
+	<p>
+	 &nbsp;
+	</p>
 	</td>
       </tr>
     </table>

Modified: trunk/doc/website/mailinglist.html.in
===================================================================
--- trunk/doc/website/mailinglist.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/mailinglist.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,15 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>Windows Privacy Tray - WinPT</title>
-<link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
-    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+    <td align="left" valign="middle" bgcolor="#FFFFCC">
+    <span class="style1">
+     <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
+      {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">
@@ -19,19 +22,28 @@
 	  {{navbar}}
           </p>          
 	 </td>
-        <td align="left" valign="top"> <p class="style2">WinPT has three mailing lists. They are the idea place to get information about WinPT, to keep in touch with the community, and to give support to the development of this software. </p>
-          <ul>
-            <li class="style2">WinPT user discussions. [ <a href="http://lists.wald.intevation.org/mailman/listinfo/winpt-users" target="_blank">Subscribe</a> ] [ <a href="http://lists.wald.intevation.org/pipermail/winpt-users/" target="_blank">Archive</a> ] <br />
-            A mailing list for general questions and discussions about WinPT. </li>
-	    <!--
-            <li class="style2">WinPT developer discussions. [ <a href="http://lists.wald.intevation.org/mailman/listinfo/winpt-devel" target="_blank">Subscribe</a> ] [ <a href="http://lists.wald.intevation.org/pipermail/winpt-devel/" target="_blank">Archive</a> ] <br />
-            A mailing list for discussions centred around developments. </li>
-	    -->
+        <td align="left" valign="top"> 
+	 <p class="style2">
+	  WinPT has three mailing lists. They are the idea place to get information about 
+	  WinPT, to keep in touch with the community, and to give support to the 
+	  development of this software. 
+	 </p>
+         <ul>
+            <li class="style2">
+	     WinPT user discussions. [ <a href="http://lists.wald.intevation.org/mailman/listinfo/winpt-users" target="_blank">Subscribe</a> ] [ <a href="http://lists.wald.intevation.org/pipermail/winpt-users/" target="_blank">Archive</a> ] 
+	     <br />
+             A mailing list for general questions and discussions about WinPT. 
+	    </li>
 	    
-            <li class="style2">CVS commits. [ <a href="http://lists.wald.intevation.org/mailman/listinfo/winpt-commits" target="_blank">Subscribe</a> ] [ <a href="http://lists.wald.intevation.org/pipermail/winpt-commits/" target="_blank">Archive</a> ] <br />
-            A mailing list to keep people up-to-date with changes to the development source code. </li>
+            <li class="style2">
+	     CVS commits. [ <a href="http://lists.wald.intevation.org/mailman/listinfo/winpt-commits" target="_blank">Subscribe</a> ] 
+	     [ <a href="http://lists.wald.intevation.org/pipermail/winpt-commits/" target="_blank">Archive</a> ] 
+	     <br />
+             A mailing list to keep people up-to-date with changes to the development source code. 
+	   </li>
           </ul>          
-          <p>&nbsp;</p>          </td>
+          <p>&nbsp;</p>
+        </td>
       </tr>
     </table></td>
   </tr>

Modified: trunk/doc/website/related.html.in
===================================================================
--- trunk/doc/website/related.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/related.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,15 +1,18 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<link rel="stylesheet" href="winpt-style.css">
-<title>WinPT - Related Projects</title>
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
-    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+    <td align="left" valign="middle" bgcolor="#FFFFCC">
+     <span class="style1">
+      <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
+      {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td><table border="0" cellspacing="0" cellpadding="3">

Modified: trunk/doc/website/screenshots.html.in
===================================================================
--- trunk/doc/website/screenshots.html.in	2011-12-05 19:28:45 UTC (rev 362)
+++ trunk/doc/website/screenshots.html.in	2011-12-05 19:29:38 UTC (rev 363)
@@ -1,15 +1,17 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>Windows Privacy Tray - WinPT</title>
-<link rel="stylesheet" href="winpt-style.css">
+ {{head}}
 </head>
 
 <body>
 <table border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
-    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1"><img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> WinPT - A Free Graphical Front-End for GnuPG</span></td>
+    <td align="left" valign="middle" bgcolor="#FFFFCC"><span class="style1">
+     <img src="images/winpt-logo-3.png" alt="GnuPG Logo" width="120" height="115" border="0" align="middle" /> 
+      {{title}}
+     </span>
+    </td>
   </tr>
   <tr>
     <td>



More information about the Winpt-commits mailing list