Annotation of FreeBSD/tinderbox/webui/inc_tinderbox.php.dist, revision 1.1
1.1 ! as 1: <?php
! 2:
! 3: # Configurable options
! 4: $tinderbox_name = 'Example Tinderbox';
! 5: $tinderbox_title = 'Example Tinderbox';
! 6: $rootdir = '/space';
! 7: $wwwrooturi = '/tb';
! 8: $template_dir = 'default';
! 9:
! 10: # These should probably be left alone
! 11: $pkguri = '/packages';
! 12: $pkgdir = $rootdir.'/packages';
! 13: $loguri = '/logs';
! 14: $logdir = $rootdir.'/logs';
! 15: $errorloguri = '/errors';
! 16: $errorlogdir = $rootdir.'/errors';
! 17: $templatesdir = $rootdir.'/scripts/webui/templates/'.$template_dir;
! 18: $templatesuri = $wwwrooturi.'/templates/'.$template_dir;
! 19: #$with_timer = 1;
! 20:
! 21: ?>