Development

Changeset 8155

You must first sign up to be able to contribute.

Changeset 8155

Show
Ignore:
Timestamp:
03/30/08 15:41:15 (7 months ago)
Author:
fabien
Message:

moved yaml into its own sub-directory

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/autoload/sfCoreAutoload.class.php

    r8148 r8155  
    352352  'sfParameterHolder' => 'util', 
    353353  'sfToolkit' => 'util', 
    354   'sfYaml' => 'util', 
    355   'sfYamlDumper' => 'util', 
    356   'sfYamlInline' => 'util', 
    357   'sfYamlParser' => 'util', 
    358354  'sfValidatorI18nChoiceCountry' => 'validator/i18n', 
    359355  'sfValidatorI18nChoiceLanguage' => 'validator/i18n', 
     
    422418  'sfWidgetFormTextarea' => 'widget', 
    423419  'sfWidgetFormTime' => 'widget', 
     420  'sfYaml' => 'yaml', 
     421  'sfYamlDumper' => 'yaml', 
     422  'sfYamlInline' => 'yaml', 
     423  'sfYamlParser' => 'yaml', 
    424424); 
    425425} 
  • branches/1.1/lib/plugins/sfPropelPlugin/test/unit/sfPropelDatabaseSchemaTest.php

    r7432 r8155  
    4646require_once(dirname(__FILE__).'/../../../../util/sfInflector.class.php'); 
    4747require_once(dirname(__FILE__).'/../../../../util/sfToolkit.class.php'); 
    48 require_once(dirname(__FILE__).'/../../../../util/sfYaml.class.php'); 
     48require_once(dirname(__FILE__).'/../../../../yaml/sfYaml.class.php'); 
    4949 
    5050$t = new my_lime_test(261, new lime_output_color()); 
  • branches/1.1/test/unit/yaml/sfYamlDumperTest.php

    r8111 r8155  
    1010 
    1111require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); 
    12 require_once(dirname(__FILE__).'/../../../lib/util/sfYamlParser.class.php'); 
    13 require_once(dirname(__FILE__).'/../../../lib/util/sfYamlDumper.class.php'); 
     12require_once(dirname(__FILE__).'/../../../lib/yaml/sfYamlParser.class.php'); 
     13require_once(dirname(__FILE__).'/../../../lib/yaml/sfYamlDumper.class.php'); 
    1414 
    1515$t = new lime_test(138, new lime_output_color()); 
     
    1818$dumper = new sfYamlDumper(); 
    1919 
    20 $path = dirname(__FILE__).'/fixtures/yaml'; 
     20$path = dirname(__FILE__).'/fixtures'; 
    2121$files = $parser->parse(file_get_contents($path.'/index.yml')); 
    2222foreach ($files as $file) 
  • branches/1.1/test/unit/yaml/sfYamlParserTest.php

    r8111 r8155  
    1010 
    1111require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); 
    12 require_once(dirname(__FILE__).'/../../../lib/util/sfYamlParser.class.php'); 
     12require_once(dirname(__FILE__).'/../../../lib/yaml/sfYamlParser.class.php'); 
    1313 
    1414$t = new lime_test(138, new lime_output_color()); 
     
    1616$parser = new sfYamlParser(); 
    1717 
    18 $path = dirname(__FILE__).'/fixtures/yaml'; 
     18$path = dirname(__FILE__).'/fixtures'; 
    1919$files = $parser->parse(file_get_contents($path.'/index.yml')); 
    2020foreach ($files as $file)