*** empty log message ***

svn path=/trunk/boinc/; revision=5021
This commit is contained in:
David Anderson 2005-01-07 20:12:31 +00:00
parent 86c3728abe
commit 7cca0a5df2
3 changed files with 14 additions and 2 deletions

View File

@ -22212,3 +22212,11 @@ David 7 Jan 2005
sched/
db_dump.C
sched_locality.C
David 7 Jan 2005
- User web: show "external" version of cross-project ID
(i.e. hashed with email_addr) in the My Account page.
It will now match what's in the XML dump files
html/inc
user.inc

View File

@ -149,7 +149,11 @@ function show_user_page_private($user) {
row1("Other");
row2("", "<a href=logout.php>Log out</a>");
row2("Account number<br><font size=-2>Used in URLs</font>", $user->id);
row2("Cross-project ID", $user->cross_project_id);
$x = $user->cross_project_id . $user->email_addr;
row2(
"Cross-project ID<br><font size=-2>Used in <a href=http://boinc.berkeley.edu/db_dump.php>exported accounting data</a></font>",
md5($x)
);
end_table();
}

View File

@ -186,7 +186,7 @@ static void send_new_file_work(
retval = extract_filename(result.name, filename);
if (retval) {
log_messages.printf(
SCHED_MSG_LOG::DEBUG
SCHED_MSG_LOG::DEBUG,
"result doesn't contain filename: %s\n", result.name
);
continue;