203. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/7/2018 11:36:01 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

203.1 Files compared

# Location File Last Modified
1 C:\SCRUB\MHED\MHED\VAR 4.10.0\var-web-release-4.10@e10f18de1ef\veteran-appointment-requests\app\models\tests external-links-collection_spec.js Mon Oct 22 23:25:20 2018 UTC
2 C:\MHED-scrubbed\MHED\MHED\VAR 4.10.0\var-web-release-4.10@e10f18de1ef\veteran-appointment-requests\app\models\tests external-links-collection_spec.js Fri Dec 7 13:07:10 2018 UTC

203.2 Comparison summary

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

203.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

203.4 Active regular expressions

No regular expressions were active.

203.5 Comparison detail

  1   // Jasmine  Unit Test ing Suite
  2   define([
  3       'backb one',
  4       'model s/external -links-col lection',
  5   ],
  6   function ( Backbone,  ExternalLi nks) {
  7       'use s trict';
  8  
  9       descri be('Extern al Links',  function  () {
  10           va r resource s;
  11  
  12           be foreEach(f unction ()  {
  13                resource s = new Ex ternalLink s();
  14           }) ;
  15  
  16           it ('parses l inks', fun ction () {
  17                resource s.set({
  18                    'lin ks': [
  19                         {
  20                             'id':  'medline-p lus',
  21                             'title ': 'Medlin ePlus',
  22                             'href' : 'https:/ /vsearch.n lm.nih.gov /vivisimo/ cgi-bin/qu ery-meta?v %3Aproject =medlinepl us&v%3Asou rces=medli neplus-bun dle&query= {keywords} ',
  23                             'keywo rd-separat or': '+',
  24                         },
  25                         {
  26                             'id':  'trm',
  27                             'title ': 'One-VA  Technical  Reference  Model',
  28                               'href': 'w ww. DOMAIN . EX /trm/',
  29                         },
  30                    ],
  31                }, {pars e: true});
  32  
  33                expect(r esources.l ength).toE qual(2);
  34                expect(r esources.g et('trm'). get('title ')).toEqua l('One-VA  Technical  Reference  Model');
  35           }) ;
  36       });
  37   });
        38   T