Changeset 1167 for trunk/buildscripts

Show
Ignore:
Timestamp:
06/15/2006 01:18:47 PM (2 years ago)
Author:
xue
Message:

Merge from 3.0 branch till 1166.

Location:
trunk/buildscripts
Files:
1 removed
2 modified
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/buildscripts/classtree/build.php

    r1141 r1167  
    1414$a=new ClassTreeBuilder($rootPath,$exclusions); 
    1515$a->buildTree(); 
    16 $a->saveToFile('classtree.data'); 
     16$a->saveToFile('classes.data'); 
    1717 
    1818class ClassTreeBuilder 
     
    175175                return $files; 
    176176        } 
     177 
     178        public function saveAsTagLib($fileName) 
     179        { 
     180        } 
    177181} 
    178182 
  • trunk/buildscripts/texbuilder/build.php

    r1055 r1167  
    66$pdfTex = "$pdflatexExec -interaction=nonstopmode -max-print-line=120 %s"; 
    77 
    8 $mainTexFile = dirname(__FILE__).'/prado3_quick_start.tex'; 
     8$mainTexFile = dirname(__FILE__).'/quickstart.tex'; 
    99 
    1010//page root location 
     
    245245                $page = $base.'/'.$section; 
    246246                $current_path = $page; 
    247                  
     247 
    248248                //add id to <h1>, <h2>, <3> 
    249249                $tmp_content = set_header_id(file_get_contents($page),$j++); 
    250250                file_put_contents($page, $tmp_content); 
    251                  
     251 
    252252                $content .= get_section_label($section); 
    253253                $file_content = file_get_contents($page); 
    254                 $tex =  
     254                $tex = 
    255255                $content .= parse_html($page,$file_content); 
    256256        } 
     
    266266if($argc <= 1 && $count > 1) 
    267267{ 
    268         echo "** Use pdflatex to compile prado3_quick_start.tex to obtain PDF version of quickstart tutorial. **\n"; 
     268        echo "** Use pdflatex to compile quickstart.tex to obtain PDF version of quickstart tutorial. **\n"; 
    269269        exit; 
    270270} 
     
    278278                system($command); //run it twice 
    279279 
    280                 echo "\n\n** PDF file prado3_quick_start.pdf created **\n\n"; 
     280                echo "\n\n** PDF file quickstart.pdf created **\n\n"; 
    281281 
    282282        }