diff --git a/checkin_notes b/checkin_notes index c41a669059..9e38103b17 100755 --- a/checkin_notes +++ b/checkin_notes @@ -6085,3 +6085,13 @@ David 11 June 2007 graphics2_unix.C client/ cpu_sched.C + +David 11 June 2007 + - Project initialization: create project home page + and schedulers.txt file in a way that will work + with UMTS ISPs (which strip out comments) + + html/user/ + sample_index.php + py/Boinc/ + setup_project.py diff --git a/html/user/sample_index.php b/html/user/sample_index.php index 25fffcfb77..18e950cebc 100644 --- a/html/user/sample_index.php +++ b/html/user/sample_index.php @@ -131,13 +131,11 @@ echo " RSS feed \"XML\".

- "; if ($caching) { diff --git a/py/Boinc/setup_project.py b/py/Boinc/setup_project.py index acda23ba54..5343b4791b 100644 --- a/py/Boinc/setup_project.py +++ b/py/Boinc/setup_project.py @@ -508,7 +508,7 @@ class Project: else: scheduler_file = 'schedulers.txt' f = open(self.dir('html/user', scheduler_file), 'w') - print >>f, "" + self.scheduler_url.strip(), "" + print >>f, "" print >>f, "" f.close()