2669. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/10/2018 8:40:52 AM Central Daylight 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.

2669.1 Files compared

# Location File Last Modified
1 MHED_APPS_CIF.zip\VAR v4.2.7\var-web-4.2.7@0810ae549c1.zip\veteran-appointment-requests\app\models external-links-collection_spec.js Mon Apr 9 06:06:53 2018 UTC
2 MHED_APPS_CIF.zip\VAR v4.2.7\var-web-4.2.7@0810ae549c1.zip\veteran-appointment-requests\app\models external-links-collection_spec.js Thu May 3 13:34:57 2018 UTC

2669.2 Comparison summary

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

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

2669.4 Active regular expressions

No regular expressions were active.

2669.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.add({
  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. DNS     /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   });