Development

Changeset 20791

You must first sign up to be able to contribute.

Changeset 20791

Show
Ignore:
Timestamp:
08/05/09 00:08:52 (4 years ago)
Author:
Tomek
Message:

slowly preparing for 0.0.3 release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/tmCsvPlugin/lib/tmDoctrineWriter.class.php

    r20788 r20791  
    11<?php 
    22 
     3/** 
     4 * @todo Support different encodings 
     5 * 
     6 */ 
    37class tmDoctrineWriter 
    48{ 
  • plugins/tmCsvPlugin/package.xml

    r20729 r20791  
    1414 <time>21:00:00</time> 
    1515 <version> 
    16   <release>0.0.2</release> 
    17   <api>0.0.2</api> 
     16  <release>0.0.3</release> 
     17  <api>0.0.3</api> 
    1818 </version> 
    1919 <stability> 
     
    3434   <file name="test/unit/encodingTest.php" role="data"/> 
    3535   <file name="test/unit/readCsvTest.php" role="data"/> 
     36   <file name="test/unit/write01Test.php" role="data"/> 
     37   <file name="lib/tmCsvException.class.php" role="data"/> 
     38   <file name="lib/tmCsvWriter.class.php" role="data"/> 
     39   <file name="lib/tmDoctrineWriter.class.php" role="data"/> 
    3640   <file name="lib/tmDoctrineReader.class.php" role="data"/> 
    3741   <file name="lib/tmCsvReader.class.php" role="data"/> 
     
    8286    </version> 
    8387    <stability> 
    84       <release>beta</release> 
    85       <api>beta</api> 
     88      <release>alpha</release> 
     89      <api>alpha</api> 
    8690    </stability> 
    8791    <date>2009-08-03</date> 
     
    9296    </notes> 
    9397  </release> 
     98  <release> 
     99    <version> 
     100      <release>0.0.3</release> 
     101      <api>0.0.3</api> 
     102    </version> 
     103    <stability> 
     104      <release>alpha</release> 
     105      <api>alpha</api> 
     106    </stability> 
     107    <date>2009-08-04</date> 
     108    <license uri="http://www.gnu.org/licenses/lgpl.txt">LGPL</license> 
     109    <notes> 
     110      * Added CSV writer, including Doctrine support 
     111    </notes> 
     112  </release> 
    94113 </changelog> 
    95114</package> 
  • plugins/tmCsvPlugin/test/unit/write01Test.php

    r20788 r20791  
    1212$writer->add(array('three'=>333)); 
    1313$writer->add(array('two'=>'2', 'one'=>'1', 'three'=>'3')); 
    14 $writer->stream(); 
    1514$out = file_get_contents($tmp); 
    1615$expected = 'one,two,three