From dd6ec5815500810ba46e29ff9d7a8b4d944c90db Mon Sep 17 00:00:00 2001
From: David Anderson
Date: Mon, 11 Jun 2007 22:19:02 +0000
Subject: [PATCH] - 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
svn path=/trunk/boinc/; revision=12896
---
checkin_notes | 10 ++++++++++
html/user/sample_index.php | 2 --
py/Boinc/setup_project.py | 2 +-
3 files changed, 11 insertions(+), 3 deletions(-)
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 .
-
";
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()