104. File Comparison Report

Produced on Mon May 12 13:04:50 2008 UTC. This report uses XHTML and CSS2, and is best viewed with a reasonably standards compliant browser such as the latest version of Firefox or Internet Explorer. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

104.1 Files compared

# Location File Last Modified
1 Dolphin-v.6.0.5\groups\orca\js BxError.js Thu Sep 20 08:59:34 2007 UTC
2 Dolphin-v.6.1.0\groups\orca\js BxError.js Wed Apr 9 17:44:56 2008 UTC

104.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 70
Changed 1 2
Inserted 0 0
Removed 0 0

104.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

104.4 Active regular expressions

No regular expressions were active.

104.5 Comparison detail

1   /**   1   /**
2    *                               Orca Inter active For um Script   2   *                              O rca Intera ctive Foru m Script
3    *                                 -------- -------   3   *                                 --------- ------
4    *     Sta rted           : Mon  Mar 23 200 6   4   *     Star ted              : Mo n Mar 23 2 006
5    *     Cop yright         : (C)  2007 BoonE x Group   5   *     Copy right            : (C ) 2007 Boo nEx Group
6    *     Web site           : http ://www.boo nex.com   6   *     Webs ite              : ht tp://www.b oonex.com
7    * This fi le is part  of Orca -  Interacti ve Forum S cript   7   * This fil e is part  of Orca -  Interactiv e Forum Sc ript
8    * GPL   8   * Creative  Commons A ttribution  3.0 Licen se
9   **/   9   **/
10     10  
11     11  
12   /**   12   /**
13    * Error h andler obj ect   13    * Error h andler obj ect
14    */   14    */
15     15  
16     16  
17   /**   17   /**
18    * constru ctor   18    * constru ctor
19    *      o  - HTML Err or object   19    *      o  - HTML Err or object
20    */   20    */
21   function B xError (o)   21   function B xError (o)
22   {   22   {
23       alert( o.message  + "\n" + o .descripti on);   23       alert( o.message  + "\n" + o .descripti on);
24   }   24   }
25     25  
26   /**   26   /**
27    * constru ctor   27    * constru ctor
28    *      s1  - error m essage   28    *      s1  - error m essage
29    *      s2  - error d escription   29    *      s2  - error d escription
30    */   30    */
31   function B xError (s1 , s2)   31   function B xError (s1 , s2)
32   {   32   {
33       alert( s1 + "\n"  + s2);   33       alert( s1 + "\n"  + s2);
34   }   34   }
35     35  
36     36