Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 uid=99(nobody) gid=98(nobody) groups=98(nobody) Safe-mode: OFF (not secure) /home/jerryg/public_html/gallery2/modules/rating/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2007 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
function rateItem(itemId, rating, url) {
YAHOO.util.Connect.asyncRequest(
'GET', url, {success: handleRatingResponse, failure: null, scope: null}, null);
}
function handleRatingResponse(http) {
var results = http.responseText.split("\n");
updateItemRating(results);
}
function updateItemRating(results) {
var itemId = results[0];
var rating = results[1];
var votes = results[2];
var userRating = results[3];
updateElementDisplay('rating.rating.' + itemId, rating);
updateElementDisplay('rating.votes.' + itemId, votes);
updateElementDisplay('rating.userRating.' + itemId, userRating);
updateAveragePercent(itemId, rating * 100 / 5);
resetStarDisplay(itemId);
}
function resetStarDisplay(itemId) {
var userRating = document.getElementById('rating.userRating.' + itemId).innerHTML;
updateStarDisplay(itemId, userRating);
}
function updateAveragePercent(itemId, averagePercent) {
var e = document.getElementById('rating.averagePercent.' + itemId);
e.style.width = averagePercent + "%";
}
function updateStarDisplay(itemId, userRating) {
var rating = document.getElementById('rating.rating.' + itemId).innerHTML;
for (i=1; i<=5; i++) {
var star = document.getElementById('rating.star.' + itemId + '.' + i);
if (userRating != 'N/A') {
if ((rating >= i) && (userRating >= i)) {
star.className='giRatingFullUserYes';
} else if ((rating >= i) && (userRating < i)) {
star.className='giRatingFullUserNo';
} else if ((rating < i) && (userRating >= i)) {
if (i - rating < 1) {
star.className='giRatingHalfUserYes';
} else {
star.className='giRatingEmptyUserYes';
}
} else if ((rating < i) && (userRating < i)) {
if (i - rating < 1) {
star.className='giRatingHalfUserNo';
} else {
star.className='giRatingEmpty';
}
}
} else {
if (rating >= i) {
star.className='giRatingFullUserNo';
} else if (i - rating < 1) {
star.className='giRatingHalfUserNo';
} else {
star.className='giRatingEmpty';
}
}
}
}
function updateElementDisplay(id, str) {
document.getElementById(id).replaceChild(
document.createTextNode(str),
document.getElementById(id).childNodes[0]);
}
|
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.026 ]-- |