Overview
Comment:Release 0.8.1: supprime le temps NTP sur la config, car des fois lent à répondre
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable | 0.8.1
Files: files | file ages | folders
SHA1: 9dcca4fe5fe1cdb14e60ebcd3c4ceacc443a6821
User & Date: bohwaz on 2017-10-26 00:34:11
Other Links: manifest | tags
References
2020-12-08
23:25 Wiki page "Changelog/0.9" artifact: b9c916b4d1 user: bohwaz
Context
2017-10-28
02:38
Correction bug sélection projet dans saisie écriture check-in: 628109a63d user: bohwaz tags: trunk, stable
2017-10-26
00:34
Release 0.8.1: supprime le temps NTP sur la config, car des fois lent à répondre check-in: 9dcca4fe5f user: bohwaz tags: trunk, stable, 0.8.1
2017-10-25
04:55
Supprimer la possibilité de lister le champ ID check-in: 434b1f0bb4 user: bohwaz tags: trunk, stable
Changes

Modified src/VERSION from [b9e5d04d97] to [1168d5c064].

1
0.8.0
|
1
0.8.1

Modified src/templates/admin/config/index.tpl from [7b31e5fe67] to [295b6cf79c].

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
        <dl>
            <dt>Version installée</dt>
            <dd class="help">{$garradin_version} <a href="{$garradin_website}">[Vérifier la disponibilité d'une nouvelle version]</a></dd>
            <dt>Informations système</dt>
            <dd class="help">
                Version PHP&nbsp;: {$php_version}<br />
                Version SQLite&nbsp;: {$sqlite_version}<br />
                Heure du serveur&nbsp;: {$server_time|date_fr} ({if $time_diff > -5 && $time_diff < 5}à l'heure{elseif $time_diff < 0}en retard de {$time_diff} secondes{else}en avance de {$time_diff} secondes{/if})<br />
                Chiffrement GnuPG&nbsp;: {if $has_gpg_support}disponible, module activé{else}non, module PHP gnupg non installé&nbsp;?{/if}<br />
            </dd>
        </dl>
    </fieldset>

    <fieldset>
        <legend>Informations sur l'association</legend>







|







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
        <dl>
            <dt>Version installée</dt>
            <dd class="help">{$garradin_version} <a href="{$garradin_website}">[Vérifier la disponibilité d'une nouvelle version]</a></dd>
            <dt>Informations système</dt>
            <dd class="help">
                Version PHP&nbsp;: {$php_version}<br />
                Version SQLite&nbsp;: {$sqlite_version}<br />
                Heure du serveur&nbsp;: {$server_time|date_fr}<br />
                Chiffrement GnuPG&nbsp;: {if $has_gpg_support}disponible, module activé{else}non, module PHP gnupg non installé&nbsp;?{/if}<br />
            </dd>
        </dl>
    </fieldset>

    <fieldset>
        <legend>Informations sur l'association</legend>

Modified src/www/admin/config/index.php from [7c3f84bfe4] to [76e88cf2fb].

51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
        $form->addError($e->getMessage());
    }
}

$tpl->assign('ok', qg('ok') !== null);

$server_time = time();
$ntp_time = \KD2\Security_OTP::getTimeFromNTP(NTP_SERVER);
$diff = $server_time - $ntp_time;

$tpl->assign('garradin_version', garradin_version() . ' [' . (garradin_manifest() ?: 'release') . ']');
$tpl->assign('php_version', phpversion());
$tpl->assign('has_gpg_support', \KD2\Security::canUseEncryption());
$tpl->assign('server_time', $server_time);
$tpl->assign('time_diff', $diff);

$v = \SQLite3::version();
$tpl->assign('sqlite_version', $v['versionString']);

$tpl->assign('pays', Utils::getCountryList());

$cats = new Membres\Categories;







<
<





<







51
52
53
54
55
56
57


58
59
60
61
62

63
64
65
66
67
68
69
        $form->addError($e->getMessage());
    }
}

$tpl->assign('ok', qg('ok') !== null);

$server_time = time();



$tpl->assign('garradin_version', garradin_version() . ' [' . (garradin_manifest() ?: 'release') . ']');
$tpl->assign('php_version', phpversion());
$tpl->assign('has_gpg_support', \KD2\Security::canUseEncryption());
$tpl->assign('server_time', $server_time);


$v = \SQLite3::version();
$tpl->assign('sqlite_version', $v['versionString']);

$tpl->assign('pays', Utils::getCountryList());

$cats = new Membres\Categories;