A-FACE Terms of Use
if(isset($go) && trim($email_address)!=""){
$AdminEmail="\"A-Face Database Administrator\" ";
#$AdminEmail="\"A-Face Database Administrator\" ";
$To="$email_address, $AdminEmail";
#$To="paulj@psy.uq.edu.au";
$Subject="A-Face Database Access Request";
$Body="*This is an automated response*\n\n
Hi, your request to access the A-FACE database at http://www.psy.uq.edu.au/a-face/ has been received.\n\n
The username you should use to access the database is: a-face\nThe password is: letmein\n\n
Some information about using the database:\n
1. The ratings are on a 9-point scale from 1, not at all to 9, very much.\n\n
2. To collapse or expand a group of attributes/ratings, simply click on the \"...\" after \"PicId\", \"SampleId\", and \"Ratings\". This works both on the search page and on the results page.\n
* PicId contains attributes about the photo (e.g., gender of the person, hair colour, expression etc).\n
* SampleId contains information about who has rated the photo (e.g., gender breakdown, sample size, sample location etc).\n
* Ratings are the means for dimensions such as trustworthiness, honesty, attractiveness etc. Standard deviations are provided for each of these dimensions on the results page.\n\n
3. The photo album feature allows you to bookmark a collection of images from different searches so that you can view them all at the same time. To place a photo into the album, click in the check box next to the image on the search page and then click on \"Add to album\". To view your album at any time, click on the number inside the orange photo album at the bottom of your screen. This number tells you how many photos you have stored. You can download the full version of these images by clicking on the \"Take photo album home\" link. To keep a record of the ratings associated with these images, you will either need to keep a note of the PicID for the photos you have selected (you can refer back to the database and search on the PicId again), or print the search page (MacOS X users should be able to print this directly to a PDF by selecting \"Save as file\" in the print dialogue box).\n\n
If you have any problems or questions please contact $AdminEmail";
mail($To,$Subject,$Body, "Reply-To: $AdminEmail\nFrom: $AdminEmail");
#echo "Your request for access has been sent to the A-Face Administrator.
Please allow a couple of days for you request to be processed.
";
echo "
Your request for access to the A-Face Database is currently beng processed.
You should receive an email ($email_address) in the next couple of minutes containing your username and password.
";
#echo "Close this Window";
$UserLogFile = fopen("/work/libido-web/WWW/a-face/users","a+");
$fp = fwrite($UserLogFile,$email_address."\t".$REMOTE_ADDR."\t".$HTTP_USER_AGENT."\t".date("F j, Y, g:i a")."\n");
fclose($UserLogFile);
chmod("/work/libido-web/WWW/a-face/users", 0755);
}else{
?>
}
?>
|