diff --git a/checkin_notes b/checkin_notes index 8ef0f9b5d6..3022ea8632 100755 --- a/checkin_notes +++ b/checkin_notes @@ -4469,3 +4469,11 @@ Janus 6 May 2007 html/inc/ translation.inc + +David 6 May 2007 + - make_project: create element in config.xml + (so that show_logs.php will work). + Fixes #170 + + py/Boinc/ + setup_project.py diff --git a/doc/boinc_news.php b/doc/boinc_news.php index 920a4d62f1..b4d425cb78 100644 --- a/doc/boinc_news.php +++ b/doc/boinc_news.php @@ -1,6 +1,21 @@ one + and two) + and also as a web page. + Thanks to Dr. Jordi Portell i de Mora for telling us about it." +), +array("May 6, 2007", + "BOINCstats and BAM! + are now available in 15 languages. + As of today, they are now viewable in Swedish + ( http://se.boincstats.com)." +), array("May 3, 2007", "The source code behind BOINC Combined Stats is now available via Subversion. This may be helpful for other statistics site developers." ), diff --git a/py/Boinc/setup_project.py b/py/Boinc/setup_project.py index 18fc660cae..71e606427d 100644 --- a/py/Boinc/setup_project.py +++ b/py/Boinc/setup_project.py @@ -407,6 +407,7 @@ class Project: config.upload_dir = os.path.join(self.project_dir , 'upload') config.key_dir = key_dir or os.path.join(self.project_dir , 'keys') config.app_dir = os.path.join(self.project_dir, 'apps') + config.log_dir = self.project_dir+'log_'+config.host if production: config.min_sendwork_interval = 6 self.scheduler_url = os.path.join(config.cgi_url , 'cgi')