mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3489
This commit is contained in:
parent
e3026a1ddc
commit
e1929337bc
|
@ -12930,3 +12930,15 @@ David June 1 2004
|
|||
forum_user_posts.php
|
||||
host_edit_action.php
|
||||
host_update_credit.php
|
||||
|
||||
David June 1 2004
|
||||
- client: change benchmark interval from 30 days to 5 days
|
||||
- Python: install_boinc_files(): don't copy sample_index.php
|
||||
to index.php (overwrites file on running projects)
|
||||
|
||||
client/
|
||||
cs_benchmark.C
|
||||
html/user/
|
||||
forum_thread.php
|
||||
py/Boinc/
|
||||
setup_project.py
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
#define BM_DONE 5
|
||||
static int bm_state;
|
||||
|
||||
#define BENCHMARK_PERIOD (SECONDS_PER_DAY*30)
|
||||
#define BENCHMARK_PERIOD (SECONDS_PER_DAY*5)
|
||||
// rerun CPU benchmarks this often (hardware may have been upgraded)
|
||||
|
||||
extern void guiOnBenchmarksBegin();
|
||||
|
|
|
@ -56,7 +56,7 @@ if ($logged_in_user) {
|
|||
show_forum_title($forum, $thread, $category->is_helpdesk);
|
||||
|
||||
echo "
|
||||
<form action=thread.php>
|
||||
<form action=forum_thread.php>
|
||||
<input type=hidden name=id value=", $thread->id, ">
|
||||
<table width=100% cellspacing=0 cellpadding=0>
|
||||
<tr>
|
||||
|
|
|
@ -268,7 +268,6 @@ def install_boinc_files(dest_dir):
|
|||
install_glob(srcdir('html/user/*.inc'), dir('html/user/'))
|
||||
install_glob(srcdir('html/user/*.css'), dir('html/user/'))
|
||||
install_glob(srcdir('html/user/*.txt'), dir('html/user/'))
|
||||
install(srcdir('html/user/sample_index.php'), dir('html/user/index.php'))
|
||||
|
||||
# copy all the backend programs
|
||||
map(lambda (s): install(builddir('sched',s), dir('cgi-bin',s)),
|
||||
|
|
Loading…
Reference in New Issue