IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24994


Ignore:
Timestamp:
Aug 4, 2009, 10:18:27 AM (17 years ago)
Author:
giebink
Message:

separate copy of ipp tree checked out

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/misc/docgen.pl

    r24917 r24994  
    44#Run Doxygen and copy the html files produced to alala web server
    55#Called daily by cron
    6 #Bill Giebink 12/08
    76
    87use strict;
     
    1110use File::Copy;
    1211
    13 my $srcDir = "/data/ipp003.0/ippTests/src/ipp";
     12my $srcDir = "/data/ipp002.0/ippDoxygen/ipp";
     13system `rm -rf /data/ipp002.0/ippDoxygen/ipp`;
     14system `svn co http://svn.pan-starrs.ifa.hawaii.edu/repo/ipp/trunk/ /data/ipp002.0/ippDoxygen/ipp`;
    1415my $destDir = "/data/alala.0/ippDocs";
    1516system `rm -rf $destDir/*`;
    1617
    1718finddepth(\&wanted, $srcDir);
     19chdir $srcDir;
     20system `/usr/bin/doxygen`;
     21system ("cp -r $srcDir/docs/html/* $destDir");
    1822
    1923sub wanted {
     
    2731    my $currDir = $File::Find::dir;
    2832    system ("$currDir/autogen.sh");
    29     system ("doxygen");
    30     system ("mkdir $destDir/$subDir");
    31     system ("cp $currDir/docs/html/* $destDir/$subDir");
    3233  }
    3334}
Note: See TracChangeset for help on using the changeset viewer.