Interface fix: add a link to last editor profile in common description. Don't count a change if a user saves with no modifications.

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@46 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-02-19 14:43:00 +00:00
parent 93da909d9c
commit 76ed2e494b
6 changed files with 23 additions and 9 deletions

View file

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Scuttle\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-02-19 10:28+0100\n"
"PO-Revision-Date: 2008-02-19 10:29+0100\n"
"POT-Creation-Date: 2008-02-19 15:30+0100\n"
"PO-Revision-Date: 2008-02-19 15:31+0100\n"
"Last-Translator: BenjaminHKB <benjamin.huynh-kim-bang@loria.fr>\n"
"Language-Team: fr-FR <toony.sf@chezouam.net>\n"
"MIME-Version: 1.0\n"
@ -566,7 +566,7 @@ msgstr "Description"
#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:28
#: ../../../templates/tagcommondescriptionedit.tpl.php:21
msgid "Last modification: "
msgid "Last modification:"
msgstr "Dernière modification :"
#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:39

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-02-19 10:28+0100\n"
"POT-Creation-Date: 2008-02-19 15:30+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -553,7 +553,7 @@ msgstr ""
#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:28
#: ../../../templates/tagcommondescriptionedit.tpl.php:21
msgid "Last modification: "
msgid "Last modification:"
msgstr ""
#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:39

View file

@ -16,6 +16,13 @@ class CommonDescriptionService {
}
function addTagDescription($tag, $desc, $uId, $time) {
// Check if no modification
$lastDesc = $this->getLastTagDescription($tag);
if($lastDesc['cdDescription'] == $desc) {
return true;
}
// If modification
$datetime = gmdate('Y-m-d H:i:s', $time);
$values = array('tag'=>$tag, 'cdDescription'=>$desc, 'uId'=>$uId, 'cdDatetime'=>$datetime);
$sql = 'INSERT INTO '. $this->getTableName() .' '. $this->db->sql_build_array('INSERT', $values);
@ -81,6 +88,13 @@ class CommonDescriptionService {
}
function addBookmarkDescription($bHash, $title, $desc, $uId, $time) {
// Check if no modification
$lastDesc = $this->getLastBookmarkDescription($bHash);
if($lastDesc['cdTitle'] == $title && $lastDesc['cdDescription'] == $desc) {
return true;
}
// If modification
$datetime = gmdate('Y-m-d H:i:s', $time);
$values = array('bHash'=>$bHash, 'cdTitle'=>$title, 'cdDescription'=>$desc, 'uId'=>$uId, 'cdDatetime'=>$datetime);
$sql = 'INSERT INTO '. $this->getTableName() .' '. $this->db->sql_build_array('INSERT', $values);

View file

@ -25,9 +25,9 @@ window.onload = function() {
<td>
<?php
if(strlen($description['cdDatetime'])>0) {
echo T_('Last modification: ').$description['cdDatetime'].', ';
echo T_('Last modification:').' '.$description['cdDatetime'].', ';
$lastUser = $userservice->getUser($description['uId']);
echo $lastUser['username'];
echo '<a href="'.createURL('profile', $lastUser['username']).'">'.$lastUser['username'].'</a>';
}
?>
</td>

View file

@ -18,9 +18,9 @@ window.onload = function() {
<td>
<?php
if(strlen($description['cdDatetime'])>0) {
echo T_('Last modification: ').$description['cdDatetime'].', ';
echo T_('Last modification:').' '.$description['cdDatetime'].', ';
$lastUser = $userservice->getUser($description['uId']);
echo $lastUser['username'];
echo '<a href="'.createURL('profile', $lastUser['username']).'">'.$lastUser['username'].'</a>';
}
?>
</td>