diff --git a/checkin_notes b/checkin_notes index abfc2321b4..6407550d1e 100755 --- a/checkin_notes +++ b/checkin_notes @@ -12197,3 +12197,14 @@ Rom 3 Nov 2006 SkinManager.cpp, .h ValidateEmailAddress.cpp +David 3 Nov 2006 + - User web: remove "team account create" mechanism; + Since accounts are created via GUI, + this is no longer relevant. + + html/ + inc/ + team.inc + user/ + clone.php (removed) + team.php diff --git a/doc/example.php b/doc/example.php index f8ba4ad4f7..d5754b399b 100644 --- a/doc/example.php +++ b/doc/example.php @@ -12,8 +12,11 @@ To build these applications: for both boinc and boinc_samples. Put them in the same parent directory; otherwise relative paths won't work. -
  • Build the BOINC software +
  • If you're working on Unix, +Build the BOINC software (you only need the api/ and lib/ parts of it). +On Windows, this will be done automatically +as part of building the application. The example applications are: @@ -49,7 +52,7 @@ The boinc_samples tree includes project files for the following platforms:
  • Windows: includes project files for Microsoft Visual Studio 2003 and 2005. Also includes a project file samples.dev -for Bloodshed, +for Dev-C++, a free development environment for Windows (this project file doesn't work yet). These are in the win_build/ directory. diff --git a/doc/source_code.php b/doc/source_code.php index 84a114e5cf..959182a403 100644 --- a/doc/source_code.php +++ b/doc/source_code.php @@ -22,21 +22,24 @@ you should check out these modules in the same parent directory.

    CVS tags

    -In the boinc module, -the trunk is the development version; -it may not compile or run. -Other versions are tagged as follows: +We maintain tags for the client software (core client and manager) +in the boinc module. +For other parts of the software (e.g., server and API), +use the current version. +

    stable
    -The latest publicly-released version, +The latest publicly-released version of the client software, generally well-tested. +DO NOT USE THE STABLE VERSION OF SERVER AND API SOFTWARE. +IF YOU DO, IT WILL BE FAR OUT OF DATE. +USE THE CURRENT VERSION INSTEAD.
    staging
    -The version currently being alpha-tested -(so at least it compiles). +The version currently being alpha-tested (so at least it compiles).
    boinc_core_release_x_y_z
    diff --git a/html/inc/team.inc b/html/inc/team.inc index e3512eb711..1833741b02 100644 --- a/html/inc/team.inc +++ b/html/inc/team.inc @@ -7,18 +7,13 @@ require_once("../inc/countries.inc"); require_once("../inc/credit.inc"); require_once("../inc/team_types.inc"); -function show_team_create_account_url($team) { - $url = URL_BASE."create_account_form.php?teamid=$team->id"; - row2("Create team account URL
    Accounts created via this URL will belong to this team and will have the project preferences of its founder", "$url"); -} - function display_team_page($team, $offset, $sort_by) { $n = 20; -// there aren't indices to support sorting by credit. -// set the following variable to disable sorted output. -// (though since caching is generally used this shouldn't needed) -// + // there aren't indices to support sorting by credit. + // set the following variable to disable sorted output. + // (though since caching is generally used this shouldn't needed) + // $nosort = false; if ($sort_by == "total_credit") { @@ -67,11 +62,10 @@ function display_team_page($team, $offset, $sort_by) { if (($user->teamid == $team->id) && ($user->id != $founder->id)) { row2("Initiate team founder transfer", "Initiate transfer"); } - show_team_create_account_url($team); echo ""; echo "

    "; start_table(); - row1("Active members (with nonzero total credit)", 4); + row1("Active members (with credit)", 4); echo " Name "; diff --git a/html/user/clone.php b/html/user/clone.php deleted file mode 100644 index 140137f634..0000000000 --- a/html/user/clone.php +++ /dev/null @@ -1,22 +0,0 @@ - - A Create team account URL is shown on every team page. - Accounts created through this URL -

      -
    • will belong to that team and -
    • will have the same ".PROJECT." preferences as its founder. -
    - For example, you can create a team for your school or company, - and set up your preferences to show a team logo - in the screensaver graphics. - Then get your friends and coworkers to register for - ".PROJECT." through the URL shown in the team page, - and they will automatically belong to your team - and will have the logo in their screensaver graphics. - "; - page_tail(); -?> diff --git a/html/user/team.php b/html/user/team.php index e3d9363b69..72b7c0540d 100644 --- a/html/user/team.php +++ b/html/user/team.php @@ -23,10 +23,6 @@ echo "

    ".PROJECT." participants may form teams.

    To join a team, visit its team page and click Join. -

    - Each team has a Create team account URL; - accounts created through this URL will belong to the team, - and will have the project preferences of its founder.