Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: 2.0.3 Upgrading Question

Quote Reply
Re: 2.0.3 Upgrading Question In reply to
Hi,

Yes a few were made (about 6). I've outlined them at:

http://gossamer-threads.com/...mail_2_0_2-2_0_3.txt

This is a diff file. It outlines the change in each file. You can read it by looking at each Index: line as in:

In Reply To:
Index: addresses.htm
===================================================================
40c40
< if (re2.test(selectObj.options.text) || x != 1) {
---
> if (re2.test(selectObj.options.text) && x != 1) {
150c150
< document.write('<tr><td colspan=2><font face="Tahoma,Arial,Helvetica" size="2"><form name="SearchForm" action="javascript:search();"><P><input type="text" name="name" size="20" onFocus="DoIt(\'start\');" onBlur="DoIt(\'stop\');" onChange="search();"><input type="Image" onClick="search();" src="<%url_images%>/templates/<%t%>/Search.gif"></p></form></font></td></tr>');
---
> document.write('<tr><td colspan=2><font face="Tahoma,Arial,Helvetica" size="2"><form name="SearchForm" action="javascript:search();"><P><input type="text" name="name" size="20" onFocus="DoIt(\'start\');" onBlur="DoIt(\'stop\');" onChange="search();"><a href="javascript:search()"><img src="<%url_images%>/templates/<%t%>/Search.gif"></a></p></form></font></td></tr>');
The first line says:

Index: addresses.htm

it tells you what file changed. The second line:

40c40

says starting at line 40 on the old version, 40 on the new one, lines starting with a < have been removed, and lines starting with a > have been added. So to update the addresses.htm file, you would look for:

if (re2.test(selectObj.options.text) || x != 1) {

and replace it with:

if (re2.test(selectObj.options.text) && x != 1) {

Let me know if this helps, is worthwhile, or makes sense. =)

Cheers,

Alex

--
Gossamer Threads Inc.
Subject Author Views Date
Thread 2.0.3 Upgrading Question ryel01 3551 Jul 31, 2001, 2:06 PM
Thread Re: 2.0.3 Upgrading Question
Alex 3445 Jul 31, 2001, 8:28 PM
Thread Re: 2.0.3 Upgrading Question
DrewBlack 3442 Jul 31, 2001, 8:42 PM
Post Re: 2.0.3 Upgrading Question
brewt 3418 Jul 31, 2001, 11:00 PM
Post Re: 2.0.3 Upgrading Question
Alex 3379 Aug 1, 2001, 2:29 PM
Post Re: 2.0.3 Upgrading Question
telemachus 3409 Aug 1, 2001, 5:11 AM