Changes between Version 1 and Version 2 of Old/OtherApps/ScriptsRepository


Ignore:
Timestamp:
Feb 17, 2006, 9:27:52 PM (18 years ago)
Author:
psdu
Comment:

added missing 'handler/..' to al require statements

Legend:

Unmodified
Added
Removed
Modified
  • Old/OtherApps/ScriptsRepository

    v1 v2  
    1 [wiki:WikiStart Orbit] > [wiki:OtherApps Other Applications] > Iperf Scripts
     1[wiki:WikiStart Orbit] > [wiki:Documentation/OtherApps Other Applications] > Iperf Scripts
    22
    33= Application Definition Schema =
     
    7070# Create an application representation from scratch
    7171#
    72 require 'appDefinition'
     72require 'handler/appDefinition'
    7373
    7474a = AppDefinition.create('test:app:iperfs')
     
    129129# Create an application representation from scratch
    130130#
    131 require 'appDefinition'
     131require 'handler/appDefinition'
    132132
    133133a = AppDefinition.create('test:app:iperfr')
     
    187187# Define a prototype
    188188#
    189 require 'prototype'
    190 require 'filter'
    191 require 'appDefinition'
     189require 'handler/prototype'
     190require 'handler/filter'
     191require 'handler/appDefinition'
    192192
    193193p = Prototype.create("test:proto:iperfudpsender")
     
    229229#
    230230
    231 require 'prototype'
    232 require 'filter'
    233 require 'appDefinition'
     231require 'handler/prototype'
     232require 'handler/filter'
     233require 'handler/appDefinition'
    234234
    235235p = Prototype.create("test:proto:iperfudpreceiver")
     
    269269# Define a prototype
    270270#
    271 require 'prototype'
    272 require 'filter'
    273 require 'appDefinition'
     271require 'handler/prototype'
     272require 'handler/filter'
     273require 'handler/appDefinition'
    274274
    275275p = Prototype.create("test:proto:iperftcpsender")
     
    311311#
    312312
    313 require 'prototype'
    314 require 'filter'
    315 require 'appDefinition'
     313require 'handler/prototype'
     314require 'handler/filter'
     315require 'handler/appDefinition'
    316316
    317317p = Prototype.create("test:proto:iperftcpreceiver")