Changeset 2025

Show
Ignore:
Timestamp:
01/16/09 11:48:11
Author:
douglm
Message:

New runnable tool to allow manipulation of large amounts of data, e.g. move all events from one calendar to another.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.xml

    r2024 r2025  
    704704 
    705705  <!-- ================================================================= 
     706       Build and run the cmdline utility 
     707       ================================================================= --> 
     708 
     709  <target name="cmdutil" depends="init" 
     710          description="run the cmdline utility"> 
     711    <antfetch antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false" 
     712              inheritrefs="true" 
     713              target="cmdutil" 
     714              return="org.bedework.cmdutil.status" > 
     715      <propertyset> 
     716        <propertyref prefix="org.bedework.global."/> 
     717        <propertyref prefix="org.bedework.config.options"/> 
     718        <propertyref prefix="org.bedework.project.bedework"/> 
     719        <propertyref prefix="org.bedework.project.calendarapi"/> 
     720      </propertyset> 
     721    </antfetch> 
     722  </target> 
     723 
     724  <!-- ================================================================= 
    706725       Build and run the unit test suite 
    707726       ================================================================= --> 
  • trunk/build/quickstart/build.xml

    r2024 r2025  
    208208    <ant antfile="${bedework.build.file}" inheritrefs="true" 
    209209           target="clean.build.configured.debug" /> 
     210  </target> 
     211 
     212  <!-- ================================================================= 
     213       Build and run the cmdline utility 
     214       ================================================================= --> 
     215 
     216  <target name="cmdutil" depends="init" 
     217          description="run the cmdline utility"> 
     218    <antfetch antfile="${bedework.build.file}" inheritall="true" 
     219              target="cmdutil" 
     220              return="org.bedework.cmdutil.status" > 
     221    </antfetch> 
    210222  </target> 
    211223