From cb583ae458096446b748d2480239c7dca1804703 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 6 Sep 2006 17:18:51 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=11116 --- checkin_notes | 13 ++++++++++ doc/project_config.php | 22 +++++++++++++---- doc/web_rpc.php | 9 +++++++ ...nfig.php => sample_get_project_config.php} | 0 py/Boinc/setup_project.py | 6 +++-- tools/parse_config | 24 +------------------ 6 files changed, 44 insertions(+), 30 deletions(-) rename html/user/{get_project_config.php => sample_get_project_config.php} (100%) diff --git a/checkin_notes b/checkin_notes index d5b6bfff6b..778d447355 100755 --- a/checkin_notes +++ b/checkin_notes @@ -9838,3 +9838,16 @@ David 6 Sept 2006 clientgui/ AccountInfoPage.cpp + +David 6 Sept 2006 + - Renamed html/user/get_project_config.php to sample_get_project_config.php + this avoids overwriting a project-modified version. + - Fixed the "parse_config" script. + + html/user/ + get_project_config.php + sample_get_project_config.php + py/Boinc/ + setup_project.py + tools/ + parse_config diff --git a/doc/project_config.php b/doc/project_config.php index 4e7abde4f6..b13f0ce8ee 100644 --- a/doc/project_config.php +++ b/doc/project_config.php @@ -1,12 +1,17 @@ http://PROJECT_URL/get_project_config.php +This file is created by make_project, +and in most cases you don't have to change it. + +

This document has the structure ".html_text(" @@ -15,6 +20,7 @@ This document has the structure [ ] [ ] [ ] + [ ] [ URL ] [ N ] [ @@ -52,6 +58,10 @@ list_item("uses_username", list_item("account_creation_disabled", "If present, this project is not allowing creation of new accounts" ); +list_item("client_account_creation_disabled", + "If present, new accounts can be created only via the web + (not via the client software)." +); list_item("min_passwd_length", "Minimum password length (for new account creation)" ); @@ -67,10 +77,12 @@ list_item("system_requirements", get sent any work by the project. All requirements are 'net'; e.g. the CPU requirements are after factors like on-fraction, active-fraction, - and resource share have been taken into consideration." + and resource share have been taken into consideration. + NOT IMPLEMENTED YET." ); list_item("platforms", - "A list of platforms for which the project has application versions." + "A list of platforms for which the project has application versions. + NOT IMPLEMENTED YET." ); list_end(); echo " diff --git a/doc/web_rpc.php b/doc/web_rpc.php index 538c5a39ed..f50be0d02b 100644 --- a/doc/web_rpc.php +++ b/doc/web_rpc.php @@ -7,6 +7,7 @@ echo "

Contents

+ + +

Project configuration

+Each BOINC project exports some configuration items relevant +to attaching and creating accounts. +This RPC is documented +here. +

Create account

"; diff --git a/html/user/get_project_config.php b/html/user/sample_get_project_config.php similarity index 100% rename from html/user/get_project_config.php rename to html/user/sample_get_project_config.php diff --git a/py/Boinc/setup_project.py b/py/Boinc/setup_project.py index 9a3f03f3a2..98f04303af 100644 --- a/py/Boinc/setup_project.py +++ b/py/Boinc/setup_project.py @@ -312,7 +312,7 @@ def create_project_dirs(dest_dir): def install_boinc_files(dest_dir): """Copy files from source dir to project dir. - Used by the upgrade script, so don't overwrite sample files.""" + Used by the upgrade script, so don't copy sample files to real name.""" def dir(*dirs): return apply(os.path.join,(dest_dir,)+dirs) @@ -461,9 +461,11 @@ class Project: install_boinc_files(self.dir()) - # copy sample web files + # copy sample web files to final names install(srcdir('html/user/sample_index.php'), self.dir('html/user/index.php')) + install(srcdir('html/user/sample_get_project_config.php'), + self.dir('html/user/get_project_config.php')) install(srcdir('html/project.sample/project.inc'), self.dir('html/project/project.inc')) install(srcdir('html/project.sample/project_specific_prefs.inc'), diff --git a/tools/parse_config b/tools/parse_config index 7bc0778460..2befef89b1 100755 --- a/tools/parse_config +++ b/tools/parse_config @@ -2,39 +2,17 @@ # -*- mode: python; python-indent: 4; -*- - - ## $Id$ - - ''' - - - A program to pass config file settings to calling programs via stdout - - ''' - - -import boinc_path_config -from Boinc import configxml - +import configxml import sys, os - - program_path = os.path.realpath(os.path.dirname(sys.argv[0])) - config_filename = os.path.realpath(os.path.join(program_path, '../config.xml')) - - - config = configxml.ConfigFile(config_filename).read() - - print config.config.__dict__.get(sys.argv[1]) -