Development

Changeset 7398

You must first sign up to be able to contribute.

Changeset 7398

Show
Ignore:
Timestamp:
02/08/08 08:08:18 (10 months ago)
Author:
fabien
Message:

fixed typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelBaseTask.class.php

    r7397 r7398  
    6464      $dbSchema->loadXML($schema); 
    6565 
    66       $this->log('schema', sprintf('converting "%s" to YML', $schema)); 
     66      $this->logSection('schema', sprintf('converting "%s" to YML', $schema)); 
    6767 
    6868      $localprefix = $prefix; 
     
    7878 
    7979      $file = str_replace(basename($schema), $prefix.$yml_file_name,  $schema); 
    80       $this->log('schema', sprintf('putting %s', $file)); 
     80      $this->logSection('schema', sprintf('putting %s', $file)); 
    8181      file_put_contents($file, $dbSchema->asYAML()); 
    8282    } 
     
    114114      foreach ($customSchemas as $customSchema) 
    115115      { 
    116         $this->log('schema', sprintf('found custom schema %s', $customSchema)); 
     116        $this->logSection('schema', sprintf('found custom schema %s', $customSchema)); 
    117117         
    118118        $customSchemaArray = sfYaml::load($customSchema); 
     
    127127      $dbSchema->loadArray($schemaArray); 
    128128 
    129       $this->log('schema', sprintf('converting "%s" to XML', $schema)); 
     129      $this->logSection('schema', sprintf('converting "%s" to XML', $schema)); 
    130130 
    131131      $localprefix = $prefix; 
     
    141141 
    142142      $file = str_replace(basename($schema), $localprefix.$xml_file_name,  $schema); 
    143       $this->log('schema', sprintf('putting %s', $file)); 
     143      $this->logSection('schema', sprintf('putting %s', $file)); 
    144144      file_put_contents($file, $dbSchema->asXML()); 
    145145    } 
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildFormsTask.class.php

    r7397 r7398  
    5959  protected function execute($arguments = array(), $options = array()) 
    6060  { 
    61     $this->log('propel', 'generating form classes'); 
     61    $this->logSection('propel', 'generating form classes'); 
    6262 
    6363    $generatorManager = new sfGeneratorManager(); 
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildModelTask.class.php

    r7397 r7398  
    5959    $this->cleanup(); 
    6060 
    61     $this->log('autoload', 'reloading autoloading'); 
     61    $this->logSection('autoload', 'reloading autoloading'); 
    6262 
    6363    sfSimpleAutoload::getInstance()->reload(); 
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelDataLoadTask.class.php

    r7397 r7398  
    101101      } 
    102102 
    103       $this->log('propel', sprintf('load data from "%s"', $fixturesDir)); 
     103      $this->logSection('propel', sprintf('load data from "%s"', $fixturesDir)); 
    104104      $data->loadData($fixturesDir, $options['connection']); 
    105105    }