mirror of https://github.com/BOINC/boinc.git
- stripcharts: fix typo that could cause disk to fill up!
(from Nicolas Maire) svn path=/trunk/boinc/; revision=13660
This commit is contained in:
parent
c260a46b0d
commit
0248d4e016
|
@ -8750,3 +8750,10 @@ David 25 Sept 2007
|
|||
|
||||
tools/
|
||||
update_versions_v6
|
||||
|
||||
David 25 Sept 2007
|
||||
- stripcharts: fix typo that could cause disk to fill up!
|
||||
(from Nicolas Maire)
|
||||
|
||||
stripchart/
|
||||
stripchart
|
||||
|
|
|
@ -2,6 +2,11 @@
|
|||
|
||||
$project_news = array(
|
||||
|
||||
array("September 25, 2007",
|
||||
"Check out the <a href=http://boinc.iaik.tugraz.at/>SHA-1 Collision Search Graz</a>
|
||||
project, which is based at the Graz University of Technology
|
||||
and does research in cryptography."
|
||||
),
|
||||
array("September 24, 2007",
|
||||
"Team founders: you can now make your team
|
||||
<a href=teams/>BOINC-wide</a>,
|
||||
|
|
|
@ -106,7 +106,7 @@ function show_other() {
|
|||
<li> BOINC <a href=dev/>message boards</a>
|
||||
<li> <a href=http://boinc.berkeley.edu/trac/wiki/BoincPapers>Papers and talks</a> on BOINC
|
||||
<li> <a href=logo.php>Logos and graphics</a>
|
||||
<li> <a href=events.php>Events</a>
|
||||
<li> <a href=trac/wiki/BoincEvents>Events</a>
|
||||
</ul>
|
||||
<br>
|
||||
</td></tr>
|
||||
|
|
|
@ -138,6 +138,14 @@ $astro_phys_chem = array(
|
|||
$math = array(
|
||||
"Mathematics and strategy games",
|
||||
array(
|
||||
array(
|
||||
"SHA-1 Collision Search Graz",
|
||||
"http://boinc.iaik.tugraz.at/",
|
||||
"Graz University of Technology",
|
||||
"Cryptography",
|
||||
"Search for collisions (weaknesses) of the widely-used SHA-1 hash function.",
|
||||
"LogoKryptoGroup_klein.jpg"
|
||||
),
|
||||
array(
|
||||
"ABC@home",
|
||||
"http://abcathome.com/",
|
||||
|
|
|
@ -301,14 +301,17 @@ if ($opt_v) { print STDERR "making xtics file..\n" }
|
|||
|
||||
# depending on the range, pick appropriate tic steps and label steps
|
||||
|
||||
$labelstep = 7200;
|
||||
$ticstep = 3600;
|
||||
|
||||
# less than 10 minutes: label every minute, extra tics every 30 seconds
|
||||
if ($daydiff <= 600) { $labelstep = 60; $ticstep = 30 }
|
||||
# less than 50 minutes: label every 5 minutes, extra tics every minute
|
||||
elsif ($daydiff <= 3000) { $labelstep = 300; $ticstep = 60 }
|
||||
# less than 100 minutes: label every 10 minutes, extra tics every 5 minutes
|
||||
elsif ($daydiff <= 6000) { $labelstep = 600; $ticsstep = 300 }
|
||||
elsif ($daydiff <= 6000) { $labelstep = 600; $ticstep = 300 }
|
||||
# less than 200 minutes: label every 20 minutes, extra tics every 10 minutes
|
||||
elsif ($daydiff <= 12000) { $labelstep = 1200; $ticsstep = 600 }
|
||||
elsif ($daydiff <= 12000) { $labelstep = 1200; $ticstep = 600 }
|
||||
|
||||
# less than 5 hours: label every 30 minutes, extra tics every 15 minutes
|
||||
elsif ($daydiff <= 18000) { $labelstep = 1800; $ticstep = 900 }
|
||||
|
|
Loading…
Reference in New Issue