bug 359: transform rating html A links to FORM because some bots rate

pictures (even if rel="nofollow" is set)

git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1285 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2006-04-28 04:37:28 +00:00
parent d6264b468c
commit 1cc593f760
8 changed files with 49 additions and 37 deletions

View file

@ -54,6 +54,7 @@ SELECT COUNT(rate) AS count
);
}
$user_rate = null;
if ($conf['rate_anonymous'] or is_autorize_status(ACCESS_CLASSIC) )
{
if ($row['count']>0)
@ -78,51 +79,40 @@ SELECT COUNT(rate) AS count
if (mysql_num_rows($result) > 0)
{
$row = mysql_fetch_array($result);
$sentence = $lang['already_rated'];
$sentence.= ' ('.$row['rate'].'). ';
$sentence.= $lang['update_rate'];
}
else
{
$sentence = $lang['never_rated'].'. '.$lang['Rate'];
$user_rate = $row['rate'];
}
}
else
{
$sentence = $lang['never_rated'].'. '.$lang['Rate'];
}
$template->assign_block_vars(
'rate',
array(
'CONTENT' => $value,
'SENTENCE' => $sentence
'SENTENCE' =>isset($user_rate) ? l10n('update_rate') : l10n('new_rate'),
'F_ACTION' => add_url_params(
$url_self,
array('action'=>'rate')
)
)
);
$template->assign_block_vars('info_rate', array('CONTENT' => $value));
$template->assign_vars(
array(
'INFO_RATE' => $value
)
);
foreach ($conf['rate_items'] as $num => $mark)
{
$template->assign_block_vars(
'rate.rate_option',
array(
'OPTION' => $mark,
'URL' => add_url_params(
$url_self,
array(
'action'=>'rate',
'rate'=>$mark
)
),
'SEPARATOR' => ($num > 0 ? '|' : ''),
)
);
if (isset($user_rate) and $user_rate==$mark)
{
$template->assign_block_vars('rate.rate_option.my_rate', array() );
}
else
{
$template->assign_block_vars('rate.rate_option.not_my_rate', array() );
}
}
}
}

View file

@ -130,7 +130,6 @@ $lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Adviser mode enabled';
$lang['all'] = 'all';
$lang['all_categories'] = 'all categories';
$lang['already_rated'] = 'You\'ve already rated this item';
$lang['ascending'] = 'ascending';
$lang['author(s) : %s'] = 'author(s) : %s';
$lang['auto_expand'] = 'Expand all categories';
@ -244,10 +243,10 @@ $lang['nb_image_per_row'] = 'Number of images per row';
$lang['nb_line_page_error'] = 'The number of rows per page must be a not null scalar';
$lang['nb_row_per_page'] = 'Number of rows per page';
$lang['nbm_unknown_identifier'] = 'Unknown identifier';
$lang['never_rated'] = 'You\'ve never rated this item';
$lang['new_password'] = 'New password';
$lang['new_password_hint'] = 'You only have to give a password if you wish to change it.';
$lang['next_page'] = 'Next';
$lang['new_rate'] = 'Rate this picture';
$lang['no'] = 'No';
$lang['no_category'] = 'Home';
$lang['no_rate'] = 'no rate';

View file

@ -129,7 +129,6 @@ $lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Mode conseiller actif';
$lang['all'] = 'tout';
$lang['all_categories'] = 'toutes les catégories';
$lang['already_rated'] = 'Vous avez déjà voté pour cette image';
$lang['ascending'] = 'croissant';
$lang['author(s) : %s'] = 'auteur(s) : %s';
$lang['auto_expand'] = 'Développer toutes les catégories';
@ -243,9 +242,9 @@ $lang['nb_image_per_row'] = 'Nombre de miniatures par ligne';
$lang['nb_line_page_error'] = 'Le nombre de lignes par page doit être un entier non nul';
$lang['nb_row_per_page'] = 'Nombre de lignes par page';
$lang['nbm_unknown_identifier'] = 'Identifiants inconnus';
$lang['never_rated'] = 'Vous n\'avez jamais voté pour cette image';
$lang['new_password'] = 'Nouveau mot de passe';
$lang['new_password_hint'] = 'Vous n\'avez à confirmer votre mot de passe que si vous désirez en changer.';
$lang['new_rate'] = 'Votez pur cette image';
$lang['next_page'] = 'Suivant';
$lang['no'] = 'Non';
$lang['no_category'] = 'Accueil';

View file

@ -165,7 +165,8 @@ UPDATE '.CATEGORIES_TABLE.'
case 'rate' :
{
include_once(PHPWG_ROOT_PATH.'include/functions_rate.inc.php');
rate_picture($page['image_id'], $_GET['rate']);
rate_picture($page['image_id'],
isset($_POST['rate']) ? $_POST['rate'] : $_GET['rate'] );
redirect($url_self);
}
case 'delete_comment' :

View file

@ -107,6 +107,22 @@ TABLE.infoTable TD.value UL {
list-style-type: square;
}
.rateButton, .rateButtonSelected {
background-color:transparent;
padding:0;
border:0;
}
.rateButton {
cursor: pointer;
}
.rateButtonSelected {
color:inherit;
font-weight:bold;
font-size:120%;
}
#comments {
text-align: left;
}

View file

@ -153,12 +153,19 @@
<!-- END metadata -->
<!-- BEGIN rate -->
<p>
{rate.SENTENCE} :
<form action="{rate.F_ACTION}" method="post">
<div>{rate.SENTENCE} :
<!-- BEGIN rate_option -->
{rate.rate_option.SEPARATOR} <a href="{rate.rate_option.URL}" rel="nofollow" {TAG_INPUT_ENABLED}>{rate.rate_option.OPTION}</a>
{rate.rate_option.SEPARATOR}
<!-- BEGIN my_rate -->
<input type="button" name="rate" value="{rate.rate_option.OPTION}" class="rateButtonSelected" />
<!-- END my_rate -->
<!-- BEGIN not_my_rate -->
<input type="submit" name="rate" value="{rate.rate_option.OPTION}" class="rateButton" />
<!-- END not_my_rate -->
<!-- END rate_option -->
</p>
</div>
</form>
<!-- END rate -->
<hr class="separation">

View file

@ -53,7 +53,7 @@ FIELDSET, INPUT, SELECT, TEXTAREA,
}
/* links */
A {
A, .rateButton {
color: #005e89;
background: transparent;
}

View file

@ -83,7 +83,7 @@ H2, #menubar DT, #imageHeaderBar {
}
/* links */
A {
A, .rateButton {
color: #FFFFFF;
}