Changeset 1167 for trunk/buildscripts
- Timestamp:
- 06/15/2006 01:18:47 PM (2 years ago)
- Location:
- trunk/buildscripts
- Files:
-
- 1 removed
- 2 modified
- 1 copied
-
classtree/build.php (modified) (2 diffs)
-
texbuilder/build.php (modified) (4 diffs)
-
texbuilder/prado3_quick_start.tex (deleted)
-
texbuilder/quickstart.tex (copied) (copied from branches/3.0/buildscripts/texbuilder/quickstart.tex)
Legend:
- Unmodified
- Added
- Removed
-
trunk/buildscripts/classtree/build.php
r1141 r1167 14 14 $a=new ClassTreeBuilder($rootPath,$exclusions); 15 15 $a->buildTree(); 16 $a->saveToFile('class tree.data');16 $a->saveToFile('classes.data'); 17 17 18 18 class ClassTreeBuilder … … 175 175 return $files; 176 176 } 177 178 public function saveAsTagLib($fileName) 179 { 180 } 177 181 } 178 182 -
trunk/buildscripts/texbuilder/build.php
r1055 r1167 6 6 $pdfTex = "$pdflatexExec -interaction=nonstopmode -max-print-line=120 %s"; 7 7 8 $mainTexFile = dirname(__FILE__).'/ prado3_quick_start.tex';8 $mainTexFile = dirname(__FILE__).'/quickstart.tex'; 9 9 10 10 //page root location … … 245 245 $page = $base.'/'.$section; 246 246 $current_path = $page; 247 247 248 248 //add id to <h1>, <h2>, <3> 249 249 $tmp_content = set_header_id(file_get_contents($page),$j++); 250 250 file_put_contents($page, $tmp_content); 251 251 252 252 $content .= get_section_label($section); 253 253 $file_content = file_get_contents($page); 254 $tex = 254 $tex = 255 255 $content .= parse_html($page,$file_content); 256 256 } … … 266 266 if($argc <= 1 && $count > 1) 267 267 { 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"; 269 269 exit; 270 270 } … … 278 278 system($command); //run it twice 279 279 280 echo "\n\n** PDF file prado3_quick_start.pdf created **\n\n";280 echo "\n\n** PDF file quickstart.pdf created **\n\n"; 281 281 282 282 }
