~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to html/user/am_get_info.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
$country = urlencode($user->country);
20
20
$postal_code = urlencode($user->postal_code);
21
21
$url = urlencode($user->url);
 
22
$weak_auth = weak_auth($user);
22
23
 
23
24
$ret = "<id>$user->id</id>
24
25
<name>$name</name>
25
26
<country>$country</country>
 
27
<weak_auth>$weak_auth</weak_auth>
26
28
<postal_code>$postal_code</postal_code>
27
29
<global_prefs>
28
30
$user->global_prefs
43
45
    }
44
46
}
45
47
 
46
 
    echo "<am_get_info_reply>
 
48
echo "<am_get_info_reply>
47
49
    <success/>
48
50
    $ret
49
51
</am_get_info_reply>