[evolvis-commits] r6834: mechanical fixes of · to space and <br>, <BR>, <hr> to XHTML↵

mirabilos at evolvis.org mirabilos at evolvis.org
Tue Jul 27 17:26:50 CEST 2010


Author: mirabilos
Date: 2010-07-27 17:26:50 +0200 (Tue, 27 Jul 2010)
New Revision: 6834

Modified:
   trunk/gforge_base/evolvisforge/gforge/common/include/TextSanitizer.class.php
   trunk/gforge_base/evolvisforge/gforge/docs/debian-guide.html
   trunk/gforge_base/evolvisforge/gforge/docs/debian-installguidefornewbies.html
   trunk/gforge_base/evolvisforge/gforge/docs/docbook/docbook/contribution_guide/include/templating.xml
   trunk/gforge_base/evolvisforge/gforge/docs/gforge-themes-HOWTO.html
   trunk/gforge_base/evolvisforge/gforge/docs/migrating-to-gforge-HOWTO.html
   trunk/gforge_base/evolvisforge/gforge/plugins/helloworld/www/index.php
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/diff.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/branch.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/view_tag.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log_table.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/markup.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query.ezt
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query_results.ezt
   trunk/gforge_base/evolvisforge/gforge/www/account/login.php
   trunk/gforge_base/evolvisforge/gforge/www/admin/configman.php
   trunk/gforge_base/evolvisforge/gforge/www/admin/passedit.php
   trunk/gforge_base/evolvisforge/gforge/www/admin/useredit.php
   trunk/gforge_base/evolvisforge/gforge/www/docman/doceditor.php
   trunk/gforge_base/evolvisforge/gforge/www/docman/include/vtemplate.class.php
   trunk/gforge_base/evolvisforge/gforge/www/docman/index.php
   trunk/gforge_base/evolvisforge/gforge/www/docman/new.php
   trunk/gforge_base/evolvisforge/gforge/www/export/rss20_activity.php
   trunk/gforge_base/evolvisforge/gforge/www/forum/admin/ForumAdmin.class.php
   trunk/gforge_base/evolvisforge/gforge/www/forum/admin/index.php
   trunk/gforge_base/evolvisforge/gforge/www/forum/attachment.php
   trunk/gforge_base/evolvisforge/gforge/www/forum/forum.php
   trunk/gforge_base/evolvisforge/gforge/www/forum/include/ForumHTML.class.php
   trunk/gforge_base/evolvisforge/gforge/www/include/Layout.class.php
   trunk/gforge_base/evolvisforge/gforge/www/jscook/JSCookTree.js
   trunk/gforge_base/evolvisforge/gforge/www/pm/browse_task.php
   trunk/gforge_base/evolvisforge/gforge/www/pm/task.php
   trunk/gforge_base/evolvisforge/gforge/www/project/request.php
   trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/vclib/ccvs/__init__.py
   trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/viewvc.py
   trunk/gforge_base/evolvisforge/gforge/www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php
   trunk/gforge_base/evolvisforge/gforge/www/soap/nusoap.php
   trunk/gforge_base/evolvisforge/gforge/www/survey/include/SurveyHTML.class.php
   trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber-minimized.js
   trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber.js
   trunk/gforge_base/evolvisforge/gforge/www/themes/evolvis/Theme.class.php
   trunk/gforge_base/evolvisforge/gforge/www/themes/gforge-simple-theme/Theme.class.php
   trunk/gforge_base/evolvisforge/gforge/www/themes/gforge/Theme.class.php
   trunk/gforge_base/evolvisforge/gforge/www/themes/ultralite/Theme.class.php
   trunk/gforge_base/evolvisforge/gforge/www/tracker/reporting/trackeract_graph.php
   trunk/gforge_base/evolvisforge/htdocs/tabber.js
   trunk/gforge_base/evolvisforge/tools/savannah_std.class
   trunk/gforge_base/evolvisforge/tools/session.php
Log:
mechanical fixes of · to space and <br>, <BR>, <hr> to XHTML


Modified: trunk/gforge_base/evolvisforge/gforge/common/include/TextSanitizer.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/common/include/TextSanitizer.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/common/include/TextSanitizer.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -45,14 +45,14 @@
 	}
 	
 	/**
-	 *  convertNeededTagsForEmail - Grabs some text with html tags and those which are important for display (<br>, <p>) convert accordingly
+	 *  convertNeededTagsForEmail - Grabs some text with html tags and those which are important for display (<br />, <p>) convert accordingly
 	 *
 	 *	@param   string		The input string
 	 *	@return  string		The output string
 	 */	
 	function convertNeededTagsForEmail($text) {
-		$text = str_replace("<br>","\n",$text);
 		$text = str_replace("<br />","\n",$text);
+		$text = str_replace("<br />","\n",$text);
 		$text = str_replace("<br/>","\n",$text);
 		return $text;
 	}
@@ -88,9 +88,9 @@
                 $input=str_replace('&lt;/span&gt;','</span>',$input);
                 $input=str_replace('&lt;font','<font',$input);
                 $input=str_replace('&lt;/font&gt;','</font>',$input);
-                $input=str_replace('&lt;hr&gt;','<hr>',$input);
+                $input=str_replace('&lt;hr&gt;','<hr />',$input);
                 $input=str_replace('&lt;hr','<hr',$input);
-                $input=str_replace('&lt;br&gt;','<br>',$input);
+                $input=str_replace('&lt;br&gt;','<br />',$input);
                 $input=str_replace('&lt;br />','<br />',$input);
                 $input=str_replace('&lt;tbody&gt;','<tbody>',$input);
                 $input=str_replace('&lt;/tbody&gt;','</tbody>',$input);

Modified: trunk/gforge_base/evolvisforge/gforge/docs/debian-guide.html
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/docs/debian-guide.html	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/docs/debian-guide.html	2010-07-27 15:26:50 UTC (rev 6834)
@@ -7,14 +7,14 @@
 <b>Question:</b>
 What is available?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 You can have a look <a href=http://people.debian.org/~bayle/debian />there</a>
 to see what's available</blockquote>
 
 <b>Question:</b>
 How to get the packages?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 Add the following lines to you /etc/apt/sources.list <pre>
 deb http://people.debian.org/~bayle/debian stable/
 deb-src http://people.debian.org/~bayle/debian stable/
@@ -28,10 +28,10 @@
 deb http://roland.mas.free.fr/debian unstable/
 deb-src http://roland.mas.free.fr/debian unstable/
 </pre> (Roland's pages). Depending on our real life activity, one may be more
-up-to-date than the other.<br>
+up-to-date than the other.<br />
 Then run: <pre>
 apt-get update
-</pre> <BR>
+</pre> <br />
 You have now several possibilities:
 <UL>
 	<LI>You never installed any sourceforge or gforge package, just: <pre>
@@ -45,7 +45,7 @@
 apt-get install sourceforge
 </pre>
 	<LI>You want new gforge, but you have already sourceforge
-	installed <BR>
+	installed <br />
 	<pre>
 apt-get install gforge-sourceforge-transition
 </pre> will dump your db and move your files, then <pre>
@@ -57,13 +57,13 @@
 <b>Question:</b>
 How to get the gforge source code?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 <UL>
-	<LI>From debian distro <BR>
+	<LI>From debian distro <br />
 <pre>
 apt-get source gforge
 </pre>
-	<LI>From CVS <BR>
+	<LI>From CVS <br />
 <pre>
 cvs -d:pserver:anoncvs at subversions.gnu.org:/cvsroot/gforge login
 </pre> And just return for the password <pre>
@@ -75,19 +75,19 @@
 <b>Question:</b>
 Where is the savannah project page?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 <A href=http://savannah.nongnu.org/projects/gforge />http://savannah.nongnu.org/projects/gforge/</A>
 </blockquote>
 
 <b>Question:</b>
 Where is the Gforge home page?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 <A href=http://gforge.org />http://gforge.org/</A></blockquote>
 
 <b>Question:</b>
 How do I build this packages?
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 go into gforge-3.0 dir and run <pre>
 debuild
 </pre> The debuild tool is in the devscripts Debian package. If you run this
@@ -107,9 +107,9 @@
 <b>Question:</b>
 Where do I find help?
 
-<blockquote><b>Answer:</b> <BR>
+<blockquote><b>Answer:</b> <br />
 For more info you can join us on IRC at irc.openprojects.net on #gforge
-(GForge package) or #debian-devel-fr (French) <BR>
+(GForge package) or #debian-devel-fr (French) <br />
 Mailing lists are there: <A
 	HREF=http://savannah.nongnu.org/mail/?group=gforge>http://savannah.nongnu.org/mail/?group=gforge</A>
 

Modified: trunk/gforge_base/evolvisforge/gforge/docs/debian-installguidefornewbies.html
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/docs/debian-installguidefornewbies.html	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/docs/debian-installguidefornewbies.html	2010-07-27 15:26:50 UTC (rev 6834)
@@ -39,217 +39,217 @@
  <body>
   <div>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Debian-Sourceforge Installer's Guide for Newbies</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Debian-Sourceforge Installer's Guide for Newbies</span>    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">By</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">By</span>    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">William Heath</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">William Heath</span>    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Email: &nbsp;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Email: &nbsp;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br></span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br /></span>    <br />
    </p>
   </div>
   <div>
    <p>
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">Table of Contents<br></span>    <br>
+<span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">Table of Contents<br /></span>    <br />
    </p>
   </div>
   <div>
    <p>
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.3931in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.3931in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left; margin-left: 0.1965in">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br></span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br /></span>    <br />
    </p>
   </div>
   <div>
    <p>
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: center">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br></span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"><br /></span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
@@ -258,7 +258,7 @@
    <p dir="ltr" style="text-align: left">
 <span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	My name is William Grayson Heath and I have been extremely impressed with the Debian Linux distribution as well as debian sourceforge. &nbsp;I have studied other linux distributions and no other has impressed me as much as Debian. &nbsp;Now I know some people will read this and go you probably don't have lots of experience with linux and you would be absolutely right! &nbsp;Life is a learning process and I hope to continue to increase my knoweldge of linux so that I someday may be able to talk more intelligently on it but in the writing of this document I would say I am still a newbie. &nbsp;However I took careful notes with how to install debian sourceforge and want to share my experience with those who would like to learn from it. &nbsp;sf 3.1 costs alot - EUR 110000 for mimimum 20 user licences + EUR 22000/year maintanance. &nbsp;1000 Euro /user/year. &nbsp;HP (http:). The US airforce is using debian sourcefo
 
-rge. At the writing of this document 2.6-0.13 of debian sourceforge is out</span>    <br>
+rge. At the writing of this document 2.6-0.13 of debian sourceforge is out</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
@@ -267,10 +267,10 @@
    <p dir="ltr" style="text-align: left">
 <span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	I am a software developer for Fedex and installed debian sourceforge after writing a couple of papers on extreme programming and the hacker/opensource approach. &nbsp;I had an account on sourceforge.net and was very impressed with the amazing amount of things I could do that were automatic and the collaboration/learning opportunities that the many projects hosted there offered. &nbsp;After finishing my Masters in Computer Science I begain my Masters of Business and Administration and through conversations in class decided that an interesting experiement would be to host an instance of sourceforge on a PC in my cube to allow other developers to expose their code and ideas. &nbsp;I also installed twiki and dancer-ircd (an irc chat server). &nbsp;With the generous help of a system administrator, he allowed me to have a static ip and a delegated domain. &nbsp;That was the second miracle. &nbsp;The first miracle was 
 
-that I was able to create a working debian sourceforge instance in a weekend, with the generous help of chris38 (Christian Bayle) on #Debian-sf on . &nbsp;When I say working, I was able to run it on my PC. &nbsp;Without the delegated domain and static IP I could not do things from other PC's etc... &nbsp;I will first describe what I did to get just a simple standalone debian-sourceforge instance up and running. &nbsp;Secondly I will describe what I had to do to get that debian-sourceforge instance to work after I received the static IP and delegated domain.</span>    <br>
+that I was able to create a working debian sourceforge instance in a weekend, with the generous help of chris38 (Christian Bayle) on #Debian-sf on . &nbsp;When I say working, I was able to run it on my PC. &nbsp;Without the delegated domain and static IP I could not do things from other PC's etc... &nbsp;I will first describe what I did to get just a simple standalone debian-sourceforge instance up and running. &nbsp;Secondly I will describe what I had to do to get that debian-sourceforge instance to work after I received the static IP and delegated domain.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
@@ -279,277 +279,277 @@
    <p dir="ltr" style="text-align: left">
 <span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	Because this is a document for newbies I will explain what I had to do to install debian initially. &nbsp;I used debian woody CD's. &nbsp;I used partition magic as I already had an instance of windows NT on my pc and I wanted to keep that. &nbsp;I used partition magic to shrink the ntfs partition and create about a 1 gig linux ext2 partition and 300 megabyte swap partition. &nbsp;I know your probably saying to yourself, why didn't you use free software for this? &nbsp;Well I know that Debian uses parted but the disk I thought I put parted on wasn't working so I just used partition magic because I was in a hurry. &nbsp;I then just reboot my computer and put the first debian woody cd in. &nbsp;It booted up and begain to install debian. &nbsp;It found the linux partitions I setup and I used a boot floppy to cause debian to come up as I still need to learn lilo better. &nbsp;I told debian to use dhcp for dymanic ip 
 
-addressing. &nbsp;Thankfully debian found my network card and was able to get onto the Fedex network. &nbsp;I then ran apt-setup and chose an http host and I also gave it my proxy information: &nbsp;:3128. &nbsp;I also chose gnome for a desktop. &nbsp;I &nbsp;then ran apt-get update. &nbsp;I also had to configure my monitor and video card for xwindows so I ran xf86config. &nbsp;A small aside, I couldn't get my xwindows to work initially so it came up with a weird instance of xwindows that use keys for a mouse. &nbsp;It also came up &nbsp;with graphical xwindows configuration tool called xconfigurator. &nbsp;You can actually do everything in this xwindows environment, it was quite amazing to me, I was happy however when I was able to use my mouse and get into a regular xwindows environment. &nbsp;Now comes the actual steps to get debian-sourceforge. &nbsp;After installing the http deb file sources I went to /etc/apt/sources.list and commented out the cdrom entries.</span>    <br>
+addressing. &nbsp;Thankfully debian found my network card and was able to get onto the Fedex network. &nbsp;I then ran apt-setup and chose an http host and I also gave it my proxy information: &nbsp;:3128. &nbsp;I also chose gnome for a desktop. &nbsp;I &nbsp;then ran apt-get update. &nbsp;I also had to configure my monitor and video card for xwindows so I ran xf86config. &nbsp;A small aside, I couldn't get my xwindows to work initially so it came up with a weird instance of xwindows that use keys for a mouse. &nbsp;It also came up &nbsp;with graphical xwindows configuration tool called xconfigurator. &nbsp;You can actually do everything in this xwindows environment, it was quite amazing to me, I was happy however when I was able to use my mouse and get into a regular xwindows environment. &nbsp;Now comes the actual steps to get debian-sourceforge. &nbsp;After installing the http deb file sources I went to /etc/apt/sources.list and commented out the cdrom entries.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">Installing Debian Sourceforge</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	The entry I put into my etc/apt/sources.list to be able to get the debian-sourceforge deb file is a listed in bold. &nbsp;A listing of my sources.list:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	The entry I put into my etc/apt/sources.list to be able to get the debian-sourceforge deb file is a listed in bold. &nbsp;A listing of my sources.list:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">#deb cdrom:[Debian GNU/Linux 3.0 r0 _Woody_ - Official i386 Binary-1 (20020718)]</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">#deb cdrom:[Debian GNU/Linux 3.0 r0 _Woody_ - Official i386 Binary-1 (20020718)]</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/ unstable contrib main non-US/contrib non-US/main</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/ unstable contrib main non-US/contrib non-US/main</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># deb http://security.debian.org/ stable/updates main contrib non-free</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># deb http://security.debian.org/ stable/updates main contrib non-free</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb ftp://ftp.fr.debian.org/debian sid main contrib non-free</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb ftp://ftp.fr.debian.org/debian sid main contrib non-free</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb ftp://non-us.debian.org/debian-non-US sid/non-US main contrib non-free</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb ftp://non-us.debian.org/debian-non-US sid/non-US main contrib non-free</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb http://lyre.mit.edu/debian/ stable main non-free contrib</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb http://lyre.mit.edu/debian/ stable main non-free contrib</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb-src http://lyre.mit.edu/debian/ stable main non-free contrib</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb-src http://lyre.mit.edu/debian/ stable main non-free contrib</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb http://christian.bayle.free.fr/debian binary-i386/</span>    <br>
+<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb http://christian.bayle.free.fr/debian binary-i386/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb-src http://christian.bayle.free.fr/debian source/</span>    <br>
+<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">deb-src http://christian.bayle.free.fr/debian source/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Just keep trying one until it works I guess. &nbsp;Then do:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Just keep trying one until it works I guess. &nbsp;Then do:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">apt-get install sourceforge ( just for dependencies)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">apt-get install sourceforge ( just for dependencies)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wget </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wget </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dpkg -i sourceforge_2.5-33_all.deb</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dpkg -i sourceforge_2.5-33_all.deb</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">This will get many a debian package and then it will start asking you questions. &nbsp;I will give you the questions and answers I gave. &nbsp;I will not document all questions that were asked just the hard ones.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">This will get many a debian package and then it will start asking you questions. &nbsp;I will give you the questions and answers I gave. &nbsp;I will not document all questions that were asked just the hard ones.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Ldap server: 127.0.0.1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Ldap server: 127.0.0.1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Distinguished: dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Distinguished: dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Database Login: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Database Login: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">libass-ldap config file: no</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">libass-ldap config file: no</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">unprivelaged database user: cn=proxyuser, dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">unprivelaged database user: cn=proxyuser, dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">make local database domain: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">make local database domain: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Configuring Libparm ldap: Database request login: no</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Configuring Libparm ldap: Database request login: no</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Configuring Libparm &nbsp;login account: cn=manager, cn=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Configuring Libparm &nbsp;login account: cn=manager, cn=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">localcrypt: crypt</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">localcrypt: crypt</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">directory initialization method: auto</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">directory initialization method: auto</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">directory suffix style: domain or host</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">directory suffix style: domain or host</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">domain name: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">domain name: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">replicate ldap: no</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">replicate ldap: no</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">SF domain or subdomain: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">SF domain or subdomain: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">your ip address: (ip from ifconfig)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">your ip address: (ip from ifconfig)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">SF admin mail addresses: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">SF admin mail addresses: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Host: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Host: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Base DN: dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">LDAP Base DN: dc=wgheath, dc=rmtc, dc=fedex, dc=com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Let sourceforge modify: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Let sourceforge modify: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Enter default encoding: (SQL_ASCII) (just press enter)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Enter default encoding: (SQL_ASCII) (just press enter)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Add extention gd.so: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Add extention gd.so: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Add extention ldap.so: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Add extention ldap.so: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">yes to all extentions to php5</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">yes to all extentions to php5</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Run the apache config script now: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Run the apache config script now: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">save these changes to the configuration files: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">save these changes to the configuration files: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Restart apache now: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Restart apache now: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Merge changes to /etc/proftpd.conf now: yes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Merge changes to /etc/proftpd.conf now: yes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It was at this point that I received an error with exim.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It was at this point that I received an error with exim.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Exim Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Eximis a mail transfer agent (MTA).</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Eximis a mail transfer agent (MTA).</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Commands to test exim setup are:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Commands to test exim setup are:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -bp ( tells what is in the pending mail queue)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -bp ( tells what is in the pending mail queue)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -v -bt wght ( Tests a local email address)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -v -bt wght ( Tests a local email address)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -v -bt &nbsp;( Tests a remote address)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">exim -v -bt &nbsp;( Tests a remote address)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">To correct this error I ran: eximconfig</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">To correct this error I ran: eximconfig</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Select 1-5: 2</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Select 1-5: 2</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Visible email name of system: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Visible email name of system: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">smarthost: </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">smarthost: </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then ran apt-get install sourceforge again</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then ran apt-get install sourceforge again</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It said I had an error with apache: apache could not find fully qualified domain name</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It said I had an error with apache: apache could not find fully qualified domain name</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Other helpful commands:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Other helpful commands:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-exim.sh purge</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-exim.sh purge</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-exim.sh</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-exim.sh</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Apache Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	I added the following line in /etc/apache/httpd.conf</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	I added the following line in /etc/apache/httpd.conf</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AddServername </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AddServername </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also had to make an ssl certification:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also had to make an ssl certification:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">mod-ssl-makecert</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">mod-ssl-makecert</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">choose 3 custom</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">choose 3 custom</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">encrypt is no</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">encrypt is no</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
@@ -562,116 +562,116 @@
     </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added to the very top of /etc/hosts:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added to the very top of /etc/hosts:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">127.0.0.1 wgheath.rmtc.fedex.com wgheath	</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">127.0.0.1 wgheath.rmtc.fedex.com wgheath	</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 14pt; font-family: 'Albany'; color: #000000">Nameserver Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added to the very top of /etc/resolv.conf:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added to the very top of /etc/resolv.conf:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 127.0.0.1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 127.0.0.1</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Netscape Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In the proxy server configuration area I said no proxy for server .</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In the proxy server configuration area I said no proxy for server .</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">LDAP Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You can tell that ldap has been setup correctly by typing:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You can tell that ldap has been setup correctly by typing:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/etc/apt# </span><span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-ldap.sh test</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/etc/apt# </span><span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-ldap.sh test</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_base_dn = 'dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_base_dn = 'dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_admin_dn = 'cn=admin,dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_admin_dn = 'cn=admin,dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_bind_dn = 'cn=SF_robot,dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_bind_dn = 'cn=SF_robot,dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_passwd = 'password'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_passwd = 'password'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_cryptedpasswd = '{CRYPT}iG/gLlKAsXhjY'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_cryptedpasswd = '{CRYPT}iG/gLlKAsXhjY'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_host = 'wgheath.rmtc.fedex.com'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">sf_ldap_host = 'wgheath.rmtc.fedex.com'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ldap_passwd = 'password'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ldap_passwd = 'password'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cryptedpasswd = '{CRYPT}arclCK7CaZ35k'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cryptedpasswd = '{CRYPT}arclCK7CaZ35k'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">do_config = 'true'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">do_config = 'true'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ldap_suffix = 'dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ldap_suffix = 'dc=wgheath,dc=rmtc,dc=fedex,dc=com'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">tmpfile_pattern = '/tmp/install-ldap.sh.XXXXXX'</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">tmpfile_pattern = '/tmp/install-ldap.sh.XXXXXX'</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You can also tell that ldap is configured correctly by doing the following:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You can also tell that ldap is configured correctly by doing the following:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/var/lib/sourceforge/chroot/home/users# ls -l</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/var/lib/sourceforge/chroot/home/users# ls -l</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">total 12</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">total 12</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;4 jmmcnabb jmmcnabb &nbsp;&nbsp;&nbsp;&nbsp;4096 Oct &nbsp;3 11:14 jmmcnabb</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;4 jmmcnabb jmmcnabb &nbsp;&nbsp;&nbsp;&nbsp;4096 Oct &nbsp;3 11:14 jmmcnabb</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;4 test2 &nbsp;&nbsp;&nbsp;test2 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4096 Sep 30 14:06 test2</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;4 test2 &nbsp;&nbsp;&nbsp;test2 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4096 Sep 30 14:06 test2</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;5 wgheath &nbsp;wgheath &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4096 Oct &nbsp;4 11:17 wgheath</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">drwxr-xr-x &nbsp;&nbsp;&nbsp;5 wgheath &nbsp;wgheath &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4096 Oct &nbsp;4 11:17 wgheath</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">if you see 20001 where wgheath is then something is wrong with ldap.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">if you see 20001 where wgheath is then something is wrong with ldap.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Other helpful commands are:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Other helpful commands are:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dpkg-reconfigure slapd</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dpkg-reconfigure slapd</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">Static IP and Delegated Domain Transition</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">The steps that must be taken after static ip and delegated domain are given are:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">The steps that must be taken after static ip and delegated domain are given are:</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left">
@@ -694,678 +694,678 @@
     </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	Static IP configuration can be a little tricky. &nbsp;The goal is to bind your server to a static IP, where before it was bound to a dynamic IP address through DHCP. &nbsp;I had problems with this and I need to switch back and forth until it worked. &nbsp;The way I did thais is as follows:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	Static IP configuration can be a little tricky. &nbsp;The goal is to bind your server to a static IP, where before it was bound to a dynamic IP address through DHCP. &nbsp;I had problems with this and I need to switch back and forth until it worked. &nbsp;The way I did thais is as follows:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The loopback interface</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The loopback interface</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">auto lo</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">auto lo</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">iface lo inet loopback</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">iface lo inet loopback</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The first network card - this entry was created during the Debian installation</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The first network card - this entry was created during the Debian installation</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">auto eth0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">auto eth0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">#iface eth0 inet dhcp</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">#iface eth0 inet dhcp</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">iface eth0 inet static</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">iface eth0 inet static</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">address 199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">address 199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">netmask 255.255.255.0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">netmask 255.255.255.0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">gateway 199.81.57.1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">gateway 199.81.57.1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If things don't work all that needs to be done is to comment all lines below #iface eth0 inet dhcp and uncomment ifcace eth0 inet dhcp</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If things don't work all that needs to be done is to comment all lines below #iface eth0 inet dhcp and uncomment ifcace eth0 inet dhcp</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then restart the network service with the following command:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then restart the network service with the following command:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> /etc/init.d/networking restart</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> /etc/init.d/networking restart</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Now if you do ifconfig you would see something like this:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Now if you do ifconfig you would see something like this:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/etc/bind# ifconfig</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/etc/bind# ifconfig</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">eth0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Link encap:Ethernet &nbsp;HWaddr 00:50:04:72:BA:BC</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">eth0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Link encap:Ethernet &nbsp;HWaddr 00:50:04:72:BA:BC</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;inet addr:199.81.57.27 &nbsp;Bcast:199.81.57.255 &nbsp;Mask:255.255.255.0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;inet addr:199.81.57.27 &nbsp;Bcast:199.81.57.255 &nbsp;Mask:255.255.255.0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;UP BROADCAST RUNNING MULTICAST &nbsp;MTU:1500 &nbsp;Metric:1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;UP BROADCAST RUNNING MULTICAST &nbsp;MTU:1500 &nbsp;Metric:1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX packets:16451837 errors:1 dropped:0 overruns:287 frame:1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX packets:16451837 errors:1 dropped:0 overruns:287 frame:1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TX packets:98249 errors:0 dropped:0 overruns:0 carrier:0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TX packets:98249 errors:0 dropped:0 overruns:0 carrier:0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;collisions:0 txqueuelen:100</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;collisions:0 txqueuelen:100</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX bytes:1617982812 (1.5 GiB) &nbsp;TX bytes:34470984 (32.8 MiB)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX bytes:1617982812 (1.5 GiB) &nbsp;TX bytes:34470984 (32.8 MiB)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interrupt:11 Base address:0x1080</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interrupt:11 Base address:0x1080</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">lo &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Link encap:Local Loopback</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">lo &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Link encap:Local Loopback</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;inet addr:127.0.0.1 &nbsp;Mask:255.0.0.0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;inet addr:127.0.0.1 &nbsp;Mask:255.0.0.0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;UP LOOPBACK RUNNING &nbsp;MTU:3924 &nbsp;Metric:1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;UP LOOPBACK RUNNING &nbsp;MTU:3924 &nbsp;Metric:1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX packets:374993 errors:0 dropped:0 overruns:0 frame:0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX packets:374993 errors:0 dropped:0 overruns:0 frame:0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TX packets:374993 errors:0 dropped:0 overruns:0 carrier:0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TX packets:374993 errors:0 dropped:0 overruns:0 carrier:0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;collisions:0 txqueuelen:0</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;collisions:0 txqueuelen:0</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX bytes:36818313 (35.1 MiB) &nbsp;TX bytes:36818313 (35.1 MiB)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RX bytes:36818313 (35.1 MiB) &nbsp;TX bytes:36818313 (35.1 MiB)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">But now the problem becomes this:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">But now the problem becomes this:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You will still get 127.0.0.1. &nbsp;You must reconfigure DNS for this to work right.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You will still get 127.0.0.1. &nbsp;You must reconfigure DNS for this to work right.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">DNS Reconfiguration with Static IP and Delegate Domain</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Change /etc/hosts to look like this:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Change /etc/hosts to look like this:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">199.81.57.27 wgheath.rmtc.fedex.com wgheath</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">199.81.57.27 wgheath.rmtc.fedex.com wgheath</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">127.0.0.1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;localhost</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">127.0.0.1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;localhost</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The following lines are desirable for IPv6 capable hosts</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># The following lines are desirable for IPv6 capable hosts</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># (added automatically by netbase upgrade)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># (added automatically by netbase upgrade)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">::1 &nbsp;&nbsp;&nbsp;&nbsp;ip6-localhost ip6-loopback</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">::1 &nbsp;&nbsp;&nbsp;&nbsp;ip6-localhost ip6-loopback</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">fe00::0 ip6-localnet</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">fe00::0 ip6-localnet</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff00::0 ip6-mcastprefix</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff00::0 ip6-mcastprefix</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::1 ip6-allnodes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::1 ip6-allnodes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::2 ip6-allrouters</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::2 ip6-allrouters</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::3 ip6-allhosts</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ff02::3 ip6-allhosts</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Change resolv.conf to look like this:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Change resolv.conf to look like this:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">search rmtc.fedex.com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">search rmtc.fedex.com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 199.81.103.11</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 199.81.103.11</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 199.81.103.10</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 199.81.103.10</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 146.18.36.201</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nameserver 146.18.36.201</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You need to run:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You need to run:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh purge</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh purge</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 stop</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 stop</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Then check that no named process are running with:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Then check that no named process are running with:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ps -ef|grep named (kill any that you see)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ps -ef|grep named (kill any that you see)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 start</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 start</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">There are certain sourceforge configuration files that will show that things are working correctly. &nbsp;Such a file would be /etc/bind/named.conf:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">There are certain sourceforge configuration files that will show that things are working correctly. &nbsp;Such a file would be /etc/bind/named.conf:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">// Next line inserted by Sourceforge install</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">// Next line inserted by Sourceforge install</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">zone "wgheath.rmtc.fedex.com" { type master; file "/var/lib/sourceforge/bind/dns</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">zone "wgheath.rmtc.fedex.com" { type master; file "/var/lib/sourceforge/bind/dns</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">.zone"; };</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">.zone"; };</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">And the file /var/lib/sourceforge/bind/dns.zone:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">And the file /var/lib/sourceforge/bind/dns.zone:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">mail1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">mail1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">users &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">users &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">lists &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">lists &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">download &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">download &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">upload &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">upload &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">images &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">images &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">webdev &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">webdev &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">; *** From here out is auto-generated ***</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">; *** From here out is auto-generated ***</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">testproject &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">testproject &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.testproject &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.testproject &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">strutsxdoc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">strutsxdoc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.strutsxdoc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.strutsxdoc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">snmpfarmer &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">snmpfarmer &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.snmpfarmer &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.snmpfarmer &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">blendpythnsokts &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">blendpythnsokts &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.blendpythnsokts &nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">cvs.blendpythnsokts &nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CNAME &nbsp;&nbsp;cvs.wgheath.rmtc.fedex.com.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Something interesting occurred that I had to do to allow for ssh clients to connect:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Something interesting occurred that I had to do to allow for ssh clients to connect:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I had to bounce the sshd.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I had to bounce the sshd.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Mailing List Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In order to get mailing lists to work correctly I did the following:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In order to get mailing lists to work correctly I did the following:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added line in /var/lib/sourceforge/bind/dns.zone</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Added line in /var/lib/sourceforge/bind/dns.zone</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">;NS</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">;NS</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wgheath.rmtc.fedex.com.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wgheath.rmtc.fedex.com.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10 mail</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10 mail</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;20 smtp.rmtc.fedex.com</span>    <br>
+<span style="font-weight: bold; font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MX &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;20 smtp.rmtc.fedex.com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">@ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IN &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;199.81.57.27</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also added the bolded line above in dns.head.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also added the bolded line above in dns.head.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then ran /usr/lib/sourceforge/bin/dns_conf.pl</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then ran /usr/lib/sourceforge/bin/dns_conf.pl</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also ran /var/lib/sourceforge/bin/install-exim.sh purge</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I also ran /var/lib/sourceforge/bin/install-exim.sh purge</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">then ran /var/lib/sourceforge/bin/install-exim.sh configure</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">then ran /var/lib/sourceforge/bin/install-exim.sh configure</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then restarted bind and checked for name process etc... as specified under DNS Reconfiguration with Static IP and Delegate Domain above.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then restarted bind and checked for name process etc... as specified under DNS Reconfiguration with Static IP and Delegate Domain above.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">DNS Troubleshooting</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I still ran into unresolved host when I did nslookup &nbsp;so I went through the following procedures to fix this:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I still ran into unresolved host when I did nslookup &nbsp;so I went through the following procedures to fix this:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I checked that sourceforge was in /etc/bind/named.conf</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I checked that sourceforge was in /etc/bind/named.conf</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It wasn't so I:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">It wasn't so I:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh purge</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh purge</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh configure</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh configure</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh default</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/install-dns.sh default</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Restarted the bind9 process as specified above.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Restarted the bind9 process as specified above.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Did nslookup &nbsp;localhost</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Did nslookup &nbsp;localhost</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Did nslookup &nbsp;127.0.0.1</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Did nslookup &nbsp;127.0.0.1</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ran /usr/lib/sourceforge/bin/dns.conf.pl</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ran /usr/lib/sourceforge/bin/dns.conf.pl</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">checked /var/lib/sourceforge/bind/dns.zone</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">checked /var/lib/sourceforge/bind/dns.zone</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then started to query each nameserver to see what the entry was on that name server:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then started to query each nameserver to see what the entry was on that name server:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;199.81.103.11</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;199.81.103.11</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;199.81.103.10</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;199.81.103.10</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;146.18.36.201</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">nslookup &nbsp;146.18.36.201</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I kept seeing the old ip address because my system administrator had made a dns entry with my dhcp ip address and the nameservers had not updated yet. &nbsp;I went to my system administrator and asked him what to do to solve this problem. &nbsp;He then used dig to find the problem. &nbsp;Dig is a DNS query tool. &nbsp;He did the following commands with dig:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I kept seeing the old ip address because my system administrator had made a dns entry with my dhcp ip address and the nameservers had not updated yet. &nbsp;I went to my system administrator and asked him what to do to solve this problem. &nbsp;He then used dig to find the problem. &nbsp;Dig is a DNS query tool. &nbsp;He did the following commands with dig:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig +search wgheath (Gave the old ip address because it looked locally as he was running dig on the nameserver)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig +search wgheath (Gave the old ip address because it looked locally as he was running dig on the nameserver)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @wgheath +search wgheath (This called dig to look at the wgheath server for name resolution)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @wgheath +search wgheath (This called dig to look at the wgheath server for name resolution)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @199.81.57.27 +search wgheath any (This called dig to look at the wgheath server for name resolution and to list all entries with 199.81.57.27)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @199.81.57.27 +search wgheath any (This called dig to look at the wgheath server for name resolution and to list all entries with 199.81.57.27)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">He could then see that the cached value on the nameserver was not correct. &nbsp;The nameserver would check and refresh itself in </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">He could then see that the cached value on the nameserver was not correct. &nbsp;The nameserver would check and refresh itself in </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> 604800 seconds which is an entry in /var/lib/sourceforge/bind/dns.zone:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> 604800 seconds which is an entry in /var/lib/sourceforge/bind/dns.zone:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2002100917 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; serial number, in date form</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2002100917 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; serial number, in date form</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10800 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; refresh 4 minutes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10800 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; refresh 4 minutes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3600 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; retry interval 2 minutes</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3600 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; retry interval 2 minutes</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;604800 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; expire</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;604800 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; expire</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3600 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; default ttl</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3600 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; default ttl</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">The system administrator then ran the following command to force the nameserver to recheck for the proper ip address to resolve host name :</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">The system administrator then ran the following command to force the nameserver to recheck for the proper ip address to resolve host name :</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">rndc flush (flushed cache on nameserver and forced it to reread)</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">rndc flush (flushed cache on nameserver and forced it to reread)</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Another important command was used to get a zone transfer:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Another important command was used to get a zone transfer:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @wgheath +search wgheath axfr |less</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">dig @wgheath +search wgheath axfr |less</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">This gave a dump of the zone file for my domain.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">This gave a dump of the zone file for my domain.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Enabling cgi-bin for all Projects</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In /etc/http.conf comment out:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In /etc/http.conf comment out:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">then restart apache:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">then restart apache:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/apache restart</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/apache restart</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">General Maintenance</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If someone starts a new project and they don't want to wait for cron you can run the scripts that cron would run by doing the following:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If someone starts a new project and they don't want to wait for cron you can run the scripts that cron would run by doing the following:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">as root:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">as root:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/update-use-groups-ssh.sh</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/update-use-groups-ssh.sh</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/dns_conf.pl</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/dns_conf.pl</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 stop</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 stop</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ps -ef|grep named</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ps -ef|grep named</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 start</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/etc/init.d/bind9 start</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If there are problem check to see that appropriate entries are in:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">If there are problem check to see that appropriate entries are in:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/var/lib/sourceforge/bind </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/var/lib/sourceforge/bind </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">Installing TWIKI</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I have installed debian sourceforge and then I did apt-get install twiki. &nbsp;I put shell1.wgheath.rmtc.fedex.com for the url. &nbsp;I then put the following in /etc/sourceforge/sf-httpd.conf:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I have installed debian sourceforge and then I did apt-get install twiki. &nbsp;I put shell1.wgheath.rmtc.fedex.com for the url. &nbsp;I then put the following in /etc/sourceforge/sf-httpd.conf:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;VirtualHost 199.81.57.27&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;VirtualHost 199.81.57.27&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;ServerName shell1.wgheath.rmtc.fedex.com</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;ServerName shell1.wgheath.rmtc.fedex.com</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;DocumentRoot /var/www/twiki/pub/</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;DocumentRoot /var/www/twiki/pub/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/VirtualHost&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/VirtualHost&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then attempted to add a user through the registration and came up with the mail program problem. &nbsp;I research this and it said to go to Twiki Preferences and set SMTPMAILHOST = </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I then attempted to add a user through the registration and came up with the mail program problem. &nbsp;I research this and it said to go to Twiki Preferences and set SMTPMAILHOST = </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">to nothing. &nbsp;To do this however I needed to edit the page. &nbsp;I attempted to this and it prompted me for the user name and password for ByPassword? &nbsp;I didn't understand this very well so I just went to .htaccess in /usr/lib/cgi-bin/twiki and changed it to look like:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">to nothing. &nbsp;To do this however I needed to edit the page. &nbsp;I attempted to this and it prompted me for the user name and password for ByPassword? &nbsp;I didn't understand this very well so I just went to .htaccess in /usr/lib/cgi-bin/twiki and changed it to look like:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthUserFile /var/lib/twiki/data/.htpasswd</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthUserFile /var/lib/twiki/data/.htpasswd</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthName ByPassword</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthName ByPassword</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthType Basic</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">AuthType Basic</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># SetHandler cgi-wrap-twiki</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># SetHandler cgi-wrap-twiki</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ErrorDocument 401 /cgi-bin/twiki/oops/TWiki/TWikiRegistration?template=oopsauth</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ErrorDocument 401 /cgi-bin/twiki/oops/TWiki/TWikiRegistration?template=oopsauth</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;Files ~ "[^/]*\.html$"&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;Files ~ "[^/]*\.html$"&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># does this just mean "fail"?</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"># does this just mean "fail"?</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SetHandler blabla</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SetHandler blabla</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allow from all</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allow from all</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/Files&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/Files&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;Files "*"&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;Files "*"&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allow from all</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allow from all</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/Files&gt;</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">&lt;/Files&gt;</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I was then able to edit the SMTPMAILHOST = entry and then the mail worked. &nbsp;I then wanted to attach a file to a web page on TwikiGuest. &nbsp;This failed so I tailed /var/log/apache/error.log and found:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">I was then able to edit the SMTPMAILHOST = entry and then the mail worked. &nbsp;I then wanted to attach a file to a web page on TwikiGuest. &nbsp;This failed so I tailed /var/log/apache/error.log and found:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">[Fri Oct 11 17:32:59 2002] upload: copy(/var/tmp/CGItemp3975, /var/www/twiki/pub</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">[Fri Oct 11 17:32:59 2002] upload: copy(/var/tmp/CGItemp3975, /var/www/twiki/pub</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/Main/TWikiGuest/pythonprog.doc) failed: No such file or directory at /usr/share</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/Main/TWikiGuest/pythonprog.doc) failed: No such file or directory at /usr/share</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/perl5/TWiki/Store.pm line 764.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/perl5/TWiki/Store.pm line 764.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">so I went to /var/www/twiki/pub and there was no Main directory underneath it. &nbsp;I added /Main/TwikiGuest under /var/www/twiki/pub and set the permissions to 777 on each of the new directories. &nbsp;It was then that the file attach succeeded. &nbsp;I also had to do the following to make gif's work:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">so I went to /var/www/twiki/pub and there was no Main directory underneath it. &nbsp;I added /Main/TwikiGuest under /var/www/twiki/pub and set the permissions to 777 on each of the new directories. &nbsp;It was then that the file attach succeeded. &nbsp;I also had to do the following to make gif's work:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/var/lib/twiki/data/pub# cp -R pub /var/lib/twiki/data/</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">wgheath:/var/lib/twiki/data/pub# cp -R pub /var/lib/twiki/data/</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-size: 16pt; font-family: 'Albany'; color: #000000">IDE's and Other Clients</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	There are many clients that you could work with. &nbsp;I will describe cvs setup of cygwin, Netbeans, and Eclipse.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	There are many clients that you could work with. &nbsp;I will describe cvs setup of cygwin, Netbeans, and Eclipse.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Cygwin</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	Installing cygwin is very simple and is required to get all other IDE's to work right. &nbsp;I typically do the following when I install cygwin:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">	Installing cygwin is very simple and is required to get all other IDE's to work right. &nbsp;I typically do the following when I install cygwin:</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left">
@@ -1416,69 +1416,69 @@
     </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You then have everything you need to checkout and edit code according to the CVS directions that are given on the standard debian sourceforge cvs page for any project. &nbsp;A problem that you will run into however is that you will be prompted for your password everything you do something unless you configure a public key.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You then have everything you need to checkout and edit code according to the CVS directions that are given on the standard debian sourceforge cvs page for any project. &nbsp;A problem that you will run into however is that you will be prompted for your password everything you do something unless you configure a public key.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Public Key Configuration</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In cygwin type:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">In cygwin type:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ssh-keygen -t rsa</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">ssh-keygen -t rsa</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Just press enter for everything.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">Just press enter for everything.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then login to debian sourceforge and go to your project -&gt; edit keys and paste the contents of:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then login to debian sourceforge and go to your project -&gt; edit keys and paste the contents of:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">id_rsa.pub</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">id_rsa.pub</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then run as root:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You must then run as root:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/update-user-group-ssh.sh</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">/usr/lib/sourceforge/bin/update-user-group-ssh.sh</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You should now be able to do anything with cvs without having to enter your password.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You should now be able to do anything with cvs without having to enter your password.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">When you add a new member to your development membership that user will have to do the same thing on their cygwin and enter their key into the keys area of the project and run the same update script.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">When you add a new member to your development membership that user will have to do the same thing on their cygwin and enter their key into the keys area of the project and run the same update script.</span>    <br />
    </p>
    <ol class="Normal">
     <li dir="ltr" style="text-align: left; margin-top: 12pt">
 <span style="font-weight: bold; font-style: italic; font-size: 14pt; font-family: 'Albany'; color: #000000">Eclipse</span>    </li>
    </ol>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">To setup eclipse on windows you will have to do all steps for cygwin above. &nbsp;If you look at the following url:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">To setup eclipse on windows you will have to do all steps for cygwin above. &nbsp;If you look at the following url:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You will notice that it says you will need a way of doing things without having to send the password each time. &nbsp;That is why you do the cygwin step above. &nbsp;Then all is needed is:</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000">You will notice that it says you will need a way of doing things without having to send the password each time. &nbsp;That is why you do the cygwin step above. &nbsp;Then all is needed is:</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.Specify "ext" as the connection method type when creating the repository connection. </span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.Specify "ext" as the connection method type when creating the repository connection. </span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.Window-&gt;Preferences-&gt;Team-&gt;CVS-&gt;Ext Connection Method. On this page, specify the name and location of your external ssh client. This will be ssh.exe supplied with cygwin. &nbsp;Only modify the top line and leave the second line alone. &nbsp;You will notice that as you descend into the cvs server in eclipse that a little dos window comes up, that is the invocation of the ssh.exe client and is normal.</span>    <br>
+<span style="font-size: 12pt; font-family: 'Thorndale'; color: #000000"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.Window-&gt;Preferences-&gt;Team-&gt;CVS-&gt;Ext Connection Method. On this page, specify the name and location of your external ssh client. This will be ssh.exe supplied with cygwin. &nbsp;Only modify the top line and leave the second line alone. &nbsp;You will notice that as you descend into the cvs server in eclipse that a little dos window comes up, that is the invocation of the ssh.exe client and is normal.</span>    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
    <p dir="ltr" style="text-align: left">
-    <br>
+    <br />
    </p>
   </div>
  </body>

Modified: trunk/gforge_base/evolvisforge/gforge/docs/docbook/docbook/contribution_guide/include/templating.xml
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/docs/docbook/docbook/contribution_guide/include/templating.xml	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/docs/docbook/docbook/contribution_guide/include/templating.xml	2010-07-27 15:26:50 UTC (rev 6834)
@@ -68,26 +68,26 @@
 	</TR>
 	<TR>
 		<TD>
-         <B>Date:</B><BR>
+         <B>Date:</B><br />
 			<?php echo date( $sys_datefmt, 
 				$ah->getOpenDate() ); ?></TD>
-		<TD><B>Priority:</B><BR>
+		<TD><B>Priority:</B><br />
 			<?php echo $ah->getPriority(); ?></TD>
 	</TR>
 
 	<TR>
-		<TD><B>Submitted By:</B><BR>
+		<TD><B>Submitted By:</B><br />
 			<?php echo $ah->getSubmittedRealName(); ?> 
 			(<?php echo $ah->getSubmittedUnixName(); ?>)</TD>
-		<TD><B>Assigned To:</B><BR>
+		<TD><B>Assigned To:</B><br />
 			<?php echo $ah->getAssignedRealName(); ?>
 			(<?php echo $ah->getAssignedUnixName(); ?>)</TD>
 	</TR>
 
 	<TR>
-		<TD><B>Category:</B><BR>
+		<TD><B>Category:</B><br />
 			<?php echo $ah->getCategoryName(); ?></TD>
-		<TD><B>Status:</B><BR>
+		<TD><B>Status:</B><br />
 			<?php echo $ah->getStatusName(); ?></TD>
 	</TR>
 

Modified: trunk/gforge_base/evolvisforge/gforge/docs/gforge-themes-HOWTO.html
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/docs/gforge-themes-HOWTO.html	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/docs/gforge-themes-HOWTO.html	2010-07-27 15:26:50 UTC (rev 6834)
@@ -60,14 +60,14 @@
 Theme link. Select the Water theme and click Submit Changes. Then click
 on My Page and, if all goes well, the box title bars will all have blue
 backgrounds. Nice, huh?</p>
-<hr>
+<hr />
 
 <p>There's an example of a Layout subclass <a
 	href="http://savannah.nongnu.org/cgi-bin/viewcvs/gforge/gforge/www/themes/debian/Theme.class.php?rev=1.8&amp;content-type=text/vnd.viewcvs-markup">here</a>.
 
 
 </p>
-<hr>
+<hr />
 
 TODO:
 <ul>

Modified: trunk/gforge_base/evolvisforge/gforge/docs/migrating-to-gforge-HOWTO.html
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/docs/migrating-to-gforge-HOWTO.html	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/docs/migrating-to-gforge-HOWTO.html	2010-07-27 15:26:50 UTC (rev 6834)
@@ -13,7 +13,7 @@
 codebases to GForge. Here's some notes on how to do this. Please post
 comments/questions/improvements to the <a
 	href="http://gforge.org/forum/forum.php?forum_id=6">forums</a>.
-<p><b>SF 2.5 or SF 2.6 to GForge</b> <br>
+<p><b>SF 2.5 or SF 2.6 to GForge</b> <br />
 <p>The basic steps are:
 <ul>
 	<li>First run a <code>apt-get install
@@ -40,11 +40,11 @@
 
 
 
-<p><b>debian-sf to GForge</b> <br>
+<p><b>debian-sf to GForge</b> <br />
 This has been done - see <a
 	href="http://gforge.org/forum/forum.php?thread_id=173&forum_id=6">this</a>
 thread. Theme preferences may go away, but they can easily be reset.
-<p><b>SF Enterprise to GForge</b> <br>
+<p><b>SF Enterprise to GForge</b> <br />
 This has been done - see <a
 	href="http://gforge.org/forum/forum.php?thread_id=148&forum_id=6">this</a>
 thread on the forums. Looks like there are some database changes which

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/helloworld/www/index.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/helloworld/www/index.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/helloworld/www/index.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -65,7 +65,7 @@
 			// other perms checks here...
 			helloworld_Project_Header(array('title'=>$pluginname . ' Project Plugin!','pagename'=>"$pluginname",'sectionvals'=>array(group_getname($id))));    
 			// DO THE STUFF FOR THE PROJECT PART HERE
-			echo "We are in the Project HelloWorld plugin <br>";
+			echo "We are in the Project HelloWorld plugin <br />";
 			echo "Greetings from planet " . $world; // $world comes from the config file in /etc
 		} elseif ($type == 'user') {
 			$realuser = user_get_object($id);// 
@@ -77,7 +77,7 @@
 			}
 			helloworld_User_Header(array('title'=>'My '.$pluginname,'pagename'=>"$pluginname",'sectionvals'=>array($realuser->getUnixName())));    
 			// DO THE STUFF FOR THE USER PART HERE
-			echo "We are in the User HelloWorld plugin <br>";
+			echo "We are in the User HelloWorld plugin <br />";
 			echo "Greetings from planet " . $world; // $world comes from the config file in /etc
 		} elseif ($type == 'admin') {
 			$group = group_get_object($id);
@@ -95,7 +95,7 @@
 			if ( $userperm->isAdmin() ) {
 				helloworld_Project_Header(array('title'=>$pluginname . ' Project Plugin!','pagename'=>"$pluginname",'sectionvals'=>array(group_getname($id))));    
 				// DO THE STUFF FOR THE PROJECT ADMINISTRATION PART HERE
-				echo "We are in the Project HelloWorld plugin <font color=\"#ff0000\">ADMINISTRATION</font> <br>";
+				echo "We are in the Project HelloWorld plugin <font color=\"#ff0000\">ADMINISTRATION</font> <br />";
 				echo "Greetings from planet " . $world; // $world comes from the config file in /etc
 			} else {
 				exit_error("Access Denied", "You are not a project Admin");

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/diff.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/diff.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/diff.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -15,11 +15,11 @@
   <tr class="vc_diff_header">
     <th width="50%" valign=top>
       version [rev1], [date1]
-      [if-any tag1]<br>Tag: [tag1][end]
+      [if-any tag1]<br />Tag: [tag1][end]
     </th>
     <th width="50%" valign=top>
       version [rev2], [date2]
-      [if-any tag2]<br>Tag: [tag2][end]
+      [if-any tag2]<br />Tag: [tag2][end]
     </th>
   </tr>
 
@@ -75,8 +75,8 @@
                 <td colspan=2>&nbsp;</td>
               </tr>
               <tr class="vc_diff_empty">
-                <td colspan=2 align=center><br>
-                <b>- No changes -</b><br>&nbsp; </td>
+                <td colspan=2 align=center><br />
+                <b>- No changes -</b><br />&nbsp; </td>
               </tr>
             [else]
               [is changes.type "binary-diff"]
@@ -84,8 +84,8 @@
                   <td colspan=2>&nbsp;</td>
                 </tr>
                 <tr class="vc_diff_empty">
-                  <td colspan=2 align=center><br>
-                  <b>- Binary file revisions differ -</b><br>&nbsp; </td>
+                  <td colspan=2 align=center><br />
+                  <b>- Binary file revisions differ -</b><br />&nbsp; </td>
                 </tr>
               [else]
                 [is changes.type "error"]
@@ -93,12 +93,12 @@
                     <td colspan=2>&nbsp;</td>
                   </tr>
                   <tr class="vc_diff_empty">
-                    <td colspan=2 align=center> <br>
+                    <td colspan=2 align=center> <br />
                     <b>- ViewCVS depends on rcsdiff and GNU diff to create 
                     this page.  ViewCVS cannot find GNU diff. Even if you 
                     have GNU diff installed, the rcsdiff program must be 
                     configured and compiled with the GNU diff location.
-                    -</b> <br>&nbsp; </td>
+                    -</b> <br />&nbsp; </td>
                   </tr>
                 [else]
                   <tr>
@@ -116,7 +116,7 @@
 </table>
 [end]
 
-<br><hr noshade width="100%">
+<br /><hr noshade width="100%">
 
 <table border=0 cellpadding=10>
   <tr>
@@ -124,7 +124,7 @@
       <form method=get action="[diff_format_action]">
         [diff_format_hidden_values]
         <input type=checkbox name="makepatch" value="1"> 
-        Generate output suitable for use with a patch program<br>
+        Generate output suitable for use with a patch program<br />
         <select name="diff_format" onchange="submit()">
           <option value="h" [is diff_format "h"]selected[end]>Colored Diff</option>
           <option value="l" [is diff_format "l"]selected[end]>Long Colored Diff</option>
@@ -141,7 +141,7 @@
 [else]
       <table border=1>
         <tr>
-          <td>Legend:<br>
+          <td>Legend:<br />
             <table border=0 cellspacing=0 cellpadding=1>
               <tr>
                 <td align=center class="vc_diff_remove">Removed from v.[rev1]</td>

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/branch.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/branch.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/branch.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -1,6 +1,6 @@
 [if-any branch]
   Default branch: [branch]
-  <br>
+  <br />
   Bookmark a link to HEAD:
   (<a href="[view_href]">view</a>)
   (<a href="[download_href]">download</a>)
@@ -8,5 +8,5 @@
 [else]
   No default branch
 [end]
-<br>
+<br />
 

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/view_tag.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/view_tag.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/include/view_tag.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -1,5 +1,5 @@
 [if-any view_tag]
-  Current tag: [view_tag] <br>
+  Current tag: [view_tag] <br />
 [end]
 
 

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -18,7 +18,7 @@
   <hr size=1 noshade>
 
   [is roottype "svn"]
-    [is entries.filename where][else]Filename: [entries.filename]<br>[end]
+    [is entries.filename where][else]Filename: [entries.filename]<br />[end]
   [end]
 
   [is entries.state "dead"]
@@ -51,7 +51,7 @@
     <i>(vendor branch)</i>
   [end]
 
-  <br>
+  <br />
 
   [is roottype "svn"]
     [if-index entries last]Added[else]Modified[end]
@@ -60,21 +60,21 @@
   <i>[entries.date_str]</i> ([entries.ago] ago) by <i>[entries.author]</i>
 
   [if-any entries.branches]
-    <br>Branch:
+    <br />Branch:
     [for entries.branches]
       <a href="[entries.branches.href]"><b>[entries.branches.name]</b></a>[if-index entries.branches last][else],[end]
     [end]
   [end]
 
   [if-any entries.tags]
-    <br>CVS Tags:
+    <br />CVS Tags:
     [for entries.tags]
       <a href="[entries.tags.href]"><b>[entries.tags.name]</b></a>[if-index entries.tags last][else],[end]
     [end]
   [end]
 
   [if-any entries.branch_points]
-    <br>Branch point for:
+    <br />Branch point for:
     [for entries.branch_points]
       <a href="[entries.branch_points.href]"><b>[entries.branch_points.name]</b></a>[if-index entries.branch_points last][else],[end]
     [end]
@@ -83,27 +83,27 @@
   [if-any entries.prev]
     [if-any entries.changed]
       [is roottype "cvs"]
-      <br>Changes since <b>[entries.prev]: [entries.changed] lines</b>
+      <br />Changes since <b>[entries.prev]: [entries.changed] lines</b>
       [end]
     [end]
   [end]
 
   [is roottype "svn"]
     [if-any entries.size]
-    <br>File length: [entries.size] byte(s)</b>
+    <br />File length: [entries.size] byte(s)</b>
     [end]
 
     [if-any entries.copy_path]
-    <br>Copied from: <a href="[entries.copy_href]">[entries.copy_path]</a> revision [entries.copy_rev]
+    <br />Copied from: <a href="[entries.copy_href]">[entries.copy_path]</a> revision [entries.copy_rev]
     [end]
   [end]
 
   [is entries.state "dead"]
-    <br><b><i>FILE REMOVED</i></b>
+    <br /><b><i>FILE REMOVED</i></b>
   [else]
    [is pathtype "file"]
     [if-any entries.prev]
-      <br>Diff to <a href="[entries.diff_to_prev_href]">previous [entries.prev]</a>
+      <br />Diff to <a href="[entries.diff_to_prev_href]">previous [entries.prev]</a>
       [if-any human_readable]
       [else]
         (<a href="[entries.diff_to_prev_href]&amp;diff_format=h">colored</a>)
@@ -129,7 +129,7 @@
     [end]
 
     [if-any entries.diff_to_sel_href]
-      [if-any entries.prev], [else]<br>Diff[end]
+      [if-any entries.prev], [else]<br />Diff[end]
         to <a href="[entries.diff_to_sel_href]">selected [rev_selected]</a>
       [if-any human_readable]
       [else]

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log_table.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log_table.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/log_table.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -24,7 +24,7 @@
   <th align="left" class="vc_header">Diffs</th>
   [end]
   [is roottype "cvs"]
-  <th align="left" class="vc_header">Branches/<br>Tags</th>
+  <th align="left" class="vc_header">Branches/<br />Tags</th>
   [end]
   <th align="left" class="vc_header[is logsort "date"]_sort[end]">Age</th>
   <th align="left" class="vc_header">Author</th>
@@ -43,12 +43,12 @@
     [is pathtype "file"]
       <td>
       [# Tasks column]
-        <a href="[entries.view_href]"><b>View</b></a><br>
-        <a href="[entries.download_href]"><b>Download</b></a><br>
-        [if-any entries.download_text_href]<a href="[entries.download_text_href]"><b>As text</b></a><br>[end]
+        <a href="[entries.view_href]"><b>View</b></a><br />
+        <a href="[entries.download_href]"><b>Download</b></a><br />
+        [if-any entries.download_text_href]<a href="[entries.download_text_href]"><b>As text</b></a><br />[end]
 
         [# if you don't want to allow annotation, then remove this line]
-        [is roottype "svn"][else]<a href="[entries.annotate_href]"><b>Annotate</b></a><br>[end]
+        [is roottype "svn"][else]<a href="[entries.annotate_href]"><b>Annotate</b></a><br />[end]
       </td>
       <td>
       [is entries.state "dead"]
@@ -56,9 +56,9 @@
       [else]
       [# if you don't want to allow select for diffs then remove this section]
       [is entries.rev rev_selected]
-        <b>[[]selected]</b><br>
+        <b>[[]selected]</b><br />
       [else]
-      <a href="[entries.sel_for_diff_href]"><b>[[]select&nbsp;for&nbsp;diffs]</b></a><br>
+      <a href="[entries.sel_for_diff_href]"><b>[[]select&nbsp;for&nbsp;diffs]</b></a><br />
       [end]
         [if-any entries.diff_to_sel_href]
           <a href="[entries.diff_to_sel_href]"><b>Diff&nbsp;to&nbsp;selected&nbsp;[rev_selected]</b></a>
@@ -81,17 +81,17 @@
     <td>
       [# Branches column]
       [if-any entries.vendor_branch]
-        <i>vendor branch</i><br>
+        <i>vendor branch</i><br />
       [end]
       [if-any entries.branches]
         [for entries.branches]
-          <a href="[entries.branches.href]"><b>[entries.branches.name]</b></a><br>
+          <a href="[entries.branches.href]"><b>[entries.branches.name]</b></a><br />
         [end]
       [end]
       [if-any entries.branch_points]
         Branch point for:
         [for entries.branch_points]
-          <a href="[entries.branch_points.href]"><b>[entries.branch_points.name]</b></a><br>
+          <a href="[entries.branch_points.href]"><b>[entries.branch_points.name]</b></a><br />
         [end]
       [end]
       [if-any entries.next_main]
@@ -130,11 +130,11 @@
       [is roottype "svn"]
         [if-index entries last]Added[else]Modified[end]
       [end]
-      [entries.ago] ago<br><i>[entries.date_str]</i>
+      [entries.ago] ago<br /><i>[entries.date_str]</i>
       [is roottype "cvs"]
         [if-any entries.prev]
           [if-any entries.changed]
-            <br>Changes since <b>[entries.prev]: [entries.changed] lines</b>
+            <br />Changes since <b>[entries.prev]: [entries.changed] lines</b>
           [end]
         [end]
       [end]
@@ -149,13 +149,13 @@
   <tr class="vc_row_[if-index entries even]even[else]odd[end]">
     <td colspan=5>
       [is roottype "svn"]
-        [is entries.filename where][else]<b>File name: </b>[entries.filename]<br>[end]
+        [is entries.filename where][else]<b>File name: </b>[entries.filename]<br />[end]
         [if-any entries.size]
-          <b>File length: </b>[entries.size] byte(s)<br>
+          <b>File length: </b>[entries.size] byte(s)<br />
         [end]
 
         [if-any entries.copy_path]
-           <b>Copied from: </b><a href="[entries.copy_href]">[entries.copy_path]</a> revision [entries.copy_rev]<br>
+           <b>Copied from: </b><a href="[entries.copy_href]">[entries.copy_path]</a> revision [entries.copy_rev]<br />
         [end]
       [end]
 

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/markup.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/markup.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/markup.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -12,37 +12,37 @@
 (<a href="[download_href]"><b>download</b></a>)
 [if-any download_text_href](<a href="[download_text_href]"><b>as text</b></a>)[end]
 
-<br>
+<br />
 
 [if-any log]
   Revision: <b>[rev]</b>[if-any vendor_branch] <i>(vendor branch)</i>[end],
   <i>[date_str]</i> ([ago] ago) by <i>[author]</i>
   
   [if-any branches]
-    <br>Branch: <b>[branches]</b>
+    <br />Branch: <b>[branches]</b>
   [end]
   [if-any tags]
-    <br>CVS Tags: <b>[tags]</b>
+    <br />CVS Tags: <b>[tags]</b>
   [end]
   [if-any branch_points]
-    <br>Branch point for: <b>[branch_points]</b>
+    <br />Branch point for: <b>[branch_points]</b>
   [end]
   [is roottype "cvs"]
     [if-any changed]
-      <br>Changes since <b>[prev]: [changed] lines</b>
+      <br />Changes since <b>[prev]: [changed] lines</b>
     [end]
   [end]
   [is roottype "svn"]
-    <br>File size: [size] byte(s)
+    <br />File size: [size] byte(s)
   [end]
   [is state "dead"]
-    <br><b><i>FILE REMOVED</i></b>
+    <br /><b><i>FILE REMOVED</i></b>
   [end]
   <pre class="vc_log">[log]</pre>
 [else]
-  Revision: <b>[rev]</b><br>
+  Revision: <b>[rev]</b><br />
   [if-any tag]
-    Tag: <b>[tag]</b><br>
+    Tag: <b>[tag]</b><br />
   [end]
 [end]
 </div>

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -217,7 +217,7 @@
       [if-index commits.files last]
 	<tr class="vc_row_[if-index commits even]even[else]odd[end]">
 	  <td>&nbsp;</td>
-	  <td colspan=5><b>Log:</b><br>
+	  <td colspan=5><b>Log:</b><br />
 	    <pre class="vc_log">[commits.desc]</pre></td>
 	</tr>
       [end]

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query_results.ezt
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query_results.ezt	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/etc/plugins/scmsvn/viewcvs/templates/query_results.ezt	2010-07-27 15:26:50 UTC (rev 6834)
@@ -66,7 +66,7 @@
   [end]
   <tr class="vc_row_[if-index commits even]even[else]odd[end]">
     <td>&nbsp;</td>
-    <td colspan="5"><b>Log:</b><br>
+    <td colspan="5"><b>Log:</b><br />
       <pre class="vc_log">[commits.desc]</pre></td>
   </tr>
   </tbody>

Modified: trunk/gforge_base/evolvisforge/gforge/www/account/login.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/account/login.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/account/login.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -96,10 +96,10 @@
 	if (!isset($userstatus)) {
 		$feedback = _('<P>Your account does not exist.');
 	} else if ($userstatus == "P") {
-		$feedback = sprintf(_('<p>Your account is currently pending your email confirmation.		Visiting the link sent to you in this email will activate your account.		<p>If you need this email resent, please click below and a confirmation		email will be sent to the email address you provided in registration.		<p><a href="%1$s">[Resend Confirmation Email]</a>		<br><hr>		<p>'), util_make_url ("/account/pending-resend.php?form_user=".htmlspecialchars($form_loginname)));
+		$feedback = sprintf(_('<p>Your account is currently pending your email confirmation.		Visiting the link sent to you in this email will activate your account.		<p>If you need this email resent, please click below and a confirmation		email will be sent to the email address you provided in registration.		<p><a href="%1$s">[Resend Confirmation Email]</a>		<br /><hr />		<p>'), util_make_url ("/account/pending-resend.php?form_user=".htmlspecialchars($form_loginname)));
 	} else {
 		if ($userstatus == "D") {
-			$feedback .= '<br />'.sprintf(_('<p>Your %1$s account has been removed by %1$s staff. This may occur for two reasons, either 1) you requested that your account be removed; or 2) some action has been performed using your account which has been seen as objectionable (i.e. you have breached the terms of service for use of your account) and your account has been revoked for administrative reasons. Should you have questions or concerns regarding this matter, please log a <a href="%2$s">support request</a>.</p><p>Thank you, <br><br>%1$s Staff</p>'), $GLOBALS['sys_name'], util_make_url ("/support/?group_id=1"));
+			$feedback .= '<br />'.sprintf(_('<p>Your %1$s account has been removed by %1$s staff. This may occur for two reasons, either 1) you requested that your account be removed; or 2) some action has been performed using your account which has been seen as objectionable (i.e. you have breached the terms of service for use of your account) and your account has been revoked for administrative reasons. Should you have questions or concerns regarding this matter, please log a <a href="%2$s">support request</a>.</p><p>Thank you, <br /><br />%1$s Staff</p>'), $GLOBALS['sys_name'], util_make_url ("/support/?group_id=1"));
 		}
 	}
 	html_feedback_top($feedback);

Modified: trunk/gforge_base/evolvisforge/gforge/www/admin/configman.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/admin/configman.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/admin/configman.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -89,7 +89,7 @@
 		fclose($handle);
 	} else {
 		// say we couldn't get into etc plugins dir
-		$feedback .= _('Could not open plugins etc dir for reading. Check the permissions for apache<br>');
+		$feedback .= _('Could not open plugins etc dir for reading. Check the permissions for apache<br />');
 	}*/
 	
 	echo '<br /><div align="center">';
@@ -163,7 +163,7 @@
 <!--<?php //echo _('Path were you store the plugin configuration folders. E.g. : /etc/gforge/plugins/'); ?>&nbsp;&nbsp;
 <input type="text" size="55" width="55" name="pluginpath" value="<?php //echo getStringFromRequest('pluginpath')?>"/>
 <input type="submit" name="changepath" value="<?php //echo _('Change'); ?>"/>
-<br>'-->
+<br />'-->
 <?php
 
 //if (getStringFromRequest('pluginpath')) {
@@ -203,7 +203,7 @@
 			 	$j++;
 			}
 			echo $HTML->listTableBottom();
-			/*echo '<br><center>' . html_build_rich_textarea('filedata',30,150,$filedata,false) . '</center>';*/
+			/*echo '<br /><center>' . html_build_rich_textarea('filedata',30,150,$filedata,false) . '</center>';*/
 			echo '<br />';
 			if ($has_write) {
 				echo '<div align="center"><input type="submit" name="doedit" value="' . _('Save') .'"/></div>';
@@ -221,14 +221,14 @@
 		if ($handle = fopen($filepath,'w')) {
 			if (fwrite($handle,$filedata)) {
 				// say wrote ok
-				$feedback .= _('File wrote successfully.<br>');
+				$feedback .= _('File wrote successfully.<br />');
 			} else {
 				// say some problem
-				$feedback .= _('File wasn\'t written or is empty.<br>');
+				$feedback .= _('File wasn\'t written or is empty.<br />');
 			}
 		} else {
 			// say couldn't open
-			$feedback .= _('Could not open the file for read/write. Check the permissions for apache<br>');
+			$feedback .= _('Could not open the file for read/write. Check the permissions for apache<br />');
 		}*/
 	}
 //}

Modified: trunk/gforge_base/evolvisforge/gforge/www/admin/passedit.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/admin/passedit.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/admin/passedit.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -75,7 +75,7 @@
 		plugin_hook('change_cal_password',$u->getID());
 	}
 
-	site_admin_header(array('title'=>_('Site·Admin:·Successfully Changed·User·Password')));
+	site_admin_header(array('title'=>_('Site Admin: Successfully Changed User Password')));
 
 	printf(_('<h2>%1$s Password Change Confirmation</h2><p>You have changed the password of %2$s (%3$s).</p>'), $GLOBALS['sys_name'], $u->getUnixName(), $u->getRealName());
 	printf('<p>'._("Go back to %s.").'</p>', '<a href="userlist.php">'._("the Full User List").'</a>');

Modified: trunk/gforge_base/evolvisforge/gforge/www/admin/useredit.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/admin/useredit.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/admin/useredit.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -196,7 +196,7 @@
 <?php if ($u->getStatus() != 'D') {	?>
 <tr>
 <td colspan="2"><input type="checkbox" name="confirm_delete" value="1"><?php echo _('I want to delete this user'); ?>
-&nbsp;<input type="submit" name="delete_user" value="<?php echo _('Delete'); ?>" /><br>&nbsp;
+&nbsp;<input type="submit" name="delete_user" value="<?php echo _('Delete'); ?>" /><br />&nbsp;
 </td>
 </tr>
 <?php } ?>

Modified: trunk/gforge_base/evolvisforge/gforge/www/docman/doceditor.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/docman/doceditor.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/docman/doceditor.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -80,9 +80,9 @@
 unset($GLOBALS['editor_was_set_up']);
 
 if ($editor) {
-	echo '<br><div align="right"><input type="submit" value="update" onclick="window.opener.document.adddata.data.value=getEditorValue(\'data\');window.close();"/></div>';
+	echo '<br /><div align="right"><input type="submit" value="update" onclick="window.opener.document.adddata.data.value=getEditorValue(\'data\');window.close();"/></div>';
 } else {
-	echo '<br><div align="right"><input type="submit" value="update" onclick="window.opener.document.adddata.data.value=window.document.theform.data.value;window.close();"/></div>';
+	echo '<br /><div align="right"><input type="submit" value="update" onclick="window.opener.document.adddata.data.value=window.document.theform.data.value;window.close();"/></div>';
 }
 echo '</form>';
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/docman/include/vtemplate.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/docman/include/vtemplate.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/docman/include/vtemplate.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -42,82 +42,82 @@
 switch($errno){
   case 1:
     $this->titre="$method - Erreur $errno de session n° $code - ligne $line";
-    $this->msg = "La zone $arg est déjà ouverte.Avant d'ajouter une session sur cette zone, vous devez la fermer à l'aide de la fonction closeSession().<br>"	;
+    $this->msg = "La zone $arg est déjà ouverte.Avant d'ajouter une session sur cette zone, vous devez la fermer à l'aide de la fonction closeSession().<br />"	;
   break;
   case 2:
     $this->titre="$method - Erreur $errno de session n° $code - ligne $line";
-    $this->msg = "Vous tentez de fermer une session de la zone $arg[1] alors qu'aucune session pour cette zone n'existe.Pour ouvrir une session, utilisez la fonction addSession().<br>";
+    $this->msg = "Vous tentez de fermer une session de la zone $arg[1] alors qu'aucune session pour cette zone n'existe.Pour ouvrir une session, utilisez la fonction addSession().<br />";
   break;
   case 3:
     $this->titre="$method - Erreur $errno de session n° $code - ligne $line";
 	$var = $arg[1];
 	$zone = $arg[0];
-    $this->msg = "Vous essayez de valoriser la variable $var sans avoir créer de session de la zone $zone.Utilisez la fonction addSession() pour créer une session, puis setVar pour valoriser une variable.<br>";
+    $this->msg = "Vous essayez de valoriser la variable $var sans avoir créer de session de la zone $zone.Utilisez la fonction addSession() pour créer une session, puis setVar pour valoriser une variable.<br />";
   break;
   case 4:
     $this->titre="$method - Erreur $errno de session n° $code - ligne $line";
 	$var = $arg[1];
 	$zone = $arg[0];
-    $this->msg = "La variable $var que vous souhaitez valoriser n'existe pas dans la zone $zone.<br>";
+    $this->msg = "La variable $var que vous souhaitez valoriser n'existe pas dans la zone $zone.<br />";
   break;
   case 5:
     $this->titre="$method - Erreur $errno de parsing n° $code - ligne $line";
-    $this->msg = "Vous utilisez des caractère non autorisés pour déclarer vos zones.Vous pouvez utiliser tous les caractères à l'exception de \'{\' , \'#\' \'}\' et \'|\'.<br>";
+    $this->msg = "Vous utilisez des caractère non autorisés pour déclarer vos zones.Vous pouvez utiliser tous les caractères à l'exception de \'{\' , \'#\' \'}\' et \'|\'.<br />";
   break;
   case 6:
     $this->titre="$method - Erreur $errno de parsing n° $code - ligne $line";
-    $this->msg = "Vous ne pouvez pas utiliser le même nom ($arg)de zone plusieurs fois.<br>";
+    $this->msg = "Vous ne pouvez pas utiliser le même nom ($arg)de zone plusieurs fois.<br />";
   break;
   case 7:
     $this->titre="$method - Erreur $errno de parsing n° $code - ligne $line";
-    $this->msg = "Vous avez oublié de fermer la zone $arg.<br>";
+    $this->msg = "Vous avez oublié de fermer la zone $arg.<br />";
   break;
   case 8:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "Le fichier template $arg est introuvable.<br>";
+    $this->msg = "Le fichier template $arg est introuvable.<br />";
   break;
   case 9:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "Impossible d'ouvrir le fichier $arg.Vérifiez les droits de ce fichier.<br>";
+    $this->msg = "Impossible d'ouvrir le fichier $arg.Vérifiez les droits de ce fichier.<br />";
   break;
   case 10:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "Impossible de lire le fichier template $arg.<br>";
+    $this->msg = "Impossible de lire le fichier template $arg.<br />";
   break;
   case 11:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "La zone $arg est introuvable.Vérifiez la syntaxe de cette zone.<br>";
+    $this->msg = "La zone $arg est introuvable.Vérifiez la syntaxe de cette zone.<br />";
   break;
   case 12:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "La variable $arg est introuvable .Vérifiez la syntaxe de la variable.<br>";
+    $this->msg = "La variable $arg est introuvable .Vérifiez la syntaxe de la variable.<br />";
   break;
   case 13:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
-    $this->msg = "L'identifiant de fichier spécifié n'existe pas.Vérifiez les fonctions Open() de votre script.<br>";
+    $this->msg = "L'identifiant de fichier spécifié n'existe pas.Vérifiez les fonctions Open() de votre script.<br />";
   break;
   case 14:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
 	$var = $arg[1];
 	$file = $arg[0];
-    $this->msg = "La variable $var dans le fichier $file est introuvable.Vérifiez la syntaxe de la variable.<br>";
+    $this->msg = "La variable $var dans le fichier $file est introuvable.Vérifiez la syntaxe de la variable.<br />";
   break;
   case 15:
     $this->titre="$method - Erreur $errno de traitement n° $code - ligne $line";
 	$var = $arg[2];
 	$zone = $arg[1];
 	$fichier = $arg[0];
-    $this->msg = "La variable $var dans la zone $zone du fichier $fichier est introuvable.Vérifiez la syntaxe de la variable et du nom de la zone.<br>";
+    $this->msg = "La variable $var dans la zone $zone du fichier $fichier est introuvable.Vérifiez la syntaxe de la variable et du nom de la zone.<br />";
   break;
   default:
 	 $this->titre = "$method - Erreur $errno inconnue $code - ligne $line";
      $this->msg = "Veuillez le rapporter aux auteurs de la classe.";
 }
-$this->titre .= ": <br>";
+$this->titre .= ": <br />";
 if ($disp){
 //	$web = "Pour plus d'informations, consultez la <a href=\"http://www.virtual-solution.net/vtemplate/docs/debug-mod.php?version=".VTEMPLATE_VERSION."&build=".VTEMPLATE_BUILD."&type=".VTEMPLATE_TYPE."&error=$code\" target=\"_blank\">doc en ligne</a>";
-//	echo "<font face=verdana size=2 color=red><u>$this->titre</u><i>$this->msg</i>$web<br><br></font>";
-	echo "<font face=verdana size=2 color=red><u>$this->titre</u><i>$this->msg</i>$infos<br><br></font>";
+//	echo "<font face=verdana size=2 color=red><u>$this->titre</u><i>$this->msg</i>$web<br /><br /></font>";
+	echo "<font face=verdana size=2 color=red><u>$this->titre</u><i>$this->msg</i>$infos<br /><br /></font>";
 }
 return -1;
 }
@@ -222,9 +222,9 @@
 
 
 function dispVar(){
- echo "Liste variables de $this->name:<br>";
+ echo "Liste variables de $this->name:<br />";
  foreach ( $this->varlist as $vars )
-    echo "$vars <br>";
+    echo "$vars <br />";
 }
 
 function setGlobalVar($varname,$value){

Modified: trunk/gforge_base/evolvisforge/gforge/www/docman/index.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/docman/index.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/docman/index.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -137,12 +137,12 @@
 	<link rel="stylesheet" href="<?php echo util_make_url ('/jscook/ThemeXP/theme.css'); ?>" type="text/css" />
 	<script src="<?php echo util_make_url ('/jscook/ThemeXP/theme.js'); ?>" type="text/javascript"></script>
 
-	<br>
+	<br />
 	<form action="">
 		<input style="width: 100px" type="button" value="<?php echo _('expand all'); ?>" onclick="ctExpandTree('myMenuID',9);" />
 		<input style="width: 100px" type="button" value="<?php echo _('collapse all'); ?>" onclick="ctCollapseTree('myMenuID');" />
 	</form>
-	<br>
+	<br />
 	<div id="myMenuID"></div>
 
 	<script language="JavaScript"><!--

Modified: trunk/gforge_base/evolvisforge/gforge/www/docman/new.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/docman/new.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/docman/new.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -194,7 +194,7 @@
 					<tr>
 						<td>';
 				
-				echo "<strong>" . _('Name your file :') . '</strong>'.utils_requiredField().'<input type="text" name="name" ><br>';
+				echo "<strong>" . _('Name your file :') . '</strong>'.utils_requiredField().'<input type="text" name="name" ><br />';
 				echo '<a href="javascript:openEditor('.$group_id.');">'._('Edit').'</a>';
 				echo '<input type="hidden" name="data">';
 				echo '<input type="hidden" name="type" value="editor">';

Modified: trunk/gforge_base/evolvisforge/gforge/www/export/rss20_activity.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/export/rss20_activity.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/export/rss20_activity.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -127,7 +127,7 @@
 } else {
 	// Print error showing no group was selected
 
-	echo "<br><span class=\"error\">    Error: No group selected</span>";
+	echo "<br /><span class=\"error\">    Error: No group selected</span>";
 }
 
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/forum/admin/ForumAdmin.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/forum/admin/ForumAdmin.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/forum/admin/ForumAdmin.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -61,7 +61,7 @@
 		
 		$return = '<a href="admin/index.php?editmsg=' . $msg_id  . '&group_id=' . $group_id .  '&thread_id=' . $thread_id. '&forum_id=' . $forum_id . '">' . html_image('ic/forum_edit.gif','37','15',array('alt'=>_("Edit"))) . "</a>";
 		$return .= '    <a href="admin/index.php?deletemsg=' . $msg_id  . '&group_id=' . $group_id . '&thread_id=' . $thread_id. '&forum_id=' . $forum_id . '">' . html_image('ic/forum_delete.gif','16','18',array('alt'=>_("Delete"))) . "</a>";
-		$return .= "<br>";
+		$return .= "<br />";
 		return $return;
 	}
 	
@@ -404,14 +404,14 @@
 						$sql = "DELETE FROM forum_pending_attachment WHERE msg_id='$msgids[$i]'";
 						if (!db_query($sql)) {
 							$feedback .= "DB Error ";
-							$feedback .= db_error() . "<br>";
+							$feedback .= db_error() . "<br />";
 							db_rollback();
 							break;
 						}
 						$sql = "DELETE FROM forum_pending_messages WHERE msg_id='$msgids[$i]'";
 						if (!db_query($sql)) {
 							$feedback .= "DB Error ";
-							$feedback .= db_error() . "<br>";
+							$feedback .= db_error() . "<br />";
 							db_rollback();
 							break;
 						}
@@ -424,13 +424,13 @@
 						$sql = "SELECT * FROM forum_pending_messages WHERE msg_id='$msgids[$i]'";
 						$res1 = db_query($sql);
 						if (!$res1) {
-							$feedback .= "DB Error " . db_error() . "<br>";
+							$feedback .= "DB Error " . db_error() . "<br />";
 							break;
 						}
 						$sql = "SELECT * FROM forum_pending_attachment WHERE msg_id='$msgids[$i]'";
 						$res2 = db_query($sql);
 						if (!$res2) {
-							$feedback .= "DB Error " . db_error() . "<br>";
+							$feedback .= "DB Error " . db_error() . "<br />";
 							break;
 						}
 						$f = new Forum($this->g,$forum_id);
@@ -455,7 +455,7 @@
 						$has_followups = db_result($res1,0,"has_followups");
 						$most_recent_date = db_result($res1,0,"most_recent_date");
 						if ($fm->insertreleasedmsg($group_forum_id,$subject, $body,$post_date, $thread_id, $is_followup_to,$posted_by,$has_followups,time())) {
-							$feedback .= "( $subject ) " . _('Pending forum released') . "<br>";
+							$feedback .= "( $subject ) " . _('Pending forum released') . "<br />";
 							if (db_numrows($res2)>0) {
 								//if there�s an attachment
 								$am = NEW AttachManager();//object that will handle and insert the attachment into the db
@@ -471,7 +471,7 @@
 								$mimetype = db_result($res2,0,"mimetype");
 								$am->AddToDBOnly($userid, $dateline, $filename, $filedata, $filesize, $visible, $filehash, $mimetype);
 								foreach ($am->Getmessages() as $item) {
-									$feedback .= "$msg_id - " . $item . "<br>";
+									$feedback .= "$msg_id - " . $item . "<br />";
 								}
 							}
 							$deleteok = true;
@@ -479,9 +479,9 @@
 							if ($fm->isError()) {
 							    if ( $fm->getErrorMessage() == (_('Couldn\'t Update Master Thread parent with current time')) ) {
 							    	//the thread which the message was replying to doesn�t exist any more
-							    	$feedback .= "( " . $subject . " ) " . _('The thread which the message was posted to doesn\'t exist anymore, please delete the message.') . "<br>";
+							    	$feedback .= "( " . $subject . " ) " . _('The thread which the message was posted to doesn\'t exist anymore, please delete the message.') . "<br />";
 							    } else {
-									$feedback .= "$msg_id - " . $fm->getErrorMessage() . "<br>";
+									$feedback .= "$msg_id - " . $fm->getErrorMessage() . "<br />";
 							    }
 								$deleteok = false;
 							}
@@ -497,7 +497,7 @@
 								$sql = "DELETE FROM forum WHERE msg_id='$fm->getID()'";
 								if (!db_query($sql)) {
 									$feedback .= "DB Error ";
-									$feedback .= db_error() . "<br>";
+									$feedback .= db_error() . "<br />";
 									db_rollback();
 									break;
 								}
@@ -512,14 +512,14 @@
 							$sql = "DELETE FROM forum_pending_attachment WHERE msg_id='$msgids[$i]'";
 							if (!db_query($sql)) {
 								$feedback .= "DB Error ";
-								$feedback .= db_error() . "<br>";
+								$feedback .= db_error() . "<br />";
 								db_rollback();
 								break;
 							}
 							$sql = "DELETE FROM forum_pending_messages WHERE msg_id='$msgids[$i]'";
 							if (!db_query($sql)) {
 								$feedback .= "DB Error ";
-								$feedback .= db_error() . "<br>";
+								$feedback .= db_error() . "<br />";
 								db_rollback();
 								break;
 							}

Modified: trunk/gforge_base/evolvisforge/gforge/www/forum/admin/index.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/forum/admin/index.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/forum/admin/index.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -82,7 +82,7 @@
 		forum_header(array('title'=>_('Add forum')));
 
 		echo '
-			<br>
+			<br />
 			<form method="post" action="'.getStringFromServer('PHP_SELF').'">
 			<input type="hidden" name="post_changes" value="y" />
 			<input type="hidden" name="add_forum" value="y" />
@@ -101,7 +101,7 @@
 			<input type="radio" name="allow_anonymous" value="0" checked="checked" />'._('No').'
 			<br /><br />' .
 					html_build_select_box_from_assoc(array("0" => _('No Moderation') ,"1" => _('Moderated Level 1'),"2" => _('Moderated Level 2') ),"moderation_level",0) . '
-				<br>' . _('Moderated Level 1') . ': ' . _('To moderate anonymous posts (if allowed in public forum) and posts from non-member users.') . '<br>' . _('Moderated Level 2') . ': ' . _('To moderate ALL posts.') . '<p>
+				<br />' . _('Moderated Level 1') . ': ' . _('To moderate anonymous posts (if allowed in public forum) and posts from non-member users.') . '<br />' . _('Moderated Level 2') . ': ' . _('To moderate ALL posts.') . '<p>
 				
 			<strong>'._('Email All Posts To:').'</strong><br />
 			<input type="text" name="send_all_posts_to" value="" size="30" maxlength="50" />
@@ -153,7 +153,7 @@
 				<input type="radio" name="is_public" value="9"'.(($f->isPublic() == 9)?' checked="checked"':'').' />'._('Deleted').'<br />
 				<p>' .
 					html_build_select_box_from_assoc(array("0" => _('No Moderation') ,"1" => _('Moderated Level 1'),"2" => _('Moderated Level 2') ),"moderation_level",$f->getModerationLevel()) . '
-				<br>' . _('Moderated Level 1') . ': ' . _('To moderate anonymous posts (if allowed in public forum) and posts from non-member users.') . '<br>' . _('Moderated Level 2') . ': ' . _('To moderate ALL posts.') . '<p>
+				<br />' . _('Moderated Level 1') . ': ' . _('To moderate anonymous posts (if allowed in public forum) and posts from non-member users.') . '<br />' . _('Moderated Level 2') . ': ' . _('To moderate ALL posts.') . '<p>
 				
 
 				<strong>'._('Forum Name').':</strong><br />

Modified: trunk/gforge_base/evolvisforge/gforge/www/forum/attachment.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/forum/attachment.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/forum/attachment.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -145,7 +145,7 @@
 				}
 			}
 			foreach ($am->Getmessages() as $item) {
-				$feedback .= "<br>" . $item;
+				$feedback .= "<br />" . $item;
 			}
 			echo '<p><p><center><form method="post"><input type="button" value="'._("Close Window").'" onclick="window.close()"></form></center>';
 			forum_footer(array());

Modified: trunk/gforge_base/evolvisforge/gforge/www/forum/forum.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/forum/forum.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/forum/forum.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -105,7 +105,7 @@
 			$am->SetForumMsg($fm);
 			$am->attach($attach,$group_id,0,$fm->getID());
 			foreach ($am->Getmessages() as $item) {
-				$feedback .= "<br>" . $item;
+				$feedback .= "<br />" . $item;
 			}
 			$style='';
 			$thread_id='';

Modified: trunk/gforge_base/evolvisforge/gforge/www/forum/include/ForumHTML.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/forum/include/ForumHTML.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/forum/include/ForumHTML.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -480,11 +480,11 @@
 <table>
 	<tr>
 		<td valign="top"></td>
-		<td valign="top"><br>
+		<td valign="top"><br />
 		<strong><?php echo _('Subject:'); ?></strong><?php echo utils_requiredField(); ?><br />
 		<input type="text" name="subject" value="<?php echo $subject; ?>"
-			size="70" /> <br>
-		<br>
+			size="70" /> <br />
+		<br />
 		<strong><?php echo _('Message:'); ?></strong><?php echo notepad_button('document.forms[1].body') ?><?php echo utils_requiredField(); ?><br />
 		<?php
 		$GLOBALS['editor_was_set_up']=false;
@@ -499,8 +499,8 @@
 			echo '<textarea name="body"  rows="10" cols="70">' . $body . '</textarea>';
 		}
 		unset($GLOBALS['editor_was_set_up']);
-		?> <br>
-		<br>
+		?> <br />
+		<br />
 
 		<p><?php //$this->LinkAttachForm();?>
 		
@@ -551,11 +551,11 @@
 <table>
 	<tr>
 		<td valign="top"></td>
-		<td valign="top"><br>
+		<td valign="top"><br />
 		<strong><?php echo _('Subject:'); ?></strong><?php echo utils_requiredField(); ?><br />
 		<input type="text" name="subject" value="<?php echo $subject; ?>"
-			size="70" /> <br>
-		<br>
+			size="70" /> <br />
+		<br />
 		<strong><?php echo _('Message:'); ?></strong><?php echo notepad_button('document.forms[1].body') ?><?php echo utils_requiredField(); ?><br />
 
 		<?php
@@ -571,8 +571,8 @@
 			echo '<textarea name="body"  rows="10" cols="70" wrap="soft">' . $body . '</textarea>';
 		}
 		unset($GLOBALS['editor_was_set_up']);
-		?> <?php //$text_support->displayTextField('body'); ?> <br>
-		<br>
+		?> <?php //$text_support->displayTextField('body'); ?> <br />
+		<br />
 		<!--		<span class="selected"><?php echo _('HTML tags will display in your post as text'); ?></span> -->
 		<p><?php $this->LinkAttachForm();?>
 		

Modified: trunk/gforge_base/evolvisforge/gforge/www/include/Layout.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/include/Layout.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/include/Layout.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -1050,7 +1050,7 @@
 			return '';
 		} else {
 			return '
-				<span class="feedback">'.strip_tags($feedback, '<br>').'</span>';
+				<span class="feedback">'.strip_tags($feedback, '<br />').'</span>';
 		}
 	}
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/jscook/JSCookTree.js
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/jscook/JSCookTree.js	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/jscook/JSCookTree.js	2010-07-27 15:26:50 UTC (rev 6834)
@@ -315,7 +315,7 @@
 	if (expandLevel)
 		ctExpandTree (id, expandLevel);
 
-	//document.write ('<textarea wrap="off" rows="15" cols="80">' + str + '</textarea><br>');
+	//document.write ('<textarea wrap="off" rows="15" cols="80">' + str + '</textarea><br />');
 
 	return treeIndex;
 }

Modified: trunk/gforge_base/evolvisforge/gforge/www/pm/browse_task.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/pm/browse_task.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/pm/browse_task.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -79,7 +79,7 @@
 
 	//Loop through all subprojects and accumulate all project tasks
 	for ($jj = 0; $jj < count($pgArr); $jj++ ) {
-		//echo $pgArr[$jj]->getName().'<br>';
+		//echo $pgArr[$jj]->getName().'<br />';
 		$ptf = new ProjectTaskFactory($pgArr[$jj]);
 		if (!$ptf || !is_object($ptf)) {
 			exit_error('Error','Could Not Get ProjectTaskFactory');
@@ -99,7 +99,7 @@
 			exit_error('Error',$ptf->getErrorMessage());
 		}
 
-		//echo $pt_arr[$jj]->getProjectGroup()->getName().'<br>';
+		//echo $pt_arr[$jj]->getProjectGroup()->getName().'<br />';
 
 	} //end of for loop
 	/*end code to get all groups*/

Modified: trunk/gforge_base/evolvisforge/gforge/www/pm/task.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/pm/task.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/pm/task.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -291,7 +291,7 @@
 		$project_group_id_list = getStringFromRequest('project_group_id_list');
 		$count=count($project_task_id_list);
 		//for ($x=0; $x<$count; $x++)
-		//	echo $project_task_id_list[$x].'-'. $project_group_id_list[$x].'<br>';
+		//	echo $project_task_id_list[$x].'-'. $project_group_id_list[$x].'<br />';
 		//echo 'c'.$count.' value: '.$project_task_id_list[0];
 		//Print_r($_REQUEST);
 		//break;		

Modified: trunk/gforge_base/evolvisforge/gforge/www/project/request.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/project/request.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/project/request.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -60,7 +60,7 @@
 echo ngettext('You can request to join a project by clicking the submit button. The administrator will be emailed to approve or deny your request.', 'You can request to join a project by clicking the submit button. The administrators will be emailed to approve or deny your request.', $nbadmins); ?></p>
 <form action="<?php echo getStringFromServer('PHP_SELF')."?group_id=$group_id"; ?>" method="post">
 <p>
-<?php echo ngettext('You must send a comment to the administrator:', 'You must send a comment to the administrators:',$nbadmins); echo utils_requiredField(); ?><br>
+<?php echo ngettext('You must send a comment to the administrator:', 'You must send a comment to the administrators:',$nbadmins); echo utils_requiredField(); ?><br />
 <textarea name="comments" rows="15" cols="60"></textarea>
 </p>
 <p>

Modified: trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/vclib/ccvs/__init__.py
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/vclib/ccvs/__init__.py	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/vclib/ccvs/__init__.py	2010-07-27 15:26:50 UTC (rev 6834)
@@ -347,5 +347,5 @@
       rev = None
 
     if rev:
-      #print "tag =", tag.number, "rev =", rev.number, "<br>"
+      #print "tag =", tag.number, "rev =", rev.number, "<br />"
       self.last = rev

Modified: trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/viewvc.py
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/viewvc.py	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/scm/viewvc/lib/viewvc.py	2010-07-27 15:26:50 UTC (rev 6834)
@@ -2348,7 +2348,7 @@
   
   # in the code below, "\x01" will be our stand-in for "&". We don't want
   # to insert "&" because it would get escaped by htmlify().  Similarly,
-  # we use "\x02" as a stand-in for "<br>"
+  # we use "\x02" as a stand-in for "<br />"
 
   if hr_breakable > 1 and len(text) > hr_breakable:
     text = re.sub('(' + ('.' * hr_breakable) + ')', '\\1\x02', text)

Modified: trunk/gforge_base/evolvisforge/gforge/www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -85,7 +85,7 @@
 	 */
 	function writeBody() {
 		if (strlen($this->words) < 3) {
-			echo '<br><h1>'._('Error: Under min length search').'<h1><br>';
+			echo '<br /><h1>'._('Error: Under min length search').'<h1><br />';
 		} else {
 			echo $this->getResult();
 		}

Modified: trunk/gforge_base/evolvisforge/gforge/www/soap/nusoap.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/soap/nusoap.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/soap/nusoap.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -1721,10 +1721,10 @@
     */
 	function getPHPType($type,$ns){
 		if(isset($this->typemap[$ns][$type])){
-			//print "found type '$type' and ns $ns in typemap<br>";
+			//print "found type '$type' and ns $ns in typemap<br />";
 			return $this->typemap[$ns][$type];
 		} elseif(isset($this->complexTypes[$type])){
-			//print "getting type '$type' and ns $ns from complexTypes array<br>";
+			//print "getting type '$type' and ns $ns from complexTypes array<br />";
 			return $this->complexTypes[$type]['phpType'];
 		}
 		return false;
@@ -1829,7 +1829,7 @@
     * @deprecated
     */
     function serializeTypeDef($type){
-    	//print "in sTD() for type $type<br>";
+    	//print "in sTD() for type $type<br />";
 	if($typeDef = $this->getTypeDef($type)){
 		$str .= '<'.$type;
 	    if(is_array($typeDef['attrs'])){
@@ -3070,10 +3070,10 @@
 
         $cErr = curl_error($this->ch);
 		if ($cErr != '') {
-        	$err = 'cURL ERROR: '.curl_errno($this->ch).': '.$cErr.'<br>';
+        	$err = 'cURL ERROR: '.curl_errno($this->ch).': '.$cErr.'<br />';
         	// TODO: there is a PHP bug that can cause this to SEGV for CURLINFO_CONTENT_TYPE
 			foreach(curl_getinfo($this->ch) as $k => $v){
-				$err .= "$k: $v<br>";
+				$err .= "$k: $v<br />";
 			}
 			$this->debug($err);
 			$this->setError($err);
@@ -5305,7 +5305,7 @@
 		</head>
 		<body>
 		<div class=content>
-			<br><br>
+			<br /><br />
 			<div class=title>'.$this->serviceName.'</div>
 			<div class=nav>
 				<p>View the <a href="'.$PHP_SELF.'?wsdl">WSDL</a> for the service.
@@ -5315,24 +5315,24 @@
 				    $b .= "<li><a href='#' onclick=\"popout();popup('$op')\">$op</a></li>";
 				    // create hidden div
 				    $b .= "<div id='$op' class='hidden'>
-				    <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br>";
+				    <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br /><br />";
 				    foreach($data as $donnie => $marie){ // loop through opdata
 						if($donnie == 'input' || $donnie == 'output'){ // show input/output data
-						    $b .= "<font color='white'>".ucfirst($donnie).':</font><br>';
+						    $b .= "<font color='white'>".ucfirst($donnie).':</font><br />';
 						    foreach($marie as $captain => $tenille){ // loop through data
 								if($captain == 'parts'){ // loop thru parts
-								    $b .= "&nbsp;&nbsp;$captain:<br>";
+								    $b .= "&nbsp;&nbsp;$captain:<br />";
 					                //if(is_array($tenille)){
 								    	foreach($tenille as $joanie => $chachi){
-											$b .= "&nbsp;&nbsp;&nbsp;&nbsp;$joanie: $chachi<br>";
+											$b .= "&nbsp;&nbsp;&nbsp;&nbsp;$joanie: $chachi<br />";
 								    	}
 					        		//}
 								} else {
-								    $b .= "&nbsp;&nbsp;$captain: $tenille<br>";
+								    $b .= "&nbsp;&nbsp;$captain: $tenille<br />";
 								}
 						    }
 						} else {
-						    $b .= "<font color='white'>".ucfirst($donnie).":</font> $marie<br>";
+						    $b .= "<font color='white'>".ucfirst($donnie).":</font> $marie<br />";
 						}
 				    }
 					$b .= '</div>';
@@ -5394,11 +5394,11 @@
 				$xml .= "\n<message name=\"" . $msgName . '">';
 				if(is_array($msgParts)){
 					foreach($msgParts as $partName => $partType) {
-						// print 'serializing '.$partType.', sv: '.$this->XMLSchemaVersion.'<br>';
+						// print 'serializing '.$partType.', sv: '.$this->XMLSchemaVersion.'<br />';
 						if (strpos($partType, ':')) {
 						    $typePrefix = $this->getPrefixFromNamespace($this->getPrefix($partType));
 						} elseif (isset($this->typemap[$this->namespaces['xsd']][$partType])) {
-						    // print 'checking typemap: '.$this->XMLSchemaVersion.'<br>';
+						    // print 'checking typemap: '.$this->XMLSchemaVersion.'<br />';
 						    $typePrefix = 'xsd';
 						} else {
 						    foreach($this->typemap as $ns => $types) {
@@ -7317,7 +7317,7 @@
 				$this->fault = true;
 				foreach($return as $k => $v){
 					$this->$k = $v;
-					$this->debug("$k = $v<br>");
+					$this->debug("$k = $v<br />");
 				}
 				return $return;
 			} elseif ($style == 'document') {

Modified: trunk/gforge_base/evolvisforge/gforge/www/survey/include/SurveyHTML.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/survey/include/SurveyHTML.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/survey/include/SurveyHTML.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -648,13 +648,13 @@
 							$chunks = $this->split_str($word,50);
 							foreach ($chunks as $chunk) {
 								$ret .= $chunk;
-								$ret .= "<br>";
+								$ret .= "<br />";
 							}
 							$linelength = 0;
 						} else { 
 							$linelength += strlen($word);
 							if ($linelength>100) {
-								$ret .= "<br>";
+								$ret .= "<br />";
 								$linelength = 0;
 							} else {
 								$ret .= $word . " ";

Modified: trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber-minimized.js
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber-minimized.js	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber-minimized.js	2010-07-27 15:26:50 UTC (rev 6834)
@@ -9,7 +9,7 @@
 if(e.id){this.id=e.id;}
 this.tabs.length=0;childNodes=e.childNodes;for(i=0;i<childNodes.length;i++){if(childNodes[i].className&&childNodes[i].className.match(this.REclassTab)){t=new Object();t.div=childNodes[i];this.tabs[this.tabs.length]=t;if(childNodes[i].className.match(this.REclassTabDefault)){defaultTab=this.tabs.length-1;}}}
 DOM_ul=document.createElement("ul");DOM_ul.className=this.classNav;for(i=0;i<this.tabs.length;i++){t=this.tabs[i];t.headingText=t.div.title;if(this.removeTitle){t.div.title='';}
-if(!t.headingText){for(i2=0;i2<this.titleElements.length;i2++){headingElement=t.div.getElementsByTagName(this.titleElements[i2])[0];if(headingElement){t.headingText=headingElement.innerHTML;if(this.titleElementsStripHTML){t.headingText.replace(/<br>/gi," ");t.headingText=t.headingText.replace(/<[^>]+>/g,"");}
+if(!t.headingText){for(i2=0;i2<this.titleElements.length;i2++){headingElement=t.div.getElementsByTagName(this.titleElements[i2])[0];if(headingElement){t.headingText=headingElement.innerHTML;if(this.titleElementsStripHTML){t.headingText.replace(/<br />/gi," ");t.headingText=t.headingText.replace(/<[^>]+>/g,"");}
 break;}}}
 if(!t.headingText){t.headingText=i+1;}
 DOM_li=document.createElement("li");t.li=DOM_li;DOM_a=document.createElement("a");DOM_a.appendChild(document.createTextNode(t.headingText));DOM_a.href="javascript:void(null);";DOM_a.title=t.headingText;DOM_a.onclick=this.navClick;DOM_a.tabber=this;DOM_a.tabberIndex=i;if(this.addLinkId&&this.linkIdFormat){aId=this.linkIdFormat;aId=aId.replace(/<tabberid>/gi,this.id);aId=aId.replace(/<tabnumberzero>/gi,i);aId=aId.replace(/<tabnumberone>/gi,i+1);aId=aId.replace(/<tabtitle>/gi,t.headingText.replace(/[^a-zA-Z0-9\-]/gi,''));DOM_a.id=aId;}

Modified: trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber.js
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber.js	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/tabber/tabber.js	2010-07-27 15:26:50 UTC (rev 6834)
@@ -224,7 +224,7 @@
 	if (headingElement) {
 	  t.headingText = headingElement.innerHTML;
 	  if (this.titleElementsStripHTML) {
-	    t.headingText.replace(/<br>/gi," ");
+	    t.headingText.replace(/<br />/gi," ");
 	    t.headingText = t.headingText.replace(/<[^>]+>/g,"");
 	  }
 	  break;

Modified: trunk/gforge_base/evolvisforge/gforge/www/themes/evolvis/Theme.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/themes/evolvis/Theme.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/themes/evolvis/Theme.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -886,7 +886,7 @@
             return '';
         } else {
             return '
-                <h3 style="color:red">'.strip_tags($feedback, '<br>').'</h3>';
+                <h3 style="color:red">'.strip_tags($feedback, '<br />').'</h3>';
         }
     }
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/themes/gforge/Theme.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/themes/gforge/Theme.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/themes/gforge/Theme.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -1007,7 +1007,7 @@
             return '';
         } else {
             return '
-                <h3 style="color:red">'.strip_tags($feedback, '<br>').'</h3>';
+                <h3 style="color:red">'.strip_tags($feedback, '<br />').'</h3>';
         }
     }
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/themes/gforge-simple-theme/Theme.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/themes/gforge-simple-theme/Theme.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/themes/gforge-simple-theme/Theme.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -878,7 +878,7 @@
 		return '';
 	} else {
 		return '
-				<span class="feedback">'.strip_tags($feedback, '<br>').'</span>';
+				<span class="feedback">'.strip_tags($feedback, '<br />').'</span>';
 	}
 }
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/themes/ultralite/Theme.class.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/themes/ultralite/Theme.class.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/themes/ultralite/Theme.class.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -167,7 +167,7 @@
 	 * @param   string  Box title
 	 */
 	function boxTop($title) {
-		return '<!-- boxTop --><br>'.$title.'<br>';
+		return '<!-- boxTop --><br />'.$title.'<br />';
 	}
 
 	

Modified: trunk/gforge_base/evolvisforge/gforge/www/tracker/reporting/trackeract_graph.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/tracker/reporting/trackeract_graph.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/gforge/www/tracker/reporting/trackeract_graph.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -91,7 +91,7 @@
 $lineplot2 ->SetLegend("Total Opened");
 $lineplot3 ->SetLegend("Total Still Open");
 
-//echo "<pre>".print_r($report->getDates()).'<br>'.print_r($ydata).'<br>'.print_r($ydata2).'<br>'.print_r($ydata3);
+//echo "<pre>".print_r($report->getDates()).'<br />'.print_r($ydata).'<br />'.print_r($ydata2).'<br />'.print_r($ydata3);
 //echo "<pre>".print_r($ydata2);
 //exit;
 

Modified: trunk/gforge_base/evolvisforge/htdocs/tabber.js
===================================================================
--- trunk/gforge_base/evolvisforge/htdocs/tabber.js	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/htdocs/tabber.js	2010-07-27 15:26:50 UTC (rev 6834)
@@ -224,7 +224,7 @@
 	if (headingElement) {
 	  t.headingText = headingElement.innerHTML;
 	  if (this.titleElementsStripHTML) {
-	    t.headingText.replace(/<br>/gi," ");
+	    t.headingText.replace(/<br />/gi," ");
 	    t.headingText = t.headingText.replace(/<[^>]+>/g,"");
 	  }
 	  break;

Modified: trunk/gforge_base/evolvisforge/tools/savannah_std.class
===================================================================
--- trunk/gforge_base/evolvisforge/tools/savannah_std.class	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/tools/savannah_std.class	2010-07-27 15:26:50 UTC (rev 6834)
@@ -218,9 +218,9 @@
 
         <?php
         if (!session_issecure()) {
-                //print '<IMG src="/images/clear.png" width=140 height=1 alt="Counter"><BR>';
+                //print '<IMG src="/images/clear.png" width=140 height=1 alt="Counter"><br />';
         } else {
-                //print html_blankimage(1,140) . '<br>';
+                //print html_blankimage(1,140) . '<br />';
         }
         ?>
 
@@ -234,7 +234,7 @@
         </TD>
 
 	<td class="contenttable">
-        <BR>
+        <br />
 <?php
 	}
 
@@ -261,7 +261,7 @@
         ?>
 <table summary="" class="menutable">
         <tr>
-                <td class="menutitle"><?php echo $title; ?><br></td>
+                <td class="menutitle"><?php echo $title; ?><br /></td>
         </tr>
         <tr>
                 <td class="menuitem">
@@ -274,7 +274,7 @@
         	        End the table
 	        */
         	print '
-                        <BR>
+                        <br />
                         </td>
                 </tr>
         </table>
@@ -284,7 +284,7 @@
 	function menu_entry($link, $title) {
         	print "\t".'<a href="'.$link.'">'.$title.'</a>&nbsp;&nbsp;';
 		print html_image($this->imgroot . "point.png",'7','7',array('alt'=>' > '));
-		print '&nbsp;&nbsp;<br>';
+		print '&nbsp;&nbsp;<br />';
 	}
 
         /*!     @function tab_entry

Modified: trunk/gforge_base/evolvisforge/tools/session.php
===================================================================
--- trunk/gforge_base/evolvisforge/tools/session.php	2010-07-27 15:26:45 UTC (rev 6833)
+++ trunk/gforge_base/evolvisforge/tools/session.php	2010-07-27 15:26:50 UTC (rev 6834)
@@ -36,41 +36,41 @@
 
 	return $session_serial_cookie;
 */
-echo "<br>in session_build_session_cookie";
+echo "<br />in session_build_session_cookie";
 $session_serial = $user_id.'-'.time().'-'.$GLOBALS['REMOTE_ADDR'].'-'.$GLOBALS['HTTP_USER_AGENT'];
-echo "<br>SESSION_BUILD_SESSION_COOKIE::mcrypt_module_open call";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::mcrypt_module_open call";
 $temp_sys_session_cypher=$GLOBALS['sys_session_cypher'];
-echo "<br>--->cypher=$temp_sys_session_cypher";
-echo "<br>--->2nd arg=\"\"";
+echo "<br />--->cypher=$temp_sys_session_cypher";
+echo "<br />--->2nd arg=\"\"";
 $temp_sys_session_cyphermode=$GLOBALS['sys_session_cyphermode'];
-echo "<br>--->cyphermode=$temp_sys_session_cyphermode";
-echo "<br>--->4th arg=\"\"";
+echo "<br />--->cyphermode=$temp_sys_session_cyphermode";
+echo "<br />--->4th arg=\"\"";
 $td = mcrypt_module_open($GLOBALS['sys_session_cypher'], "", $GLOBALS['sys_session_cyphermode'], "");
-echo "<br>===>returned value = $td";
-echo "<br>SESSION_BUILD_SESSION_COOKIE::mcrypt_create_iv call";
-echo "<br>--->1st arg = ($td)";
-echo "<br>--->2nd arg = MCRYPT_RAND";
+echo "<br />===>returned value = $td";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::mcrypt_create_iv call";
+echo "<br />--->1st arg = ($td)";
+echo "<br />--->2nd arg = MCRYPT_RAND";
 $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size ($td), MCRYPT_RAND);
-echo "<br>===>returned value = $iv";
-echo "<br>SESSION_BUILD_SESSION_COOKIE::mcrypt_generic_init call";
-echo "<br>--->1st arg = $td";
+echo "<br />===>returned value = $iv";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::mcrypt_generic_init call";
+echo "<br />--->1st arg = $td";
 $temp_sys_session_key=$GLOBALS['sys_session_key'];
-echo "<br>--->session key = $temp_sys_session_key";
-echo "<br>--->3rd arg = $iv";
+echo "<br />--->session key = $temp_sys_session_key";
+echo "<br />--->3rd arg = $iv";
 $tempRetVal =  mcrypt_generic_init($td, $GLOBALS['sys_session_key'], $iv);
-echo "<br>===>returned value = $tempRetVal";
-echo "<br>SESSION_BUILD_SESSION_COOKIE::mcrypt_generic call";
-echo "<br>--->1st arg = $td";
-echo "<br>--->serial = $session_serial";
+echo "<br />===>returned value = $tempRetVal";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::mcrypt_generic call";
+echo "<br />--->1st arg = $td";
+echo "<br />--->serial = $session_serial";
 /* breaker */
 $td = mcrypt_module_open("", "", "", "");
 $encrypted_session_serial = mcrypt_generic($td, $session_serial);
-echo "<br>===>returned value = $encrypted_session_serial";
-echo "<br>SESSION_BUILD_SESSION_COOKIE::mcrypt_generic_end call";
+echo "<br />===>returned value = $encrypted_session_serial";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::mcrypt_generic_end call";
 mcrypt_generic_end($td);
-echo "<br>SESSION_BUILD_SESSION_COOKIE::md5 call";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::md5 call";
 $session_serial_hash = md5($encrypted_session_serial.$GLOBALS['sys_session_key']);
-echo "<br>SESSION_BUILD_SESSION_COOKIE::base64_encode call";
+echo "<br />SESSION_BUILD_SESSION_COOKIE::base64_encode call";
 $session_serial_cookie = base64_encode($encrypted_session_serial).'-'.$session_serial_hash;
 return $session_serial_cookie;
 }



More information about the evolvis-commits mailing list